:root {
  --red: #d71932;
  --red-dark: #940d20;
  --black: #07080b;
  --ink: #151821;
  --muted: #636b7b;
  --line: #e5e7ed;
  --soft: #f6f7f9;
  --white: #fff;
  --shadow: 0 24px 70px rgba(7, 8, 11, .14);
  --radius: 8px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p { margin-top: 0; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 999;
  padding: 8px 12px;
  background: var(--black);
  color: var(--white);
}

.skip-link:focus { left: 8px; }

.topbar {
  background: var(--black);
  color: var(--white);
  font-size: 13px;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  padding: 8px 0;
}

.topbar span,
.topbar a {
  min-width: 0;
  overflow-wrap: anywhere;
}

.topbar a { font-weight: 800; color: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(7, 8, 11, .08);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand img {
  width: 80px;
  height: 54px;
  object-fit: contain;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.brand strong {
  display: block;
  color: var(--black);
  font-size: 21px;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #252936;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.main-nav a { transition: color .2s ease; }
.main-nav a:hover { color: var(--red); }

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 16px;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(215, 25, 50, .24);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: var(--radius);
  background: var(--black);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 11, .96), rgba(7, 8, 11, .72) 47%, rgba(7, 8, 11, .28)),
    url("img/uploaded/pro2-product-dark.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 96px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--white));
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: 52px;
  min-height: 690px;
  padding: 84px 0 120px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 7px 12px;
  border: 1px solid rgba(215, 25, 50, .22);
  border-radius: 999px;
  background: rgba(215, 25, 50, .08);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero .eyebrow,
.feature-band .eyebrow,
.cta-band .eyebrow {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .1);
  color: var(--white);
}

.hero h1 {
  max-width: 800px;
  margin: 18px 0 22px;
  font-size: clamp(42px, 6.4vw, 78px);
  line-height: 1;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 20px;
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(215, 25, 50, .26);
}

.btn-outline {
  border-color: rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

.btn-outline.dark {
  border-color: #cfd4dd;
  background: var(--white);
  color: var(--black);
}

.btn-light {
  background: var(--white);
  color: var(--black);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero__badges span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.hero-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
  backdrop-filter: blur(14px);
}

.hero-panel img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #f4f5f7;
}

.hero-panel__body {
  padding: 20px;
  background: var(--white);
  color: var(--black);
}

.hero-panel__body strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.hero-panel__body span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
}

.quick-strip {
  position: relative;
  z-index: 5;
  margin-top: -54px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-grid > * {
  min-width: 0;
  padding: 22px;
  border-right: 1px solid var(--line);
  overflow-wrap: anywhere;
}

.quick-grid > *:last-child { border-right: 0; }

.quick-grid strong {
  display: block;
  color: var(--black);
  font-size: 19px;
  line-height: 1.25;
}

.quick-grid span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.section { padding: 92px 0; }

.section-head {
  max-width: 790px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head h2,
.feature-band h2,
.care-grid h2,
.cta-band h2,
.contact-grid h2 {
  margin: 14px 0 14px;
  color: var(--black);
  font-size: clamp(31px, 4.1vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p,
.feature-band p,
.care-grid p,
.contact-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-grid article,
.mini-cards article,
.process-grid article,
.product-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.trust-grid article {
  padding: 24px;
  box-shadow: 0 14px 34px rgba(7, 8, 11, .06);
}

.trust-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  font-weight: 900;
}

.trust-grid h3,
.process-grid h3,
.product-card h3 {
  margin: 0 0 8px;
  color: var(--black);
}

.trust-grid p,
.process-grid p,
.product-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-band,
.process-section {
  background: var(--black);
  color: var(--white);
}

.feature-band__grid,
.care-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 46px;
}

.feature-band h2,
.process-section h2,
.cta-band h2 {
  color: var(--white);
}

.feature-band p {
  color: rgba(255, 255, 255, .76);
}

.feature-band img,
.care-media img,
.contact-card img,
.gallery-grid a {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-band img {
  width: 100%;
  max-height: none;
  object-fit: contain;
  background: #11141b;
}

.products-section { background: #fbfbfc; }

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-tabs button {
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.filter-tabs button.active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  box-shadow: 0 16px 38px rgba(7, 8, 11, .07);
}

.product-card__media {
  position: relative;
  background: #fff;
}

.product-card__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  padding: 0;
}

.product-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  max-width: calc(100% - 28px);
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 13px;
  padding: 21px;
}

.product-card h3 {
  font-size: 22px;
  line-height: 1.2;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.product-meta span {
  min-width: 0;
  padding: 9px;
  border-radius: var(--radius);
  background: #f3f4f7;
  color: #303543;
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.price-row strong {
  min-width: 0;
  color: var(--red);
  font-size: 18px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.price-row a {
  flex: 0 0 auto;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.care-section { background: var(--soft); }
.care-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }

.care-media img {
  width: 100%;
  max-height: none;
  object-fit: contain;
  object-position: top center;
  background: #fff;
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.mini-cards article {
  padding: 16px;
}

.mini-cards strong {
  display: block;
  color: var(--black);
}

.mini-cards span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.process-section .section-head p,
.process-grid p {
  color: rgba(255, 255, 255, .72);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-grid article {
  padding: 24px;
  border-color: rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .06);
}

.process-grid b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
}

.process-grid h3 { color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-grid a {
  overflow: hidden;
  background: #fff;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  padding: 0;
  transition: transform .25s ease;
}

.gallery-grid a:hover img { transform: none; }

.cta-band {
  padding: 58px 0;
  background: linear-gradient(135deg, var(--red), var(--red-dark) 42%, var(--black));
  color: var(--white);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band p {
  color: rgba(255, 255, 255, .78);
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  color: var(--black);
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-grid { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); }

.contact-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 3px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8f9fb;
}

.contact-list strong {
  color: var(--black);
  font-size: 13px;
  text-transform: uppercase;
}

.contact-list a,
.contact-list span {
  min-width: 0;
  color: #2c3342;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card img {
  width: 100%;
  box-shadow: none;
}

.map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  font-weight: 900;
  text-align: center;
}

.footer {
  padding: 48px 0 0;
  background: var(--black);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.1fr;
  gap: 30px;
}

.footer strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.footer p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .7);
}

.footer a {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, .76);
  overflow-wrap: anywhere;
}

.footer-bottom {
  margin-top: 36px;
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  text-align: center;
}

.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border-radius: 999px;
  background: #16a34a;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(22, 163, 74, .32);
}

.float-whatsapp svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  margin-right: 8px;
  fill: currentColor;
}

@media (max-width: 1080px) {
  .main-nav { gap: 14px; font-size: 13px; }
  .brand { min-width: 230px; }
  .header-call { padding-inline: 13px; }
}

@media (max-width: 980px) {
  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .nav-wrap { min-height: 74px; }
  .brand { min-width: 0; }
  .brand img { width: 64px; height: 46px; }
  .brand strong { font-size: 18px; }
  .brand small { font-size: 11px; }
  .menu-toggle { display: inline-flex; }
  .header-call { display: none; }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    white-space: normal;
  }

  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px; border-radius: var(--radius); }
  .main-nav a:hover { background: #f4f5f8; }

  .hero__grid,
  .feature-band__grid,
  .care-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    min-height: auto;
    padding: 64px 0 118px;
  }

  .hero-panel {
    max-width: 520px;
  }

  .quick-grid,
  .trust-grid,
  .product-grid,
  .gallery-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-grid > *:nth-child(2) {
    border-right: 0;
  }

  .quick-grid > *:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .cta-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .section { padding: 64px 0; }
  .hero__media {
    background:
      linear-gradient(180deg, rgba(7, 8, 11, .95), rgba(7, 8, 11, .78) 55%, rgba(7, 8, 11, .62)),
      url("img/uploaded/pro2-product-dark.jpg") center / cover no-repeat;
  }

  .hero h1 { font-size: 40px; }
  .hero p,
  .section-head p,
  .feature-band p,
  .care-grid p,
  .contact-grid p {
    font-size: 16px;
  }

  .section-head h2,
  .feature-band h2,
  .care-grid h2,
  .cta-band h2,
  .contact-grid h2 {
    font-size: 32px;
  }

  .hero__actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn { width: 100%; }

  .quick-grid,
  .trust-grid,
  .product-grid,
  .gallery-grid,
  .process-grid,
  .mini-cards {
    grid-template-columns: 1fr;
  }

  .quick-grid > * {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-grid > *:last-child { border-bottom: 0; }
  .product-card__media img,
  .gallery-grid img,
  .hero-panel img {
    height: auto;
  }
  .product-meta { grid-template-columns: 1fr; }

  .price-row {
    align-items: stretch;
    flex-direction: column;
  }

  .price-row a {
    text-align: center;
  }

  .float-whatsapp {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .footer { padding-bottom: 62px; }
}

@media (max-width: 380px) {
  .brand strong { font-size: 16px; }
  .brand small { display: none; }
  .hero h1 { font-size: 34px; }
  .section-head h2,
  .feature-band h2,
  .care-grid h2,
  .cta-band h2,
  .contact-grid h2 {
    font-size: 28px;
  }
}
