
:root {
  --brand: #21577d;
  --brand-dark: #173d59;
  --brand-soft: #eaf3f8;
  --aqua: #58bed0;
  --ink: #163044;
  --muted: #627381;
  --line: #dce7ed;
  --paper: #ffffff;
  --canvas: #f7fafb;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(33, 87, 125, 0.97);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand { width: 202px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a,
.header-cta,
.button,
.product-copy a {
  transition: transform 180ms ease, color 180ms ease, background 180ms ease,
    border-color 180ms ease;
}

.desktop-nav a:hover { color: #ffffff; }

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: #ffffff;
  color: var(--brand);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(88, 190, 208, 0.2), transparent 28%),
    linear-gradient(135deg, #f7fbfd 0%, #eef6fa 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -15vw;
  bottom: -33vw;
  width: 62vw;
  height: 62vw;
  border: 1px solid rgba(33, 87, 125, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 72px;
  padding-block: 88px 78px;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 23px;
  padding: 8px 12px;
  border: 1px solid rgba(33, 87, 125, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 760;
  letter-spacing: -0.052em;
  line-height: 1.01;
}

.hero h1 em { color: var(--brand); font-style: normal; }

.hero-copy > p {
  max-width: 610px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
}

.button:hover { transform: translateY(-2px); }
.button-primary {
  background: var(--brand);
  box-shadow: 0 13px 30px rgba(33, 87, 125, 0.18);
  color: #ffffff;
}
.button-primary:hover { background: var(--brand-dark); }
.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.74);
  color: var(--brand-dark);
}
.button-secondary:hover {
  border-color: rgba(33, 87, 125, 0.35);
  background: #ffffff;
}

.hero-copy .hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #73838f;
  font-size: 13px;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  min-height: 475px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 56px 45px;
  border: 1px solid rgba(33, 87, 125, 0.09);
  border-radius: 36px 36px 100px 36px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(26, 64, 90, 0.13);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% 14%;
  border-radius: 50%;
  background: var(--brand-soft);
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 410px);
  height: 360px;
  object-fit: cover;
  object-position: center 52%;
  mix-blend-mode: multiply;
}

.visual-label {
  position: absolute;
  top: 24px;
  left: 26px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 10px 28px rgba(35, 75, 102, 0.1);
}

.visual-label span { color: var(--muted); font-size: 11px; }
.visual-label strong { color: var(--brand); font-size: 18px; }
.hero-visual small {
  position: absolute;
  right: 26px;
  bottom: 19px;
  z-index: 2;
  color: #81909a;
  font-size: 10px;
}

.proof-strip { background: var(--brand); color: #ffffff; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-grid > div {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.proof-grid > div:last-child { border-right: 0; }
.proof-grid svg { width: 23px; height: 23px; color: #8fe0ea; }
.proof-grid span { color: rgba(255, 255, 255, 0.78); font-size: 13px; }
.proof-grid strong { color: #ffffff; }

.section { padding-block: 104px; }
.products-section { background: #ffffff; }
.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 38px;
}

.section-kicker {
  display: block;
  margin-bottom: 11px;
  color: var(--aqua);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2 {
  max-width: 700px;
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(34px, 4vw, 50px);
  letter-spacing: -0.038em;
  line-height: 1.08;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 38px rgba(35, 75, 102, 0.06);
}

.product-image {
  height: 245px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(145deg, #f8fbfc, #edf4f7);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 250ms ease;
}

.product-image img.supplied-product-image {
  object-fit: cover;
  object-position: center 52%;
}

.product-card:hover .product-image img { transform: scale(1.04); }
.product-copy { padding: 22px; }
.product-copy > span {
  color: var(--aqua);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-copy h3 {
  min-height: 48px;
  margin: 8px 0 7px;
  color: var(--brand-dark);
  font-size: 18px;
  line-height: 1.3;
}

.product-copy p {
  min-height: 42px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.product-copy small {
  display: block;
  margin-top: 12px;
  color: #73838f;
  font-size: 11px;
}

.product-copy a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 17px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}
.product-copy a:hover { gap: 10px; }

.availability-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid #d8e8ef;
  border-radius: 15px;
  background: #f3f9fb;
  color: var(--brand);
}

.availability-note svg { flex: 0 0 auto; margin-top: 1px; }
.availability-note p {
  margin: 0;
  color: #577080;
  font-size: 13px;
  line-height: 1.55;
}

.how-section {
  overflow: hidden;
  background: var(--brand-dark);
  color: #ffffff;
}

.how-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 75px;
  align-items: start;
}

.how-intro {
  position: sticky;
  top: 130px;
}

.how-intro h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.how-intro p {
  margin: 21px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.72;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: #8fe0ea;
  font-size: 14px;
  font-weight: 900;
}

.steps-list { display: grid; }

.steps-list article {
  position: relative;
  display: grid;
  grid-template-columns: 64px 44px 1fr;
  grid-template-areas:
    "icon number title"
    "icon number copy";
  column-gap: 18px;
  padding: 31px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.steps-list article:first-child { padding-top: 4px; }
.steps-list article:last-child { border-bottom: 0; padding-bottom: 4px; }

.step-icon {
  grid-area: icon;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(143, 224, 234, 0.35);
  border-radius: 18px;
  background: rgba(143, 224, 234, 0.08);
  color: #8fe0ea;
}
.step-icon svg { width: 25px; height: 25px; }
.steps-list article > span {
  grid-area: number;
  padding-top: 4px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 13px;
  font-weight: 900;
}
.steps-list h3 {
  grid-area: title;
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.steps-list p {
  grid-area: copy;
  max-width: 520px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 14px;
  line-height: 1.65;
}

.story-section { background: #ffffff; }
.story-card {
  display: grid;
  grid-template-columns: 160px 1fr 0.85fr;
  align-items: center;
  gap: 50px;
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(88, 190, 208, 0.07), transparent 45%),
    #ffffff;
  box-shadow: 0 24px 70px rgba(35, 75, 102, 0.08);
}

.story-mark {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--brand);
  color: #ffffff;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.story-card h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(31px, 3.2vw, 45px);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.story-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.stores-section { background: var(--canvas); }
.stores-heading { margin-bottom: 34px; }

.stores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.store-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  grid-template-areas:
    "top info"
    "top link";
  gap: 12px 30px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
}

.store-top {
  grid-area: top;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.store-top span {
  color: var(--aqua);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-top strong {
  margin-top: 7px;
  color: var(--brand-dark);
  font-size: 21px;
  line-height: 1.2;
}

.store-info { grid-area: info; display: grid; gap: 10px; }
.store-info p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: #476273;
  font-size: 13px;
  line-height: 1.45;
}
.store-info svg { flex: 0 0 auto; margin-top: 2px; color: var(--aqua); }
.store-info small { display: block; color: #89969f; font-size: 11px; }
.store-card > a {
  grid-area: link;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: 3px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.closing-section {
  padding-block: 88px;
  background: linear-gradient(135deg, #e9f5f8, #f7fafb);
}

.closing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.closing-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--aqua);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.closing-card h2 {
  max-width: 780px;
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(29px, 3.5vw, 45px);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.closing-button {
  flex: 0 0 auto;
  background: var(--brand);
  color: #ffffff;
}

.site-footer {
  padding-top: 64px;
  background: #112f45;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 60px;
  padding-bottom: 48px;
}

.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid img { width: 205px; }
.footer-grid p {
  max-width: 360px;
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.65;
}
.footer-grid strong { margin-bottom: 5px; font-size: 13px; }
.footer-grid a { color: rgba(255, 255, 255, 0.62); font-size: 12px; }
.footer-grid a:hover { color: #ffffff; }
.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 15px 36px rgba(22, 63, 84, 0.22);
  color: #ffffff;
  transition: transform 180ms ease;
}
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.03); }
.floating-whatsapp svg { width: 25px; height: 25px; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-block: 70px;
  }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(650px, 100%); min-height: 430px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid > div {
    min-height: 74px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .proof-grid > div:last-child { border-bottom: 0; }
  .how-grid { grid-template-columns: 1fr; gap: 48px; }
  .how-intro { position: static; max-width: 700px; }
  .story-card { grid-template-columns: 120px 1fr; }
  .story-card > p { grid-column: 2; }
  .stores-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 68px; gap: 14px; }
  .brand { width: 156px; }
  .header-cta { min-width: 44px; width: 44px; padding: 0; }
  .header-cta span { display: none; }
  .hero-grid { min-height: auto; padding-block: 55px 48px; }
  .hero h1 { font-size: 43px; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-visual {
    min-height: 360px;
    padding: 65px 28px 40px;
    border-radius: 28px 28px 70px 28px;
  }
  .visual-label { top: 16px; left: 16px; }
  .hero-visual small { right: 16px; bottom: 14px; }
  .section { padding-block: 76px; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .product-grid { grid-template-columns: 1fr; }
  .availability-note { padding: 16px; }
  .steps-list article {
    grid-template-columns: 48px 1fr;
    grid-template-areas:
      "number title"
      "icon copy";
    column-gap: 12px;
  }
  .step-icon { width: 44px; height: 44px; border-radius: 14px; }
  .step-icon svg { width: 20px; height: 20px; }
  .story-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px;
  }
  .story-mark { width: 92px; font-size: 32px; }
  .story-card > p { grid-column: auto; }
  .store-card {
    grid-template-columns: 1fr;
    grid-template-areas: "top" "info" "link";
    padding: 24px;
  }
  .store-top { padding: 0 0 18px; border-right: 0; border-bottom: 1px solid var(--line); }
  .closing-card { align-items: flex-start; flex-direction: column; }
  .closing-button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
