/* French Accelerator — TEF/TCF landing */

:root {
  --navy-950: #07131e;
  --navy-900: #0b1c2c;
  --navy-800: #12283c;
  --navy-700: #1a3a54;
  --gold-400: #d4b56e;
  --gold-500: #c6a15b;
  --gold-600: #a8863f;
  --forest: #245c48;
  --forest-light: #2f735a;
  --cream: #f4f0e6;
  --cream-dark: #e8e1d1;
  --white: #ffffff;
  --ink: #121820;
  --muted: #5b6570;
  --line: rgba(11, 28, 44, 0.12);
  --line-light: rgba(244, 240, 230, 0.16);
  --radius: 14px;
  --header-h: 4.5rem;
  --font-serif: "Cormorant Garamond", "Palatino Linotype", Palatino, serif;
  --font-sans: "Outfit", "Segoe UI", sans-serif;
  --shadow-gold: 0 0 0 1px rgba(198, 161, 91, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  color: var(--gold-600);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-intro {
  max-width: 40rem;
  margin-bottom: 2.75rem;
}

.section-lede {
  color: var(--muted);
  font-size: 1.08rem;
}

.announce {
  background: var(--navy-950);
  color: var(--cream);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 0.55rem 1rem;
}

.announce p {
  margin: 0;
}

.announce strong {
  color: var(--gold-400);
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(7, 19, 30, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
}

.brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-400);
}

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

.nav a {
  text-decoration: none;
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 1px;
  background: var(--gold-500);
  transition: width 0.25s var(--ease);
}

.nav a:not(.btn):hover::after,
.nav a:not(.btn):focus-visible::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line-light);
  background: transparent;
  border-radius: 8px;
  padding: 0.55rem;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.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);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-400);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line-light);
}

.btn-ghost:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
}

.btn-lg {
  padding: 0.9rem 1.45rem;
  font-size: 0.95rem;
}

.btn-block {
  width: 100%;
}

.btn-nav {
  padding: 0.58rem 1.05rem;
}

.hero {
  position: relative;
  background: var(--navy-900);
  color: var(--cream);
  padding: 4.5rem 0 4.75rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 10%, rgba(198, 161, 91, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(36, 92, 72, 0.28), transparent 50%),
    repeating-linear-gradient(
      -18deg,
      transparent 0 22px,
      rgba(244, 240, 230, 0.015) 22px 23px
    );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.35rem, 5.2vw, 4.35rem);
  margin-bottom: 1.15rem;
}

.lede {
  color: rgba(244, 240, 230, 0.82);
  font-size: 1.12rem;
  max-width: 38rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.trust-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.trust-row li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(244, 240, 230, 0.88);
  font-size: 0.92rem;
}

.trust-icon {
  width: 1.7rem;
  height: 1.7rem;
  flex-shrink: 0;
  color: var(--gold-500);
}

.trust-icon svg {
  width: 100%;
  height: 100%;
}

.score-card {
  background: linear-gradient(180deg, #163044, #0f2434);
  border: 1px solid rgba(198, 161, 91, 0.28);
  border-radius: 18px;
  padding: 1.5rem 1.55rem 1.35rem;
  color: var(--cream);
}

.score-card h2,
.score-card .score-title {
  color: var(--white);
}

.score-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.score-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.score-stamp {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--gold-500);
  color: var(--gold-400);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.score-title {
  font-size: 1.45rem;
  margin-bottom: 1.1rem;
}

.score-jump {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-light);
}

.score-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 240, 230, 0.55);
  margin-bottom: 0.2rem;
}

.score-jump strong {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  font-weight: 600;
  line-height: 1;
}

.score-jump .gold {
  color: var(--gold-400);
}

.score-arrow {
  color: var(--gold-500);
  font-size: 1.4rem;
  padding-bottom: 0.35rem;
}

.score-crs {
  font-size: 0.92rem;
  color: rgba(244, 240, 230, 0.8);
}

.skill-bars {
  list-style: none;
  margin: 1.1rem 0 0.75rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.skill-bars li span {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  margin-bottom: 0.3rem;
}

.skill-bars em {
  font-style: italic;
  font-family: var(--font-serif);
  color: rgba(244, 240, 230, 0.55);
}

.bar {
  height: 5px;
  background: rgba(244, 240, 230, 0.12);
  border-radius: 99px;
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--forest-light), var(--gold-500));
  border-radius: inherit;
  transition: width 1.1s var(--ease);
}

.score-card.is-in .bar i {
  width: var(--fill);
}

.score-note {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(244, 240, 230, 0.5);
}

.exam-strip {
  background: var(--navy-950);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1rem 0;
  color: rgba(244, 240, 230, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about,
.process,
.faq {
  padding: 5.25rem 0;
}

.about {
  background: var(--cream);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.panel {
  padding: 1.85rem 1.7rem 1.7rem;
  border-radius: var(--radius);
}

.panel h3 {
  font-size: 1.7rem;
  margin-bottom: 0.85rem;
}

.panel-label {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-problem {
  background: var(--white);
  border: 1px solid var(--line);
}

.panel-problem .panel-label {
  color: #8a3b32;
}

.panel-solution {
  background: var(--navy-900);
  color: var(--cream);
  border: 1px solid rgba(198, 161, 91, 0.25);
}

.panel-solution h3 {
  color: var(--white);
}

.panel-solution .panel-label {
  color: var(--gold-400);
}

.panel-solution p {
  color: rgba(244, 240, 230, 0.82);
}

.plain-list,
.check-list,
.price-includes {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li,
.check-list li,
.price-includes li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.7rem;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.45rem;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.check-list li::before,
.price-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.32rem;
  border-left: 1.5px solid var(--gold-500);
  border-bottom: 1.5px solid var(--gold-500);
  transform: rotate(-45deg);
}

.check-list.on-dark li::before {
  border-color: var(--gold-400);
}

.process {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: none;
}

.step {
  padding: 0 0.4rem 0 0;
  border-top: 2px solid var(--gold-500);
  padding-top: 1.4rem;
}

.step-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-600);
  margin-bottom: 0.55rem;
}

.step h3 {
  font-size: 1.45rem;
}

.step p {
  color: var(--muted);
  margin: 0;
}

.pricing {
  padding: 5.25rem 0;
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(36, 92, 72, 0.18), transparent 50%),
    var(--navy-900);
  color: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.pricing h2,
.consult h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.pricing .eyebrow,
.consult .eyebrow {
  color: var(--gold-400);
}

.pricing-copy p,
.consult-copy p {
  color: rgba(244, 240, 230, 0.8);
}

.price-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: 18px;
  padding: 2rem 1.85rem 1.6rem;
  border: 1px solid rgba(198, 161, 91, 0.45);
  position: relative;
}

.price-card::before {
  content: "Most direct path to CLB 7";
  position: absolute;
  top: 0;
  right: 1.4rem;
  transform: translateY(-50%);
  background: var(--forest);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
}

.price-kicker {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.price {
  font-family: var(--font-serif);
  font-size: 4.2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--navy-900);
  margin: 0.15rem 0 0.15rem;
}

.currency {
  font-size: 1.8rem;
  vertical-align: super;
  margin-right: 0.1rem;
}

.period {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--muted);
}

.price-cad {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.price-includes {
  margin: 0 0 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.price-includes li {
  color: var(--navy-800);
}

.price-card .btn-primary {
  margin-bottom: 0.75rem;
}

.price-fine {
  margin: 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

.proof {
  padding: 5.25rem 0 4.75rem;
  background: var(--cream);
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.quote {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote:nth-child(2) {
  background: var(--navy-900);
  color: var(--cream);
  border-color: transparent;
}

.quote:nth-child(2) blockquote,
.quote:nth-child(2) figcaption span {
  color: rgba(244, 240, 230, 0.82);
}

.quote:nth-child(2) strong {
  color: var(--white);
}

.quote-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy-900);
  color: var(--gold-400);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.quote:nth-child(2) .avatar {
  background: var(--gold-500);
  color: var(--navy-900);
}

figcaption {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

figcaption span {
  font-size: 0.82rem;
  color: var(--muted);
}

blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--navy-800);
}

.quote-result {
  margin: auto 0 0;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--forest);
}

.quote:nth-child(2) .quote-result {
  border-top-color: var(--line-light);
  color: var(--gold-400);
}

.faq {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
}

.faq-intro p {
  color: var(--muted);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 2.2rem 1.15rem 0;
  font-weight: 600;
  color: var(--navy-900);
  position: relative;
}

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

.accordion summary::after {
  content: "";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--navy-700);
  border-bottom: 1.5px solid var(--navy-700);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s var(--ease);
}

.accordion details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.accordion details p {
  margin: 0 0 1.2rem;
  color: var(--muted);
  max-width: 40rem;
}

.consult {
  padding: 5.25rem 0 5.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(198, 161, 91, 0.12), transparent 50%),
    var(--navy-950);
  color: var(--cream);
}

.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.book-widget {
  background: var(--cream);
  color: var(--ink);
  border-radius: 18px;
  padding: 1.5rem 1.4rem 1.3rem;
  border: 1px solid rgba(198, 161, 91, 0.4);
}

.book-title {
  font-size: 1.55rem;
  margin-bottom: 0.2rem;
}

.book-sub {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 1.1rem;
}

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.cal-label {
  margin: 0;
  font-weight: 600;
  color: var(--navy-900);
}

.cal-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  color: var(--navy-900);
}

.cal-btn:hover {
  border-color: var(--gold-500);
}

.cal-weekdays,
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  text-align: center;
}

.cal-weekdays {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.cal-day {
  border: 0;
  background: transparent;
  height: 2.35rem;
  border-radius: 8px;
  cursor: pointer;
  color: var(--navy-900);
  font-weight: 500;
}

.cal-day:hover:not(:disabled) {
  background: var(--cream-dark);
}

.cal-day.is-selected {
  background: var(--navy-900);
  color: var(--gold-400);
}

.cal-day:disabled {
  color: #c5c0b6;
  cursor: default;
}

.slots {
  margin: 1rem 0 1.15rem;
}

.slots-label {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-900);
}

.slot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.slot {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
  font-size: 0.82rem;
  cursor: pointer;
}

.slot:hover,
.slot.is-selected {
  border-color: var(--gold-500);
  background: var(--navy-900);
  color: var(--cream);
}

.book-form {
  display: grid;
  gap: 0.7rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.book-form label {
  display: grid;
  gap: 0.28rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-800);
}

.book-form input,
.book-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.62rem 0.7rem;
  background: var(--white);
  color: var(--ink);
}

.book-form input:focus,
.book-form select:focus {
  outline: 2px solid var(--gold-500);
  outline-offset: 1px;
}

.book-form .btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.form-note,
.form-error {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.form-error {
  color: #8a3b32;
}

.book-success {
  text-align: center;
  padding: 1.5rem 0.5rem 0.5rem;
}

.success-kicker {
  color: var(--forest);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.book-success .btn-ghost {
  color: var(--navy-900);
  border-color: var(--line);
  margin-top: 0.5rem;
}

.site-footer {
  background: var(--navy-900);
  color: rgba(244, 240, 230, 0.7);
  padding: 2.2rem 0 6.5rem;
  border-top: 1px solid var(--line-light);
}

.footer-inner {
  display: grid;
  gap: 1rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.site-footer nav a {
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--cream);
}

.site-footer nav a:hover {
  color: var(--gold-400);
}

.legal {
  margin: 0;
  font-size: 0.78rem;
  max-width: 46rem;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: none;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(7, 19, 30, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-light);
}

.sticky-cta .btn {
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.7s var(--ease) forwards;
}

.reveal:nth-child(2) { animation-delay: 0.08s; }
.reveal:nth-child(3) { animation-delay: 0.16s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 820px) {
  .hero-grid,
  .split,
  .steps,
  .pricing-grid,
  .quotes,
  .faq-grid,
  .consult-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .steps {
    gap: 0;
  }

  .step {
    border-top: 0;
    border-left: 2px solid var(--gold-500);
    padding: 0 0 1.6rem 1.2rem;
  }

}

@media (max-width: 980px) {
  .header-inner {
    position: relative;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1rem 1.1rem;
    background: var(--navy-950);
    border-bottom: 1px solid var(--line-light);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0.2rem;
    border-bottom: 1px solid var(--line-light);
  }

  .nav .btn-nav {
    margin-top: 0.7rem;
    border-bottom: 0;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .sticky-cta {
    display: block;
  }

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

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .price {
    font-size: 3.4rem;
  }

  .announce {
    font-size: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .bar i {
    width: var(--fill);
  }
}

.btn:focus-visible,
.cal-day:focus-visible,
.slot:focus-visible,
.nav a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}
