:root {
  --navy: #0a1f3d;
  --navy-2: #102b52;
  --coral: #d85a30;
  --coral-dark: #bf4d25;
  --gold: #f5c060;
  --ink: #1a1a2e;
  --muted: #6b6b7d;
  --soft: #f7f5f1;
  --border: rgba(0, 0, 0, 0.08);
  --white-muted: rgba(255, 255, 255, 0.74);
  --shadow: 0 22px 60px rgba(10, 31, 61, 0.11);
  --radius: 22px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  padding: 10px 16px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 860px;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 192, 96, 0.16), transparent 28%),
    radial-gradient(circle at 85% 25%, rgba(216, 90, 48, 0.18), transparent 26%),
    linear-gradient(135deg, #07182f 0%, var(--navy) 58%, #07182f 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(30deg, rgba(255, 255, 255, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.08) 87.5%, rgba(255, 255, 255, 0.08)),
    linear-gradient(150deg, rgba(255, 255, 255, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.08) 87.5%, rgba(255, 255, 255, 0.08));
  background-position: 0 0, 32px 32px;
  background-size: 64px 64px;
}

.topbar,
.hero-content,
.final-cta > .container {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 72px;
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--white-muted);
  font-size: 0.82rem;
  line-height: 1.3;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 8px 16px;
  color: #fff;
  font-weight: 700;
}

.hero-content {
  display: grid;
  justify-items: center;
  max-width: 920px;
  padding-block: 78px 56px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 7vw, 3.6rem);
  font-weight: 800;
  line-height: 1.22;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 4.5vw, 2.25rem);
  line-height: 1.35;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.4;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--white-muted);
  font-size: clamp(1.05rem, 3.2vw, 1.35rem);
}

.hero-auth-window {
  width: min(100%, 720px);
  margin: 0 0 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(17, 30, 73, 0.92), rgba(20, 28, 83, 0.84)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow:
    0 36px 80px rgba(3, 11, 34, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-auth-window__chrome {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  padding: 18px 22px 0;
  direction: ltr;
}

.hero-auth-window__chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.hero-auth-window__chrome span:first-child {
  background: rgba(245, 192, 96, 0.95);
}

.hero-auth-window__content {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 40px 28px 46px;
}

.hero-auth-window__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-auth-window__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(100%, 420px);
  min-height: 72px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffbe33 0%, #ff9d21 100%);
  color: #1d1b14;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 800;
  box-shadow:
    0 22px 46px rgba(255, 165, 34, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.hero-auth-window__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    0 26px 54px rgba(255, 165, 34, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.trust-strip {
  display: grid;
  width: 100%;
  max-width: 780px;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.trust-strip li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  color: var(--white-muted);
}

.trust-strip strong {
  color: #fff;
}

.hero-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: min(100%, 320px);
  min-height: 64px;
  margin-top: 4px;
  border-radius: 20px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #ffbe33 0%, #ff9d21 100%);
  color: #1d1b14;
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  font-weight: 800;
  box-shadow:
    0 22px 46px rgba(255, 165, 34, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.hero-primary-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    0 26px 54px rgba(255, 165, 34, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.trust-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 34px;
  border: 1px solid rgba(245, 192, 96, 0.34);
  border-radius: 12px;
  background: rgba(245, 192, 96, 0.08);
}

.trust-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lead-form {
  display: grid;
  width: min(100%, 760px);
  gap: 14px;
  align-content: start;
  justify-items: stretch;
  margin: 0 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

.lead-form-grid {
  display: grid;
  gap: 12px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  text-align: right;
}

.lead-form span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  padding: 10px 12px;
}

.lead-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--navy) 50%),
    linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position:
    left 18px center,
    left 12px center;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  padding-left: 34px;
}

.lead-form .button {
  justify-self: center;
  align-self: start;
}

.anti-bot-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.turnstile-slot {
  display: none;
}

.turnstile-slot:empty {
  display: none;
}

.turnstile-slot.is-active {
  display: flex;
  justify-content: center;
  min-height: 66px;
  margin-top: 4px;
}

.lead-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.lead-form-subtext {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.lead-form-message {
  min-height: 1.7em;
  margin: 0;
  color: var(--white-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.lead-form-message[data-state="error"] {
  color: #ffd7c8;
}

.lead-form-thanks {
  display: grid;
  width: min(100%, 620px);
  gap: 4px;
  margin: 0 0 18px;
  border: 1px solid rgba(245, 192, 96, 0.38);
  border-radius: 16px;
  background: rgba(245, 192, 96, 0.14);
  padding: 16px 18px;
}

.lead-form-thanks[hidden] {
  display: none;
}

.lead-form-thanks strong {
  color: #fff;
  font-size: 1.12rem;
}

.lead-form-thanks span {
  color: var(--white-muted);
  font-weight: 700;
}

.faq-form-block .lead-form-thanks {
  border-color: rgba(222, 91, 46, 0.2);
  background: rgba(245, 192, 96, 0.14);
}

.faq-form-block .lead-form-thanks strong {
  color: var(--ink);
}

.faq-form-block .lead-form-thanks span {
  color: var(--muted);
}

.whatsapp-secondary-label {
  margin: 0 0 8px;
  color: var(--white-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.button {
  font: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  border-radius: 14px;
  padding: 13px 22px;
  font-weight: 800;
  line-height: 1.4;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 18px 38px rgba(216, 90, 48, 0.28);
}

.button-primary:hover {
  background: var(--coral-dark);
}

.button-secondary {
  border: 1px solid rgba(216, 90, 48, 0.34);
  background: #fff;
  color: var(--coral);
}

.button-secondary:hover {
  border-color: var(--coral);
  box-shadow: 0 14px 34px rgba(216, 90, 48, 0.12);
}

.button-large {
  width: min(100%, 360px);
  min-height: 60px;
  font-size: 1.05rem;
}

.button-small {
  min-height: 44px;
  padding: 9px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
}

.hero-whatsapp-secondary {
  border-color: rgba(19, 177, 97, 0.5);
  background: linear-gradient(135deg, #25d366 0%, #128c4a 100%);
  color: #fff;
  box-shadow: 0 18px 38px rgba(18, 140, 74, 0.34);
}

.hero-whatsapp-secondary:hover {
  border-color: rgba(37, 211, 102, 0.8);
  background: linear-gradient(135deg, #2ae06d 0%, #149654 100%);
  box-shadow: 0 20px 42px rgba(18, 140, 74, 0.42);
}

.microcopy {
  margin: 12px 0 0;
  color: var(--white-muted);
  font-size: 0.9rem;
}

.contact-strip {
  display: grid;
  gap: 10px;
  width: min(100%, 440px);
  margin-top: 16px;
}

.contact-strip p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
}

.contact-number {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  border-radius: 14px;
  padding: 10px 16px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.contact-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-icon-button:hover {
  transform: translateY(-1px);
}

.contact-actions .contact-icon-button.contact-icon-button--whatsapp {
  border-color: #25d366;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

.contact-actions .contact-icon-button.contact-icon-button--whatsapp:hover {
  border-color: #2ae06d;
  background: #2ae06d;
  color: #fff;
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.45);
}

.contact-actions .contact-icon-button.contact-icon-button--whatsapp svg {
  stroke: none;
  fill: currentColor;
  width: 22px;
  height: 22px;
}

.contact-icon-button svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-strip-hero {
  justify-items: center;
  text-align: center;
  gap: 8px;
  margin-top: 14px;
  width: auto;
}

.contact-strip-hero p {
  color: var(--white-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.contact-strip-hero .contact-actions {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.contact-strip-hero .contact-number {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  min-height: 40px;
  padding: 8px 16px;
  font-size: 0.88rem;
}

.contact-strip-hero .contact-icon-button {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  width: 40px;
  height: 40px;
}

.contact-strip-footer {
  width: 100%;
  margin-top: 12px;
}

.contact-strip-footer p {
  color: var(--white-muted);
}

.contact-strip-footer .contact-number {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.contact-strip-footer .contact-icon-button {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.contact-icon-button.is-copied {
  border-color: rgba(245, 192, 96, 0.45);
  color: var(--gold);
}

.copy-toast {
  position: absolute;
  opacity: 0;
  inset-inline-start: 0;
  top: calc(100% + 8px);
  transform: translateY(4px);
  pointer-events: none;
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-strip-hero .copy-toast {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.contact-strip-footer .copy-toast {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 44px;
  color: var(--white-muted);
  animation: float-cue 2.4s ease-in-out infinite;
}

.section {
  padding-block: 56px;
}

.section-soft {
  background:
    radial-gradient(circle at 5% 5%, rgba(245, 192, 96, 0.18), transparent 24%),
    var(--soft);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.cards-grid {
  display: grid;
  gap: 16px;
}

.card,
.method-card,
.testimonial-card,
.pricing-card,
.progression article,
.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 48px rgba(10, 31, 61, 0.06);
}

.card {
  padding: 22px;
}

.card p,
.method-card p,
.testimonial-card blockquote,
.progression p,
.faq-list p,
.pricing-card li {
  color: var(--muted);
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 16px;
  background: rgba(216, 90, 48, 0.11);
  color: var(--coral);
  font-size: 1.4rem;
  font-weight: 800;
}

.card-icon.gold {
  background: rgba(245, 192, 96, 0.2);
  color: #9b690b;
}

.method-card {
  padding: 24px;
}

.video-embed {
  width: min(100%, 960px);
  margin: 28px auto 0;
}

.video-embed__frame {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #000;
  box-shadow: 0 18px 48px rgba(10, 31, 61, 0.1);
  aspect-ratio: 16 / 9;
}

.video-embed__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-embed__cta {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.ratio-bar {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  direction: rtl;
  overflow: hidden;
  width: 100%;
  min-height: 136px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: #f3eee5;
}

.ratio-part {
  display: grid;
  min-width: 0;
  justify-content: center;
  align-content: center;
  padding: 20px;
  color: var(--ink);
  text-align: right;
}

.ratio-part strong {
  font-size: clamp(2rem, 8vw, 4.4rem);
  line-height: 1;
}

.ratio-part span {
  font-weight: 700;
}

.ratio-twenty {
  flex: 0 0 32%;
  width: 32%;
  background: var(--coral);
  color: #fff;
}

.ratio-eighty {
  flex: 0 0 68%;
  width: 68%;
  background: var(--gold);
}

.small-note {
  margin-bottom: 0;
  color: var(--coral) !important;
  font-size: 0.92rem;
  font-weight: 700;
}

.testimonial-grid {
  display: grid;
  grid-auto-columns: minmax(280px, 82vw);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-snap-type: x mandatory;
}

.testimonial-card {
  scroll-snap-align: start;
  padding: 22px;
}

.avatar {
  display: block;
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid rgba(216, 90, 48, 0.16);
  box-shadow: 0 10px 26px rgba(10, 31, 61, 0.12);
}

.avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.avatar-aya img {
  object-position: center 14%;
}

.avatar-mohamed img {
  object-position: center 14%;
}

blockquote {
  margin: 0 0 18px;
}

.testimonial-card footer {
  border-top: 3px solid var(--coral);
  padding-top: 12px;
}

.testimonial-card footer strong,
.testimonial-card footer span {
  display: block;
}

.testimonial-card footer span {
  color: var(--muted);
  font-size: 0.9rem;
}

.progression {
  display: grid;
  gap: 16px;
}

.progression article {
  position: relative;
  padding: 22px;
}

.progression article::before {
  content: "";
  position: absolute;
  top: 22px;
  right: -1px;
  width: 5px;
  height: calc(100% - 44px);
  border-radius: 999px 0 0 999px;
  background: var(--coral);
}

.progression span,
.badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(245, 192, 96, 0.22);
  color: #7a530b;
  padding: 4px 12px;
  font-size: 0.82rem;
  font-weight: 800;
}

.inline-cta {
  display: grid;
  gap: 16px;
  align-items: center;
  margin-top: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 20px;
  box-shadow: 0 18px 48px rgba(10, 31, 61, 0.06);
}

.inline-cta p,
.payment-note {
  margin: 0;
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.pricing-featured {
  border: 2px solid var(--coral);
  box-shadow: 0 28px 70px rgba(216, 90, 48, 0.16);
}

.pricing-card h3,
.pricing-card p {
  margin-bottom: 0;
}

.old-price {
  color: var(--muted);
  text-decoration: line-through;
}

.price {
  color: var(--navy);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.1;
}

.pricing-card ul {
  display: grid;
  gap: 8px;
  margin: 8px 0;
  padding: 0 18px 0 0;
}

.pricing-card .button {
  align-self: end;
  margin-top: 4px;
}

.payment-note {
  margin-top: 24px;
  color: var(--muted);
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 18px;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 800;
}

.faq-list summary::marker {
  color: var(--coral);
}

.faq-list p {
  margin-bottom: 18px;
}

.faq-form-block {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.faq-form-copy {
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}

.faq-form-block .lead-form label > span {
  color: var(--ink);
}

.faq-form-block .lead-form-subtext {
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 64px;
  background:
    radial-gradient(circle at 85% 20%, rgba(245, 192, 96, 0.18), transparent 26%),
    linear-gradient(135deg, #07182f, var(--navy));
  color: #fff;
  text-align: center;
}

.final-cta p:not(.eyebrow):not(.microcopy) {
  color: var(--white-muted);
  font-size: 1.1rem;
}

.site-footer {
  padding-block: 38px;
  background: #07182f;
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 26px;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer p,
.site-footer a,
.site-footer small {
  color: var(--white-muted);
}

.site-footer h2 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.site-footer nav {
  display: grid;
  gap: 6px;
  align-content: start;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float-cue {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (min-width: 620px) {
  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .lead-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inline-cta {
    grid-template-columns: 1fr auto;
  }
}

@media (max-width: 759px) {
  .preview-avatar-cta {
    gap: 0.7rem;
  }

  .preview-avatar-cta__image {
    width: min(100%, 180px);
    border-radius: 16px;
  }

  .preview-avatar-cta__button {
    width: min(100%, 180px);
    min-height: 46px;
    border-radius: 16px;
    font-size: 0.92rem;
  }
}

@media (min-width: 760px) {
  .section {
    padding-block: 80px;
  }

  .ratio-twenty {
    flex-basis: 20%;
    width: 20%;
  }

  .ratio-eighty {
    flex-basis: 80%;
    width: 80%;
  }

  .cards-grid.three,
  .pricing-grid,
  .progression,
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: initial;
    overflow: visible;
    padding: 0;
  }

  .pricing-featured {
    transform: translateY(-14px);
  }
}

@media (min-width: 980px) {
  .hero-content {
    padding-block: 104px 72px;
  }

  .card,
  .testimonial-card,
  .pricing-card {
    padding: 28px;
  }
}


/* Free lesson preview section */
.section-preview {
  background: linear-gradient(160deg, #0b1d3c 0%, #122248 55%, #0e1e3a 100%);
  padding-block: 5rem 4rem;
}

.section-preview .section-heading h2,
.section-preview .eyebrow {
  color: #ffffff;
}

.section-preview .section-heading p,
.preview-subtext {
  color: rgba(255, 255, 255, 0.74);
}

.container--preview {
  max-width: 860px;
}

.preview-avatar-cta {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.preview-avatar-cta__image {
  display: block;
  width: min(100%, 230px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(5, 9, 30, 0.28);
}

.preview-avatar-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(100%, 230px);
  min-height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffbe33 0%, #ff9d21 100%);
  color: #181611;
  font-size: clamp(0.98rem, 2vw, 1.15rem);
  font-weight: 800;
  box-shadow:
    0 14px 30px rgba(255, 165, 34, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.preview-avatar-cta__button:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    0 30px 62px rgba(255, 165, 34, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
