/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  height: 70px;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(26,35,126,0.06);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 38px; }
.nav-brand { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-name { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }
.nav-brand-sub  { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--slate-light); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.84rem; font-weight: 500; color: var(--slate); text-decoration: none; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--navy); transform: scaleX(0); transition: transform 0.2s; }
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { background: var(--navy); color: white; border: none; padding: 0.6rem 1.4rem; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.82rem; border-radius: 6px; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.15s; }
.nav-cta:hover { background: var(--navy-mid); transform: translateY(-1px); }

/* ── HERO ── */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; padding: 7rem 6% 5rem; background: var(--bg-white); position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; top: 0; right: 0; width: 45%; height: 100%; background: linear-gradient(160deg, var(--navy-pale) 0%, var(--bg) 100%); clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%); z-index: 0; }
.hero-content { position: relative; z-index: 1; }
.hero-visual   { position: relative; z-index: 1; }

.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--navy-pale); border: 1px solid rgba(26,35,126,0.15); padding: 0.35rem 0.9rem; border-radius: 100px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 1.5rem; }
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

.hero h1 { font-family: 'Fraunces', serif; font-size: clamp(2.6rem, 4vw, 3.8rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--navy-dark); margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--green-dark); position: relative; }
.hero h1 em::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 3px; background: var(--green); border-radius: 2px; }
.hero-sub { font-size: 1.05rem; color: var(--slate); max-width: 480px; margin-bottom: 2.5rem; line-height: 1.8; font-weight: 300; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-primary { background: var(--navy); color: white; border: none; padding: 0.85rem 1.8rem; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.88rem; border-radius: 6px; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.2s; box-shadow: 0 4px 14px rgba(26,35,126,0.25); }
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,35,126,0.3); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); padding: 0.85rem 1.8rem; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.88rem; border-radius: 6px; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.2s; }
.btn-outline:hover { background: var(--navy-pale); }

.hero-trust { display: flex; align-items: center; gap: 1rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.trust-avatars { display: flex; }
.trust-avatar { width: 34px; height: 34px; border-radius: 50%; border: 2px solid white; background: var(--navy-mid); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; color: white; margin-left: -10px; }
.trust-avatar:first-child { margin-left: 0; }
.trust-text { font-size: 0.82rem; color: var(--slate); }
.trust-text strong { color: var(--navy); font-weight: 600; }

/* ── HERO VIDEO CARD ── */
.hero-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(26,35,126,0.12), 0 4px 16px rgba(0,0,0,0.06); border: 1px solid var(--border); }
.hero-card-header { background: var(--navy); padding: 0.8rem 1.2rem; display: flex; align-items: center; gap: 0.5rem; }
.win-dot { width: 10px; height: 10px; border-radius: 50%; }
.win-red    { background: #ff5f57; }
.win-yellow { background: #febc2e; }
.win-green  { background: #28c840; }
.hero-card-title { font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.7); margin-left: 0.5rem; }
.hero-card video { width: 100%; display: block; max-height: 280px; object-fit: cover; }
.hero-card-footer { padding: 1rem 1.2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.mini-stat { background: var(--bg); border-radius: 8px; padding: 0.8rem; border: 1px solid var(--border); }
.mini-stat-val   { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 700; color: var(--navy); line-height: 1; }
.mini-stat-label { font-size: 0.7rem; font-weight: 500; color: var(--slate-mid); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.08em; }
.mini-stat.green .mini-stat-val { color: var(--green-dark); }

/* ── MARQUEE ── */
.marquee-section { padding: 1rem 0; overflow: hidden; background: var(--navy); }
.marquee-track { display: flex; gap: 3rem; animation: marquee 35s linear infinite; width: max-content; }
.marquee-item { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); white-space: nowrap; display: flex; align-items: center; gap: 1rem; }
.marquee-item::after { content: '◆'; color: var(--green); font-size: 0.45rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ── */
section { padding: 6rem 6%; }
.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-dark); margin-bottom: 0.8rem; }
.section-label::before { content: ''; width: 18px; height: 2px; background: var(--green); border-radius: 1px; display: block; }
.section-title { font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 2.8vw, 2.6rem); font-weight: 700; line-height: 1.2; color: var(--navy-dark); margin-bottom: 1rem; letter-spacing: -0.02em; }
.section-sub { font-size: 1rem; color: var(--slate); max-width: 540px; line-height: 1.8; font-weight: 300; }
.section-header { margin-bottom: 3.5rem; }

/* ── STATS BAR ── */
.stats-bar { background: var(--navy-dark); padding: 3rem 6%; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; }
.stat-cell { background: var(--navy-dark); padding: 2rem; text-align: center; transition: background 0.2s; }
.stat-cell:hover { background: var(--navy); }
.stat-num   { font-family: 'Fraunces', serif; font-size: 2.4rem; font-weight: 700; color: var(--green); line-height: 1; }
.stat-label { font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.5rem; }

/* ── ABOUT ── */
.about-bg { background: white; }
.about-grid  { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }
.about-quote { font-family: 'Fraunces', serif; font-size: clamp(1.3rem, 2vw, 1.7rem); font-style: italic; line-height: 1.5; color: var(--navy); margin-bottom: 2rem; padding-left: 1.5rem; border-left: 3px solid var(--green); }
.about-text  { font-size: 0.95rem; color: var(--slate); line-height: 1.9; font-weight: 300; margin-bottom: 1rem; }
.feature-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 1.2rem; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; transition: all 0.2s; }
.feature-item:hover { border-color: var(--navy-mid); background: var(--navy-pale); transform: translateX(4px); }
.feature-icon  { width: 38px; height: 38px; flex-shrink: 0; background: var(--navy-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.feature-title { font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.feature-desc  { font-size: 0.78rem; color: var(--slate-mid); line-height: 1.5; }

/* ── COURSES ── */
.courses-bg { background: var(--bg); }
.course-tabs { display: flex; gap: 0.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.tab { padding: 0.6rem 1.4rem; font-size: 0.8rem; font-weight: 600; cursor: pointer; background: white; color: var(--slate-mid); border: 1.5px solid var(--border); border-radius: 100px; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.tab.active { background: var(--navy); color: white; border-color: var(--navy); }
.tab:hover:not(.active) { border-color: var(--navy); color: var(--navy); }
.courses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.5rem; }
.course-card { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 1.8rem; display: flex; flex-direction: column; gap: 1rem; transition: all 0.25s; position: relative; }
.course-card:hover { border-color: var(--navy-mid); box-shadow: 0 8px 30px rgba(26,35,126,0.1); transform: translateY(-4px); }
.course-card.featured { border-color: var(--navy); border-width: 2px; }
.course-card.featured::before { content: 'Most Popular'; position: absolute; top: -12px; left: 1.5rem; background: var(--navy); color: white; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: 100px; }
.course-badge { display: inline-flex; align-items: center; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.28rem 0.65rem; border-radius: 100px; width: fit-content; }
.badge-live    { background: var(--green-pale); color: var(--green-dark); border: 1px solid var(--green-border); }
.badge-soon    { background: var(--navy-pale); color: var(--navy); border: 1px solid rgba(26,35,126,0.2); }
.badge-planned { background: var(--bg); color: var(--slate-mid); border: 1px solid var(--border); }
.course-emoji { font-size: 2rem; }
.course-title { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600; color: var(--navy-dark); line-height: 1.3; }
.course-desc  { font-size: 0.82rem; color: var(--slate); line-height: 1.7; flex: 1; }
.course-meta  { display: flex; gap: 0.8rem; flex-wrap: wrap; padding-top: 1rem; border-top: 1px solid var(--border); }
.meta-pill    { background: var(--bg); border: 1px solid var(--border); border-radius: 100px; padding: 0.22rem 0.7rem; font-size: 0.7rem; font-weight: 600; color: var(--slate); }
.course-cta   { display: flex; justify-content: space-between; align-items: center; margin-top: 0.25rem; }
.course-price { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.course-price small { font-family: 'DM Sans', sans-serif; font-size: 0.68rem; color: var(--slate-mid); font-weight: 400; display: block; }
.btn-enroll { padding: 0.5rem 1.1rem; font-size: 0.76rem; font-weight: 600; border-radius: 6px; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; text-decoration: none; display: inline-block; white-space: nowrap; }
.btn-navy   { background: var(--navy); color: white; border: none; }
.btn-navy:hover  { background: var(--navy-mid); }
.btn-ghost  { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-ghost:hover { background: var(--navy-pale); }
.course-panel        { display: grid; }
.course-panel.active { display: grid; }

/* ── OUTCOMES ── */
.outcomes-bg { background: white; }
.outcomes-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.outcome-card  { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; transition: all 0.2s; }
.outcome-card:hover { border-color: var(--navy); background: var(--navy-pale); transform: translateY(-3px); }
.outcome-icon  { width: 48px; height: 48px; background: var(--navy-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 1.2rem; }
.outcome-num   { font-family: 'Fraunces', serif; font-size: 2.2rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 0.4rem; }
.outcome-title { font-size: 0.9rem; font-weight: 600; color: var(--navy-dark); margin-bottom: 0.4rem; }
.outcome-desc  { font-size: 0.78rem; color: var(--slate-mid); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-bg   { background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial-card  { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 1.8rem; display: flex; flex-direction: column; gap: 1.2rem; transition: all 0.2s; }
.testimonial-card:hover { border-color: var(--navy-mid); box-shadow: 0 8px 24px rgba(26,35,126,0.08); }
.stars       { color: #f59e0b; font-size: 0.8rem; letter-spacing: 2px; }
.quote-text  { font-size: 0.9rem; color: var(--slate); line-height: 1.8; font-style: italic; flex: 1; }
.quote-bar   { width: 32px; height: 3px; background: var(--green); border-radius: 2px; }
.quote-author { display: flex; align-items: center; gap: 0.8rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.82rem; color: white; flex-shrink: 0; }
.author-name { font-size: 0.85rem; font-weight: 600; color: var(--navy-dark); }
.author-role { font-size: 0.72rem; color: var(--slate-mid); }

/* ── REGISTER ── */
.register-bg   { background: white; }
.register-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.form-card        { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem; box-shadow: 0 4px 20px rgba(26,35,126,0.06); }
.form-card-title  { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 0.4rem; }
.form-card-sub    { font-size: 0.83rem; color: var(--slate-mid); margin-bottom: 2rem; }
.form-group       { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); margin-bottom: 0.45rem; }
.form-group input, .form-group select { width: 100%; background: white; border: 1.5px solid var(--border-mid); border-radius: 7px; padding: 0.72rem 1rem; color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 0.88rem; outline: none; transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(26,35,126,0.1); }
.form-group input::placeholder { color: var(--slate-light); }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit  { width: 100%; background: var(--navy); color: white; border: none; padding: 0.9rem; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.88rem; border-radius: 7px; cursor: pointer; margin-top: 0.5rem; transition: all 0.2s; box-shadow: 0 4px 12px rgba(26,35,126,0.2); }
.btn-submit:hover    { background: var(--navy-mid); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-success       { display: none; text-align: center; padding: 2rem 1rem; }
.form-success .check { width: 60px; height: 60px; background: var(--green-pale); border: 2px solid var(--green-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin: 0 auto 1rem; color: var(--green-dark); }
.form-success h3 { font-family: 'Fraunces', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: 0.5rem; }
.form-success p  { font-size: 0.85rem; color: var(--slate-mid); }
.form-error { background: #fef2f2; border: 1px solid #fecaca; border-radius: 7px; padding: 0.75rem 1rem; font-size: 0.82rem; color: #dc2626; margin-bottom: 1rem; display: none; }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 1rem; }
.tl-line  { position: absolute; left: 27px; top: 0; bottom: 0; width: 1px; background: var(--border); }
.tl-item  { display: flex; gap: 1.2rem; padding-bottom: 2.2rem; position: relative; }
.tl-dot   { width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%; background: white; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: var(--slate-mid); z-index: 1; }
.tl-dot.active { background: var(--navy); border-color: var(--navy); color: white; }
.tl-dot.green  { background: var(--green-pale); border-color: var(--green); color: var(--green-dark); }
.tl-date  { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-dark); margin-bottom: 0.25rem; }
.tl-title { font-size: 0.92rem; font-weight: 600; color: var(--navy-dark); margin-bottom: 0.25rem; }
.tl-desc  { font-size: 0.78rem; color: var(--slate-mid); line-height: 1.6; }

/* ── FOOTER ── */
footer { background: var(--navy-dark); padding: 4rem 6% 2rem; color: white; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo img { height: 42px; margin-bottom: 1rem; filter: brightness(10); opacity: 0.9; }
.footer-about    { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 280px; }
.footer-col h4   { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.2rem; }
.footer-links    { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a  { font-size: 0.83rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
.footer-bottom   { display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* ── ANIMATIONS ── */
.fade-up         { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: 8rem; min-height: auto; }
  .hero::after { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .outcomes-grid { grid-template-columns: repeat(2,1fr); }
  .register-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  section { padding: 4rem 5%; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-card-footer { grid-template-columns: 1fr 1fr; }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr; /* Brand gets a bit more width than a single column */
    gap: 4rem;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-info {
    max-width: 400px;
}

.footer-text {
    margin: 1.5rem 0;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Splits the right side into 3 even columns */
    gap: 2rem;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981; /* Green dot for "Live" status */
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-brand-info {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .footer-links-container {
        grid-template-columns: 1fr; /* Stack links on small phones */
    }
}
/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.2rem;
  border-radius: 100px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.2s;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
@media (max-width: 768px) {
  .wa-float span { display: none; }
  .wa-float { padding: 0.85rem; border-radius: 50%; }
}

/* ── FAQ ── */
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 0.75rem; overflow: hidden; background: white; transition: border-color 0.2s; }
.faq-item:hover { border-color: var(--navy-mid); }
.faq-q { width: 100%; background: none; border: none; padding: 1.2rem 1.5rem; display: flex; justify-content: space-between; align-items: center; font-family: 'DM Sans', sans-serif; font-size: 0.92rem; font-weight: 600; color: var(--navy-dark); cursor: pointer; text-align: left; gap: 1rem; }
.faq-q:hover { background: var(--navy-pale); }
.faq-icon { font-size: 1.3rem; font-weight: 300; color: var(--navy); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.5rem 1.2rem; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 0.88rem; color: var(--slate); line-height: 1.8; }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-hamburger       { display: flex; }
  .nav-cta-desktop     { display: none; }
  .nav-cta-mobile-wrap { display: list-item; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem 6%;
    gap: 1.2rem;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  .nav-links.open { display: flex; }
}

/* Hide mobile enroll button on desktop */
.nav-cta-mobile-wrap { display: none; }