:root {
  --navy-900: #16233b;
  --navy-950: #0f1a2d;
  --navy-700: #2a3a57;
  --teal-600: #0f6b5c;
  --teal-300: #a9d6cd;
  --cream: #ffffff;
  --cream-2: #f1f5f4;
  --ink: #1e2a3a;
  --muted: #5b6670;
  --border: #e1e6e5;
  --border-dark: rgba(247, 243, 234, 0.16);
  --radius: 12px;
  --radius-pill: 999px;
  --font-bold-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: 'Iowan Old Style', 'Palatino Linotype', Georgia, 'Times New Roman', serif;
  color: var(--navy-900);
  margin: 0 0 0.5em;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  color: var(--teal-600);
  font-weight: 700;
}

/* Top bar */
.top-bar {
  background: var(--navy-950);
  color: #cfd6e0;
  font-size: 13px;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
}
.top-bar-contacts { display: flex; align-items: center; gap: 20px; }
.top-bar a { color: inherit; text-decoration: none; }
.top-bar a:hover { color: #fff; }
.whatsapp-link { display: inline-flex; align-items: center; gap: 6px; color: #25D366; }
.whatsapp-link:hover { color: #25D366; opacity: 0.85; }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  z-index: 999;
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* Header */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: none;
}
.logo-mark { height: 42px; width: auto; }
.nav { display: flex; align-items: center; gap: 8px; flex: 1; justify-content: center; }
.nav a {
  color: var(--ink);
  text-decoration: none;
  margin: 0 12px;
  font-size: 15px;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.nav a.active, .nav a:hover {
  border-bottom-color: var(--teal-600);
  color: var(--navy-900);
}
.nav-cta { flex: none; }
.header-actions { display: flex; align-items: center; gap: 14px; flex: none; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  flex: none;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.page-home .site-header .nav-toggle span { background: #fff; }
.page-home .site-header.is-scrolled .nav-toggle span { background: var(--ink); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 10px 12px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  background: none;
}
.btn-no-icon { padding: 12px 24px; }
.icon-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex: none;
  line-height: 1;
}
.btn-primary { background: var(--navy-900); color: #fff; }
.btn-primary .icon-circle { background: rgba(255, 255, 255, 0.18); color: #fff; }
.btn-primary:hover { background: var(--navy-950); }
.btn-outline { border-color: var(--navy-900); color: var(--navy-900); }
.btn-outline .icon-circle { background: var(--navy-900); color: #fff; }
.btn-outline:hover { background: var(--navy-900); color: #fff; }
.btn-outline:hover .icon-circle { background: rgba(255, 255, 255, 0.2); color: #fff; }
.btn-on-dark { border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.btn-on-dark .icon-circle { background: rgba(255, 255, 255, 0.16); color: #fff; }
.btn-on-dark:hover { border-color: #fff; }
.btn-sm { padding: 9px 8px 9px 18px; font-size: 14px; }
.btn-sm .icon-circle { width: 26px; height: 26px; font-size: 12px; }

/* Sections */
.section { padding: 88px 0; }
.section-head { max-width: 620px; margin: 0 auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 16px; margin-top: 10px; }
.page-hero {
  position: relative;
  isolation: isolate;
  background: var(--cream);
  background-image: url('/images/pattern-leaf-navy.svg');
  background-repeat: repeat;
  border-bottom: 1px solid var(--border);
  padding: 64px 0 56px;
  overflow: hidden;
}
.page-title {
  display: block;
  font-family: var(--font-bold-sans);
  font-weight: 800;
  font-size: clamp(1.9rem, 1.3rem + 3vw, 3.1rem);
  color: var(--navy-900);
  margin-top: 18px;
}

/* Product teaser (home) */
.product-teaser { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.product-teaser-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 32px; }
.product-teaser-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.product-teaser-card:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(22, 35, 59, 0.1); }
.product-teaser-photo { aspect-ratio: 4 / 3; background: var(--cream); display: flex; align-items: center; justify-content: center; padding: 16px; }
.product-teaser-photo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.product-teaser-copy { padding: 16px 20px 24px; }
.product-teaser-copy h3 { font-size: 18px; margin-top: 4px; }
.product-teaser-copy p { color: var(--muted); font-size: 14px; margin: 6px 0 0; }
.product-teaser-cta { text-align: center; margin-top: 32px; }

/* Why grid (about page) */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 24px; }
.why-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.why-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--teal-600);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.why-card-icon svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 18px; }
.why-card p { color: var(--muted); font-size: 15px; margin: 0; }

/* CTA band */
.cta-band { background: var(--cream-2); }
.cta-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.cta-inner p { color: var(--muted); margin-bottom: 24px; }

/* Prose */
.prose { max-width: 720px; color: var(--muted); font-size: 16px; }
.prose p { margin-bottom: 16px; }

/* Products */
.product-category { margin-bottom: 36px; scroll-margin-top: 90px; }
.product-category h2 {
  font-size: 22px;
  border-bottom: 2px solid var(--teal-600);
  display: inline-block;
  padding-bottom: 4px;
}
.product-list { list-style: none; padding: 0; margin: 16px 0 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.product-list li { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 16px; font-size: 15px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; }
.contact-info-sub { color: var(--muted); font-size: 15px; margin-top: -4px; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.contact-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(22, 35, 59, 0.08); border-color: var(--teal-600); }
.contact-card-icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-600), var(--navy-900));
  color: #fff;
}
.contact-card-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 2px; }
.contact-card a, .contact-card span:not(.contact-card-label) { color: var(--ink); font-size: 15px; font-weight: 600; text-decoration: none; }
.contact-card a:hover { color: var(--navy-900); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 12px 32px rgba(22, 35, 59, 0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: flex; flex-direction: column; font-size: 14px; color: var(--muted); gap: 6px; }
.contact-form input, .contact-form textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px rgba(185, 146, 75, 0.18);
}
.btn-lg { padding: 14px 24px; font-size: 16px; align-self: flex-start; }
.form-success {
  background: var(--cream-2);
  color: var(--navy-900);
  border: 1px solid var(--teal-600);
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* Footer */
.site-footer { background: var(--navy-950); color: #b7c1cf; padding: 56px 0 24px; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; }
.footer-col h4 { color: #fff; font-family: inherit; font-size: 15px; }
.footer-col a { display: block; color: #b7c1cf; text-decoration: none; font-size: 14px; margin-bottom: 6px; }
.footer-col a:hover { color: var(--teal-300); }
.footer-col p { font-size: 14px; margin: 0 0 4px; }
.footer-brand-mark { height: 34px; width: auto; margin-bottom: 12px; filter: brightness(0) invert(1); }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  margin-top: 40px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #7f8ea3;
}

/* Product S-flow (products page) */
.flow-section { position: relative; margin: 32px 0 40px; }
.flow-line-svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; overflow: visible; }
.flow-line-path { fill: none; stroke: var(--teal-600); stroke-width: 2; stroke-opacity: 0.28; }
.flow-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 28px 0;
}
.flow-row-reverse { grid-template-columns: 1fr 1.2fr; }
.flow-row-reverse .flow-copy { order: 2; }
.flow-row-reverse .flow-image-col { order: 1; }
.flow-copy .eyebrow { display: block; }
.flow-copy h3 { font-size: 21px; margin-top: 6px; }
.flow-copy p { color: var(--muted); margin-top: 8px; font-size: 14.5px; }
.flow-image-col { text-align: center; }
.flow-image {
  appearance: none;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 4 / 3;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  font: inherit;
}
.flow-image:hover, .flow-image:focus-visible { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(22, 35, 59, 0.15); }
.flow-image:focus-visible { outline: 2px solid var(--teal-600); outline-offset: 3px; }
.flow-image img { max-width: 100%; max-height: 100%; object-fit: contain; }
.flow-view-hint { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-top: 8px; }
.flow-row { scroll-margin-top: 100px; }
.flow-row.is-hidden { display: none; }

/* Products filter layout */
.products-filter-layout { display: grid; grid-template-columns: 1fr 260px; gap: 40px; align-items: start; }
.products-filter-box {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.products-filter-box h4 { font-size: 16px; margin-top: 6px; }
.filter-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.filter-pill {
  appearance: none;
  text-align: left;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: var(--cream-2);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.filter-pill:hover { border-color: var(--teal-600); }
.filter-pill.is-active { background: var(--navy-900); color: #fff; }

@media (max-width: 880px) {
  .products-filter-layout { grid-template-columns: 1fr; }
  .products-filter-box { position: static; }
  .filter-list { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 720px) {
  .flow-row, .flow-row-reverse { grid-template-columns: 1fr; }
  .flow-row-reverse .flow-copy, .flow-row-reverse .flow-image-col { order: initial; }
  .flow-line-svg { display: none; }
}

/* Product label dialog */
.product-dialog {
  border: none;
  border-radius: 16px;
  padding: 0;
  max-width: min(640px, 92vw);
  width: 100%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}
.product-dialog::backdrop { background: rgba(15, 26, 45, 0.7); }
.product-dialog img { width: 100%; display: block; border-radius: 16px 16px 0 0; }
.product-dialog-name { margin: 0; padding: 16px 20px; font-weight: 700; color: var(--navy-900); text-align: center; }
.product-dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 26, 45, 0.55);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-dialog-close:hover { background: var(--navy-950); }

/* ============================================================
   Home page: dynamic wireframe-based redesign
   ============================================================ */

/* Transparent-over-photo header, solidifies on scroll (home only) */
.page-home .site-header {
  position: absolute;
  top: 38px;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: none;
  z-index: 30;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.page-home .site-header .logo-mark { filter: brightness(0) invert(1); transition: filter 0.25s ease; }
.page-home .site-header .nav a { color: #fff; }
.page-home .site-header .nav a.active, .page-home .site-header .nav a:hover { color: var(--teal-300); border-bottom-color: var(--teal-300); }
.page-home .site-header .nav-cta.btn-primary { background: #fff; color: var(--navy-900); }
.page-home .site-header .nav-cta.btn-primary .icon-circle { background: var(--cream-2); color: var(--navy-900); }
.page-home .site-header.is-scrolled {
  position: fixed;
  top: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.page-home .site-header.is-scrolled .logo-mark { filter: none; }
.page-home .site-header.is-scrolled .nav a { color: var(--ink); }
.page-home .site-header.is-scrolled .nav a.active, .page-home .site-header.is-scrolled .nav a:hover { color: var(--navy-900); border-bottom-color: var(--teal-600); }
.page-home .site-header.is-scrolled .nav-cta.btn-primary { background: var(--navy-900); color: #fff; }
.page-home .site-header.is-scrolled .nav-cta.btn-primary .icon-circle { background: rgba(255, 255, 255, 0.18); color: #fff; }

/* Mega hero */
.hero-mega { position: relative; min-height: 92vh; display: flex; align-items: center; color: #fff; overflow: hidden; isolation: isolate; }
.hero-mega-bg { position: absolute; inset: 0; z-index: -2; }
.hero-mega-bg img { width: 100%; height: 100%; object-fit: cover; animation: heroKenBurns 24s ease-in-out infinite alternate; }
.hero-mega::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(15, 26, 45, 0.5) 0%, rgba(15, 26, 45, 0.72) 55%, rgba(15, 26, 45, 0.94) 100%);
}
@keyframes heroKenBurns { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero-mega-inner { padding-top: 130px; padding-bottom: 170px; animation: heroFadeIn 0.9s ease both; }
@keyframes heroFadeIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero-logo-mark {
  display: block;
  height: clamp(64px, 40px + 6vw, 108px);
  width: auto;
  margin-bottom: 28px;
  filter: brightness(0) invert(1) drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}
.ribbon-tag { position: relative; display: inline-block; padding: 11px 30px; margin-bottom: 24px; }
.ribbon-tag::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--teal-600);
  transform: skewX(-16deg);
  z-index: -1;
  box-shadow: 0 14px 26px rgba(15, 107, 92, 0.4);
}
.ribbon-tag span { display: inline-block; color: #fff; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 13px; }
.hero-mega-word {
  font-family: var(--font-bold-sans);
  font-weight: 800;
  font-size: clamp(3rem, 1.6rem + 8vw, 7.2rem);
  line-height: 0.95;
  margin: 0 0 32px;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* Overlapping pain-point card */
.pain-card-wrap { position: relative; z-index: 5; margin-top: -130px; }
.pain-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 40px 70px -20px rgba(15, 26, 45, 0.35);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
}
.pain-card-copy { padding: 48px 44px; }
.pain-card-copy p.lead { font-size: 17px; color: var(--ink); margin: 0 0 18px; }
.pain-card-copy p.lead b { color: var(--navy-900); }
.pain-card-points { font-family: var(--font-bold-sans); }
.pain-card-points div { font-weight: 800; font-size: 26px; color: var(--teal-600); line-height: 1.3; }
.pain-card-photo { position: relative; min-height: 260px; background: var(--cream-2); }
.pain-card-photo img { width: 100%; height: 100%; object-fit: contain; padding: 24px; display: block; }
.pain-chevron-down { width: 0; height: 0; margin: 0 auto; border-left: 18px solid transparent; border-right: 18px solid transparent; border-top: 22px solid var(--teal-600); }
@media (max-width: 880px) {
  .pain-card { grid-template-columns: 1fr; }
  .pain-card-wrap { margin-top: -80px; }
}

/* Centered statement band */
.statement-band { position: relative; padding: 110px 0 70px; text-align: center; overflow: hidden; }
.statement-band-bg { position: absolute; inset: 0; opacity: 0.06; background-image: url('/images/pattern-leaf-navy.svg'); background-repeat: repeat; }
.statement-band-inner { position: relative; }
.statement-band-inner h2 { font-family: var(--font-bold-sans); font-weight: 300; color: var(--muted); font-size: clamp(1.5rem, 1.1rem + 2vw, 2.2rem); margin: 0; }
.statement-word { display: block; font-family: var(--font-bold-sans); font-weight: 800; color: var(--navy-900); font-size: clamp(2.4rem, 1.6rem + 4vw, 4.2rem); margin: 6px 0; }
.statement-word .dot { color: var(--teal-600); }
.statement-band p.sub { color: var(--muted); font-size: 18px; margin-top: 14px; }

/* Wave divider (light -> dark) */
.wave-divider { position: relative; height: 110px; margin-top: -2px; z-index: 1; line-height: 0; }
.wave-divider svg { width: 100%; height: 100%; display: block; }

/* Dark "journey" band */
.journey-band { background: var(--navy-900); color: #cfd6e0; padding: 30px 0 100px; text-align: center; }
.journey-band h2 {
  font-family: var(--font-bold-sans);
  font-weight: 400;
  font-size: clamp(1.3rem, 1rem + 1.6vw, 1.9rem);
  color: #fff;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.55;
}
.journey-band h2 .hl { color: var(--teal-300); font-weight: 700; }

/* Chevron divider (dark -> teal) */
.chevron-divider { position: relative; height: 80px; margin-top: -1px; line-height: 0; }
.chevron-divider svg { width: 100%; height: 100%; display: block; }

/* Teal pillar band */
.pillar-band { background: var(--teal-600); color: #fff; padding: 60px 0 90px; text-align: center; }
.pillar-band h2 { color: #fff; font-family: var(--font-bold-sans); font-weight: 400; font-size: clamp(1.2rem, 1rem + 1.2vw, 1.6rem); max-width: 680px; margin: 0 auto; }
.pillar-band h2 b { font-weight: 800; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 760px; margin: 56px auto 0; }
.pillar-item { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.pillar-icon { width: 84px; height: 84px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.55); display: flex; align-items: center; justify-content: center; flex: none; }
.pillar-icon svg { width: 32px; height: 32px; }
.pillar-label { font-weight: 700; font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase; }
@media (max-width: 640px) { .pillar-grid { grid-template-columns: 1fr; gap: 40px; } }

/* Overlapping dark CTA banner */
.cta-overlap-band { position: relative; z-index: 6; margin-top: -56px; padding: 0 24px; }
.cta-overlap-inner {
  background: var(--navy-900);
  border-radius: 12px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 30px 50px -18px rgba(15, 26, 45, 0.4);
}
.cta-overlap-text p { margin: 0; color: #cfd6e0; font-size: 14px; }
.cta-overlap-text .big { font-family: var(--font-bold-sans); font-weight: 800; font-size: 22px; color: #fff; }
.cta-overlap-text .big .hl { color: var(--teal-300); }

/* Split lead-out section */
.lead-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.lead-split-photo { position: relative; }
.lead-split-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lead-split-copy { background: var(--cream-2); display: flex; flex-direction: column; justify-content: center; padding: 56px; }
.lead-split-copy .mega {
  font-family: var(--font-bold-sans);
  font-weight: 800;
  font-size: clamp(1.8rem, 1.2rem + 2.6vw, 2.7rem);
  color: var(--navy-900);
  line-height: 1.15;
  margin: 0;
}
.lead-split-copy .mega .hl { color: var(--teal-600); }
.lead-split-copy .btn { margin-top: 26px; align-self: flex-start; }
@media (max-width: 880px) { .lead-split { grid-template-columns: 1fr; } .lead-split-photo { min-height: 280px; } }

/* Final light CTA band */
.final-cta-band { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 36px 0; }
.final-cta-inner { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; text-align: center; }
.final-cta-inner h2 { margin: 0; font-family: var(--font-bold-sans); font-weight: 800; font-size: clamp(1.25rem, 1.05rem + 1vw, 1.6rem); color: var(--navy-900); }
.final-cta-inner h2 .hl { color: var(--teal-600); }

/* Scroll-reveal */
[data-animate] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-animate].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-mega-bg img { animation: none; }
  .hero-mega-inner { animation: none; }
}

/* Responsive */
@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .top-bar-inner { flex-direction: column; align-items: flex-start; gap: 6px; padding: 8px 24px; }
  .top-bar-contacts { flex-wrap: wrap; row-gap: 4px; }

  .header-inner { flex-wrap: wrap; row-gap: 10px; }
  .logo-mark { height: 34px; }
  .nav-cta { padding: 8px 6px 8px 14px; font-size: 13px; }
  .nav-cta .icon-circle { width: 22px; height: 22px; font-size: 11px; }
  .nav-toggle { display: flex; }
  .nav {
    display: none;
    order: 3;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 6px 16px;
    box-shadow: 0 12px 24px rgba(15, 26, 45, 0.12);
  }
  .nav.is-open { display: flex; }
  .nav a { margin: 0; padding: 12px 2px; border-bottom: 1px solid var(--border); color: var(--ink); }
  .nav a:last-child { border-bottom: none; }
  .page-home .site-header .nav a { color: var(--ink); }
  .page-home .site-header .nav a.active, .page-home .site-header .nav a:hover { color: var(--navy-900); border-bottom-color: var(--border); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 6px; }

  .section { padding: 56px 0; }
  .hero-mega-inner { padding-top: 96px; padding-bottom: 90px; }
  .pain-card-copy { padding: 32px 24px; }
  .pain-card-points div { font-size: 21px; }
  .lead-split-copy { padding: 36px 24px; }
  .cta-overlap-inner { padding: 24px; }
  .cta-overlap-text .big { font-size: 19px; }
  .pillar-band { padding: 44px 0 64px; }
  .journey-band { padding: 24px 0 64px; }
  .statement-band { padding: 64px 0 48px; }
  .contact-form { padding: 24px; }
}
@media (max-width: 480px) {
  .top-bar-contacts a[href^="mailto"] { display: none; }
  .wa-label { display: none; }
  .top-bar-send { display: none; }
  .whatsapp-float { width: 50px; height: 50px; right: 16px; bottom: 16px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}
