/* ==========================================================================
   GermanABC — Frontend redesign (2026)
   Modern, minimalist. Brand accent = logo red; yellow = logo gold.
   Fonts: Bricolage Grotesque (headings), Public Sans (body), Geist Mono (labels)
   ========================================================================== */

:root {
  --bg:            #FBFAF7;
  --surface:       #FFFFFF;
  --warm:          #F4EFE4;
  --ink:           #17150F;
  --ink-2:         #57524A;
  --muted:         #6E685C;
  --border:        #EAE5DA;
  --border-2:      #F0ECE2;

  --accent:        #B01524;   /* logo red */
  --accent-dark:   #7E0C15;
  --accent-light:  #E07A82;
  --accent-glow:   176, 21, 36;

  --gold:          #FCE12F;   /* logo yellow */
  --gold-2:        #F2CE12;
  --gold-border:   #E3C90F;
  --on-gold:       #1A1403;

  --flag-black:    #17150F;
  --flag-red:      #9E1420;
  --flag-gold:     #E4B23C;

  --wa-green:      #25D366;

  --maxw: 1180px;
  --radius-card: 20px;
  --radius-band: 28px;

  --font-head: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Public Sans', system-ui, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.gabc-home {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.gabc-main { width: 100%; margin: 0; padding: 0; }

h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }
img { display: block; max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.display-xl { font-size: 60px; line-height: 1.02; font-weight: 700; }
.display-lg { font-size: 42px; line-height: 1.08; font-weight: 700; }

.btn-pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 16px 26px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  border: none; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease;
}
.btn-pill--accent { background: var(--accent); color: #fff; box-shadow: 0 14px 30px -12px rgba(var(--accent-glow), .8); }
.btn-pill--accent:hover { color: #fff; transform: translateY(-2px); }
.btn-pill--ink { background: var(--ink); color: #fff; }
.btn-pill--ink:hover { color: #fff; transform: translateY(-2px); }
.btn-pill--ghost { background: var(--surface); color: var(--ink); border: 1px solid #D9D3C7; }
.btn-pill--ghost:hover { color: var(--ink); border-color: var(--accent); }

/* ── Tricolor stripe ───────────────────────────────────────────── */
.tricolor { display: flex; height: 5px; }
.tricolor span { flex: 1; }
.tricolor span:nth-child(1) { background: var(--flag-black); }
.tricolor span:nth-child(2) { background: var(--flag-red); }
.tricolor span:nth-child(3) { background: var(--flag-gold); }

/* ── Promo banner (pulsing) ────────────────────────────────────── */
@keyframes bannerPulse { 0%,100% { background: #17150F; } 50% { background: #2A1013; } }
@keyframes dotPulse    { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.6); opacity: .55; } }
@keyframes offerBlink  { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }

.promo-banner {
  background: #17150F; color: #F4EFE4; font-size: 14px; line-height: 1.35;
  height: 42px;
  display: flex; align-items: center;
  animation: bannerPulse 2.4s ease-in-out infinite;
}
.promo-banner__inner {
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 0 32px; text-align: center;
  box-sizing: border-box;
}
.promo-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent-light);
  animation: offerBlink 1.6s ease-in-out infinite;
}
.promo-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-light); animation: dotPulse 1.6s ease-in-out infinite; }
.promo-banner strong { color: #fff; }
.promo-text-sm { display: none; }

/* ── Header ─────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,247,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header__bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}
.site-header__logo img { height: 40px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 34px; font-size: 15px; font-weight: 500; }
.site-nav a { position: relative; color: var(--ink); text-decoration: none; }
.site-nav a:hover { color: var(--accent); text-decoration: none; }
.site-nav a.is-active {
  color: var(--accent);
  font-weight: 600;
}
.site-nav a.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}
.site-header__actions { display: flex; align-items: center; gap: 18px; }
.header-phone { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--ink); }
.header-phone a { color: var(--ink); text-decoration: none; }
.site-header__logo { text-decoration: none; }
.header-phone span { color: var(--accent); }
.site-header__actions .btn-pill { padding: 11px 20px; font-size: 14px; text-decoration: none; }
.menu-toggle {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 10px;
  font-size: 20px; cursor: pointer; color: var(--ink); background: none;
}

/* ── Mobile drawer ─────────────────────────────────────────────── */
.mobile-drawer {
  overflow: hidden; max-height: 0; opacity: 0; pointer-events: none;
  transition: max-height .32s ease, opacity .28s ease;
  background: var(--bg); border-bottom: 1px solid var(--border);
  position: sticky; top: 72px; z-index: 49;
}
.mobile-drawer.active { max-height: 560px; opacity: 1; pointer-events: auto; }
.mobile-drawer nav { display: flex; flex-direction: column; padding: 14px 20px 22px; }
.mobile-drawer nav a { padding: 14px 4px; font-size: 17px; font-weight: 600; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--border-2); }
.mobile-drawer nav a.is-active {
  color: var(--accent);
  padding-left: 12px;
  border-left: 3px solid var(--accent);
}
.mobile-drawer nav a.drawer-phone { display: flex; align-items: center; gap: 8px; border: none; padding-top: 16px; }
.mobile-drawer nav a.drawer-phone span { color: var(--accent); }
.mobile-drawer nav .btn-pill { margin-top: 12px; }

/* ── Section scaffolding ───────────────────────────────────────── */
.section { padding: 88px 0; }
.section--warm { background: var(--warm); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section__head { max-width: 620px; margin-bottom: 52px; }
.section__title { margin-top: 14px; }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; }
.hero .container { padding-top: 76px; padding-bottom: 84px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px; border: 1px solid var(--border); border-radius: 999px;
  background: var(--surface); font-size: 13px; font-weight: 600; color: var(--muted);
  margin-bottom: 28px;
}
.hero__badge i { width: 7px; height: 7px; border-radius: 50%; background: #2E9E5B; display: inline-block; }
.hero__title { color: var(--ink); margin-bottom: 22px; }
.hero__accent { color: var(--accent); }
.hero__lead { font-size: 19px; line-height: 1.6; color: var(--ink-2); max-width: 520px; margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__points { display: flex; flex-wrap: wrap; gap: 26px; font-size: 14px; color: var(--muted); }
.hero__points span { display: flex; align-items: center; gap: 8px; }
.hero__points b { color: var(--accent); }
.hero__media { position: relative; }
.hero__media::before {
  content: ""; position: absolute; inset: auto -8px -18px auto; width: 180px; height: 180px;
  background: radial-gradient(circle at 30% 30%, rgba(var(--accent-glow), .18), transparent 70%); border-radius: 50%;
}
.hero__media-frame {
  position: relative; border-radius: 26px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: 0 40px 80px -40px rgba(23,21,15,.4);
  aspect-ratio: 3/4; background: #EDE8DE;
}
.hero__media-frame img { object-position: center 20%; }
.hero__media-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__card {
  position: absolute; left: -22px; bottom: 26px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 16px 20px; box-shadow: 0 20px 40px -20px rgba(23,21,15,.35);
  display: flex; align-items: center; gap: 14px;
}
.hero__card b { font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--accent); line-height: 1; }
.hero__card span { font-size: 13px; color: var(--muted); line-height: 1.35; }

/* ── Stats strip ───────────────────────────────────────────────── */
.stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats__item { padding: 30px 24px; border-right: 1px solid var(--border); }
.stats__item:last-child { border-right: none; }
.stats__item b { font-family: var(--font-head); font-weight: 800; font-size: 34px; color: var(--ink); }
.stats__item span { display: block; font-size: 14px; color: var(--muted); margin-top: 4px; }

/* ── Features ──────────────────────────────────────────────────── */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card { padding: 30px; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; }
.feature-card__num { font-family: var(--font-mono); font-size: 13px; color: var(--accent); margin-bottom: 18px; }
.feature-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.feature-card p { font-size: 15px; line-height: 1.6; color: var(--muted); }

/* ── Courses ───────────────────────────────────────────────────── */
.courses__head { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; margin-bottom: 44px; }
.courses__head-text { max-width: 620px; }
.level-tabs { display: inline-flex; padding: 5px; background: var(--surface); border: 1px solid #E0D9CB; border-radius: 999px; gap: 4px; }
@keyframes popIn { 0% { transform: scale(.9); } 60% { transform: scale(1.05); } 100% { transform: scale(1); } }
@keyframes cardIn { 0% { opacity: 0; transform: translateY(14px); } 100% { opacity: 1; transform: translateY(0); } }

/* Level selector = 4-column big tabs (code + description); mobile → 2×2 */
.courses__intro { max-width: 620px; margin-bottom: 32px; }
.courses__intro p { font-size: 16px; line-height: 1.55; color: var(--muted); margin-top: 12px; }
.levels-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 40px;
}
.level-tab {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  min-width: 0; width: 100%;
  padding: 18px 10px; border-radius: 18px; cursor: pointer; font-family: var(--font-body);
  border: 1.5px solid var(--accent); background: var(--accent); color: #fff;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.level-tab:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-3px); box-shadow: 0 12px 24px -14px rgba(var(--accent-glow),.5); }
.level-tab.active {
  border-color: var(--gold-border);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--on-gold);
  box-shadow: 0 16px 30px -12px rgba(210,180,0,.55);
  transform: translateY(-3px); animation: popIn .3s ease;
}
.level-tab:hover { color: #fff; }
.level-tab.active:hover { color: var(--on-gold); }
.level-tab__code { font-family: var(--font-head); font-weight: 800; font-size: 28px; line-height: 1; }
.level-tab__desc {
  font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; opacity: .85;
  max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.course-panels { position: relative; }
.course-panel { display: none; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.course-panel.active { display: grid; }
.course-panel.active .course-card { animation: cardIn .42s ease both; }
.course-panel.active .course-card:nth-child(2) { animation-delay: 90ms; }
.course-panel.active .course-card:nth-child(3) { animation-delay: 180ms; }

.course-card {
  display: flex; flex-direction: column; gap: 14px; padding: 30px;
  border-radius: var(--radius-card); background: var(--surface);
  border: 1px solid var(--border); height: 100%;
}
.course-card--featured { background: var(--ink); border-color: var(--ink); box-shadow: 0 26px 55px -28px rgba(23,21,15,.55); }
.course-card__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.course-card__code { font-family: var(--font-mono); font-size: 13px; letter-spacing: .08em; color: var(--muted); }
.course-card--featured .course-card__code { color: #B7B0A0; }
.course-card__badge {
  display: inline-flex; align-items: center; padding: 5px 11px; border-radius: 999px;
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}
.course-card h3 { font-size: 24px; font-weight: 600; color: var(--ink); }
.course-card--featured h3 { color: #fff; }
.course-card__price { font-family: var(--font-head); font-weight: 800; font-size: 40px; color: var(--ink); line-height: 1; }
.course-card--featured .course-card__price { color: #fff; }
.course-card__rule { height: 1px; background: var(--border); }
.course-card--featured .course-card__rule { background: rgba(255,255,255,.14); }
.course-card__meta { display: flex; flex-direction: column; gap: 12px; font-size: 14.5px; }
.course-card__meta div { display: flex; justify-content: space-between; gap: 12px; }
.course-card__meta .k { color: var(--muted); }
.course-card__meta .v { color: var(--ink); font-weight: 600; text-align: right; }
.course-card--featured .course-card__meta .v { color: #fff; }
.course-card__list { display: flex; flex-direction: column; gap: 9px; font-size: 14px; color: var(--muted); }
.course-card__list span { display: flex; align-items: center; gap: 9px; }
.course-card__list b { color: var(--accent); font-weight: 700; }
.course-card__btn {
  margin-top: auto; display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 20px; border-radius: 12px; font-weight: 600; font-size: 15px;
  background: var(--ink); color: #fff;
}
.course-card__btn:hover { color: #fff; opacity: .92; }
.course-card--featured .course-card__btn { background: var(--accent); }

/* ── Test band ─────────────────────────────────────────────────── */
.band-test .container { }
.band-test__inner {
  position: relative; overflow: hidden; border-radius: var(--radius-band);
  background: var(--ink); color: #fff; padding: 64px 56px;
}
.band-test__glow { position: absolute; top: -60px; right: -40px; width: 320px; height: 320px;
  background: radial-gradient(circle at center, rgba(var(--accent-glow), .28), transparent 68%); }
.band-test__grid { position: relative; display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; }
.band-test .eyebrow { color: var(--accent-light); }
.band-test h2 { font-size: 40px; line-height: 1.1; margin: 14px 0 16px; }
.band-test p { font-size: 18px; line-height: 1.6; color: #C8C1B2; max-width: 520px; }
.band-test__cta { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.band-test__cta small { font-size: 13px; color: #8F887A; }

/* ── Trial ─────────────────────────────────────────────────────── */
.trial__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.trial__media {
  position: relative; border-radius: 26px; overflow: hidden; border: 1px solid var(--border);
  box-shadow: 0 30px 60px -35px rgba(23,21,15,.35); aspect-ratio: 3/4; background: #EDE8DE;
}
.trial__media { aspect-ratio: 3/2; }
.trial__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }

/* Wide image band */
.image-band .container { }
.image-band__inner { position: relative; overflow: hidden; border-radius: var(--radius-band); border: 1px solid var(--border); box-shadow: 0 40px 80px -45px rgba(23,21,15,.4); background: #EDE8DE; }
.image-band__inner > img { width: 100%; height: clamp(440px, 58vh, 620px); object-fit: cover; object-position: center 8%; display: block; }
.image-band__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,21,15,.68) 0%, rgba(23,21,15,.34) 44%, transparent 72%); }
.image-band__text { position: absolute; inset: 0; display: flex; align-items: center; }
.image-band__text > div { padding: 0 clamp(32px,5vw,64px); max-width: 600px; color: #fff; }
.image-band__text .eyebrow { color: #fff; opacity: .85; }
.image-band__text h2 { margin: 14px 0 16px; }
.image-band__text p { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,.9); max-width: 440px; }
.trial h2 { margin: 14px 0 16px; }
.trial__lead { font-size: 17px; line-height: 1.6; color: var(--ink-2); margin-bottom: 32px; max-width: 520px; }
.trial__points { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 36px; }
.trial__points b { display: block; font-weight: 600; font-size: 16px; margin-bottom: 6px; }
.trial__points p { font-size: 14.5px; line-height: 1.55; color: var(--muted); }

/* ── Teachers ──────────────────────────────────────────────────── */
.teachers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.teacher-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); overflow: hidden; }
.teacher-card--featured { border-color: var(--gold-border); box-shadow: 0 26px 55px -30px rgba(210,180,0,.5); transform: translateY(-14px); }
.teacher-card figure { margin: 0; aspect-ratio: 3/4; background: #EDE8DE; }
.teacher-card figure img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.teacher-card__body { padding: 24px; }
.teacher-card h3 { font-size: 21px; font-weight: 600; }
.teacher-card__role { font-size: 13px; color: var(--accent); font-weight: 600; margin: 3px 0 12px; }
.teacher-card--featured .teacher-card__role { color: #9A6E05; }
.teacher-card p { font-size: 14px; line-height: 1.6; color: var(--muted); }

/* ── Payment (yellow) ──────────────────────────────────────────── */
.payment__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  background: linear-gradient(135deg, var(--gold) 0%, #F2CE18 100%);
  border: 1px solid #E0C61099; border-radius: 30px; padding: 56px;
  box-shadow: 0 40px 80px -45px rgba(200,165,0,.55);
}
.payment .eyebrow { color: #6E5A02; }
.payment h2 { color: var(--on-gold); margin: 14px 0 16px; }
.payment__lead { font-size: 17px; line-height: 1.6; color: #4A3D06; margin-bottom: 30px; max-width: 500px; }
.payment__steps { display: flex; flex-direction: column; gap: 16px; }
.payment__steps div { display: flex; gap: 14px; align-items: flex-start; }
.payment__steps .n { font-family: var(--font-mono); font-size: 13px; color: var(--accent); margin-top: 2px; }
.payment__steps span.t { font-size: 15.5px; color: #3A2E06; }
/* Payment — link-de-plată card mockup */
.pay-mock { background: #fff; border-radius: 22px; padding: 30px; box-shadow: 0 30px 60px -30px rgba(90,60,0,.5); }
.pay-mock__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.pay-mock__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #8A8577; }
.pay-mock__secure { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: #2E9E5B; }
.pay-mock__secure i { width: 7px; height: 7px; border-radius: 50%; background: #2E9E5B; }
.pay-mock__course { font-size: 13px; color: #8A8577; margin-bottom: 4px; }
.pay-mock__amount { font-family: var(--font-head); font-weight: 800; font-size: 46px; color: var(--ink); line-height: 1; margin-bottom: 24px; }
.pay-mock__card { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; }
.pay-mock__num { font-family: var(--font-mono); font-size: 15px; letter-spacing: .12em; color: var(--ink-2); }
.pay-mock__brands { display: flex; gap: 6px; }
.pay-mock__brands .visa { font-size: 11px; font-weight: 800; color: #1A1F71; }
.pay-mock__brands .mc { font-size: 11px; font-weight: 800; color: #EB001B; }
.pay-mock__btn { display: flex; align-items: center; justify-content: center; padding: 15px; border-radius: 12px; background: var(--ink); color: #fff; font-weight: 600; font-size: 15px; }
.pay-mock__btn:hover { color: #fff; opacity: .92; }
.payment h2 { color: var(--on-gold); }
.payment__steps .n { background: var(--on-gold); color: var(--gold); width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 0; }
.payment__steps div { align-items: center; }
.payment__steps span.t { color: var(--on-gold); font-weight: 500; }

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq { max-width: 820px; }
.faq__head { text-align: center; margin-bottom: 48px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 26px; font-size: 17px; font-weight: 600; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--warm); color: var(--accent); display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 400; transition: transform .2s ease, background .2s ease, color .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-item p { padding: 0 26px 24px; font-size: 15.5px; line-height: 1.65; color: var(--ink-2); }

/* ── Final CTA ─────────────────────────────────────────────────── */
.cta-final { padding: 20px 0 96px; }
.cta-final__inner {
  position: relative; overflow: hidden; border-radius: var(--radius-band);
  background: var(--accent); color: #fff; padding: 70px 40px; text-align: center;
}
.cta-final__inner::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(255,255,255,.18), transparent 55%); }
.cta-final__inner > * { position: relative; }
.cta-final h2 { font-size: 44px; line-height: 1.06; margin: 0 auto 16px; max-width: 640px; }
.cta-final p { font-size: 18px; color: rgba(255,255,255,.9); margin: 0 auto 32px; max-width: 520px; }
.cta-final__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-final .btn-pill--ink { background: var(--ink); }
.cta-final .btn-pill--soft { background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.4); }

/* ── Footer ────────────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: #C8C1B2; padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__logo img { height: 44px; width: auto; margin-bottom: 18px; }
.site-footer p { font-size: 14.5px; line-height: 1.65; max-width: 340px; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; }
.footer__social a svg { width: 20px; height: 20px; }
.footer__social a.ig { background: linear-gradient(45deg,#F58529,#DD2A7B,#8134AF,#515BD4); }
.footer__social a.tt { background: #010101; border: 1px solid rgba(255,255,255,.16); }
.footer__social a.fb { background: #1877F2; }
.site-footer h3 { font-family: var(--font-body); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: #8F887A; margin-bottom: 16px; }
.footer__menu, .footer__contact { display: flex; flex-direction: column; gap: 11px; font-size: 15px; }
.footer__menu a, .footer__contact a, .footer__contact span { color: #C8C1B2; }
.footer__menu a:hover, .footer__contact a:hover { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; padding-top: 24px; }
.footer__bottom small { font-size: 13px; color: #8F887A; }
.footer__hosting { font-size: 13px; color: #8F887A; }
.footer__hosting a { color: #C8C1B2; text-decoration: none; font-weight: 600; }
.footer__hosting a:hover { color: #fff; text-decoration: underline; }
.footer__pay { display: flex; align-items: center; gap: 12px; }
.footer__pay > span { font-size: 12px; color: #8F887A; }
.pay-visa { display: inline-flex; align-items: center; height: 30px; padding: 0 12px; background: #fff; border-radius: 6px;
  font-family: var(--font-body); font-style: italic; font-weight: 800; font-size: 15px; color: #1A1F71; }
.pay-mc { display: inline-flex; align-items: center; height: 30px; padding: 0 10px; background: #fff; border-radius: 6px; }

/* ── Floating WhatsApp ─────────────────────────────────────────── */
.wa-float {
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: max(16px, env(safe-area-inset-bottom, 0px));
  z-index: 60;
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 20px; border-radius: 999px;
  background: var(--accent); color: #fff; font-weight: 600; font-size: 15px;
  text-decoration: none; white-space: nowrap; box-sizing: border-box;
  max-width: calc(100vw - 32px - env(safe-area-inset-right, 0px) - env(safe-area-inset-left, 0px));
  box-shadow: 0 16px 34px -12px rgba(var(--accent-glow), .8);
}
.wa-float:hover { color: #fff; text-decoration: none; transform: translateY(-2px); }
.wa-float i { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: #fff; }
.wa-float i svg { width: 18px; height: 18px; fill: var(--wa-green); }

/* ── Scroll top ────────────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  left: max(16px, env(safe-area-inset-left, 0px));
  bottom: max(16px, env(safe-area-inset-bottom, 0px));
  z-index: 60;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--surface); color: var(--ink); font-size: 18px; cursor: pointer;
  opacity: 0; pointer-events: none; transition: opacity .2s ease; box-shadow: 0 10px 24px -12px rgba(23,21,15,.4);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .site-nav, .site-header__actions { display: none; }
  .menu-toggle { display: flex; }
  .promo-banner__inner { padding: 0 20px; }

  .hero .container { padding-top: 44px; padding-bottom: 56px; }
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__media { order: -1; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn-pill { width: 100%; }
  .display-xl { font-size: 40px; }
  .display-lg { font-size: 30px; }

  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item:nth-child(1), .stats__item:nth-child(2) { border-bottom: 1px solid var(--border); }

  .features { grid-template-columns: 1fr 1fr; }
  .section { padding: 56px 0; }
  .courses__head { grid-template-columns: 1fr; }
  .level-tabs { flex-wrap: wrap; }
  .levels-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 28px;
  }
  .level-tab {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    min-height: 52px;
    border-radius: 14px;
  }
  .level-tab:hover,
  .level-tab.active {
    transform: none;
  }
  .level-tab__code { font-size: 22px; }
  .level-tab__desc { font-size: 11px; letter-spacing: .04em; white-space: nowrap; }
  .course-panel.active { grid-template-columns: 1fr; }
  .course-card { padding: 24px 20px; }
  .course-card__price { font-size: 34px; }
  .hero__card { left: 12px; bottom: 16px; padding: 12px 14px; }
  .hero__card b { font-size: 24px; }
  .hero__lead { font-size: 17px; }
  .band-test h2 { font-size: 30px; }
  .band-test p { font-size: 16px; }
  .image-band__inner > img { height: clamp(280px, 48vh, 420px); }
  .image-band__text > div { padding: 24px 20px; max-width: 100%; }
  .image-band__scrim { background: linear-gradient(180deg, rgba(23,21,15,.2) 0%, rgba(23,21,15,.72) 100%); }
  .image-band__text { align-items: flex-end; }

  .band-test__inner { padding: 40px 26px; }
  .band-test__grid { grid-template-columns: 1fr; }

  .trial__grid { grid-template-columns: 1fr; }
  .teachers { grid-template-columns: 1fr; }
  .teacher-card--featured { transform: none; }

  .payment__grid { grid-template-columns: 1fr; padding: 32px 24px; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .features { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .promo-banner { height: 38px; font-size: 13px; }
  .promo-text-lg { display: none; }
  .promo-text-sm { display: inline; }
  .display-xl { font-size: 33px; }
  .display-lg { font-size: 26px; }
  .trial__points { grid-template-columns: 1fr; }
  .hero__title { font-size: 33px; }
  .hero__points { gap: 12px 18px; font-size: 13px; }
  .hero__card { left: 10px; right: auto; max-width: calc(100% - 20px); }

  .level-tab__code { font-size: 20px; }
  .stats__item { padding: 22px 16px; }
  .stats__item b { font-size: 28px; }
  .band-test__inner { padding: 32px 20px; }
  .band-test h2 { font-size: 26px; }

  .wa-float {
    right: max(12px, env(safe-area-inset-right, 0px));
    bottom: max(12px, env(safe-area-inset-bottom, 0px));
    padding: 12px;
    gap: 0;
    width: 52px;
    height: 52px;
    justify-content: center;
    max-width: none;
  }
  .wa-float__label { display: none; }
  .wa-float i { width: 28px; height: 28px; }
  .wa-float i svg { width: 18px; height: 18px; }

  .scroll-top {
    left: max(12px, env(safe-area-inset-left, 0px));
    bottom: max(12px, env(safe-area-inset-bottom, 0px));
  }
}
