/* ============================================================
   FLYING COLOURS — Landing „Toate grupele de vârstă"
   Design tokens derived from flyingcolours.ro brand scrape
   ============================================================ */
:root {
  --ink: #232323;
  --ink-soft: #4A4744;
  --paper: #FFFFFF;
  --cream: #FBF6EA;
  /* warm tint derived from brand gold */
  --cream-deep: #F4ECD9;
  --gold: #FFB606;
  /* brand primary */
  --gold-deep: #E6A304;
  /* brand accent / hover / links */
  --leaf: #54B551;
  /* brand secondary — proof & success only */
  --leaf-dark: #3E8F3C;
  --line: rgba(35, 35, 35, .12);
  --line-strong: rgba(35, 35, 35, .22);
  --hero-text: #F7F2E6;
  --radius: 6px;
  --radius-btn: 5px;
  --font-display: "Roboto Slab", Georgia, serif;
  --font-body: "Roboto", Helvetica, Arial, sans-serif;
  --shadow-card: 0 10px 30px -18px rgba(35, 35, 35, .35);
  --maxw: 1160px;
  --text-col: 740px;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold-deep)
}

button {
  font-family: inherit;
  cursor: pointer
}

/* ---------- utilities ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

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

.eyebrow a:hover {
  text-decoration: underline;
  text-underline-offset: 3px
}

.eyebrow-map {
  padding-bottom: 1px;
  transition: border-color .15s ease, color .15s ease;
}

.eyebrow-map:hover {
  border-bottom-color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section {
  padding: 88px 0
}

.section--cream {
  background: var(--cream)
}

.section--ink {
  background: var(--ink);
  color: var(--hero-text)
}

.section-head {
  max-width: var(--text-col);
  margin-bottom: 40px
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.18;
  margin: 10px 0 14px;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 18px
}

.section--ink .section-head p {
  color: rgba(247, 242, 230, .78)
}

/* editorial TODO chips — remove before launch */
.todo {
  display: inline-block;
  border: 1.5px dashed var(--gold-deep);
  background: rgba(255, 182, 6, .08);
  color: #8a6402;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius);
  padding: 6px 12px;
  margin-top: 10px;
  line-height: 1.45;
}

.todo strong {
  font-weight: 700;
  letter-spacing: .06em
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  padding: 17px 30px;
  border-radius: var(--radius-btn);
  border: 0;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  min-height: 52px;
}

.btn--primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 8px 22px -10px rgba(230, 163, 4, .65)
}

.btn--primary:hover {
  background: var(--gold-deep);
  transform: translateY(-1px)
}

.btn--primary:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line-strong)
}

.btn--ghost:hover {
  border-color: var(--ink)
}

.btn .arrow {
  font-family: var(--font-body)
}

.micro {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink-soft);
}

.section--ink .micro,
.hero .micro {
  color: rgba(247, 242, 230, .7)
}

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header .wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 14px;
  padding-bottom: 14px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0
}

.brand img {
  height: 44px;
  width: auto;
  max-width: 100%
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  line-height: 1.1
}

.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold)
}

.nav {
  display: flex;
  gap: 26px;
  margin-left: auto
}

.nav a {
  color: rgba(247, 242, 230, .85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500
}

.nav a:hover {
  color: var(--gold)
}

.header .btn {
  padding: 12px 20px;
  min-height: 44px;
  font-size: 15px;
  flex-shrink: 1;
  min-width: 0;
  margin-left: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.header-cta__short {
  display: none
}

@media(max-width:980px) {
  .nav {
    display: none
  }
}

@media(max-width:720px) {
  .header .wrap {
    gap: 12px
  }

  .brand {
    flex-shrink: 1;
    min-width: 0
  }

  .brand img {
    height: 36px
  }

  .header .btn {
    padding: 10px 14px;
    min-height: 38px;
    font-size: 13px
  }
}

@media(max-width:480px) {
  .header-cta__full {
    display: none
  }

  .header-cta__short {
    display: inline
  }
}

@media(max-width:420px) {
  .brand img {
    height: 32px
  }

  .header .btn {
    padding: 8px 11px;
    min-height: 36px;
    font-size: 12px
  }
}

/* ---------- hero ---------- */
.hero {
  background:
    linear-gradient(180deg, rgba(24, 24, 24, .72) 0%, rgba(24, 24, 24, .78) 100%),
    url("https://flyingcolours.ro/wp-content/uploads/2021/03/cover-site-Flying-4.png") center / cover no-repeat;
  color: var(--hero-text);
  overflow: hidden;
  position: relative;
}

.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "eyebrow eyebrow"
    "title title"
    "sub media"
    "cta media"
    "micro media"
    "proof media";
  column-gap: 56px;
  row-gap: 0;
  align-items: start;
  padding-top: 72px;
  padding-bottom: 80px;
}

.hero .eyebrow {
  grid-area: eyebrow;
  margin: 0 0 14px;
}

.hero h1 {
  grid-area: title;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.14;
  margin: 0 0 28px;
  color: #fff;
  max-width: none;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero .sub {
  grid-area: sub;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(247, 242, 230, .82);
  max-width: 40ch;
  margin: 0 0 24px;
}

.hero-cta-row {
  grid-area: cta;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin: 0;
}

.hero .micro {
  grid-area: micro;
  margin-top: 12px;
  margin-bottom: 0;
}

.hero-proof {
  grid-area: proof;
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
  font-size: 15px;
  color: rgba(247, 242, 230, .85);
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 15px;
}

.hero-proof .sep {
  opacity: .35;
}

.hero-proof a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 182, 6, .35);
  transition: border-color .15s ease, color .15s ease;
}

.hero-proof a:hover {
  color: #fff;
  border-bottom-color: var(--gold);
}

/* hero video */
.hero-media {
  grid-area: media;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  aspect-ratio: 16/9;
  background: #181818;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .7);
  align-self: start;
  width: 100%;
  margin-top: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-toggle {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .55);
  background: rgba(24, 24, 24, .65);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  display: grid;
  place-items: center;
  backdrop-filter: blur(4px);
  transition: background .15s ease;
}

.video-toggle:hover {
  background: rgba(24, 24, 24, .9);
}

.video-toggle:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

@media(max-width:940px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "sub"
      "cta"
      "micro"
      "media"
      "proof";
    column-gap: 0;
    row-gap: 0;
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(28px, 7.2vw, 40px);
    margin: 0 0 18px;
  }

  .hero .sub {
    max-width: none;
    font-size: 17px;
    margin: 0 0 20px;
  }

  .hero .micro {
    margin-bottom: 28px;
  }

  .hero-media {
    margin: 0 0 8px;
  }

  .hero-proof {
    margin-top: 24px;
  }
}

/* ---------- proof strip ---------- */
.proofstrip {
  background: var(--paper);
  border-bottom: 1px solid var(--line)
}

.proofstrip .wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding-top: 48px;
  padding-bottom: 48px;
  gap: 22px 18px;
}

.proof-item {
  text-align: center;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink-soft);
}

.proof-item img {
  width: 88px;
  height: 88px;
  max-width: 88px;
  max-height: 88px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  margin: 0 auto 14px;
}

.proof-item b {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}

@media(max-width:980px) {
  .proofstrip .wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 20px;
  }
}

@media(max-width:560px) {
  .proofstrip .wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 16px;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .proof-item img {
    width: 72px;
    height: 72px;
    max-width: 72px;
    max-height: 72px;
  }
}

/* ---------- flight path (signature) ---------- */
.path-wrap {
  margin: 8px 0 44px
}

.flightpath {
  width: 100%;
  height: auto;
  display: block
}

.flightpath text {
  font-family: var(--font-body)
}

@media(max-width:900px) {
  .path-wrap {
    display: none
  }
}

/* anchor chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 8px
}

.chip {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  padding: 9px 18px;
  background: var(--paper);
  transition: all .15s ease;
}

.chip:hover {
  border-color: var(--gold-deep);
  color: var(--gold-deep)
}

/* ---------- age table (desktop) ---------- */
.age-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  font-size: 15px
}

.age-table th {
  background: var(--ink);
  color: #fff;
  text-align: left;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 18px;
}

.age-table td {
  padding: 18px;
  border-top: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.5
}

.age-table tbody tr:nth-child(even) {
  background: var(--cream)
}

.age-table .grp {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  white-space: nowrap
}

.age-table .grp small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--ink-soft);
  white-space: normal
}

.age-table .price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  white-space: nowrap
}

.age-table .price small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12.5px;
  color: var(--ink-soft);
  white-space: normal
}

.age-table .exam {
  font-weight: 500
}

.table-note {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 14px;
  max-width: var(--text-col)
}

.micro-cta {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 17px
}

@media(max-width:900px) {
  .age-table {
    display: none
  }
}

/* ---------- age cards (mobile) ---------- */
.age-cards {
  display: none
}

@media(max-width:900px) {
  .age-cards {
    display: block
  }
}

.acard {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: var(--shadow-card);
  margin-bottom: 14px;
  overflow: hidden
}

.acard-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  background: var(--paper);
  border: 0;
  padding: 18px;
}

.acard-toggle:focus-visible {
  outline: 3px solid var(--gold-deep);
  outline-offset: -3px
}

.acard-title {
  flex: 1
}

.acard-title b {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  display: block
}

.acard-title span {
  font-size: 13.5px;
  color: var(--ink-soft)
}

.acard-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
  color: var(--gold-deep);
  text-align: right;
  white-space: normal;
  max-width: 9.5em;
  flex-shrink: 0;
}

.acard-price small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 2px;
}

.acard-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: transform .2s ease;
  color: var(--ink)
}

.acard.open .acard-icon {
  transform: rotate(45deg);
  border-color: var(--gold-deep);
  color: var(--gold-deep)
}

.acard-body {
  display: none;
  padding: 0 18px 18px;
  border-top: 1px solid var(--line)
}

.acard.open .acard-body {
  display: block
}

.acard-body dl {
  margin-top: 14px
}

.acard-body dt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 14px
}

.acard-body dd {
  margin: 4px 0 0;
  font-size: 15px;
  line-height: 1.55
}

/* ---------- group detail cards ---------- */
.groups-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px
}

@media(max-width:900px) {
  .groups-grid {
    grid-template-columns: 1fr
  }
}

.gcard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 34px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.gcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gold)
}

.gcard .age-tag {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.gcard h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 23px;
  margin: 8px 0 16px;
  line-height: 1.25
}

.gcard dl {
  flex: 1
}

.gcard dt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 16px
}

.gcard dd {
  margin: 4px 0 0;
  font-size: 15.5px;
  line-height: 1.6
}

.gcard dd b {
  color: var(--ink)
}

.gcard .gprice {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}

.gcard .gprice small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 2px
}

/* ---------- steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: step
}

@media(max-width:980px) {
  .steps {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:560px) {
  .steps {
    grid-template-columns: 1fr
  }
}

.step {
  position: relative;
  padding-top: 8px
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold-deep);
  display: block;
  margin-bottom: 14px;
}

.section--ink .step::before {
  -webkit-text-stroke: 1.5px var(--gold)
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 8px
}

.step p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft)
}

.section--ink .step p {
  color: rgba(247, 242, 230, .78)
}

.steps-cta {
  margin-top: 52px;
  text-align: center
}

/* ---------- offer stack ---------- */
.stack-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  font-size: 15.5px
}

.stack-table th {
  background: var(--cream-deep);
  text-align: left;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 15px 20px;
  color: var(--ink)
}

.stack-table td {
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.5
}

.stack-table td:first-child {
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 15.5px
}

.stack-table td.obstacle {
  color: var(--ink-soft)
}

.stack-table td.benefit {
  font-weight: 500
}

.stack-table td.benefit::before {
  content: "✓ ";
  color: var(--leaf-dark);
  font-weight: 700
}

@media(max-width:760px) {
  .stack-table thead {
    display: none
  }

  .stack-table,
  .stack-table tbody,
  .stack-table tr,
  .stack-table td {
    display: block;
    width: 100%
  }

  .stack-table tr {
    border-top: 1px solid var(--line)
  }

  .stack-table tr:first-child {
    border-top: 0
  }

  .stack-table td {
    border-top: 0;
    padding: 8px 20px
  }

  .stack-table td:first-child {
    padding-top: 18px
  }

  .stack-table td:last-child {
    padding-bottom: 18px
  }

  .stack-table td.obstacle::before {
    content: "Obstacolul eliminat: ";
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-soft)
  }
}

/* ---------- guarantee ---------- */
.guarantee-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 182, 6, .35);
  border-radius: 12px;
  padding: 52px 40px;
}

.guarantee-card .seal {
  width: 74px;
  height: 74px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  font-size: 34px;
  color: var(--ink);
}

.guarantee-card h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  margin-bottom: 18px;
  color: #fff
}

.guarantee-card .promise {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(247, 242, 230, .9);
  max-width: 58ch;
  margin: 0 auto
}

.guarantee-card .promise b {
  color: var(--gold)
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  margin-top: 30px;
  font-size: 14px;
  color: rgba(247, 242, 230, .72)
}

.trust-row span::before {
  content: "•  ";
  color: var(--gold)
}

.trust-row a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 182, 6, .35);
  transition: border-color .15s ease, color .15s ease
}

.trust-row a:hover {
  color: #fff;
  border-bottom-color: var(--gold)
}

@media(max-width:560px) {
  .guarantee-card {
    padding: 40px 24px
  }
}

/* ---------- discounts ---------- */
.disc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

@media(max-width:900px) {
  .disc-grid {
    grid-template-columns: 1fr
  }
}

.disc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.disc .pct {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  color: var(--leaf-dark)
}

.disc p {
  margin-top: 12px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft)
}

.disc p b {
  color: var(--ink)
}

/* ---------- reviews / proof ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

@media(max-width:900px) {
  .reviews-grid {
    grid-template-columns: 1fr
  }
}

.rev-badge {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow-card);
}

.rev-badge .score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  line-height: 1
}

.rev-badge .score span {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-soft)
}

.rev-badge p {
  margin-top: 8px;
  font-size: 15px;
  color: var(--ink-soft)
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 26px
}

@media(max-width:900px) {
  .testi-grid {
    grid-template-columns: 1fr
  }
}

.testi {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px
}

.t-stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 15px;
  line-height: 1
}

.testi blockquote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  flex: 1
}

.testi blockquote b {
  color: var(--ink);
  font-weight: 700
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-deep);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.t-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink)
}

.t-src {
  font-size: 13px;
  color: var(--ink-soft)
}

/* ---------- FAQ ---------- */
.faq {
  max-width: var(--text-col)
}

.faq-item {
  border-bottom: 1px solid var(--line)
}

.faq-item:first-child {
  border-top: 1px solid var(--line)
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.35;
}

.faq-q:focus-visible {
  outline: 3px solid var(--gold-deep);
  outline-offset: 2px
}

.faq-q .acard-icon {
  margin-left: auto
}

.faq-a {
  display: none;
  padding: 0 4px 24px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 64ch
}

.faq-item.open .faq-a {
  display: block
}

.faq-item.open .acard-icon {
  transform: rotate(45deg);
  border-color: var(--gold-deep);
  color: var(--gold-deep)
}

/* ---------- final CTA + form ---------- */
.final {
  background:
    radial-gradient(800px 460px at 15% -20%, rgba(255, 182, 6, .16), transparent 60%),
    var(--ink)
}

.final .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  gap: 64px;
  align-items: start
}

@media(max-width:980px) {
  .final .wrap {
    grid-template-columns: 1fr;
    gap: 44px
  }
}

.final h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15;
  color: #fff;
  margin: 14px 0 18px
}

.final .support {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(247, 242, 230, .82);
  max-width: 52ch
}

.final ul {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(247, 242, 230, .82);
  max-width: 52ch
}

.final .trust-row {
  justify-content: flex-start;
  margin-top: 26px
}

/* form */
.form-card {
  background: var(--paper);
  border-radius: 12px;
  padding: 36px 32px;
  color: var(--ink);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .6);
}

.form-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.3;
  margin-bottom: 6px
}

.form-card .form-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 22px
}

.field {
  margin-bottom: 18px
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media(max-width:520px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}

.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 7px
}

.field label .opt {
  font-weight: 400;
  color: var(--ink-soft)
}

.field input,
.field select {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: var(--paper);
  min-height: 50px;
}

.field input:focus,
.field select:focus {
  outline: 3px solid rgba(230, 163, 4, .45);
  border-color: var(--gold-deep)
}

.field .err {
  display: none;
  font-size: 13px;
  color: #B23A2E;
  margin-top: 6px
}

.field.invalid input,
.field.invalid select {
  border-color: #B23A2E
}

.field.invalid .err {
  display: block
}

.form-error {
  display: none;
  font-size: 13px;
  color: #B23A2E;
  margin-top: 6px
}

.form-card .btn {
  width: 100%;
  margin-top: 6px
}

.form-success {
  display: none;
  text-align: center;
  padding: 26px 4px
}

.form-success .ok {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--leaf);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 30px;
}

.form-success h3 {
  margin-bottom: 10px
}

.form-success p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6
}

/* ---------- footer ---------- */
.footer {
  background: #181818;
  color: rgba(247, 242, 230, .7);
  font-size: 14px
}

.footer .wrap {
  padding-top: 52px;
  padding-bottom: 44px
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 14px
}

.footer p {
  margin-bottom: 8px;
  line-height: 1.6
}

.footer a {
  color: rgba(247, 242, 230, .85);
  text-decoration: none
}

.footer a:hover {
  color: var(--gold)
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1)
}

/* ---------- sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: rgba(24, 24, 24, .96);
  backdrop-filter: blur(6px);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform .25s ease;
  display: none;
}

.sticky-cta.visible {
  transform: translateY(0)
}

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

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

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease
}

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

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

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

  .btn {
    transition: none
  }
}

@media(max-width:560px) {
  .section {
    padding: 60px 0
  }

  .btn {
    width: 100%
  }

  .hero-cta-row .btn {
    width: 100%
  }
}
