/* =========================================================
   Natare — swim school management software
   Design system: deep ocean navy + aqua
   ========================================================= */

:root {
  /* Ink / navy scale */
  --ink-900: #03101a;
  --ink-800: #06192a;
  --ink-700: #0a2438;
  --ink-600: #123249;
  --ink-500: #1d4460;
  --ink-400: #3d6480;

  /* Neutrals */
  --paper: #ffffff;
  --paper-2: #f4f8fa;
  --paper-3: #eaf1f5;
  --line: #dbe6ec;
  --line-soft: #edf3f6;

  /* Text */
  --text: #0a1f2e;
  --text-2: #43606f;
  --text-3: #6b8492;
  --on-dark: #eaf4f8;
  --on-dark-2: #a3c0cf;
  --on-dark-3: #7ea0b3;

  /* Aqua accents */
  --aqua: #00c6c9;
  --aqua-bright: #2ce0dd;
  --aqua-deep: #04808f;
  --aqua-ink: #00606d;
  --aqua-wash: #e6f8f9;

  /* Support */
  --gold: #d9a441;
  --coral: #ff7a59;
  --green: #17a673;

  /* Shape */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* Shadow */
  --sh-1: 0 1px 2px rgba(6, 25, 42, .05), 0 4px 14px rgba(6, 25, 42, .05);
  --sh-2: 0 2px 6px rgba(6, 25, 42, .06), 0 18px 44px -14px rgba(6, 25, 42, .18);
  --sh-3: 0 30px 80px -28px rgba(3, 16, 26, .45);

  /* Rhythm */
  --wrap: 1200px;
  --wrap-narrow: 860px;
  --gut: 24px;

  --font-display: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.08;
  margin: 0 0 .5em;
  color: var(--ink-900);
}
p { margin: 0 0 1.1em; }
ul { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: .45em; }
strong { font-weight: 650; color: var(--ink-800); }

h1 { font-size: clamp(2.45rem, 5.4vw, 4.15rem); }
h2 { font-size: clamp(1.95rem, 3.6vw, 2.95rem); }
h3 { font-size: clamp(1.18rem, 1.6vw, 1.4rem); letter-spacing: -0.02em; }
h4 { font-size: 1.02rem; letter-spacing: -0.01em; font-weight: 700; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }
.wrap-narrow { max-width: var(--wrap-narrow); }
section { position: relative; }
.section { padding: clamp(64px, 8vw, 116px) 0; }
.section-sm { padding: clamp(48px, 5vw, 76px) 0; }
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

.dark { background: var(--ink-900); color: var(--on-dark); }
.dark h1, .dark h2, .dark h3, .dark h4 { color: #fff; }
.dark p { color: var(--on-dark-2); }
.dark strong { color: #fff; }
.tint { background: var(--paper-2); }

/* ---------- Type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-display);
  font-size: .735rem; font-weight: 700;
  letter-spacing: .17em; text-transform: uppercase;
  color: var(--aqua-deep);
  margin-bottom: 1.1rem;
}
.dark .eyebrow { color: var(--aqua-bright); }
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: currentColor; opacity: .5;
}
.lede { font-size: clamp(1.06rem, 1.5vw, 1.22rem); color: var(--text-2); max-width: 62ch; }
.dark .lede { color: var(--on-dark-2); }
.small { font-size: .92rem; color: var(--text-3); }
.dark .small { color: var(--on-dark-3); }
.tiny { font-size: .8rem; line-height: 1.6; color: var(--text-3); }
.dark .tiny { color: var(--on-dark-3); }
.aqua-text { color: var(--aqua-deep); }
.dark .aqua-text { color: var(--aqua-bright); }
.balance { text-wrap: balance; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--font-display); font-weight: 700; font-size: .96rem;
  letter-spacing: -0.01em;
  padding: 15px 26px; border-radius: var(--r-pill);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary {
  background: linear-gradient(135deg, var(--aqua) 0%, var(--aqua-deep) 100%);
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(4, 128, 143, .75);
}
.btn-primary:hover { box-shadow: 0 16px 34px -10px rgba(4, 128, 143, .85); }

.btn-wa { background: #25d366; color: #06301a; box-shadow: 0 10px 26px -10px rgba(37, 211, 102, .8); }
.btn-wa:hover { background: #1ec25c; }

.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink-800); }
.btn-ghost:hover { border-color: var(--ink-400); background: #fff; }
.dark .btn-ghost,
.hero .btn-ghost,
.page-hero .btn-ghost,
.cta-band .btn-ghost { border-color: rgba(255,255,255,.24); color: #fff; background: rgba(255,255,255,.04); }
.dark .btn-ghost:hover,
.hero .btn-ghost:hover,
.page-hero .btn-ghost:hover,
.cta-band .btn-ghost:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.1); color: #fff; }

.btn-lg { padding: 17px 32px; font-size: 1.02rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.center .btn-row { justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45em;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  color: var(--aqua-deep);
}
.link-arrow::after { content: "→"; transition: transform .18s ease; }
.link-arrow:hover::after { transform: translateX(4px); }
.dark .link-arrow, .hero .link-arrow, .page-hero .link-arrow, .cta-band .link-arrow { color: var(--aqua-bright); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner { display: flex; align-items: center; gap: 28px; height: 74px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.24rem; letter-spacing: -0.03em; color: var(--ink-900); }
.brand-mark { width: 32px; height: 32px; flex: none; }
.brand-tld { color: var(--aqua-deep); }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  padding: 9px 14px; border-radius: var(--r-pill);
  font-size: .935rem; font-weight: 550; color: var(--text-2);
  transition: color .15s ease, background .15s ease;
}
.nav a:hover { color: var(--ink-900); background: var(--paper-2); }
.nav a.is-active { color: var(--ink-900); font-weight: 700; }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 11px 20px; font-size: .9rem; }

.nav-toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff;
  align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink-800); position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink-800); }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

@media (max-width: 940px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header { background: #fff; }
  .site-header.open .header-inner { flex-wrap: wrap; height: auto; min-height: 74px; padding-bottom: 20px; }
  .site-header.open .nav {
    display: flex; flex-direction: column; align-items: stretch;
    order: 3; width: 100%; margin: 6px 0 0; gap: 2px;
    border-top: 1px solid var(--line-soft); padding-top: 8px;
  }
  .site-header.open .nav a { padding: 13px 10px; font-size: 1.02rem; border-radius: var(--r-sm); }
  .site-header.open .header-cta { display: flex; order: 4; width: 100%; margin-top: 12px; }
  .site-header.open .header-cta .btn { flex: 1; padding: 14px 18px; font-size: .95rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 100% at 50% 0%, var(--ink-700) 0%, var(--ink-900) 62%);
  color: var(--on-dark);
  padding: clamp(72px, 9vw, 128px) 0 clamp(64px, 8vw, 104px);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(46% 42% at 82% 8%, rgba(0, 198, 201, .26), transparent 70%),
    radial-gradient(40% 40% at 10% 90%, rgba(0, 198, 201, .14), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(3, 16, 26, .0));
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }
.hero h1 { color: #fff; margin-bottom: .42em; }
.hero h1 .grad {
  background: linear-gradient(100deg, var(--aqua-bright), #7ef0d5);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lede { font-size: clamp(1.1rem, 1.75vw, 1.32rem); color: var(--on-dark-2); }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }

.pill {
  display: inline-flex; align-items: center; gap: .6em;
  padding: 7px 16px 7px 8px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  font-size: .84rem; font-weight: 550; color: var(--on-dark);
  margin-bottom: 26px;
}
.pill b { font-weight: 700; }
.pill .flag {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua), var(--aqua-deep)); font-size: .72rem;
}
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 30px; }
.hero-meta span { display: inline-flex; align-items: center; gap: .5em; font-size: .9rem; color: var(--on-dark-3); }
.hero-meta svg { width: 16px; height: 16px; color: var(--aqua-bright); flex: none; }

/* ---------- App mock ---------- */
.mock {
  border-radius: var(--r-lg); overflow: hidden;
  background: #0b1f2e;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--sh-3);
}
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.08); }
.mock-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.2); }
.mock-url { margin-left: 10px; font-size: .74rem; color: var(--on-dark-3); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.mock-body { padding: 18px; display: grid; gap: 14px; }
.mock-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mock-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 13px 14px; }
.mock-card .k { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--on-dark-3); }
.mock-card .v { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: #fff; letter-spacing: -0.03em; line-height: 1.2; }
.mock-card .d { font-size: .72rem; color: var(--aqua-bright); }
.mock-grid { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 14px; }
.mock-grid-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.mock-grid-head b { font-family: var(--font-display); font-size: .9rem; color: #fff; }
.mock-tabs { display: flex; gap: 4px; }
.mock-tabs i { font-style: normal; font-size: .66rem; padding: 3px 9px; border-radius: 999px; background: rgba(255,255,255,.07); color: var(--on-dark-3); }
.mock-tabs i.on { background: var(--aqua); color: #05242a; font-weight: 700; }
.lane { display: grid; grid-template-columns: 54px 1fr; gap: 10px; align-items: center; margin-bottom: 7px; }
.lane span { font-size: .66rem; color: var(--on-dark-3); }
.lane-track { height: 26px; border-radius: 7px; background: rgba(255,255,255,.05); position: relative; overflow: hidden; }
.blk { position: absolute; top: 3px; bottom: 3px; border-radius: 5px; font-size: .6rem; display: flex; align-items: center; padding: 0 7px; color: #04242a; font-weight: 700; white-space: nowrap; overflow: hidden; }
.blk.a { background: linear-gradient(120deg, #2ce0dd, #00c6c9); }
.blk.b { background: linear-gradient(120deg, #7ef0d5, #37c9a8); }
.blk.c { background: linear-gradient(120deg, #ffd28a, #f0b455); }
.blk.warn { background: repeating-linear-gradient(45deg, #ff9b7d, #ff9b7d 6px, #ff7a59 6px, #ff7a59 12px); }

/* ---------- Logo / trust strip ---------- */
.strip { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--paper-2); }
.strip-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 48px; padding: 26px 0; }
.strip-inner span { font-family: var(--font-display); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 22px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .g4 { grid-template-columns: repeat(2, 1fr); } .g3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: var(--line-soft); }
.card h3 { margin-bottom: .5em; }
.card p { margin-bottom: 0; color: var(--text-2); font-size: .97rem; }
.dark .card { background: rgba(255,255,255,.045); border-color: rgba(255,255,255,.1); }
.dark .card:hover { background: rgba(255,255,255,.075); }
.dark .card p { color: var(--on-dark-2); }

.ico {
  width: 46px; height: 46px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: var(--aqua-wash); color: var(--aqua-ink);
  margin-bottom: 18px;
}
.ico svg { width: 22px; height: 22px; }
.dark .ico { background: rgba(0, 198, 201, .16); color: var(--aqua-bright); }

/* Module cards with numbering */
.module { position: relative; padding-top: 30px; }
.module .num {
  position: absolute; top: 22px; right: 26px;
  font-family: var(--font-display); font-weight: 800; font-size: .8rem;
  color: var(--paper-3); letter-spacing: .04em;
}
.dark .module .num { color: rgba(255,255,255,.16); }
.module ul { margin: 14px 0 0; padding-left: 0; list-style: none; }
.module li { position: relative; padding-left: 24px; font-size: .93rem; color: var(--text-2); margin-bottom: .38em; }
.module li::before {
  content: ""; position: absolute; left: 4px; top: .62em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--aqua); opacity: .85;
}
.dark .module li { color: var(--on-dark-2); }

/* ---------- Feature rows ---------- */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.frow + .frow { margin-top: clamp(52px, 7vw, 96px); }
.frow.flip .frow-media { order: -1; }
@media (max-width: 900px) { .frow { grid-template-columns: 1fr; } .frow.flip .frow-media { order: 0; } }
.frow-media {
  border-radius: var(--r-lg); padding: 26px;
  background: linear-gradient(160deg, var(--paper-2), #fff);
  border: 1px solid var(--line);
}
.dark .frow-media { background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border-color: rgba(255,255,255,.1); }

.checks { list-style: none; padding: 0; margin: 20px 0 0; }
.checks li { position: relative; padding-left: 30px; margin-bottom: .6em; color: var(--text-2); font-size: .97rem; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .35em;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--aqua-wash) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2304808f' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}
.dark .checks li { color: var(--on-dark-2); }
.dark .checks li::before { background-color: rgba(44,224,221,.18); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.dark .stats { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.1); }
.stat { background: #fff; padding: 30px 26px; }
.dark .stat { background: var(--ink-900); }
.stat b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 3vw, 2.6rem); letter-spacing: -0.04em; color: var(--ink-900); line-height: 1.1; }
.dark .stat b { color: #fff; }
.stat span { font-size: .88rem; color: var(--text-3); }
.dark .stat span { color: var(--on-dark-3); }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Comparison table ---------- */
/* Grid/flex children must be allowed to shrink, or wide tables force page overflow */
.grid > *, .frow > *, .hero-grid > *, .contact-grid > *, .footer-grid > *, .stats > * { min-width: 0; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r-md); border: 1px solid var(--line); background: #fff; max-width: 100%; }
table.cmp { width: 100%; border-collapse: collapse; min-width: 720px; font-size: .95rem; }
table.cmp th, table.cmp td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
table.cmp thead th {
  background: var(--ink-900); color: #fff; font-family: var(--font-display);
  font-size: .84rem; letter-spacing: .04em; font-weight: 700; white-space: nowrap;
}
table.cmp thead th:nth-child(2) { background: linear-gradient(135deg, var(--aqua-deep), var(--aqua-ink)); }
table.cmp tbody th { font-weight: 650; color: var(--ink-800); width: 30%; background: var(--paper-2); }
table.cmp td { color: var(--text-2); }
table.cmp td.yes { color: var(--ink-800); }
table.cmp tbody tr:last-child th, table.cmp tbody tr:last-child td { border-bottom: 0; }
.tick { display: inline-flex; align-items: center; gap: .5em; font-weight: 600; color: var(--aqua-ink); }
.tick::before { content: "✓"; font-weight: 800; }
.cross { color: var(--text-3); }
.cross::before { content: "—"; margin-right: .5em; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink-900);
  letter-spacing: -0.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--aqua-deep); line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--text-2); padding-right: 44px; margin-bottom: 22px; font-size: .98rem; }

/* ---------- Steps ---------- */
.steps { counter-reset: s; display: grid; gap: 20px; }
.step { position: relative; padding-left: 66px; }
.step::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  position: absolute; left: 0; top: 2px;
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: .92rem;
  background: var(--ink-900); color: var(--aqua-bright);
}
.dark .step::before { background: rgba(0,198,201,.18); color: var(--aqua-bright); }
.step h4 { margin-bottom: .3em; }
.step p { color: var(--text-2); font-size: .95rem; margin-bottom: 0; }
.dark .step p { color: var(--on-dark-2); }

/* ---------- Quote ---------- */
.quote {
  border-left: 3px solid var(--aqua);
  padding: 4px 0 4px 28px;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.45;
  letter-spacing: -0.02em; color: var(--ink-900);
}
.dark .quote { color: #fff; }
.quote-by { display: block; margin-top: 16px; font-family: var(--font-body); font-size: .9rem; font-weight: 500; color: var(--text-3); letter-spacing: 0; }
.dark .quote-by { color: var(--on-dark-3); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--ink-800) 0%, var(--ink-900) 100%);
  border-radius: var(--r-xl); padding: clamp(40px, 6vw, 72px);
  color: #fff; text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 90% at 50% 0%, rgba(0,198,201,.28), transparent 70%);
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--on-dark-2); max-width: 56ch; margin-left: auto; margin-right: auto; }
.cta-note { margin-top: 20px; font-size: .86rem; color: var(--on-dark-3); }
.cta-note a { color: var(--aqua-bright); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: var(--on-dark-2); padding: 64px 0 30px; font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer h5 { font-family: var(--font-display); font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--on-dark-3); margin: 0 0 16px; font-weight: 700; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .6em; }
.site-footer a:hover { color: var(--aqua-bright); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; font-size: .84rem; color: var(--on-dark-3); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  display: inline-flex; align-items: center; gap: .6em;
  background: #25d366; color: #06301a;
  font-family: var(--font-display); font-weight: 700; font-size: .92rem;
  padding: 14px 20px; border-radius: var(--r-pill);
  box-shadow: 0 14px 34px -10px rgba(37,211,102,.6);
  transition: transform .2s ease;
}
.wa-float:hover { transform: translateY(-3px); }
.wa-float svg { width: 20px; height: 20px; }
@media (max-width: 560px) { .wa-float span { display: none; } .wa-float { padding: 15px; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: radial-gradient(110% 100% at 50% 0%, var(--ink-700), var(--ink-900) 68%);
  color: var(--on-dark); padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 80px);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(40% 50% at 88% 10%, rgba(0,198,201,.2), transparent 70%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.35rem); }
.page-hero + .section { padding-top: clamp(48px, 5vw, 78px); }
.crumbs { font-size: .82rem; color: var(--on-dark-3); margin-bottom: 20px; }
.crumbs a:hover { color: var(--aqua-bright); }
.crumbs span { opacity: .5; margin: 0 .5em; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--sh-1); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-display); font-weight: 700; font-size: .84rem; margin-bottom: 7px; color: var(--ink-800); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--r-sm);
  border: 1px solid var(--line); background: var(--paper-2);
  font: inherit; font-size: .96rem; color: var(--text);
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--aqua); background: #fff;
  box-shadow: 0 0 0 3px rgba(0,198,201,.14);
}
.field textarea { min-height: 110px; resize: vertical; }
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; }
.contact-list li { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list .ico { width: 40px; height: 40px; margin: 0; border-radius: 11px; flex: none; }
.contact-list b { display: block; font-family: var(--font-display); font-size: .95rem; color: var(--ink-900); }
.contact-list span { font-size: .92rem; color: var(--text-2); }

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.note {
  background: var(--aqua-wash); border: 1px solid rgba(0,198,201,.28);
  border-radius: var(--r-md); padding: 20px 24px; font-size: .92rem; color: var(--aqua-ink);
}
.note strong { color: var(--aqua-ink); }
.tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; padding: 0; list-style: none; }
.tags li {
  font-size: .84rem; padding: 7px 14px; border-radius: var(--r-pill);
  background: var(--paper-2); border: 1px solid var(--line); color: var(--text-2); margin: 0;
}
.dark .tags li, .page-hero .tags li { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: var(--on-dark-2); }
.page-hero .tags li:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); }
.tags a { color: inherit; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 12px; top: 12px; z-index: 200; background: #fff; padding: 10px 16px; border-radius: 8px; box-shadow: var(--sh-2); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
