:root {
  --bg: #062D2F;
  --bg-dark: #031B1D;
  --bg-darkest: #010F11;
  --teal: #26CBD0;
  --teal-strong: #10AEB5;
  --text: #F7FBFB;
  --text-2: #B9D5D6;
  --card: rgba(255, 255, 255, 0.07);
  --card-border: rgba(38, 203, 208, 0.25);
  --font-display: "Sora", "Montserrat", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --radius: 18px;
  --shadow-glow: 0 0 24px rgba(38, 203, 208, 0.35);
  --header-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--teal); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2.1rem, 6.5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.65rem, 4.5vw, 2.6rem); letter-spacing: -0.015em; margin-bottom: 1.2rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }

.accent { color: var(--teal); }

.container {
  width: min(100% - 2.5rem, 1120px);
  margin-inline: auto;
}

.container-narrow { max-width: 780px; }

.section {
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  position: relative;
}

.section-alt { background: var(--bg-dark); }

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  padding: 0.3rem 0.95rem;
  margin-bottom: 1.1rem;
  background: rgba(38, 203, 208, 0.06);
}

.section-lead {
  color: var(--text-2);
  max-width: 42ch;
  margin-bottom: 2rem;
}

.section-note {
  margin-top: 2.2rem;
  padding: 1.1rem 1.4rem;
  border-left: 3px solid var(--teal);
  background: var(--card);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-2);
  max-width: 62ch;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--teal);
  color: var(--bg-darkest);
  padding: 0.6rem 1.2rem;
  font-weight: 700;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  border-radius: 100px;
  padding: 0.85rem 1.7rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--teal) 0%, var(--teal-strong) 100%);
  color: var(--bg-darkest);
  box-shadow: 0 0 0 rgba(38, 203, 208, 0);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--card-border);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(38, 203, 208, 0.12);
  border-color: var(--teal);
}

.btn-lg { padding: 1rem 2.1rem; font-size: 1.02rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.88rem; }
.btn-block { width: 100%; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(3, 27, 29, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(38, 203, 208, 0.14);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand img { width: 44px; height: auto; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

.brand-name em { font-style: normal; color: var(--teal); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.main-nav a:not(.btn) {
  color: var(--text-2);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.main-nav a:not(.btn):hover { color: var(--teal); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s 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); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 5rem;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(16, 174, 181, 0.16), transparent 60%),
    linear-gradient(180deg, var(--bg-dark) 0%, var(--bg) 55%, var(--bg-dark) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.topo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.topo path {
  stroke: rgba(38, 203, 208, 0.16);
  stroke-width: 1.5;
}

.topo-1 path { animation: topo-drift 14s ease-in-out infinite alternate; }
.topo-1 path:nth-child(2) { animation-delay: -3s; }
.topo-1 path:nth-child(3) { animation-delay: -6s; }
.topo-1 path:nth-child(4) { animation-delay: -9s; }
.topo-1 path:nth-child(5) { animation-delay: -12s; }

@keyframes topo-drift {
  from { transform: translateX(-18px); }
  to   { transform: translateX(18px); }
}

.hero-glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  right: -18vw;
  top: -12vw;
  background: radial-gradient(circle, rgba(38, 203, 208, 0.14) 0%, transparent 65%);
  animation: glow-pulse 8s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  from { opacity: 0.6; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1.05); }
}

.hero-inner { position: relative; max-width: 760px; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.3rem;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: var(--text-2);
  max-width: 46ch;
  margin: 1.4rem 0 2.2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.4rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
}

.hero-badges li {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-2);
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  padding: 0.42rem 1rem;
}

.hero-chevrons {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  color: var(--teal);
  animation: chevron-bob 2.2s ease-in-out infinite;
}

@keyframes chevron-bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 2.4rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(38, 203, 208, 0.55);
  box-shadow: 0 14px 34px rgba(1, 15, 17, 0.5), 0 0 18px rgba(38, 203, 208, 0.12);
}

.card p { color: var(--text-2); font-size: 0.94rem; }

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(38, 203, 208, 0.1);
  border: 1px solid var(--card-border);
  color: var(--teal);
  margin-bottom: 1.1rem;
}

.card-icon svg { width: 26px; height: 26px; }

.counter-section {
  background: var(--bg-darkest);
  text-align: center;
  overflow: hidden;
}

.counter-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(16, 174, 181, 0.13), transparent 70%);
  pointer-events: none;
}

.counter-number {
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.6rem, 13vw, 7.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--teal);
  text-shadow: 0 0 40px rgba(38, 203, 208, 0.4);
  font-variant-numeric: tabular-nums;
}

.counter-caption {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 3vw, 1.5rem);
  margin-top: 0.8rem;
}

.counter-small {
  position: relative;
  color: var(--text-2);
  font-size: 0.86rem;
  max-width: 56ch;
  margin: 1.2rem auto 0;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin-top: 2.2rem;
  max-width: 680px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 1rem 1.3rem;
  color: var(--text-2);
  font-weight: 500;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.check-list li:hover { border-color: rgba(38, 203, 208, 0.55); transform: translateX(4px); }

.check-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M6 12.5l4 4L18 8" stroke="%23010F11" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/14px no-repeat,
    linear-gradient(120deg, var(--teal), var(--teal-strong));
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 2.4rem;
}

.area-card {
  position: relative;
  background: linear-gradient(150deg, var(--card) 0%, rgba(38, 203, 208, 0.05) 100%);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.4rem;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.area-card:hover { transform: translateY(-4px); border-color: var(--teal); }

.area-card h3 { margin: 0; font-size: 1.2rem; }

.area-card h3 small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--text-2);
  margin-top: 0.2rem;
}

.area-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--teal);
  margin-bottom: 0.9rem;
}

.area-card::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(38, 203, 208, 0.16), transparent 70%);
  transition: transform 0.3s ease;
}

.area-card:hover::after { transform: scale(1.4); }

.badge-hot {
  background: linear-gradient(120deg, rgba(38, 203, 208, 0.22), rgba(16, 174, 181, 0.16)) !important;
  border-color: var(--teal) !important;
  color: var(--teal) !important;
  font-weight: 700 !important;
}

.promo-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin: 2.4rem 0 2.6rem;
  padding: 1.6rem 1.8rem;
  background: linear-gradient(120deg, rgba(38, 203, 208, 0.16) 0%, var(--card) 60%);
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: 0 0 34px rgba(38, 203, 208, 0.14);
}

.promo-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
}

.promo-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  line-height: 1.1;
  color: var(--teal);
  text-shadow: 0 0 24px rgba(38, 203, 208, 0.35);
}

.promo-price s,
.price-value s {
  font-size: 0.55em;
  font-weight: 600;
  color: var(--text-2);
  opacity: 0.65;
  margin-left: 0.35em;
}

.price-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--teal);
  margin: 0.2rem 0 0.9rem;
  white-space: nowrap;
}

.price-extra {
  display: grid;
  gap: 1.8rem;
  margin-top: 2.6rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.8rem 1.8rem 1.6rem;
}

.price-extra-group h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 0.9rem;
}

.price-extra-group h3 small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text-2);
}

.price-extra-group ul { list-style: none; display: grid; gap: 0.55rem; }

.price-extra-group li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px dashed rgba(38, 203, 208, 0.18);
  color: var(--text);
  font-weight: 500;
}

.price-extra-group li:last-child { border-bottom: none; }

.price-extra-group li small {
  display: block;
  font-size: 0.76rem;
  font-weight: 400;
  color: var(--text-2);
}

.price-extra-group li .price-value {
  font-size: 1.15rem;
  margin: 0;
  flex: 0 0 auto;
}

.pricing { align-items: stretch; }

.price-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-top: 2.3rem;
}

.price-card .btn { margin-top: auto; }

.price-sessions {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--text);
}

.price-sessions span {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card h3 { margin: 0.7rem 0 0.6rem; color: var(--teal); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.12em; }

.price-card > p:not(.price-sessions):not(.price-note):not(.price-flag) {
  margin-bottom: 1.6rem;
}

.price-note {
  font-size: 0.78rem;
  color: var(--text-2);
  opacity: 0.8;
  margin-top: 1rem;
}

.price-featured {
  border-color: var(--teal);
  background: linear-gradient(170deg, rgba(38, 203, 208, 0.12) 0%, var(--card) 45%);
  box-shadow: 0 0 34px rgba(38, 203, 208, 0.12);
}

.price-flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: linear-gradient(120deg, var(--teal), var(--teal-strong));
  color: var(--bg-darkest);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 0.3rem 1rem;
}

.price-featured { position: relative; }

.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 2.6rem;
}

.steps li {
  position: relative;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.4rem 1.6rem 1.8rem;
}

.steps p { color: var(--text-2); font-size: 0.94rem; }

.step-num {
  position: absolute;
  top: -20px;
  left: 1.4rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--bg-darkest);
  background: linear-gradient(120deg, var(--teal), var(--teal-strong));
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(38, 203, 208, 0.35);
}

.cta-band {
  position: relative;
  background: linear-gradient(160deg, var(--bg-dark) 0%, var(--bg-darkest) 100%);
  text-align: center;
  padding: clamp(4.5rem, 10vw, 7rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(38, 203, 208, 0.14);
  border-bottom: 1px solid rgba(38, 203, 208, 0.14);
}

.cta-bg { position: absolute; inset: 0; pointer-events: none; }

.topo-2 path {
  stroke: rgba(38, 203, 208, 0.12);
  stroke-width: 1.5;
  animation: topo-drift 16s ease-in-out infinite alternate;
}
.topo-2 path:nth-child(2) { animation-delay: -4s; }
.topo-2 path:nth-child(3) { animation-delay: -8s; }
.topo-2 path:nth-child(4) { animation-delay: -12s; }

.cta-band .container { position: relative; }

.cta-band p { color: var(--text-2); margin: 0.8rem 0 2rem; }

.cta-band .hero-cta { justify-content: center; margin-bottom: 0; }

.faq-list { margin-top: 2.2rem; display: grid; gap: 0.8rem; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item[open] { border-color: rgba(38, 203, 208, 0.55); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 1.1rem 1.3rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-chevron {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-right: 2.5px solid var(--teal);
  border-bottom: 2.5px solid var(--teal);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-top: -4px;
}

.faq-item[open] .faq-chevron { transform: rotate(225deg); margin-top: 4px; }

.faq-item p {
  padding: 0 1.3rem 1.2rem;
  color: var(--text-2);
  font-size: 0.93rem;
}

.faq-item p a,
.section-note a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  margin-top: 2.4rem;
  align-items: start;
}

.contact-info ul { list-style: none; display: grid; gap: 1.3rem; }

.contact-info li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  color: var(--text-2);
}

.contact-info li svg { flex: 0 0 auto; color: var(--teal); margin-top: 3px; }

.contact-info a { color: var(--teal); text-decoration: none; font-weight: 600; }
.contact-info a:hover { text-decoration: underline; }

.contact-logo {
  width: 150px;
  margin-top: 2.5rem;
  opacity: 0.9;
}

.contact-actions {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  display: grid;
  gap: 0.9rem;
}

.contact-actions > p:first-child {
  color: var(--text-2);
  margin-bottom: 0.4rem;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-2);
  opacity: 0.8;
  margin-top: 0.9rem;
}

.site-footer {
  background: var(--bg-darkest);
  text-align: center;
  padding: 3.5rem 0 7rem;
  border-top: 1px solid rgba(38, 203, 208, 0.12);
}

.footer-inner { display: grid; justify-items: center; gap: 1.1rem; }

.footer-inner img { width: 64px; }

.footer-brandline { color: var(--text-2); font-size: 0.92rem; font-weight: 500; }

.footer-brandline a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }

.footer-disclaimer {
  max-width: 68ch;
  font-size: 0.78rem;
  color: var(--text-2);
  opacity: 0.7;
}

.footer-social { font-size: 0.9rem; color: var(--text-2); }

.footer-social a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  padding: 0.2rem 0.35rem;
}

.footer-social a:hover { text-decoration: underline; }

.footer-copy { font-size: 0.78rem; color: var(--text-2); opacity: 0.8; }

.footer-copy a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }

.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  gap: 0.7rem;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(1, 15, 17, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(38, 203, 208, 0.2);
}

.sticky-bar .btn { flex: 1; padding: 0.8rem 0.5rem; font-size: 0.9rem; }

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.cards-3 .reveal.is-visible:nth-child(2),
.areas-grid .reveal.is-visible:nth-child(2),
.steps .reveal.is-visible:nth-child(2) { transition-delay: 0.1s; }
.cards-3 .reveal.is-visible:nth-child(3),
.areas-grid .reveal.is-visible:nth-child(3),
.steps .reveal.is-visible:nth-child(3) { transition-delay: 0.2s; }
.cards-3 .reveal.is-visible:nth-child(4),
.areas-grid .reveal.is-visible:nth-child(4) { transition-delay: 0.1s; }
.cards-3 .reveal.is-visible:nth-child(5),
.areas-grid .reveal.is-visible:nth-child(5) { transition-delay: 0.2s; }
.cards-3 .reveal.is-visible:nth-child(6),
.areas-grid .reveal.is-visible:nth-child(6) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 960px) {
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(3, 27, 29, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(38, 203, 208, 0.2);
    padding: 0.6rem 1.25rem 1.2rem;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }

  .main-nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .main-nav a:not(.btn) {
    padding: 0.9rem 0.2rem;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-cta { margin-top: 1rem; }

  .hero { min-height: auto; padding-bottom: 6.5rem; }
  .hero-chevrons { display: none; }

  .cards-3 { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }

  .pricing .price-featured { order: -1; }

  .sticky-bar { display: flex; }

  .site-footer { padding-bottom: 8.5rem; }
}

@media (max-width: 400px) {
  .areas-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .area-card { padding: 1.2rem 1.1rem 1.1rem; }
  .btn-lg { width: 100%; }
}
