/* =============================================================
   Acqua Fresca Filters — Premium Design System v2
   Brand palette sampled from the official logo
   Styling aligned to sister site acquafrescainc.com
   (Poppins headings in blue, Manrope body, flat #0e72b9 buttons)
   ============================================================= */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&display=swap");

:root {
  /* Brand — matched to acquafrescainc.com */
  --brand-deep: #0b5488;
  --brand: #0e72b9;
  --brand-2: #2b7cae;
  --heading: #15619b;
  --aqua: #4fa8cc;
  --aqua-soft: #7cc4dc;
  --aqua-light: #cdeaf4;
  --eyebrow: #6aa9d8;
  --tint: #eef7fb;
  --tint-2: #e2f1f8;

  /* Ink / neutrals */
  --ink: #1e1e1e;
  --body: #43606f;
  --muted: #6b8494;
  --line: #e4edf2;
  --line-soft: #eef4f7;
  --white: #ffffff;
  --bg-soft: #f6fafc;

  /* Accents */
  --gold: #f7a83a;
  --gold-2: #f6902a;
  --success: #1f9d68;
  --danger: #d8442f;

  /* Type */
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Poppins", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 16px;
  --radius-sm: 11px;
  --radius-lg: 26px;
  --radius-xl: 34px;

  /* Shadows — layered, soft */
  --shadow-xs: 0 1px 2px rgba(12, 37, 54, .06);
  --shadow-sm: 0 4px 14px rgba(12, 37, 54, .07);
  --shadow: 0 18px 44px rgba(12, 37, 54, .12);
  --shadow-lg: 0 40px 90px rgba(11, 62, 99, .22);
  --glow: 0 20px 50px rgba(24, 96, 144, .35);

  /* Gradients */
  --gradient: linear-gradient(130deg, #0b3e63 0%, #186090 40%, #2b7cae 72%, #4fa8cc 100%);
  --gradient-bright: linear-gradient(120deg, #2b7cae 0%, #4fa8cc 55%, #7cc4dc 100%);
  --gradient-soft: linear-gradient(165deg, #f4fbfe 0%, #e4f2f9 60%, #d7ecf6 100%);
  --gradient-gold: linear-gradient(120deg, #f7a83a, #f6902a);
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { max-width: 100%; display: block; height: auto; }
a { color: var(--brand); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--brand-deep); }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { color: var(--heading); font-family: var(--font-head); line-height: 1.16; font-weight: 600; letter-spacing: -.025em; }
h1 { font-size: clamp(2.3rem, 5.6vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p { color: var(--body); }
strong { color: var(--ink); font-weight: 700; }
::selection { background: var(--aqua); color: #fff; }
:focus-visible { outline: 3px solid var(--aqua); outline-offset: 3px; border-radius: 6px; }

/* --------------------------- Utilities --------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--tint { background: var(--tint); }
.section--soft { background: var(--gradient-soft); }
.section--ink { background: var(--ink); }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--eyebrow); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gradient-bright); border-radius: 2px; }
.eyebrow.center-eb { justify-content: center; }
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 66px); text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head p { font-size: 1.12rem; color: var(--muted); margin-top: 16px; }
.lead { font-size: 1.18rem; color: var(--body); line-height: 1.6; }
.text-grad { background: var(--gradient-bright); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------------------------- Buttons ---------------------------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-weight: 700; font-size: 1rem; line-height: 1; text-align: center;
  padding: 16px 30px; border-radius: 999px; border: 2px solid transparent; cursor: pointer;
  transition: transform .2s cubic-bezier(.2,.7,.3,1), box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap; overflow: hidden; isolation: isolate;
}
.btn svg { transition: transform .2s ease; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 6px 16px rgba(14,114,185,.22); }
.btn--primary:hover { color: #fff; background: var(--brand-deep); box-shadow: 0 10px 24px rgba(14,114,185,.32); }
.btn--primary:hover svg { transform: translateX(3px); }
.btn--gold { background: var(--gradient-gold); color: #3a2708; box-shadow: 0 12px 30px rgba(247,152,42,.34); }
.btn--gold:hover { color: #3a2708; }
.btn--ghost { background: rgba(255,255,255,.7); color: var(--brand); border-color: var(--line); backdrop-filter: blur(6px); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-deep); background: #fff; }
.btn--light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(6px); }
.btn--light:hover { background: #fff; color: var(--brand); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 38px; font-size: 1.06rem; }

/* --------------------------- Skip link --------------------------- */
.skip-link {
  position: absolute; left: 16px; top: -80px; z-index: 300; background: var(--brand); color: #fff;
  padding: 12px 20px; border-radius: 0 0 12px 12px; font-weight: 700; transition: top .2s ease;
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------------------------- Header ----------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100; transition: box-shadow .25s ease, background .25s ease, backdrop-filter .25s;
  background: rgba(255, 255, 255, .72); backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(255,255,255,.9); border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 22px; min-height: 78px; transition: min-height .25s ease; }
.site-header.scrolled .nav { min-height: 66px; }
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 44px; width: auto; transition: height .25s ease; }
.site-header.scrolled .nav__logo img { height: 38px; }
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a {
  position: relative; color: var(--ink); font-weight: 600; font-size: .97rem; padding: 10px 15px; border-radius: 10px;
}
.nav__links a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 5px; height: 2px; border-radius: 2px;
  background: var(--gradient-bright); transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav__links a:hover { color: var(--brand); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { color: var(--brand); }
.nav__links a.btn::after { display: none; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); font-size: .95rem; }
.nav__phone:hover { color: var(--brand); }
.nav__phone svg { color: var(--brand); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 10px; cursor: pointer; }
.nav__toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; transition: .28s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --------------------- Announcement bar (sister-brand) --------------------- */
.announce { background: linear-gradient(90deg, #2f83c4, #0e72b9); color: #fff; }
.announce .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 11px 24px; }
.announce p { color: #fff; font-weight: 700; font-size: .8rem; letter-spacing: .09em; text-transform: uppercase; margin: 0; }
.announce a { flex: none; background: transparent; border: 1.5px solid rgba(255,255,255,.75); color: #fff; font-weight: 700; font-size: .75rem; letter-spacing: .04em; text-transform: uppercase; padding: 7px 17px; border-radius: 999px; transition: background .2s ease, color .2s ease; }
.announce a:hover { background: #fff; color: var(--brand); }
@media (max-width: 600px) { .announce p { font-size: .68rem; letter-spacing: .04em; } .announce a { display: none; } }

/* ----------------------------- Hero ------------------------------ */
.hero { position: relative; overflow: hidden; background: var(--ink); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(9,32,49,.94) 0%, rgba(11,50,80,.86) 34%, rgba(16,72,110,.55) 60%, rgba(16,72,110,.12) 100%),
    radial-gradient(720px 480px at 6% 30%, rgba(79,168,204,.32), transparent 70%);
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 44px; align-items: center; padding: clamp(70px, 10vw, 128px) 0 clamp(64px, 8vw, 108px); }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28);
  color: #eaf6fb; font-weight: 700; font-size: .84rem; padding: 9px 17px; border-radius: 999px; margin-bottom: 26px;
  backdrop-filter: blur(8px);
}
.hero__badge svg { color: var(--aqua-soft); }
.hero h1 { color: #fff; letter-spacing: -.025em; }
.hero h1 .accent { background: linear-gradient(110deg, #9fe0f4, #4fa8cc); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: 1.24rem; color: #cfe1ec; margin-top: 22px; max-width: 560px; line-height: 1.6; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 38px; }
.hero__trust li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: #dcebf3; font-size: .95rem; }
.hero__trust svg { flex: none; color: #7ce0b6; }

/* Hero floating glass panel */
.hero__panel {
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius-xl);
  padding: 28px; backdrop-filter: blur(18px); box-shadow: 0 30px 70px rgba(0,0,0,.3); color: #fff;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }
.hero__panel h3 { color: #fff; font-size: 1.15rem; margin-bottom: 4px; }
.hero__panel > p { color: #cfe1ec; font-size: .95rem; }
.hero__viz { width: 100%; border-radius: var(--radius); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); margin-bottom: 22px; }
.hero__panel-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.hero__panel-stats div { text-align: center; padding: 12px 6px; background: rgba(255,255,255,.08); border-radius: 14px; }
.hero__panel-stats b { display: block; font-size: 1.5rem; color: #fff; font-weight: 800; }
.hero__panel-stats span { font-size: .72rem; color: #b8d3e2; }
.hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 3; line-height: 0; }
.hero__wave svg { width: 100%; height: auto; display: block; }

/* --------------------------- Marquee ----------------------------- */
.marquee { background: #fff; border-bottom: 1px solid var(--line); overflow: hidden; padding: 20px 0; }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: flex; align-items: center; gap: 11px; font-weight: 700; color: var(--brand-deep); font-size: 1rem; white-space: nowrap; opacity: .9; }
.marquee__item svg { color: var(--aqua); flex: none; }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ---------------------------- Cards ------------------------------ */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-sm); transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s, border-color .22s;
  height: 100%; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--gradient-bright);
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--aqua-light); }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; color: #fff;
  background: var(--gradient); margin-bottom: 20px; box-shadow: 0 10px 24px rgba(24,96,144,.28);
}
.card__icon svg { width: 30px; height: 30px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .99rem; }

/* Bento variant */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.bento .card { padding: 30px; }
.bento__lg { grid-column: span 3; }
.bento__sm { grid-column: span 3; }
.bento__wide { grid-column: span 6; }
.bento .feature-tall { grid-column: span 2; }

/* Feature list */
.ticks { display: grid; gap: 13px; margin-top: 8px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; color: var(--body); }
.ticks svg { flex: none; color: var(--success); margin-top: 3px; }
.ticks--light li { color: #d7e6ef; }

/* --------------------------- Product cards ----------------------- */
.product {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s;
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product__media {
  position: relative; padding: 30px; aspect-ratio: 4 / 3; display: grid; place-items: center; overflow: hidden;
  background: radial-gradient(120% 120% at 50% 0%, #f4fbff 0%, #dcedf7 60%, #cfe6f3 100%);
}
.product__media::after {
  content: ""; position: absolute; inset: 0; background: radial-gradient(50% 40% at 50% 120%, rgba(24,96,144,.14), transparent 70%);
}
.product__media svg { position: relative; z-index: 1; filter: drop-shadow(0 14px 24px rgba(11,62,99,.22)); transition: transform .3s ease; }
.product:hover .product__media svg { transform: translateY(-6px) scale(1.03); }
.product__tag {
  position: absolute; top: 15px; left: 15px; z-index: 2; background: var(--brand); color: #fff;
  font-size: .7rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(14,114,185,.3);
}
.product__tag--alt { background: var(--gradient-gold); color: #3a2708; box-shadow: 0 6px 16px rgba(247,152,42,.35); }
.product__body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product__body h3 { font-size: 1.16rem; }
.product__meta { font-size: .78rem; color: var(--brand-2); font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.product__desc { font-size: .96rem; color: var(--body); flex: 1; }
.product__specs { display: grid; gap: 7px; font-size: .88rem; color: var(--muted); margin: 6px 0 10px; }
.product__specs li { display: flex; justify-content: space-between; border-bottom: 1px dashed var(--line); padding-bottom: 6px; }
.product__specs b { color: var(--ink); font-weight: 600; }
.product__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 6px; }
.product__price { font-weight: 800; color: var(--ink); font-size: 1.05rem; }
.product__price small { display: block; font-weight: 600; font-size: .72rem; color: var(--muted); }

/* Placeholder marker */
.ph {
  display: inline-flex; align-items: center; gap: 6px; background: #fff5e6; color: #9a5b00;
  border: 1px dashed #f0b95e; font-size: .7rem; font-weight: 800; padding: 3px 9px; border-radius: 6px;
  text-transform: uppercase; letter-spacing: .03em;
}
.ph-note {
  background: #fff8ee; border: 1px solid #f4d8a6; border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm); padding: 16px 20px; color: #6b4a12; font-size: .95rem; margin-bottom: 34px;
}
.ph-note strong { color: #6b4a12; }

/* ----------------------------- Steps ----------------------------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s; }
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step-card__num {
  width: 54px; height: 54px; border-radius: 16px; background: var(--gradient); color: #fff; font-weight: 800;
  display: grid; place-items: center; font-size: 1.3rem; margin-bottom: 18px; box-shadow: 0 10px 24px rgba(24,96,144,.28);
}
.step-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.step-card p { font-size: .97rem; }
.step-card__line { position: absolute; top: 60px; right: -13px; z-index: 2; color: var(--aqua); }
.steps-grid > div:last-child .step-card__line { display: none; }

/* --------------------------- Split band -------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.split__panel { position: relative; border-radius: var(--radius-lg); padding: clamp(30px, 4vw, 50px); overflow: hidden; }
.split__panel--consumer { background: var(--gradient-soft); border: 1px solid var(--line); }
.split__panel--wholesale { background: var(--gradient); color: #fff; box-shadow: var(--shadow); }
.split__panel--wholesale::before { content:""; position:absolute; inset:0; background: radial-gradient(500px 260px at 90% 10%, rgba(255,255,255,.16), transparent 70%); }
.split__panel--wholesale > * { position: relative; }
.split__panel--wholesale h2, .split__panel--wholesale h3 { color: #fff; }
.split__panel--wholesale p { color: #d3e6f1; }
.split__panel h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.split__panel .btn { margin-top: 24px; }
.split__panel .badge-pill { display:inline-block; font-size:.75rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; padding:6px 13px; border-radius:999px; margin-bottom:16px; }
.split__panel--consumer .badge-pill { background:#fff; color:var(--brand); box-shadow: var(--shadow-xs); }
.split__panel--wholesale .badge-pill { background: rgba(255,255,255,.16); color:#fff; }

/* ----------------------------- CTA ------------------------------- */
.cta { position: relative; background: var(--gradient); color: #fff; border-radius: var(--radius-xl); padding: clamp(48px, 7vw, 84px); text-align: center; overflow: hidden; }
.cta::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 320px at 18% -20%, rgba(255,255,255,.2), transparent 60%), radial-gradient(500px 300px at 100% 120%, rgba(159,224,244,.25), transparent 60%); }
.cta__blob { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .5; }
.cta__blob--1 { width: 320px; height: 320px; background: #4fa8cc; top: -120px; right: -60px; }
.cta__blob--2 { width: 260px; height: 260px; background: #9fe0f4; bottom: -120px; left: -40px; }
.cta > .container, .cta > * { position: relative; z-index: 1; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,.92); max-width: 580px; margin: 16px auto 0; font-size: 1.14rem; }
.cta .hero__actions { justify-content: center; }

/* ----------------------------- FAQ ------------------------------- */
.faq { max-width: 840px; margin-inline: auto; display: grid; gap: 15px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 24px; box-shadow: var(--shadow-xs); transition: box-shadow .2s, border-color .2s; }
.faq details[open] { box-shadow: var(--shadow-sm); border-color: var(--aqua-light); }
.faq summary { cursor: pointer; font-weight: 700; color: var(--ink); padding: 20px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 1.06rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%230e72b9' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M7 2v10M2 7h10'/%3E%3C/svg%3E") center/14px no-repeat; transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(135deg); }
.faq details p { padding: 0 0 22px; color: var(--body); }

/* ---------------------------- Forms ------------------------------ */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 46px); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 700; color: var(--ink); font-size: .9rem; }
.field label .req { color: var(--danger); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink); background: var(--bg-soft);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; width: 100%;
  transition: border-color .16s, box-shadow .16s, background .16s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 4px rgba(79,168,204,.18); }
.field textarea { resize: vertical; min-height: 130px; }
.field .hint { font-size: .82rem; color: var(--muted); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); background: #fff6f4; }
.field .error { display: none; color: var(--danger); font-size: .82rem; font-weight: 600; }
.field.invalid .error { display: block; }
.form-msg { border-radius: var(--radius-sm); padding: 15px 18px; font-weight: 600; margin-bottom: 20px; display: none; }
.form-msg--ok { display: block; background: #e7f6ef; color: #14724c; border: 1px solid #a8dcc4; }
.form-msg--err { display: block; background: #fdecea; color: #a5321f; border: 1px solid #f2b6ac; }
.consent-row { display: flex; gap: 11px; align-items: flex-start; font-size: .9rem; color: var(--muted); font-weight: 500; }
.consent-row input { width: auto; margin-top: 4px; flex: none; }

/* --------------------------- Contact info ------------------------ */
.info-list { display: grid; gap: 20px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item__icon { flex: none; width: 50px; height: 50px; border-radius: 14px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px rgba(24,96,144,.24); }
.info-item h3 { font-size: 1.04rem; margin-bottom: 3px; }
.info-item p, .info-item a { font-size: .98rem; color: var(--body); }

/* --------------------------- Page hero --------------------------- */
.page-hero { position: relative; background: var(--gradient); color: #fff; padding: clamp(64px, 9vw, 116px) 0 clamp(56px, 7vw, 96px); text-align: center; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(680px 340px at 84% -10%, rgba(159,224,244,.28), transparent 60%), radial-gradient(500px 300px at 8% 120%, rgba(255,255,255,.12), transparent 60%); }
.page-hero__blob { position:absolute; border-radius:50%; filter: blur(60px); opacity:.4; }
.page-hero__blob--1 { width: 300px; height: 300px; background:#4fa8cc; top:-120px; left:-60px; }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.92); max-width: 660px; margin: 18px auto 0; font-size: 1.16rem; }
.breadcrumb { font-size: .84rem; color: rgba(255,255,255,.78); margin-bottom: 16px; letter-spacing: .02em; }
.breadcrumb a { color: rgba(255,255,255,.9); }
.breadcrumb a:hover { color: #fff; }
.page-hero__wave { position:absolute; left:0; right:0; bottom:-1px; z-index:1; line-height:0; }
.page-hero__wave svg { width:100%; height:auto; display:block; }

/* ---------------------------- Stats band ------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.stat-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 30px 20px; box-shadow: var(--shadow-xs); }
.stats b { display: block; font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 800; line-height: 1; margin-bottom: 8px;
  background: var(--gradient-bright); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stats span { color: var(--muted); font-weight: 600; font-size: .95rem; }

/* --------------------------- Showcase band ----------------------- */
.showcase { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }
.showcase__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.showcase__media img { width: 100%; height: 100%; object-fit: cover; }
.showcase__badge {
  position: absolute; bottom: 22px; left: 22px; right: 22px; background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  border-radius: var(--radius); padding: 18px 22px; display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow-sm);
}
.showcase__badge .dot { width: 44px; height: 44px; border-radius: 12px; background: var(--gradient); color:#fff; display:grid; place-items:center; flex:none; }
.showcase__badge b { color: var(--ink); display: block; font-size: 1rem; }
.showcase__badge span { color: var(--muted); font-size: .86rem; }

/* ----------------------------- Footer ---------------------------- */
.site-footer { position: relative; background: var(--ink); color: #a9c2d1; padding-top: 72px; overflow: hidden; }
.site-footer::before { content:""; position:absolute; top:0; left:0; right:0; height:4px; background: var(--gradient-bright); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 44px; padding-bottom: 48px; }
.footer-brand img { height: 42px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .96; }
.footer-brand p { color: #90aabc; font-size: .95rem; max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #cfe0ea; transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--brand); color: #fff; transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-size: .92rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: #a9c2d1; font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 13px; font-size: .95rem; }
.footer-contact svg { flex: none; color: var(--aqua-soft); margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 24px 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .85rem; color: #7f9bad; }
.footer-bottom a { color: #7f9bad; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 20px; }

/* --------------------------- Cookie banner ----------------------- */
.cookie { position: fixed; bottom: 20px; left: 20px; right: 20px; z-index: 200; max-width: 580px; margin-inline: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 22px 24px; display: none; }
.cookie.show { display: block; animation: cookieUp .4s cubic-bezier(.2,.7,.3,1); }
@keyframes cookieUp { from { opacity: 0; transform: translateY(20px);} to { opacity:1; transform:none;} }
.cookie p { font-size: .9rem; color: var(--body); margin-bottom: 15px; }
.cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie .btn { padding: 11px 20px; font-size: .9rem; }

/* --------------------------- Prose (legal) ----------------------- */
.prose { max-width: 820px; margin-inline: auto; }
.prose h2 { font-size: 1.55rem; margin: 40px 0 14px; }
.prose h3 { margin: 28px 0 10px; }
.prose p, .prose li { color: var(--body); margin-bottom: 14px; }
.prose ul { list-style: disc; padding-left: 24px; margin-bottom: 18px; }
.prose ul li { margin-bottom: 8px; }
.prose a { text-decoration: underline; }

/* --------------------------- Reveal anim ------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover, .card:hover, .product:hover, .step-card:hover { transform: none; }
  .hero__panel { animation: none; }
  .marquee__track { animation: none; }
}

/* ============================ Responsive ========================= */
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 460px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .bento__lg, .bento__sm { grid-column: span 3; }
  .bento .feature-tall { grid-column: span 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .split { grid-template-columns: 1fr; }
  .showcase { grid-template-columns: 1fr; gap: 34px; }
  .step-card__line { display: none; }
}
@media (max-width: 780px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch; background: #fff;
    border-bottom: 1px solid var(--line); padding: 16px 24px 26px; gap: 4px; box-shadow: var(--shadow);
    transform: translateY(-145%); transition: transform .3s cubic-bezier(.2,.7,.3,1); z-index: 90;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 15px 12px; font-size: 1.05rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .nav__links a::after { display: none; }
  .nav__links .btn { margin-top: 14px; justify-content: center; }
  .nav__cta .btn { display: none; }
  .nav__phone span { display: none; }
  .hero__bg img { object-position: 74% center; }
  .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento__lg, .bento__sm, .bento__wide, .bento .feature-tall { grid-column: span 1; }
  .form-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero__panel-stats { gap: 8px; }
  .btn { width: 100%; }
  .hero__actions .btn, .cta .btn, .page-hero .btn { width: 100%; }
}
