/* ═══════════════════════════════════════════════════════════════
   CORUJA ACADEMY — Premium Design System
   ═══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ───────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --clr-teal-dark:    #00695C;
  --clr-teal-mid:     #00897B;
  --clr-teal-light:   #00BFA5;
  --clr-gold:         #FDD835;
  --clr-gold-dark:    #F9A825;

  /* Luxury Theme Additions */
  --clr-teal-deep:    #051A18; /* Near-black luxury teal background */
  --clr-teal-darker:  #082B27; /* Rich dark teal panel background */
  --clr-gold-luxury:  #E5A93B; /* Rich luxury gold */
  --clr-gold-bronze:  #C59B27; /* Deep luxury bronze gold */
  --clr-gold-champ:   #FCEBA2; /* Soft champagne gold highlight */
  --clr-teal-glow:    rgba(0, 191, 165, 0.15);
  
  /* Gradients */
  --grad-gold:        linear-gradient(135deg, var(--clr-gold-champ) 0%, var(--clr-gold-luxury) 50%, var(--clr-gold-bronze) 100%);
  --grad-teal-dark:   linear-gradient(135deg, var(--clr-teal-deep) 0%, var(--clr-teal-darker) 100%);

  /* Neutrals */
  --clr-white:        #FFFFFF;
  --clr-off-white:    #F8FAFA;
  --clr-surface:      #F0F7F6;
  --clr-border:       #E0EFED;
  --clr-muted:        #6B8A87;
  --clr-text:         #1A2E2B;
  --clr-text-light:   #3D5653;

  /* Shadows */
  --shadow-xs:  0 1px 3px rgba(0,105,92,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm:  0 2px 8px rgba(0,105,92,.08), 0 1px 4px rgba(0,0,0,.05);
  --shadow-md:  0 4px 20px rgba(0,105,92,.10), 0 2px 8px rgba(0,0,0,.06);
  --shadow-lg:  0 8px 40px rgba(0,105,92,.14), 0 4px 16px rgba(0,0,0,.08);
  --shadow-xl:  0 16px 60px rgba(0,105,92,.18), 0 6px 24px rgba(0,0,0,.10);

  /* Typography */
  --font-body:    'Outfit', sans-serif;
  --font-serif:   'Lora', serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;

  /* Radius */
  --radius-sm:  0.5rem;
  --radius-md:  1rem;
  --radius-lg:  1.5rem;
  --radius-xl:  2rem;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.25s var(--ease-out);
}

/* ── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background: var(--clr-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── LAYOUT ───────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.section { padding: var(--space-2xl) 0; }
.section--alt { background: var(--clr-off-white); }
.section--teal { background: linear-gradient(135deg, var(--clr-teal-dark) 0%, var(--clr-teal-mid) 100%); }
.section--teal-dark {
  background: var(--clr-teal-deep);
  background: var(--grad-teal-dark);
  color: var(--clr-white);
  position: relative;
}
.section--teal-dark .section-title {
  color: var(--clr-white);
}
.section--teal-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.72);
}
.section--teal-dark .section-eyebrow {
  color: var(--clr-gold-champ);
  background: rgba(229, 169, 59, 0.12);
  border-color: rgba(229, 169, 59, 0.25);
}

/* Dark section glassmorphic cards */
.section--teal-dark .how-step,
.section--teal-dark .testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
  color: var(--clr-white);
  padding: 2.25rem 2rem;
  height: 100%;
}
.section--teal-dark .how-step:hover,
.section--teal-dark .testimonial-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 191, 165, 0.3);
  box-shadow: 0 20px 40px rgba(0, 191, 165, 0.15), 0 0 15px rgba(0, 191, 165, 0.1);
  transform: translateY(-5px);
}
.section--teal-dark .how-step__title,
.section--teal-dark .testimonial-card__author strong {
  color: var(--clr-white);
}
.section--teal-dark .how-step__desc {
  color: rgba(255, 255, 255, 0.72);
}
.section--teal-dark .testimonial-card__text {
  color: rgba(255, 255, 255, 0.85);
}
.section--teal-dark .testimonial-card__author span {
  color: rgba(255, 255, 255, 0.55);
}
.section--teal-dark .how-step__number {
  color: var(--clr-gold-luxury);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.section--teal-dark .how-step__icon {
  background: var(--grad-gold);
  box-shadow: 0 8px 24px rgba(229, 169, 59, 0.3);
}
.section--teal-dark .how-step__icon svg {
  color: var(--clr-teal-deep);
}
.section--teal-dark .testimonial-card__quote {
  color: var(--clr-gold-luxury);
  opacity: 0.15;
}
.section--teal-dark .tag--before {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.1);
}
.section--teal-dark .tag--after {
  background: rgba(0, 191, 165, 0.15);
  color: var(--clr-teal-light);
  border-color: rgba(0, 191, 165, 0.3);
}

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--clr-teal-mid), var(--clr-teal-dark));
  color: var(--clr-white);
  box-shadow: 0 4px 20px rgba(0,137,123,.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,137,123,.45);
}
.btn--primary:active { transform: translateY(0); }

.btn--gold {
  background: var(--grad-gold);
  color: #0D2620;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(229, 169, 59, 0.35);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(229, 169, 59, 0.5);
  opacity: 0.95;
}

.btn--ghost {
  background: rgba(255,255,255,.12);
  color: var(--clr-text);
  border: 1.5px solid rgba(0,137,123,.2);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(0,137,123,.08);
  border-color: var(--clr-teal-mid);
  transform: translateY(-2px);
}

.btn--ghost-white {
  background: rgba(255,255,255,.12);
  color: var(--clr-white);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--clr-teal-mid);
  border: 2px solid var(--clr-teal-mid);
}
.btn--outline:hover {
  background: var(--clr-teal-mid);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn--sm  { padding: 0.6rem 1.25rem; font-size: 0.875rem; }
.btn--lg  { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn--xl  { padding: 1.15rem 2.75rem; font-size: 1.1rem; }
.btn--full-width { width: 100%; justify-content: center; }
.btn__icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ── SECTION TYPOGRAPHY ───────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-teal-light);
  margin-bottom: 0.75rem;
  padding: 0.3rem 1rem;
  background: rgba(0,191,165,.08);
  border-radius: var(--radius-full);
  border: 1px solid rgba(0,191,165,.2);
}

.section-eyebrow--light {
  color: rgba(253,216,53,.9);
  background: rgba(253,216,53,.12);
  border-color: rgba(253,216,53,.25);
}

.section-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--clr-text);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── BADGES ───────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
}
.badge--gold {
  background: rgba(253,216,53,.15);
  color: #8B6914;
  border: 1px solid rgba(253,216,53,.4);
}

/* ── ANIMATION BASE ───────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   HEADER — Premium Brand System v2
   Three concepts available via modifier classes:
   · .header--minimal   → Concept 1: Minimal Premium
   · .header--academy   → Concept 2: Modern International Academy (DEFAULT)
   · .header--luxury    → Concept 3: Luxury Educational Brand
   ═══════════════════════════════════════════════════════════════ */

/* ── Base Header Structure ──────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition:
    background   0.45s var(--ease-out),
    box-shadow   0.45s var(--ease-out),
    border-color 0.45s var(--ease-out),
    padding      0.3s  var(--ease-out);
}

/* ── CONCEPT 2: Modern International Academy (DEFAULT) ─────────── */
/* Gold top accent bar — 3px premium brand mark */
.header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--clr-teal-dark) 0%,
    var(--clr-teal-light) 40%,
    var(--clr-gold) 70%,
    var(--clr-gold-dark) 100%);
  z-index: 1;
  opacity: 1;
  transition: opacity 0.3s var(--ease-out);
}

.header__bar {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(0, 105, 92, 0.08);
  padding: 0;
  position: relative;
  z-index: 0;
  transition:
    background   0.45s var(--ease-out),
    box-shadow   0.45s var(--ease-out),
    border-color 0.45s var(--ease-out);
}

.header.scrolled .header__bar {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow:
    0 2px 0 rgba(0, 191, 165, 0.06),
    0 8px 40px rgba(0, 80, 68, 0.10),
    0 2px 12px rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 137, 123, 0.10);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 3px;  /* compensate for accent bar */
  height: 88px;
  transition: height 0.3s var(--ease-out);
}

.header.scrolled .header__inner {
  height: 74px;
}

/* ── HORIZONTAL LOGO LOCKUP (Version B — Primary) ──────────────── */
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
  text-decoration: none;
  /* No opacity, no overlays, no blur — full brand presence */
}

.header__logo:hover .header__logo-img {
  transform: scale(1.06) rotate(-3deg);
}

.header__logo-img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  display: block;
  /* Full color — zero opacity reduction */
  opacity: 1;
  filter: none;
  transition: transform 0.35s var(--ease-spring);
  flex-shrink: 0;
}

.header.scrolled .header__logo-img {
  width: 64px;
  height: 64px;
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), transform 0.35s var(--ease-spring);
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.header__logo-name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--clr-teal-dark);
  line-height: 1.15;
  display: block;
  letter-spacing: -0.02em;
  transition: color 0.25s;
}

.header__logo-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--clr-gold-dark);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  display: block;
  opacity: 1;
  transition: color 0.25s;
}

.header__logo:hover .header__logo-name {
  color: var(--clr-teal-mid);
}

/* ── NAVIGATION ─────────────────────────────────────────────────── */
.nav {
  margin-left: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-text-light);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color 0.22s var(--ease-out), background 0.22s var(--ease-out);
  white-space: nowrap;
}

/* Elegant teal underline sweep on hover */
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: var(--clr-teal-light);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s var(--ease-out);
}

.nav__link:hover {
  color: var(--clr-teal-dark);
  background: rgba(0, 137, 123, 0.06);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__link.active {
  color: var(--clr-teal-dark);
  font-weight: 600;
}

.nav__link.active::after {
  transform: scaleX(1);
  background: var(--clr-teal-mid);
}

/* ── HEADER ACTIONS (CTA Area) ──────────────────────────────────── */
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-left: 1rem;
}

/* Premium CTA Button — Gold Gradient */
.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.4rem;
  background: linear-gradient(135deg, var(--clr-teal-mid) 0%, var(--clr-teal-dark) 100%);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow:
    0 4px 16px rgba(0, 137, 123, 0.35),
    0 1px 4px rgba(0, 0, 0, 0.12);
  transition:
    transform    0.25s var(--ease-spring),
    box-shadow   0.25s var(--ease-out),
    background   0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.header__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-dark) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  border-radius: inherit;
}

.header__cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 8px 28px rgba(0, 137, 123, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.15);
}

.header__cta:hover::before {
  opacity: 1;
}

.header__cta:hover .header__cta-text,
.header__cta:hover .header__cta-icon {
  color: #0D2620;
}

.header__cta-text,
.header__cta-icon {
  position: relative;
  z-index: 1;
  transition: color 0.3s var(--ease-out);
}

.header__cta-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.header__cta:active {
  transform: translateY(0) scale(0.99);
}

/* ── MOBILE TOGGLE ──────────────────────────────────────────────── */
.nav__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(0, 137, 123, 0.18);
  background: rgba(0, 137, 123, 0.04);
  transition: background 0.22s, border-color 0.22s;
}

.nav__toggle:hover {
  background: rgba(0, 137, 123, 0.09);
  border-color: rgba(0, 137, 123, 0.3);
}

.nav__toggle span {
  width: 20px; height: 2px;
  background: var(--clr-teal-dark);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
  display: block;
}

.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV DRAWER ──────────────────────────────────────────── */
.mobile-nav {
  display: none;
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border);
  padding: 1.25rem;
}
.mobile-nav.open { display: block; }
.mobile-nav__list { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav__link {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--clr-text-light);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav__link:hover { background: var(--clr-surface); color: var(--clr-teal-mid); }

/* ──────────────────────────────────────────────────────────────────
   CONCEPT 1 — Minimal Premium
   Apply class .header--minimal to <header> to use this concept
   ────────────────────────────────────────────────────────────────── */
.header--minimal::before { display: none; }

.header--minimal .header__bar {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 105, 92, 0.07);
}

.header--minimal .header__inner { height: 80px; }
.header--minimal.scrolled .header__inner { height: 68px; }

.header--minimal.scrolled .header__bar {
  box-shadow: 0 1px 0 rgba(0, 191, 165, 0.06), 0 4px 24px rgba(0, 50, 43, 0.07);
}

.header--minimal .header__logo-img { width: 68px; height: 68px; }
.header--minimal.scrolled .header__logo-img { width: 58px; height: 58px; }

.header--minimal .header__logo-name {
  font-size: 1.15rem;
  color: var(--clr-teal-dark);
}
.header--minimal .header__logo-tagline {
  color: var(--clr-muted);
  letter-spacing: 0.08em;
}

.header--minimal .nav__link {
  font-size: 0.875rem;
  color: #4a6360;
}
.header--minimal .nav__link:hover { color: var(--clr-teal-dark); background: none; }
.header--minimal .nav__link::after { background: var(--clr-teal-dark); bottom: 2px; }

.header--minimal .header__cta {
  background: transparent;
  color: var(--clr-teal-dark);
  border: 1.5px solid var(--clr-teal-mid);
  box-shadow: none;
}
.header--minimal .header__cta::before { display: none; }
.header--minimal .header__cta:hover {
  background: var(--clr-teal-mid);
  color: white;
  border-color: var(--clr-teal-mid);
}
.header--minimal .header__cta:hover .header__cta-text,
.header--minimal .header__cta:hover .header__cta-icon { color: white; }

/* ──────────────────────────────────────────────────────────────────
   CONCEPT 3 — Luxury Educational Brand
   Apply class .header--luxury to <header> to use this concept
   ────────────────────────────────────────────────────────────────── */
.header--luxury::before {
  background: linear-gradient(90deg, var(--clr-gold-bronze) 0%, var(--clr-gold) 50%, var(--clr-gold-bronze) 100%);
}

.header--luxury .header__bar {
  background: var(--clr-teal-dark);
  border-bottom: 1px solid rgba(0, 191, 165, 0.15);
}

.header--luxury.scrolled .header__bar {
  background: rgba(0, 80, 68, 0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.header--luxury .header__inner { height: 92px; }
.header--luxury.scrolled .header__inner { height: 76px; }

.header--luxury .header__logo-img { width: 80px; height: 80px; filter: brightness(1.05); }
.header--luxury.scrolled .header__logo-img { width: 66px; height: 66px; }

.header--luxury .header__logo-name {
  color: #ffffff;
  font-size: 1.3rem;
}
.header--luxury .header__logo-tagline {
  color: var(--clr-gold-champ);
  letter-spacing: 0.12em;
}
.header--luxury .header__logo:hover .header__logo-name { color: var(--clr-gold-champ); }

.header--luxury .nav__link {
  color: rgba(255, 255, 255, 0.72);
}
.header--luxury .nav__link:hover {
  color: rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.07);
}
.header--luxury .nav__link::after { background: var(--clr-gold); }

.header--luxury .header__cta {
  background: var(--grad-gold);
  color: #0D2620;
  box-shadow: 0 4px 20px rgba(229, 169, 59, 0.4);
}
.header--luxury .header__cta::before {
  background: linear-gradient(135deg, #FFF9C4 0%, var(--clr-gold) 50%, var(--clr-gold-dark) 100%);
}
.header--luxury .header__cta:hover .header__cta-text,
.header--luxury .header__cta:hover .header__cta-icon { color: #0D2620; }

.header--luxury .nav__toggle span { background: rgba(255, 255, 255, 0.85); }
.header--luxury .nav__toggle {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}
.header--luxury .nav__toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
}

/* ═══════════════════════════════════════════════════════════════
   HERO — Cinematic Redesign
   ═══════════════════════════════════════════════════════════════ */

/* ── Core Section ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 91px;
  background: #071A18; /* deep teal base in case image loads slow */
}

/* ── Cinematic Background ──────────────────────────────────────── */
.hero__bg-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(5,30,26,.88) 0%,
      rgba(0,80,68,.72) 35%,
      rgba(0,60,50,.50) 60%,
      rgba(0,40,33,.25) 100%);
}
.hero__bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

/* ── Ambient Light Blobs ───────────────────────────────────────── */
.hero__ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}
.ambient-blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,191,165,.18) 0%, transparent 70%);
  top: -15%; right: -5%;
  animation: blob-drift 12s ease-in-out infinite;
}
.ambient-blob--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(253,216,53,.12) 0%, transparent 70%);
  bottom: 10%; left: -5%;
  animation: blob-drift 16s ease-in-out infinite reverse;
}
.ambient-blob--3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,137,123,.14) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation: blob-drift 10s ease-in-out infinite 3s;
}
@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(30px, -20px) scale(1.04); }
  66%  { transform: translate(-15px, 15px) scale(0.97); }
}

/* ── Canvas (particle dots) ────────────────────────────────────── */
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.4;
}

/* ── Hero Inner Layout ─────────────────────────────────────────── */
.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  flex: 1;
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
}

/* ── Hero Content (left col) ───────────────────────────────────── */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Staggered entrance animations */
[data-hero-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-hero-animate].hero-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-hero-animate="0"] { transition-delay: 0.1s; }
[data-hero-animate="1"] { transition-delay: 0.25s; }
[data-hero-animate="2"] { transition-delay: 0.4s; }
[data-hero-animate="3"] { transition-delay: 0.55s; }
[data-hero-animate="4"] { transition-delay: 0.7s; }
[data-hero-animate="5"] { transition-delay: 0.85s; }
[data-hero-animate="6"] { transition-delay: 0.35s; }

/* Pill eyebrow */
.hero__eyebrow { margin-bottom: 1.5rem; }

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem 0.45rem 0.65rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: 0.04em;
  backdrop-filter: blur(12px);
}
.hero__pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--clr-teal-light);
  box-shadow: 0 0 8px rgba(0,191,165,.8);
  animation: pulse-dot 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 4px rgba(0,191,165,.6); transform: scale(1); }
  50%       { box-shadow: 0 0 14px rgba(0,191,165,1); transform: scale(1.2); }
}

/* Main headline */
.hero__headline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.5rem;
}
.hero__headline-line {
  display: block;
  font-size: clamp(3rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  color: #FFFFFF;
  letter-spacing: -0.03em;
}
.hero__headline-line--accent {
  position: relative;
  display: inline-block;
}
.hero__headline-line--accent em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(120deg, var(--clr-gold) 0%, #FFE57F 50%, var(--clr-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.hero__headline-underline {
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--clr-gold), transparent);
  border-radius: 2px;
  transform-origin: left;
  animation: underline-grow 1s var(--ease-out) 0.9s both;
}
@keyframes underline-grow {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

/* Subheadline */
.hero__subheadline {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 2.25rem;
  font-weight: 400;
}

/* CTA Buttons */
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

.hero__btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: var(--grad-gold);
  color: #0D2620;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  letter-spacing: 0.01em;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(229, 169, 59, 0.4), 0 2px 8px rgba(0,0,0,.3);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
}
.hero__btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(229, 169, 59, 0.5), 0 4px 16px rgba(0,0,0,.35);
}
.hero__btn-primary:active { transform: translateY(-1px) scale(1); }

.hero__btn-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.35) 50%, transparent 60%);
  background-size: 200% 100%;
  background-position: -100% 0;
  animation: shine-sweep 3.5s ease-in-out infinite 1.5s;
}
@keyframes shine-sweep {
  0%   { background-position: -100% 0; }
  40%  { background-position: 200% 0; }
  100% { background-position: 200% 0; }
}

.hero__btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
  transition: all 0.25s var(--ease-out);
}
.hero__btn-ghost:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.45);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.hero__btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* Trust Badges — new horizontal card strip */
.hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  padding: 0.1rem 0;
  margin-bottom: 2rem;
  overflow: hidden;
}
.hero__trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.25rem;
  flex: 1;
  min-width: 120px;
  transition: background var(--transition);
  cursor: default;
}
.hero__trust-badge:hover { background: rgba(255,255,255,.06); }
.hero__trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}
.hero__trust-icon {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(0,191,165,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__trust-icon svg { width: 17px; height: 17px; color: var(--clr-teal-light); }
.hero__trust-text { display: flex; flex-direction: column; }
.hero__trust-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  line-height: 1.2;
}
.hero__trust-text span {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,.48);
  font-weight: 400;
  margin-top: 1px;
}

/* Social proof micro line */
.hero__social-micro {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__avatars {
  display: flex;
  align-items: center;
}
.hero__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  margin-left: -8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.hero__avatar:first-child { margin-left: 0; }
.hero__avatar--1 { background: linear-gradient(135deg, #00897B, #00BFA5); color: white; }
.hero__avatar--2 { background: linear-gradient(135deg, #FDD835, #F9A825); color: #1A2E2B; }
.hero__avatar--3 { background: linear-gradient(135deg, #00695C, #00897B); color: white; }
.hero__avatar--4 { background: linear-gradient(135deg, #00BFA5, #26D4BE); color: white; }

.hero__social-micro p {
  font-size: 0.82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.4;
}
.hero__social-micro strong { color: rgba(255,255,255,.9); }

/* ── Hero Visual (right col) ───────────────────────────────────── */
.hero__visual {
  position: relative;
  z-index: 3;
}

.hero__visual-frame {
  position: relative;
}

/* Main scene card */
.hero__scene-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.1),
    0 24px 80px rgba(0,0,0,.5),
    0 8px 32px rgba(0,0,0,.3);
  aspect-ratio: 4/3;
  background: #0D2E28;
}
.hero__scene-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s var(--ease-out);
  display: block;
}
.hero__scene-card:hover .hero__scene-img { transform: scale(1.04); }

.hero__scene-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,20,16,.7) 0%, transparent 50%),
    linear-gradient(to right, transparent 50%, rgba(0,0,0,.15) 100%);
  pointer-events: none;
}

/* Premium play button */
.hero__play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.hero__play-btn:hover .hero__play-inner {
  transform: scale(1.12);
  background: rgba(253,216,53,.92);
  color: #1A2E2B;
}
.hero__play-btn:hover .hero__play-ring--1 { opacity: 0.35; transform: scale(1.5); }
.hero__play-btn:hover .hero__play-ring--2 { opacity: 0.2;  transform: scale(2.2); }

.hero__play-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5);
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.5s var(--ease-out);
  pointer-events: none;
}
.hero__play-ring--1 { width: 68px; height: 68px; opacity: 0.2; animation: ring-pulse 2.5s ease-in-out infinite; }
.hero__play-ring--2 { width: 90px; height: 90px; opacity: 0.1; animation: ring-pulse 2.5s ease-in-out infinite 0.6s; }

@keyframes ring-pulse {
  0%   { transform: translate(-50%,-50%) scale(0.95); opacity: 0.15; }
  50%  { transform: translate(-50%,-50%) scale(1.08); opacity: 0.3; }
  100% { transform: translate(-50%,-50%) scale(0.95); opacity: 0.15; }
}

.hero__play-inner {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-teal-dark);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  transition: all 0.3s var(--ease-spring);
  position: relative;
}
.hero__play-inner svg { width: 22px; height: 22px; margin-left: 3px; }

/* Watch label */
.hero__watch-label {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}
.hero__watch-label svg { width: 14px; height: 14px; color: var(--clr-gold); }

/* ── Floating Cards ────────────────────────────────────────────── */
.hero__float {
  position: absolute;
  animation: float-gentle 5s ease-in-out infinite;
}
.hero__float--lesson {
  bottom: -1.5rem;
  left: -2rem;
  animation-delay: 0.5s;
}
.hero__float--rating {
  top: -1.25rem;
  right: -1.5rem;
  animation-delay: 1.5s;
}
@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Lesson card */
.hero__float-lesson {
  background: rgba(10,30,26,.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1rem 1.15rem;
  min-width: 240px;
  box-shadow: 0 12px 40px rgba(0,0,0,.4), 0 2px 8px rgba(0,0,0,.2);
}
.hero__float-lesson-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}
.hero__fl-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-teal-mid), var(--clr-teal-light));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.hero__fl-info { flex: 1; min-width: 0; }
.hero__fl-info strong {
  display: block;
  font-size: 0.825rem;
  font-weight: 700;
  color: rgba(255,255,255,.95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero__fl-info span {
  font-size: 0.68rem;
  color: rgba(255,255,255,.45);
}
.hero__fl-live {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: #4AE8A8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.hero__live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4AE8A8;
  box-shadow: 0 0 6px #4AE8A8;
  animation: live-blink 1.5s ease-in-out infinite;
}
@keyframes live-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero__float-lesson-progress { }
.hero__fl-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.hero__fl-bar {
  height: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.3rem;
}
.hero__fl-bar-fill {
  height: 100%;
  width: 62%;
  background: linear-gradient(90deg, var(--clr-teal-light), #4AE8A8);
  border-radius: 2px;
  animation: progress-fill 3s var(--ease-out) 1.5s both;
}
@keyframes progress-fill {
  from { width: 0; }
  to   { width: 62%; }
}
.hero__fl-time {
  font-size: 0.68rem;
  color: rgba(255,255,255,.35);
}

/* Rating card */
.hero__float-rating {
  background: rgba(253,216,53,.95);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.1rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(253,216,53,.4), 0 4px 12px rgba(0,0,0,.2);
  min-width: 120px;
}
.hero__fr-stars {
  font-size: 0.85rem;
  color: #8B6914;
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
}
.hero__fr-score {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1A2E2B;
  line-height: 1;
  margin-bottom: 0.15rem;
}
.hero__fr-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(26,46,43,.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Owl Mascot ────────────────────────────────────────────────── */
.hero__owl-wrap {
  position: absolute;
  bottom: -1.5rem;
  right: -1.75rem;
  z-index: 10;
  animation: owl-hover 4.5s ease-in-out infinite;
}
@keyframes owl-hover {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-12px) rotate(2deg); }
}
.hero__owl-img {
  width: 100px;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,.4)) drop-shadow(0 4px 12px rgba(0,105,92,.3));
  display: block;
}
.hero__owl-speech {
  position: absolute;
  bottom: calc(100% + 4px);
  right: 70px;
  background: white;
  border-radius: 12px 12px 0 12px;
  padding: 0.55rem 0.9rem;
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  white-space: nowrap;
  animation: speech-appear 0.5s var(--ease-spring) 2s both;
}
@keyframes speech-appear {
  from { opacity: 0; transform: scale(0.7) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.hero__owl-speech-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clr-teal-dark);
}
.hero__owl-speech-tail {
  position: absolute;
  bottom: -8px;
  right: 10px;
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 0px solid transparent;
  border-top: 8px solid white;
}

/* ── Wave transition ───────────────────────────────────────────── */
.hero__wave {
  position: relative;
  z-index: 3;
  line-height: 0;
  margin-top: auto;
}
.hero__wave svg { width: 100%; display: block; }

/* ── Responsive Hero ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__trust { gap: 0; }
  .hero__trust-badge { padding: 0.75rem 0.85rem; min-width: 100px; }
  .hero__trust-text strong { font-size: 0.72rem; }
}

@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.5rem 0 4rem;
    gap: 2.5rem;
  }
  .hero__content { align-items: center; }
  .hero__subheadline { max-width: 100%; }
  .hero__ctas { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__social-micro { justify-content: center; }
  .hero__visual { order: -1; }

  .hero__float--lesson { left: -0.5rem; bottom: -0.5rem; }
  .hero__float--rating { right: -0.5rem; top: -0.5rem; }

  .hero__headline-line { font-size: clamp(2.4rem, 8vw, 3.25rem); }

  .hero__trust {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    row-gap: 0;
  }
  .hero__trust-divider:nth-child(4) { display: none; }
  .hero__trust-badge:nth-child(5),
  .hero__trust-badge:nth-child(7) {
    border-top: 1px solid rgba(255,255,255,.12);
  }
}

@media (max-width: 480px) {
  .hero__float { display: none; }
  .hero__owl-wrap { right: -0.5rem; bottom: -1rem; }
  .hero__owl-img { width: 80px; }
  .hero__owl-speech { display: none; }
  .hero__trust { grid-template-columns: 1fr; }
  .hero__trust-divider { display: none !important; }
  .hero__trust-badge { border-top: 1px solid rgba(255,255,255,.08) !important; }
  .hero__trust-badge:first-child { border-top: none !important; }
}

/* ── Legacy orbs (kept for non-hero uses) ──────────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: float-orb 8s ease-in-out infinite;
}
@keyframes float-orb {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.05); }
}

/* Hero Wave */
.hero__wave svg { width: 100%; display: block; }

/* ═══════════════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════════════ */
.stats {
  position: relative;
  z-index: 10;
  margin-top: -4.5rem; /* Overlap the hero wave transition */
  padding: 0;
  background: transparent;
  border-bottom: none;
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 105, 92, 0.08);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  box-shadow: 0 20px 50px -12px rgba(0, 40, 33, 0.12);
}

.stat-card {
  text-align: center;
  padding: 1rem;
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
  transition: all var(--transition);
  position: relative;
  overflow: visible;
}
/* Divider lines between stats on desktop */
.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  right: -0.5rem;
  height: 70%;
  width: 1px;
  background: rgba(0, 105, 92, 0.08);
}
.stat-card:hover {
  transform: translateY(-3px);
}

.stat-card__icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(0,191,165,.1), rgba(0,137,123,.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.stat-card__icon svg { width: 24px; height: 24px; color: var(--clr-teal-mid); }

.stat-card__number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--clr-teal-dark);
  line-height: 1;
  display: inline;
}
.stat-card__suffix {
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-teal-light);
  display: inline;
}
.stat-card__label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-muted);
}

/* ═══════════════════════════════════════════════════════════════
   WHY CORUJA
   ═══════════════════════════════════════════════════════════════ */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  padding: 2rem;
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 105, 92, 0.05);
  box-shadow: 0 10px 30px -10px rgba(0, 105, 92, 0.05);
  transition: all 0.4s var(--ease-out);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(0, 105, 92, 0.08), 0 0 0 1px rgba(0, 191, 165, 0.15);
  border-color: rgba(0, 191, 165, 0.25);
}

.why-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.why-card__icon--teal {
  background: linear-gradient(135deg, rgba(0,191,165,.12), rgba(0,137,123,.12));
}
.why-card__icon--gold {
  background: linear-gradient(135deg, rgba(253,216,53,.18), rgba(249,168,37,.15));
}
.why-card__icon svg { width: 26px; height: 26px; }
.why-card__icon--teal svg { color: var(--clr-teal-mid); }
.why-card__icon--gold svg { color: var(--clr-gold-dark); }

.why-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.6rem;
}
.why-card__desc {
  font-size: 0.925rem;
  color: var(--clr-text-light);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════ */
.how__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 3rem;
}

.how-step {
  text-align: center;
  padding: 1rem;
}

.how-step__number {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--clr-teal-light);
  margin-bottom: 1rem;
}

.how-step__icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--clr-teal-dark), var(--clr-teal-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 24px rgba(0,137,123,.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.how-step:hover .how-step__icon {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(0,137,123,.4);
}
.how-step__icon svg { width: 28px; height: 28px; color: var(--clr-white); }

.how-step__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.6rem;
}
.how-step__desc {
  font-size: 0.875rem;
  color: var(--clr-text-light);
  line-height: 1.65;
}

.how-step__connector {
  width: 60px;
  margin-top: 2.75rem;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-teal-light), var(--clr-teal-mid));
  position: relative;
  flex-shrink: 0;
}
.how-step__connector::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid var(--clr-teal-mid);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.how__cta { text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   COURSES
   ═══════════════════════════════════════════════════════════════ */
.courses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.course-card {
  position: relative;
  padding: 2rem;
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 105, 92, 0.05);
  box-shadow: 0 10px 30px -10px rgba(0, 105, 92, 0.05);
  transition: all 0.4s var(--ease-out);
  overflow: hidden;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(0, 105, 92, 0.1), 0 0 0 1px rgba(0, 191, 165, 0.15);
  border-color: rgba(0, 191, 165, 0.25);
}

.course-card__accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent, var(--clr-teal-light));
}

.course-card--featured {
  border: 1px solid rgba(229, 169, 59, 0.3);
  box-shadow: 0 12px 30px -8px rgba(229, 169, 59, 0.15), 0 10px 30px -10px rgba(0, 105, 92, 0.05);
}
.course-card--featured:hover {
  border-color: var(--clr-gold-luxury);
  box-shadow: 0 20px 40px -10px rgba(229, 169, 59, 0.25), 0 0 0 1px rgba(229, 169, 59, 0.2);
}

.course-card__badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--clr-gold);
  color: var(--clr-text);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

.course-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.course-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 0.6rem;
}
.course-card__desc {
  font-size: 0.9rem;
  color: var(--clr-text-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.course-card__features {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.course-card__features li {
  font-size: 0.85rem;
  color: var(--clr-text-light);
  padding-left: 1.25rem;
  position: relative;
}
.course-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-teal-light);
  font-weight: 700;
}
.course-card__cta {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-teal-mid);
  transition: color var(--transition), gap var(--transition);
  display: inline-flex;
  align-items: center;
}
.course-card__cta:hover { color: var(--clr-teal-dark); letter-spacing: 0.02em; }

/* ═══════════════════════════════════════════════════════════════
   TEACHERS
   ═══════════════════════════════════════════════════════════════ */
.teachers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.teacher-card {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 105, 92, 0.05);
  box-shadow: 0 10px 30px -10px rgba(0, 105, 92, 0.05);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}
.teacher-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(0, 105, 92, 0.1), 0 0 0 1px rgba(0, 191, 165, 0.15);
  border-color: rgba(0, 191, 165, 0.25);
}

.teacher-card__photo-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--clr-surface), var(--clr-border));
}
.teacher-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s var(--ease-out);
}
.teacher-card:hover .teacher-card__photo { transform: scale(1.05); }

.teacher-card__flag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  background: var(--clr-white);
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.teacher-card__body { padding: 1.5rem; }

.teacher-card__name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 0.25rem;
}
.teacher-card__cert {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr-teal-mid);
  background: rgba(0,137,123,.08);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
  border: 1px solid rgba(0,137,123,.15);
}
.teacher-card__specialty {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--clr-muted);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.teacher-card__bio {
  font-size: 0.875rem;
  color: var(--clr-text-light);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.teacher-card__stars {
  font-size: 0.9rem;
  color: var(--clr-gold-dark);
}
.teacher-card__stars span {
  font-weight: 700;
  color: var(--clr-text);
  margin-left: 0.25rem;
}

.teachers__cta { text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card--featured {
  border-color: var(--clr-teal-light);
  box-shadow: 0 4px 24px rgba(0,191,165,.15), var(--shadow-md);
}

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.7;
  color: var(--clr-teal-light);
  opacity: 0.3;
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  pointer-events: none;
}

.testimonial-card__before-after {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.testimonial-card__before-after svg { width: 16px; height: 16px; color: var(--clr-teal-light); flex-shrink: 0; }

.tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}
.tag--before {
  background: rgba(0,0,0,.05);
  color: var(--clr-muted);
  border: 1px solid var(--clr-border);
}
.tag--after {
  background: rgba(0,191,165,.1);
  color: var(--clr-teal-dark);
  border: 1px solid rgba(0,191,165,.25);
}

.testimonial-card__text {
  font-size: 0.925rem;
  color: var(--clr-text-light);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
  padding-top: 1rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--clr-teal-light);
  flex-shrink: 0;
}
.testimonial-card__avatar--initial {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-teal-mid), var(--clr-teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-text);
}
.testimonial-card__author span {
  font-size: 0.8rem;
  color: var(--clr-muted);
}

/* ═══════════════════════════════════════════════════════════════
   QUIZ SECTION
   ═══════════════════════════════════════════════════════════════ */
.quiz {
  position: relative;
  overflow: hidden;
  padding: var(--space-2xl) 0;
  background: var(--clr-white);
}

.quiz__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 30%, rgba(0, 191, 165, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(229, 169, 59, 0.05) 0%, transparent 45%);
  pointer-events: none;
}

.quiz__inner {
  max-width: 900px;
  margin: 0 auto;
  background: var(--clr-white);
  border: 1px solid rgba(0, 105, 92, 0.06);
  border-radius: var(--radius-xl);
  padding: 3rem 4rem;
  box-shadow: 0 24px 60px -15px rgba(0, 50, 43, 0.08);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.quiz__inner::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 191, 165, 0.15) 0%, rgba(229, 169, 59, 0.15) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.quiz__owl { position: relative; flex-shrink: 0; }
.quiz__owl-img {
  width: 130px;
  filter: drop-shadow(0 8px 24px rgba(0, 105, 92, 0.15));
  animation: owl-float 4.5s ease-in-out infinite;
}
@keyframes owl-float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%       { transform: translateY(-10px) rotate(2deg); }
}

.quiz__content { color: var(--clr-text); }

.quiz__title {
  font-size: clamp(1.75rem, 3.5vw, 2.3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--clr-teal-dark);
}
.quiz__subtitle {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--clr-text-light);
  margin-bottom: 2rem;
  max-width: 520px;
}

.quiz__form {
  max-width: 520px;
}

.quiz__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.quiz__input {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: var(--clr-off-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-full);
  color: var(--clr-text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.quiz__input::placeholder { color: var(--clr-muted); }
.quiz__input:focus {
  outline: none;
  border-color: var(--clr-teal-mid);
  background: var(--clr-white);
  box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.1);
}
.quiz__note {
  font-size: 0.78rem;
  color: var(--clr-muted);
  margin-top: 0.75rem;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   RESOURCES
   ═══════════════════════════════════════════════════════════════ */
.resources__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.resource-card {
  padding: 2rem 1.5rem;
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 105, 92, 0.05);
  box-shadow: 0 10px 30px -10px rgba(0, 105, 92, 0.05);
  text-align: center;
  transition: all 0.4s var(--ease-out);
}
.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -12px rgba(0, 105, 92, 0.08), 0 0 0 1px rgba(0, 191, 165, 0.15);
  border-color: rgba(0, 191, 165, 0.25);
}
.resource-card__icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.resource-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.6rem;
}
.resource-card__desc {
  font-size: 0.875rem;
  color: var(--clr-text-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.resource-card__link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--clr-teal-mid);
  transition: color var(--transition);
}
.resource-card__link:hover { color: var(--clr-teal-dark); }

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, rgba(0, 105, 92, 0.02) 0%, rgba(0, 191, 165, 0.05) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  border: 1px solid rgba(0, 105, 92, 0.06);
  box-shadow: 0 16px 40px -15px rgba(0, 50, 43, 0.06);
  position: relative;
  overflow: hidden;
}

/* Subtle background accent glow */
.newsletter::after {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(0, 191, 165, 0.1) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.newsletter__title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--clr-teal-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.newsletter__desc {
  font-size: 0.95rem;
  color: var(--clr-text-light);
  line-height: 1.6;
}

.newsletter__form {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  width: 100%;
}

.newsletter__input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--clr-text);
  background: var(--clr-white);
  transition: all var(--transition);
}

.newsletter__input:focus {
  outline: none;
  border-color: var(--clr-teal-mid);
  box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.1);
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
.faq__inner { max-width: 780px; margin: 0 auto; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-text);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-item__question:hover { color: var(--clr-teal-mid); }
.faq-item__question[aria-expanded="true"] { color: var(--clr-teal-dark); }

.faq-item__icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--clr-muted);
  transition: transform 0.3s var(--ease-out), color 0.3s;
}
.faq-item__question[aria-expanded="true"] .faq-item__icon {
  transform: rotate(180deg);
  color: var(--clr-teal-mid);
}

.faq-item__answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.925rem;
  color: var(--clr-text-light);
  line-height: 1.75;
  border-top: 1px solid var(--clr-border);
  padding-top: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════════ */
.final-cta {
  position: relative;
  background: linear-gradient(140deg, var(--clr-teal-dark) 0%, #00544A 50%, #003D35 100%);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 60% at 10% 50%, rgba(0,191,165,.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 30%, rgba(253,216,53,.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 50% 100%, rgba(0,0,0,.2) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta__owl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: clamp(2rem, 8vw, 7rem);
  opacity: 1; /* full opacity since it has a solid background */
  pointer-events: none;
  z-index: 1;
}
.final-cta__owl-img {
  width: clamp(120px, 14vw, 190px);
  height: clamp(120px, 14vw, 190px);
  object-fit: contain;
  background: #ffffff;
  border-radius: 50%;
  padding: clamp(6px, 1vw, 12px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  filter: none; /* remove mascot green drop-shadow */
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.final-cta__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.final-cta__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--clr-gold);
}
.final-cta__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}
.final-cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.final-cta__note {
  font-size: 0.82rem;
  color: rgba(255,255,255,.5);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: #0F1F1D;
  color: rgba(255,255,255,.8);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  padding: 4rem 0 3rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
}
.footer__logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  opacity: 1;
  filter: none;
  flex-shrink: 0;
  background: #ffffff;       /* fundo branco — elimina transparência do PNG */
  border-radius: 50%;        /* mantém o formato circular da logo */
  padding: 4px;              /* pequena margem interna para a logo respirar */
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);  /* sombra suave para destacar no fundo escuro */
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer__logo:hover .footer__logo-img {
  transform: scale(1.06) rotate(-3deg);
}
.footer__logo-name {
  font-weight: 800;
  font-size: 1.2rem;
  color: #ffffff;
  display: block;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.footer__logo-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--clr-gold-champ);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  display: block;
  opacity: 1;
  margin-top: 0.1rem;
}

.footer__brand-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer__social { display: flex; gap: 0.75rem; }
.footer__social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer__social-link:hover {
  background: var(--clr-teal-mid);
  border-color: var(--clr-teal-mid);
  transform: translateY(-2px);
}
.footer__social-link svg { width: 16px; height: 16px; color: rgba(255,255,255,.7); }
.footer__social-link:hover svg { color: white; }

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

.footer__col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--clr-teal-light); }

.footer__contact-list { display: flex; flex-direction: column; gap: 0.6rem !important; margin-bottom: 1.25rem; }
.footer__contact-list li { display: flex; align-items: center; gap: 0.5rem; }
.footer__contact-list svg { width: 15px; height: 15px; color: var(--clr-teal-light); flex-shrink: 0; }
.footer__contact-list a, .footer__contact-list span {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer__contact-list a:hover { color: var(--clr-teal-light); }

.footer__cta { margin-top: 0.5rem; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer__bottom p, .footer__bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
}
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-links a:hover { color: rgba(255,255,255,.6); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .courses__grid { grid-template-columns: repeat(2, 1fr); }
  .teachers__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .resources__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }

  .how__steps {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .how-step__connector {
    display: none;
  }

  .newsletter {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .newsletter__form { min-width: unset; }

  .quiz__inner { grid-template-columns: 1fr; }
  .quiz__owl { display: none; }
}

/* Mobile */
@media (max-width: 768px) {
  .nav { display: none; }
  .nav__toggle { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem 0 2rem;
  }
  .hero__subheadline { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .trust-badges { justify-content: center; }

  .hero__visual { order: -1; }
  .hero__owl { right: 0; bottom: -15px; }
  .hero__owl-img { width: 70px; }
  .hero__float-card--top { left: 0; top: -12px; }
  .hero__float-card--bottom { display: none; }

  .why__grid { grid-template-columns: 1fr; }
  .courses__grid { grid-template-columns: 1fr; }
  .teachers__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .resources__grid { grid-template-columns: 1fr; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .how__steps { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__links { grid-template-columns: 1fr 1fr; }

  .final-cta__owl { display: none; }

  .quiz__form-row { grid-template-columns: 1fr; }

  .newsletter__form { flex-direction: column; }
  .newsletter { padding: 1.75rem; }

  .footer__bottom-inner { flex-direction: column; text-align: center; }

  .hero__ctas .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .stats__inner { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .footer__links { grid-template-columns: 1fr; }
}

/* ── SCROLLBAR ─────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-off-white); }
::-webkit-scrollbar-thumb { background: var(--clr-teal-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--clr-teal-mid); }

/* ── BRAND MASCOT WATERMARKS ───────────────────────────────────── */
.why, .how, .courses, .teachers, .results, .faq {
  position: relative;
}
.why::after, .how::after, .courses::after, .teachers::after, .results::after, .faq::after {
  content: '';
  position: absolute;
  background-image: url('CORUJA_MASCOTE.png');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
.why::after {
  bottom: 1rem; right: 2rem;
  width: 120px; height: 120px;
  opacity: 0.03;
}
.how::after {
  bottom: 2rem; right: 3rem;
  width: 140px; height: 140px;
  opacity: 0.015;
}
.courses::after {
  bottom: 2rem; left: 2rem;
  width: 130px; height: 130px;
  opacity: 0.03;
  transform: scaleX(-1);
}
.teachers::after {
  top: 2rem; right: 3rem;
  width: 100px; height: 100px;
  opacity: 0.03;
}
.results::after {
  top: 2rem; left: 3rem;
  width: 130px; height: 130px;
  opacity: 0.015;
  transform: scaleX(-1);
}
.faq::after {
  bottom: 2rem; right: 4rem;
  width: 115px; height: 115px;
  opacity: 0.03;
}

/* ── FOCUS VISIBLE ────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--clr-teal-mid);
  outline-offset: 3px;
  border-radius: 4px;
}
