/*
|--------------------------------------------------------------------------
| MITA Academy — Landing Page Styles
|--------------------------------------------------------------------------
| Ported verbatim from the original landing page so the design, layout,
| RTL behaviour, animations, and responsiveness stay pixel-identical.
| Compiled through Vite (see vite.config.js).
*/

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;900&display=swap');
@import url('https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/tabler-icons.min.css');

*{box-sizing:border-box;margin:0;padding:0}
:root{
  --green:#1B7FC2;
  --green-dark:#0F5A8C;
  --green-deeper:#0A3F65;
  --green-light:#2494DC;
  --green-pale:#EBF5FC;
  --green-pale2:#C8E4F5;
  /*--gold:#D4A017;*/
  /*--gold-light:#F5C842;*/
  --bg:#F5F9FD;
  --white:#FFFFFF;
  --text:#0C1A28;
  --text2:#3A5068;
  --muted:#6B8AA8;
  --border:#CCDEED;
  --accent:#00A86B;
  --radius:10px;
  --radius-lg:16px;
}
html{scroll-behavior:smooth}
body{font-family:'Cairo',sans-serif;background:var(--bg);color:var(--text);line-height:1.6;overflow-x:hidden}

/* ─── UTILS ─── */
.container{max-width:1100px;margin:0 auto;padding:0 48px}
.eyebrow{font-size:11px;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;color:var(--green);margin-bottom:14px}
.section-title{font-size:clamp(26px,3vw,42px);font-weight:900;line-height:1.2;color:var(--text);letter-spacing:-0.01em}
.section-sub{font-size:16px;color:var(--text2);line-height:1.85;margin-top:14px}
.btn{display:inline-flex;align-items:center;gap:8px;font-family:'Cairo',sans-serif;font-weight:700;font-size:15px;cursor:pointer;border:none;border-radius:var(--radius);transition:all 0.2s;text-decoration:none}
.btn-blue{background:var(--green);color:#fff;padding:14px 28px}
.btn-blue:hover{background:var(--green-dark)}
.btn-white{background:#fff;color:var(--green);padding:14px 28px;border:2px solid rgba(255,255,255,0.3)}
.btn-white:hover{background:rgba(255,255,255,0.12);color:#fff}
.btn-outline{background:transparent;color:var(--green);padding:13px 26px;border:2px solid var(--green)}
.btn-outline:hover{background:var(--green);color:#fff}
.btn-lg{font-size:17px;padding:17px 36px}
.tag{display:inline-flex;align-items:center;gap:5px;font-size:11px;font-weight:700;padding:4px 11px;border-radius:100px}
.tag-green{background:#E3F8EE;color:#00875A;border:1px solid #B3E8D0}
.tag-blue{background:var(--green-pale);color:var(--green);border:1px solid var(--green-pale2)}
.tag-gold{background:#FFF8E1;color:#B8860B;border:1px solid #F5C842}
section{padding:88px 0}

/* ─── NAV ─── */
nav{background:#fff;border-bottom:1px solid var(--border);padding:0 48px;height:68px;display:flex;align-items:center;justify-content:space-between;position:sticky;top:0;z-index:200}
.nav-logo img{height:42px}
.nav-links{display:flex;gap:32px}
.nav-links a{font-size:14px;font-weight:600;color:var(--text2);text-decoration:none;transition:color 0.2s}
.nav-links a:hover{color:var(--green)}
.nav-right{display:flex;align-items:center;gap:16px}

/* ─── HERO ─── */
.hero{background:linear-gradient(135deg,#0A3F65 0%,#0F5A8C 40%,#1B7FC2 100%);padding:80px 0 25px;overflow:hidden;position:relative}
.hero::after{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");pointer-events:none}
.hero-inner{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:flex-end;position:relative;z-index:1}
.hero-left{padding-bottom:72px}
.hero-badges{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:28px}
.hero-badge{background:rgba(255,255,255,0.12);border:1px solid rgba(255,255,255,0.2);color:rgba(255,255,255,0.9);font-size:12px;font-weight:600;padding:5px 14px;border-radius:100px;display:flex;align-items:center;gap:6px}
.hero h1{font-size:clamp(28px,3.5vw,52px);font-weight:900;line-height:1.15;letter-spacing:-0.01em;color:#fff;margin-bottom:16px}
.hero h1 em{font-style:normal;color:#7FD4FF}
.hero-sub{font-size:16px;color:rgba(255,255,255,0.8);line-height:1.8;margin-bottom:36px;max-width:500px}
.hero-form-wrap{background:rgba(255,255,255,0.1);border:1px solid rgba(255,255,255,0.2);border-radius:var(--radius-lg);padding:24px}
.hero-form-label{font-size:13px;font-weight:600;color:rgba(255,255,255,0.85);margin-bottom:16px;display:flex;align-items:center;gap:8px}
.hero-form{display:grid;gap:10px}
.hero-form input{background:rgba(255,255,255,0.95);border:none;padding:13px 16px;border-radius:8px;font-size:15px;font-family:'Cairo',sans-serif;outline:none;color:var(--text);transition:box-shadow 0.2s}
.hero-form input:focus{box-shadow:0 0 0 3px rgba(127,212,255,0.4)}
.hero-form input::placeholder{color:#9BB5CC}
.hero-form-row{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.hero-form .btn-blue{width:100%;justify-content:center;font-size:16px;padding:15px}
.hero-form-error{color:#FFD3D3;font-size:12px;font-weight:600;margin-top:4px}
.hero-form-success{background:rgba(0,168,107,0.18);border:1px solid rgba(110,231,183,0.4);color:#D7FFEC;font-size:14px;font-weight:600;padding:12px 14px;border-radius:8px;text-align:center}
.hero-stats-row{display:flex;gap:0;margin-top:28px;background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.12);border-radius:var(--radius-lg);overflow:hidden}
.hero-stat{flex:1;padding:18px 16px;text-align:center;border-left:1px solid rgba(255,255,255,0.1)}
.hero-stat:last-child{border-left:none}
.hero-stat .n{font-size:22px;font-weight:900;color:#fff}
.hero-stat .n span{color:#7FD4FF}
.hero-stat .l{font-size:11px;color:rgba(255,255,255,0.6);margin-top:2px}
.hero-right{position:relative;display:flex;flex-direction:column;align-items:stretch;justify-content:flex-end;margin-bottom: 70px;
    gap: 36px;}
.hero-visual{background:#fff;border-radius:var(--radius-lg);overflow:hidden;box-shadow:0 4px 32px rgba(0,0,0,0.25);width:100%;padding:28px}
.hero-video-card{border-radius:var(--radius-lg);overflow:hidden;box-shadow:0 4px 32px rgba(0,0,0,0.3)}
.hero-visual-logo{text-align:center;margin-bottom:24px}
.hero-visual-logo img{height:70px}
.hero-visual-title{text-align:center;font-size:13px;color:var(--text2);font-weight:600;margin-bottom:20px;padding-bottom:20px;border-bottom:1px solid var(--border)}
.hero-visual-stats{display:grid;grid-template-columns:1fr 1fr 1fr;gap:8px}
.hvs{background:var(--green-pale);border-radius:8px;padding:12px;text-align:center}
.hvs .v{font-size:20px;font-weight:900;color:var(--green)}
.hvs .l{font-size:10px;color:var(--text2);margin-top:2px}
.hero-visual-dates{margin-top:16px;display:grid;gap:8px}
.hvd{display:flex;align-items:center;justify-content:space-between;background:var(--green-pale);border-radius:8px;padding:10px 14px;font-size:12px}
.hvd .label{font-weight:700;color:var(--green-deeper)}
.hvd .date{color:var(--text2)}
.hvd .badge{background:var(--green);color:#fff;font-size:10px;font-weight:700;padding:2px 8px;border-radius:100px}
.hvd .badge-open{background:#00A86B}

/* ─── TRUST BAR ─── */
.trust-bar{background:#fff;border-bottom:1px solid var(--border);padding:18px 0}
.trust-bar-inner{display:flex;align-items:center;justify-content:center;gap:48px;flex-wrap:wrap}
.trust-item{display:flex;align-items:center;gap:10px;font-size:13px;font-weight:600;color:var(--text2)}
.trust-item i{font-size:18px;color:var(--green)}
.trust-sep{width:1px;height:24px;background:var(--border)}

/* ─── SPEAKERS ─── */
.speakers-section{background:#fff}
.speakers-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:52px}
.speaker-card{border:1.5px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;transition:all 0.25s;text-align:center}
.speaker-card:hover{border-color:var(--green-light);box-shadow:0 8px 32px rgba(27,127,194,0.12);transform:translateY(-3px)}
.speaker-img{height:160px;background:linear-gradient(135deg,var(--green-pale),var(--green-pale2));display:flex;align-items:center;justify-content:center;overflow:hidden;position:relative}
.speaker-img img{/*width:100%;height:100%;*/object-fit:cover;object-position:top}
.speaker-body{padding:18px}
.speaker-body h3{font-size:15px;font-weight:700;color:var(--text);margin-bottom:4px}
.speaker-body p{font-size:12px;color:var(--muted)}

/* ─── PROBLEM / WHY ─── */
.why-section{background:linear-gradient(160deg,#0A3F65 0%,#1B7FC2 100%);color:#fff}
.why-section .eyebrow{color:#7FD4FF}
.why-inner{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.why-text .section-title{color:#fff}
.why-text .section-sub{color:rgba(255,255,255,0.75)}
.why-cards{display:grid;gap:14px}
.why-card{background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.15);border-radius:var(--radius);padding:20px 22px;display:flex;gap:16px;align-items:flex-start}
.why-icon{width:40px;height:40px;border-radius:8px;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:18px}
.why-icon-gold{background:rgba(212,160,23,0.25);color:#F5C842}
.why-icon-green{background:rgba(0,168,107,0.2);color:#6EE7B7}
.why-card-text strong{display:block;font-size:15px;font-weight:700;color:#fff;margin-bottom:3px}
.why-card-text span{font-size:13px;color:rgba(255,255,255,0.65);line-height:1.6}

/* ─── CURRICULUM ─── */
.curriculum-section{background:var(--bg)}
.curriculum-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:52px}
.curriculum-card{background:#fff;border:1.5px solid var(--border);border-radius:var(--radius-lg);padding:28px;transition:all 0.2s}
.curriculum-card:hover{border-color:var(--green);box-shadow:0 4px 20px rgba(27,127,194,0.1)}
.curriculum-icon{width:48px;height:48px;background:var(--green-pale);border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:22px;color:var(--green);margin-bottom:16px}
.curriculum-card h3{font-size:16px;font-weight:700;margin-bottom:8px;color:var(--text)}
.curriculum-card p{font-size:14px;color:var(--text2);line-height:1.7}
.curriculum-card.featured{border-color:var(--green);background:linear-gradient(145deg,var(--green-pale) 0%,#fff 100%)}

/* ─── SCHEDULE DATES ─── */
.dates-section{background:#fff}
.dates-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;margin-top:52px}
.date-card{border:1.5px solid var(--border);border-radius:var(--radius-lg);padding:28px;transition:all 0.2s;position:relative;overflow:hidden}
.date-card::before{content:'';position:absolute;top:0;right:0;width:4px;height:100%;background:var(--green)}
.date-card:hover{box-shadow:0 8px 32px rgba(27,127,194,0.1)}
.date-card.next{border-color:var(--green);background:linear-gradient(145deg,var(--green-pale) 0%,#fff 100%)}
.date-card.next::before{width:4px;background:linear-gradient(to bottom,var(--green),var(--green-light))}
.date-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px}
.date-season{font-size:18px;font-weight:900;color:var(--text)}
.date-badge{font-size:11px;font-weight:700;padding:4px 12px;border-radius:100px}
.badge-open{background:#E3F8EE;color:#00875A;border:1px solid #B3E8D0}
.badge-upcoming{background:var(--green-pale);color:var(--green);border:1px solid var(--green-pale2)}
.badge-past{background:#F1F1F1;color:#888;border:1px solid #DDD}
.date-range{font-size:15px;font-weight:700;color:var(--green);margin-bottom:8px;display:flex;align-items:center;gap:8px}
.date-range i{font-size:16px}
.date-details{font-size:13px;color:var(--text2);line-height:1.7}
.date-time{display:flex;align-items:center;gap:6px;margin-top:10px;font-size:13px;color:var(--muted)}
.date-time i{color:var(--green);font-size:14px}
.date-cta{margin-top:18px}

/* ─── PROGRAM ─── */
.program-section{background:var(--bg)}
.program-grid{margin-top:56px;display:grid;gap:0}
.program-step{display:grid;grid-template-columns:72px 1fr;gap:28px;padding:28px 0;border-bottom:1px solid var(--border);position:relative}
.program-step:last-child{border-bottom:none}
.program-step::before{content:'';position:absolute;right: 21px;
    top: 77px;
    bottom: -5px;width:2px;background: linear-gradient(to bottom, #1b7fc2, #92161600);display:block}
.program-step:last-child::before{display:none}
.step-circle{width:48px;height:48px;border-radius:50%;background:var(--green);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:900;font-size:16px;flex-shrink:0;border:3px solid var(--green-pale2);margin-top:2px}
.step-body h3{font-size:17px;font-weight:700;color:var(--text);margin-bottom:8px}
.step-body p{font-size:14px;color:var(--text2);line-height:1.7}
.step-badge{display:inline-flex;background:var(--green-pale);color:var(--green);font-size:11px;font-weight:700;padding:3px 10px;border-radius:100px;margin-bottom:10px}
.step-topics{display:flex;flex-wrap:wrap;gap:6px;margin-top:12px}
.step-topic{background:var(--green-pale2);color:var(--green-deeper);font-size:11px;font-weight:600;padding:3px 10px;border-radius:100px}

/* ─── PRICING ─── */
.pricing-section{background:var(--bg)}
.pricing-note{background:linear-gradient(90deg,var(--green-pale),var(--green-pale2));border:1px solid var(--green-pale2);border-radius:var(--radius);padding:16px 22px;display:flex;align-items:center;gap:12px;margin-top:20px;font-size:14px;color:var(--green-dark);font-weight:600}
.pricing-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;margin-top:40px;max-width:760px;margin-left:auto;margin-right:auto}
.price-card{background:#fff;border:1.5px solid var(--border);border-radius:var(--radius-lg);padding:36px;position:relative;transition:all 0.2s}
.price-card.featured{border-color:var(--green);box-shadow:0 8px 40px rgba(27,127,194,0.15)}
.price-top-badge{position:absolute;top:-13px;right:50%;transform:translateX(50%);background:var(--green);color:#fff;font-size:11px;font-weight:700;padding:4px 16px;border-radius:100px;white-space:nowrap}
.price-region{font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:0.08em;color:var(--muted);margin-bottom:12px;display:flex;align-items:center;gap:8px}
.price-val{font-size:42px;font-weight:900;color:var(--text);line-height:1;margin-bottom:4px}
.price-val-original{font-size:18px;color:var(--muted);text-decoration:line-through;margin-bottom:8px}
.price-discount{display:inline-flex;background:#E3F8EE;color:#00875A;font-size:13px;font-weight:700;padding:4px 12px;border-radius:100px;margin-bottom:16px;border:1px solid #B3E8D0}
.price-hr{height:1.5px;background:var(--border);margin:20px 0}
.price-features{list-style:none;display:grid;gap:11px}
.price-features li{font-size:14px;color:var(--text2);display:flex;align-items:flex-start;gap:10px}
.price-features li i{color:var(--accent);font-size:15px;flex-shrink:0;margin-top:3px}
.price-cta-btn{display:block;text-align:center;margin-top:26px;padding:14px;border-radius:8px;font-size:15px;font-weight:700;cursor:pointer;border:1.5px solid var(--border);background:transparent;color:var(--text);width:100%;font-family:'Cairo',sans-serif;transition:all 0.2s;text-decoration:none}
.price-card.featured .price-cta-btn{background:var(--green);border-color:var(--green);color:#fff}
.price-cta-btn:hover{border-color:var(--green);color:var(--green)}
.price-card.featured .price-cta-btn:hover{background:var(--green-dark)}

/* ─── SOCIAL PROOF ─── */
.proof-section{background:#fff}
.proof-stats-row{display:grid;grid-template-columns:repeat(4,1fr);border:1.5px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;margin:48px 0}
.proof-stat{padding:28px 20px;text-align:center;border-left:1.5px solid var(--border)}
.proof-stat:last-child{border-left:none}
.proof-stat .big{font-size:36px;font-weight:900;color:var(--green);line-height:1}
.proof-stat .small{font-size:13px;color:var(--text2);margin-top:6px}

/* ─── TESTIMONIALS ─── */
.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.review-card{background:var(--bg);border:1.5px solid var(--border);border-radius:var(--radius-lg);padding:24px}
.review-top{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:14px}
.review-stars{color:#FBBF24;font-size:14px;letter-spacing:1px}
.review-text{font-size:14px;color:var(--text2);line-height:1.8;margin-bottom:16px;font-style:italic}
.review-author{display:flex;align-items:center;gap:10px;padding-top:14px;border-top:1px solid var(--border)}
.review-av{width:36px;height:36px;border-radius:50%;background:var(--green-pale);display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;color:var(--green);flex-shrink:0}
.review-name{font-size:13px;font-weight:700;color:var(--text)}
.review-co{font-size:12px;color:var(--muted)}

/* ─── VIDEO TESTIMONIALS ─── */
.video-testimonials{margin-top:48px}
.video-testimonials-title{font-size:18px;font-weight:800;color:var(--text);margin-bottom:24px;display:flex;align-items:center;gap:10px}
.video-testimonials-title i{color:var(--green);font-size:22px}
.video-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.video-card{background:var(--bg);border:1.5px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;transition:all 0.25s}
.video-card:hover{border-color:var(--green-light);box-shadow:0 8px 28px rgba(27,127,194,0.12);transform:translateY(-2px)}
.video-card-img{position:relative;overflow:hidden;cursor:pointer}
.video-card-img img{width:100%;display:block;aspect-ratio:16/9;object-fit:cover}
.video-card-img .play-btn{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(10,63,101,0.35);transition:background 0.2s}
.video-card-img:hover .play-btn{background:rgba(10,63,101,0.55)}
.play-btn-circle{width:56px;height:56px;border-radius:50%;background:rgba(255,255,255,0.95);display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(0,0,0,0.25)}
.play-btn-circle i{font-size:22px;color:var(--green);margin-right:-2px}
.video-card-body{padding:16px 18px}
.video-card-body p{font-size:13px;font-weight:600;color:var(--text2)}

/* Main promo video */
.promo-video-wrap{margin-top:40px;border-radius:var(--radius-lg);overflow:hidden;border:1.5px solid var(--border);box-shadow:0 8px 32px rgba(27,127,194,0.1)}
.promo-video-header{background:linear-gradient(90deg,var(--green-deeper),var(--green));padding:16px 24px;display:flex;align-items:center;gap:12px}
.promo-video-header i{font-size:20px;color:#7FD4FF}
.promo-video-header span{font-size:15px;font-weight:700;color:#fff}
.promo-video-wrap video{width:100%;display:block;max-height:480px;background:#000}

/* Hero video card */
.hero-video-card{width:100%;cursor:pointer;position:relative}
.hero-video-thumb{position:relative;display:block}
.hero-video-thumb img{width:100%;display:block}
.hero-video-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(10,40,80,0.75) 0%,rgba(10,40,80,0.2) 60%,transparent 100%);display:flex;align-items:center;justify-content:center;transition:background 0.25s}
.hero-video-card:hover .hero-video-overlay{background:linear-gradient(to top,rgba(10,40,80,0.9) 0%,rgba(10,40,80,0.35) 60%,transparent 100%)}
.hero-play-btn{width:72px;height:72px;border-radius:50%;background:rgba(255,255,255,0.95);display:flex;align-items:center;justify-content:center;box-shadow:0 6px 30px rgba(0,0,0,0.35);transition:transform 0.2s,box-shadow 0.2s}
.hero-video-card:hover .hero-play-btn{transform:scale(1.1);box-shadow:0 10px 40px rgba(0,0,0,0.45)}
.hero-play-btn i{font-size:28px;color:var(--green);margin-right:-3px}
.hero-video-caption{position:absolute;bottom:0;right:0;left:0;padding:16px 20px;color:#fff;font-size:14px;font-weight:700;text-align:center}
.hero-video-caption small{display:block;font-size:11px;font-weight:400;opacity:0.75;margin-top:3px}

/* Modal */
.vid-modal{display:none;position:fixed;inset:0;background:rgba(0,0,0,0.85);z-index:1000;align-items:center;justify-content:center;padding:20px}
.vid-modal.active{display:flex}
.vid-modal-inner{position:relative;width:100%;max-width:800px}
.vid-modal-inner img{width:100%;border-radius:12px;display:block}
.vid-modal-close{position:absolute;top:-40px;left:0;background:none;border:none;color:#fff;font-size:28px;cursor:pointer;display:flex;align-items:center;gap:8px;font-family:'Cairo',sans-serif;font-weight:700}
@media(max-width:700px){.video-grid{grid-template-columns:1fr}}

/* ─── FAQ ─── */
.faq-section{background:var(--bg)}
.faq-grid{margin-top:48px;max-width:820px;margin-left:auto;margin-right:auto;display:grid;gap:12px}
.faq-item{background:#fff;border:1.5px solid var(--border);border-radius:var(--radius);overflow:hidden;transition:border-color 0.2s}
.faq-item.open{border-color:var(--green)}
.faq-q{width:100%;background:none;border:none;padding:20px 24px;display:flex;align-items:center;justify-content:space-between;font-family:'Cairo',sans-serif;font-size:15px;font-weight:700;color:var(--text);cursor:pointer;text-align:right;gap:16px}
.faq-q i{font-size:18px;color:var(--green);flex-shrink:0;transition:transform 0.3s}
.faq-item.open .faq-q i{transform:rotate(45deg)}
.faq-a{padding:0 24px;max-height:0;overflow:hidden;transition:max-height 0.35s ease,padding 0.35s ease}
.faq-item.open .faq-a{max-height:400px;padding:0 24px 20px}
.faq-a p{font-size:14px;color:var(--text2);line-height:1.8}

/* ─── FINAL CTA ─── */
.cta-section{background:linear-gradient(135deg,#0A3F65 0%,#1B7FC2 100%);text-align:center;position:relative;overflow:hidden}
.cta-section::before{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0zm40 40h40v40H40z'/%3E%3C/g%3E%3C/svg%3E");pointer-events:none}
.cta-section .eyebrow{color:#7FD4FF}
.cta-section h2{font-size:clamp(26px,3.2vw,44px);font-weight:900;color:#fff;line-height:1.2;max-width:680px;margin:0 auto 18px}
.cta-section p{font-size:16px;color:rgba(255,255,255,0.75);max-width:540px;margin:0 auto 36px;line-height:1.85}
.cta-perks{display:flex;flex-wrap:wrap;justify-content:center;gap:20px;margin-bottom:40px}
.cta-perk{font-size:14px;color:rgba(255,255,255,0.85);display:flex;align-items:center;gap:8px;font-weight:600}
.cta-perk i{color:#6EE7B7;font-size:16px}
.cta-small{font-size:13px;color:rgba(255,255,255,0.45);margin-top:16px}

/* ─── FOOTER ─── */
footer{background:#fff;border-top:1px solid var(--border);padding:28px 48px;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px}
footer img{height:36px}
.footer-note{font-size:12px;color:var(--muted)}
.footer-links{display:flex;gap:20px}
.footer-links a{font-size:12px;color:var(--muted);text-decoration:none}
.footer-links a:hover{color:var(--green)}

/* ─── RESPONSIVE ─── */
@media(max-width:900px){
  .container{padding:0 24px}
  nav{padding:0 24px}
  .hero-inner,.why-inner{grid-template-columns:1fr}
  .hero-right{display:none}
  .speakers-grid,.curriculum-grid,.reviews-grid{grid-template-columns:1fr 1fr}
  .dates-grid{grid-template-columns:1fr}
  .pricing-grid{grid-template-columns:1fr}
  .proof-stats-row{grid-template-columns:repeat(2,1fr)}
  .proof-stat:nth-child(2){border-left:none}
  .trust-bar-inner{gap:20px}
  footer{padding:24px;flex-direction:column;text-align:center}
  section{padding:60px 0}
}
@media(max-width:600px){
  .speakers-grid,.curriculum-grid,.reviews-grid{grid-template-columns:1fr}
  .hero-form-row{grid-template-columns:1fr}
  .nav-links{display:none}
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}
.hero-left > *{animation:fadeUp 0.65s ease both}
.hero-left > *:nth-child(1){animation-delay:0s}
.hero-left > *:nth-child(2){animation-delay:0.1s}
.hero-left > *:nth-child(3){animation-delay:0.2s}
.hero-left > *:nth-child(4){animation-delay:0.3s}
.hero-left > *:nth-child(5){animation-delay:0.4s}


/* ─── MOBILE NAV MENU (added) ─── */
.nav-toggle{display:none;background:none;border:none;color:var(--green);font-size:26px;cursor:pointer;padding:4px;align-items:center;justify-content:center}
@media(max-width:760px){
  .nav-toggle{display:inline-flex}
  .nav-links{display:none;position:absolute;top:100%;right:0;left:0;background:#fff;border-top:1px solid var(--border);border-bottom:1px solid var(--border);flex-direction:column;gap:0;padding:6px 0;box-shadow:0 12px 24px rgba(12,26,40,0.10);z-index:199}
  .nav-links.open{display:flex}
  .nav-links a{padding:13px 24px;width:100%;border-bottom:1px solid #EEF3F8;font-size:15px}
  .nav-links a:last-child{border-bottom:none}
}

/* ─── SHOW HERO VIDEO + SCHEDULE CARD ON MOBILE (added) ─── */
@media(max-width:900px){
  .hero-right{display:flex !important;margin-top:8px}
}
@media(max-width:600px){
  .hero-visual{padding:20px}
}


/* HERO FORM RADIOS (v1.1.2) */
.hero-form-radios{margin-top:6px}
.hero-radio-title{font-size:13px;font-weight:700;color:rgba(255,255,255,0.92);margin-bottom:9px;display:flex;gap:4px;align-items:center}
.hero-radio-title span{color:#FFD27F}
.hero-radio-group{display:grid;gap:8px}
.hero-radio-2col{grid-template-columns:1fr 1fr}
.hero-radio{display:flex;align-items:center;gap:9px;background:rgba(255,255,255,0.93);border:2px solid transparent;border-radius:9px;padding:11px 13px;font-size:13.5px;font-weight:600;color:var(--text);cursor:pointer;transition:all .15s}
.hero-radio:hover{background:#fff;border-color:var(--green-pale2)}
.hero-radio input{accent-color:var(--green);width:16px;height:16px;flex-shrink:0;cursor:pointer}
.hero-radio:has(input:checked){border-color:var(--gold);background:#FFFDF5;box-shadow:0 0 0 3px rgba(212,160,23,0.22)}
.hero-radio small{color:var(--accent);font-weight:700;font-size:11px}
.hero-radio-group.invalid .hero-radio{border-color:#ef4444}
@media(max-width:600px){.hero-radio-2col{grid-template-columns:1fr}}

/* BACK TO TOP (v1.1.2) */
.back-to-top{position:fixed;bottom:24px;left:24px;width:50px;height:50px;border-radius:50%;background:linear-gradient(135deg,var(--green-light),var(--green));color:#fff;border:none;display:flex;align-items:center;justify-content:center;font-size:23px;cursor:pointer;box-shadow:0 6px 22px rgba(27,127,194,0.45);opacity:0;visibility:hidden;transform:translateY(14px);transition:opacity .25s,transform .25s,visibility .25s,background .2s;z-index:300}
.back-to-top.show{opacity:1;visibility:visible;transform:translateY(0)}
.back-to-top:hover{background:linear-gradient(135deg,var(--green),var(--green-dark));transform:translateY(-3px);box-shadow:0 10px 26px rgba(27,127,194,0.55)}
@media(max-width:600px){.back-to-top{width:44px;height:44px;font-size:20px;bottom:18px;left:18px}}

/* DESIGN POLISH (v1.1.2) */
body{background:linear-gradient(180deg,#F5F9FD 0%,#EAF3FB 100%);background-attachment:fixed}
.btn-blue{box-shadow:0 4px 14px rgba(27,127,194,0.22)}
.btn-blue:hover{box-shadow:0 7px 20px rgba(27,127,194,0.36);transform:translateY(-2px)}
.btn-lg{box-shadow:0 8px 24px rgba(10,63,101,0.22)}
.hero-form .btn-blue{background:linear-gradient(135deg,var(--green-light),var(--green));box-shadow:0 8px 20px rgba(27,127,194,0.5)}
.hero-form .btn-blue:hover{background:linear-gradient(135deg,var(--green),var(--green-dark));transform:translateY(-2px)}
nav .btn-blue{background:linear-gradient(135deg,var(--green-light),var(--green))}
.curriculum-card.featured,.price-card.featured{position:relative}
.curriculum-card.featured::before,.price-card.featured::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,var(--gold),var(--gold-light));border-radius:var(--radius-lg) var(--radius-lg) 0 0}
.speaker-card,.curriculum-card,.review-card,.price-card{transition:transform .2s,box-shadow .2s,border-color .25s}
.speaker-card:hover,.curriculum-card:hover{transform:translateY(-4px)}
.price-card.featured .price-cta-btn{box-shadow:0 6px 16px rgba(27,127,194,0.35)}
.eyebrow{padding-bottom:2px;border-bottom:2px solid var(--gold-light);display:inline-block}
.why-section .eyebrow,.cta-section .eyebrow{border-bottom-color:rgba(245,200,66,0.5)}
.faq-item.open{box-shadow:0 6px 22px rgba(27,127,194,0.10)}
.trust-bar{background:linear-gradient(180deg,#fff,#FBFDFF)}
