/* =========================================================
   Wellnexis — Hoja de estilos principal
   Marca Aupura · Bienestar cardiovascular
   ========================================================= */

/* ---------- Tokens de diseño ---------- */
:root {
  /* Paleta */
  --bg:            #F4F9FD;
  --bg-soft:       #E9F2FA;
  --bg-band:       #EFF6FC;
  --surface:       #FFFFFF;
  --surface-tint:  #F8FBFE;

  --ink:           #0A1F44;
  --ink-strong:    #061634;
  --ink-soft:      #3D5071;
  --ink-muted:     #6B7B95;

  --brand:         #0EA5E9;
  --brand-deep:    #0B5394;
  --brand-dark:    #0A1F44;
  --brand-light:   #BFE2F6;
  --brand-haze:    #DCEEFB;
  --accent:        #06B6D4;

  --border:        #DCE7F2;
  --border-soft:   #E8EFF7;
  --success:       #10B981;
  --warn:          #E0A800;

  /* Tipografía */
  --font-display:  "Fraunces", "Times New Roman", serif;
  --font-body:     "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Sombras */
  --shadow-xs: 0 1px 2px rgba(10, 31, 68, 0.05);
  --shadow-sm: 0 4px 14px rgba(10, 31, 68, 0.06);
  --shadow-md: 0 14px 40px rgba(10, 31, 68, 0.08);
  --shadow-lg: 0 30px 60px rgba(10, 31, 68, 0.10);

  /* Radios */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* Espaciado base */
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
}

/* ---------- Reset suave ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, picture, svg {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: var(--brand-deep);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--brand); }

button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-strong);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  line-height: 1.15;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

ul { padding-left: 1.1em; }
li { margin-bottom: .35em; color: var(--ink-soft); }

::selection { background: var(--brand-light); color: var(--ink-strong); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding: clamp(56px, 9vw, 110px) 0;
}

.section--tight { padding: clamp(40px, 6vw, 70px) 0; }
.section--band  { background: var(--bg-band); }
.section--white { background: var(--surface); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-deep);
  font-weight: 600;
  margin-bottom: 14px;
  padding: 6px 14px;
  background: var(--brand-haze);
  border-radius: 999px;
}

.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: linear-gradient(135deg, #0EA5E9 0%, #0B5394 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(11, 83, 148, 0.28);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(11, 83, 148, 0.34);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--brand-dark);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  background: var(--surface);
  border-color: var(--brand);
  color: var(--brand-deep);
}

.btn--light {
  background: var(--surface);
  color: var(--brand-dark);
  box-shadow: var(--shadow-sm);
}
.btn--light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn .arrow {
  width: 18px; height: 18px;
  transition: transform .25s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Cabecera ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink-strong);
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--ink-strong); }
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, #0EA5E9, #0B5394);
  position: relative;
  flex-shrink: 0;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.22);
}

.menu {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.menu a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: .96rem;
  position: relative;
  padding: 6px 0;
}
.menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0;
  background: var(--brand);
  transition: width .25s ease;
}
.menu a:hover { color: var(--ink-strong); }
.menu a:hover::after,
.menu a.is-active::after { width: 100%; }

.nav-cta { display: inline-flex; }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  width: 18px; height: 2px;
  background: var(--ink-strong);
  position: relative;
  display: block;
  transition: background .2s;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink-strong);
  transition: transform .25s ease;
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after  { top:  6px; }

.menu-toggle.is-open span { background: transparent; }
.menu-toggle.is-open span::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 110px) 0 clamp(70px, 10vw, 130px);
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 110% -20%, rgba(14, 165, 233, 0.18), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(11, 83, 148, 0.12), transparent 60%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 70px);
  align-items: center;
}

.hero h1 {
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--brand-deep);
  font-weight: 400;
}

.hero .lead {
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 26px;
}
.hero-stats .stat-value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--ink-strong);
  display: block;
  margin-bottom: 2px;
}
.hero-stats .stat-label {
  font-size: .85rem;
  color: var(--ink-muted);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 31, 68, 0.35));
  pointer-events: none;
}

.hero-floater {
  position: absolute;
  bottom: 26px;
  left: 26px;
  right: 26px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}
.hero-floater-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--brand-haze);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-deep);
  flex-shrink: 0;
}
.hero-floater-text { font-size: .92rem; color: var(--ink-soft); }
.hero-floater-text strong { color: var(--ink-strong); display: block; font-weight: 600; }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 24px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}
.trust-item svg { color: var(--brand-deep); }

/* ---------- Pilares / introducción ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.pillars {
  display: grid;
  gap: 14px;
}

.pillar {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-light);
}
.pillar-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-haze), var(--brand-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-deep);
}
.pillar h3 { margin-bottom: 6px; font-size: 1.15rem; }
.pillar p { margin: 0; font-size: .95rem; }

/* ---------- Product showcase ---------- */
.showcase {
  position: relative;
  overflow: hidden;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.showcase-media {
  position: relative;
  border-radius: var(--r-xl);
  background:
    radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.16), transparent 65%),
    linear-gradient(180deg, var(--bg-soft), #DDEEFA);
  padding: clamp(28px, 5vw, 60px);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase-media img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(10, 31, 68, 0.18));
}
.showcase-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--surface);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-deep);
  box-shadow: var(--shadow-xs);
}

.showcase h2 { margin-bottom: 18px; }
.showcase ul.feature-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
  display: grid;
  gap: 14px;
}
.showcase ul.feature-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0;
}
.showcase ul.feature-list svg { color: var(--brand); margin-top: 4px; }
.showcase ul.feature-list strong { color: var(--ink-strong); font-weight: 600; display:block; margin-bottom: 2px; }

/* ---------- Lifestyle banda ---------- */
.lifestyle {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.lifestyle-media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: var(--shadow-md);
}
.lifestyle-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.lifestyle-quote {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 18px 22px;
  background: rgba(10, 31, 68, 0.78);
  color: #fff;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.4;
  backdrop-filter: blur(8px);
}

.lifestyle h2 { margin-bottom: 16px; }
.routine-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
  counter-reset: step;
}
.routine-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 14px 18px;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border-soft);
  align-items: start;
}
.routine-list li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  color: var(--brand-deep);
  font-size: 1.1rem;
}
.routine-list h4 { margin: 0 0 2px; font-size: 1rem; color: var(--ink-strong); font-family: var(--font-body); font-weight: 600; }
.routine-list p { margin: 0; font-size: .92rem; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
}
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item.is-open {
  border-color: var(--brand-light);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 20px 24px;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink-strong);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .toggle-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--brand-haze);
  color: var(--brand-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, background .25s ease;
  font-size: 1.1rem;
  line-height: 1;
}
.faq-item.is-open .toggle-icon { transform: rotate(45deg); background: var(--brand); color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a > div { padding: 0 24px 22px; color: var(--ink-soft); font-size: .98rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, #0B5394 0%, #0A1F44 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 70px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  right: -120px; top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.45), transparent 70%);
}
.cta-banner h2, .cta-banner p { color: #fff; position: relative; }
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,0.78); margin-bottom: 0; max-width: 50ch; }
.cta-banner .cta-actions {
  position: relative;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brand-dark);
  color: #C2D2E4;
  padding-top: 70px;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-about p { color: #93A8C0; font-size: .94rem; margin-bottom: 14px; }
.footer-about .brand { color: #fff; }
.footer-about .brand-mark { background: linear-gradient(135deg, #6EC1E4, #0EA5E9); }

.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul a {
  color: #B6C8DE;
  font-size: .94rem;
}
.footer-grid ul a:hover { color: #fff; }
.footer-contact p { font-size: .94rem; margin-bottom: 8px; color: #B6C8DE; }
.footer-contact strong { color: #fff; display: block; font-weight: 500; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .86rem;
  color: #8A9DB6;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: #B6C8DE; margin-left: 18px; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Forms ---------- */
.form {
  display: grid;
  gap: 18px;
  background: var(--surface);
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: .85rem;
  color: var(--ink-strong);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.field input,
.field textarea,
.field select {
  font-family: inherit;
  font-size: 1rem;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-tint);
  color: var(--ink-strong);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  width: 100%;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error-text {
  font-size: .82rem;
  color: #C0392B;
  display: none;
}
.field.has-error input,
.field.has-error textarea {
  border-color: #C0392B;
  background: #FCF1EE;
}
.field.has-error .error-text { display: block; }

.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .88rem;
  color: var(--ink-soft);
}
.form-consent input { margin-top: 4px; accent-color: var(--brand); }

.form-submit { justify-self: start; }

/* ---------- Contact page layout ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(36px, 5vw, 60px);
}
.contact-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-soft);
  padding: 28px;
  margin-bottom: 18px;
}
.contact-card h4 { margin-bottom: 12px; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; font-size: .82rem; color: var(--brand-deep); }
.contact-card p { margin: 0 0 6px; color: var(--ink-strong); font-weight: 500; }
.contact-card span { color: var(--ink-muted); font-size: .92rem; }

.map-block {
  height: 320px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #DCEEFB 0%, #BFE2F6 100%);
  border: 1px solid var(--border-soft);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-deep);
  text-align: center;
  padding: 30px;
}
.map-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 30px, rgba(11, 83, 148, 0.06) 30px 31px),
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(11, 83, 148, 0.06) 30px 31px);
}
.map-pin {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--brand);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  z-index: 1;
  box-shadow: 0 0 0 8px rgba(14, 165, 233, 0.25), 0 12px 24px rgba(11, 83, 148, 0.3);
  margin-bottom: 14px;
}
.map-content { position: relative; z-index: 1; }
.map-content strong { display:block; color: var(--ink-strong); margin-bottom: 4px; }

/* ---------- About page ---------- */
.subhero {
  padding: clamp(50px, 8vw, 90px) 0 clamp(30px, 4vw, 50px);
  background:
    radial-gradient(700px 400px at 90% 0%, rgba(14,165,233,0.16), transparent 60%),
    var(--bg);
  text-align: center;
}
.subhero h1 { margin-bottom: 16px; }
.subhero .lead { margin: 0 auto; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.split--reverse .split-text { order: 2; }

.split-media {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

.standards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.standard {
  padding: 28px;
  border: 1px solid var(--border-soft);
  background: var(--surface);
  border-radius: var(--r-md);
  border-top: 3px solid var(--brand);
}
.standard:nth-child(2) { border-top-color: var(--brand-deep); margin-top: 30px; }
.standard:nth-child(3) { border-top-color: var(--accent); }
.standard h3 { font-size: 1.1rem; margin-bottom: 8px; }
.standard p  { font-size: .94rem; margin: 0; }

.mission {
  background: var(--brand-dark);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 70px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mission::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.22), transparent 70%);
  left: -150px; top: -200px;
}
.mission h2 { color: #fff; max-width: 22ch; margin: 0 auto 18px; }
.mission p  { color: rgba(255,255,255,0.78); max-width: 56ch; margin: 0 auto; position: relative; }
.mission .eyebrow {
  background: rgba(255,255,255,0.1);
  color: #BFE2F6;
}

/* ---------- Success page ---------- */
.success-screen {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}
.success-card {
  max-width: 560px;
  text-align: center;
  background: var(--surface);
  padding: clamp(40px, 5vw, 60px);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft);
}
.success-icon {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #BFE2F6, #0EA5E9);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 14px 30px rgba(14,165,233,0.32);
}

/* ---------- Legal pages ---------- */
.legal-page {
  background: var(--bg);
}
.legal-shell {
  max-width: 820px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: clamp(36px, 5vw, 64px);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}
.legal-shell h1 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 8px; }
.legal-shell .meta { color: var(--ink-muted); font-size: .9rem; margin-bottom: 30px; padding-bottom: 22px; border-bottom: 1px solid var(--border-soft); }
.legal-shell h2 { font-size: 1.35rem; margin-top: 36px; margin-bottom: 12px; }
.legal-shell p, .legal-shell li { font-size: .98rem; line-height: 1.7; }
.legal-shell ul { margin-bottom: 16px; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  z-index: 100;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(10, 31, 68, 0.96);
  backdrop-filter: blur(12px);
  color: #fff;
  border-radius: var(--r-md);
  padding: 22px 26px;
  display: none;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-lg);
  flex-wrap: wrap;
}
.cookie-banner.is-visible {
  display: flex;
  animation: slideUp .4s ease;
}
.cookie-banner p {
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-size: .92rem;
  flex: 1;
  min-width: 240px;
}
.cookie-banner a { color: #BFE2F6; text-decoration: underline; }
.cookie-banner .cookie-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.cookie-banner button {
  padding: 10px 20px;
  border-radius: 999px;
  border: 0;
  font-weight: 600;
  font-size: .9rem;
}
.cookie-accept { background: var(--brand); color: #fff; }
.cookie-accept:hover { background: #0096D6; }
.cookie-decline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.cookie-decline:hover { border-color: #fff; }

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid,
  .intro-grid,
  .showcase-grid,
  .lifestyle,
  .faq-wrap,
  .cta-banner,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .split--reverse .split-text { order: 0; }
  .standards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner .cta-actions { justify-content: flex-start; }
  .hero-visual { aspect-ratio: 4/3; max-height: 460px; }
  .showcase-media { aspect-ratio: 4/3; }
}

@media (max-width: 720px) {
  .menu-toggle { display: inline-flex; }
  .menu {
    position: absolute;
    top: 100%;
    left: 16px; right: 16px;
    background: var(--surface);
    flex-direction: column;
    padding: 18px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
    gap: 4px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    border: 1px solid var(--border-soft);
  }
  .menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .menu li { padding: 6px 0; }
  .menu a { display: block; padding: 8px 6px; }
  .nav-cta { display: none; }

  .trust-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer-bottom a { margin-left: 0; margin-right: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px; }
  h1 { font-size: 2.1rem; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero-floater { left: 14px; right: 14px; bottom: 14px; padding: 14px 16px; }
  .hero-floater-icon { width: 36px; height: 36px; }
  .hero-stats .stat-value { font-size: 1.4rem; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .cookie-banner, .nav-cta { display: none; }
  body { background: #fff; color: #000; }
}
