
.ad-embed{
    
    --navy-950: #081812;
    --navy-900: #123524;
    --navy-800: #1a4d2e;
    --navy-700: #236b3d;
    --navy-600: #2f8350;
    --gold-500: #a8722f;
    --gold-400: #c28a45;
    --teal-400: #d4a24e;
    --ink-900: #101a14;
    --ink-700: #2e3b32;
    --ink-600: #57685c;
    --ink-400: #8a9690;
    --bg-canvas: #f7f8f5;
    --surface: #ffffff;
    --border: #e4e8e2;

    
    --font-display: 'Sora', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;

    
    --container-w: 1200px;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --shadow-sm: 0 4px 14px rgba(18, 53, 36, 0.07);
    --shadow-md: 0 12px 32px rgba(18, 53, 36, 0.12);
    --shadow-lg: 0 24px 60px rgba(18, 53, 36, 0.18);
    --header-h: 84px;
}

.ad-embed *{ box-sizing: border-box; margin: 0; padding: 0; }
.ad-embed{
    display: block;
    font-family: var(--font-body);
    color: var(--ad-text-color, var(--ink-700));
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
.ad-embed img{ max-width: 100%; display: block; }
.ad-embed a{ text-decoration: none; color: inherit; }
.ad-embed ul{ list-style: none; }
.ad-embed button{ font-family: inherit; cursor: pointer; border: none; background: none; }
.ad-embed h1, .ad-embed h2, .ad-embed h3, .ad-embed h4{ font-family: var(--font-display); color: var(--ad-heading-color, var(--navy-900)); line-height: 1.15; font-weight: 700; }
.ad-embed :focus-visible{ outline: 3px solid var(--gold-500); outline-offset: 2px; }

.ad-embed .container{ max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }

@media (prefers-reduced-motion: reduce) {
    .ad-embed *, .ad-embed *::before, .ad-embed *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

.ad-embed .text-gradient{
    background: linear-gradient(100deg, var(--gold-500), var(--gold-400) 60%, var(--teal-400));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.ad-embed .eyebrow{
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-display); font-size: 13px; font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--navy-700); background: rgba(233, 169, 59, 0.12);
    border: 1px solid rgba(233, 169, 59, 0.35);
    padding: 7px 16px; border-radius: 999px; margin-bottom: 18px;
}
.ad-embed .eyebrow svg{ width: 15px; height: 15px; color: var(--gold-500); }

.ad-embed .section{ padding: 100px 0; }
.ad-embed .section-alt{
    background: linear-gradient(180deg, #eef2fb 0%, var(--bg-canvas) 100%);
    width: 100vw; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%);
}
.ad-embed .section-head{ max-width: 640px; margin: 0 auto 56px; text-align: center; }
.ad-embed .section-head h2{ font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 14px; }
.ad-embed .section-head p{ color: var(--ad-text-color, var(--ink-600)); font-size: 17px; }
.ad-embed .empty-note{ text-align: center; color: var(--ink-400); padding: 40px 0; }

.ad-embed .btn{
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: var(--font-display); font-weight: 600; font-size: 15px;
    padding: 13px 26px; border-radius: 999px; transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    white-space: nowrap;
}
.ad-embed .btn svg{ width: 18px; height: 18px; }
.ad-embed .btn-primary{ background: linear-gradient(120deg, var(--navy-800), var(--navy-700)); color: #fff; box-shadow: 0 10px 24px rgba(11, 31, 62, 0.28); }
.ad-embed .btn-primary:hover{ transform: translateY(-3px); box-shadow: 0 16px 32px rgba(11, 31, 62, 0.34); }
.ad-embed .btn-ghost{ background: #fff; color: var(--navy-800); border: 1px solid var(--border); }
.ad-embed .btn-ghost:hover{ transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--navy-700); }
.ad-embed .btn-light{ background: #fff; color: var(--navy-900); }
.ad-embed .btn-light:hover{ transform: translateY(-3px); box-shadow: 0 14px 28px rgba(0,0,0,0.2); }
.ad-embed .btn-outline-light{ background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.55); }
.ad-embed .btn-outline-light:hover{ background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.ad-embed .btn-sm{ padding: 10px 20px; font-size: 14px; }
.ad-embed .btn-lg{ padding: 16px 32px; font-size: 16px; }
.ad-embed .btn-block{ width: 100%; }

.ad-embed .progress-bar{
    position: fixed; top: 0; left: 0; height: 3px; width: 0%;
    background: linear-gradient(90deg, var(--gold-500), var(--teal-400));
    z-index: 9999; transition: width 0.1s ease-out;
}

.ad-embed .hero{
    position: relative;
    padding: 90px 0 0;
    background: radial-gradient(circle at 15% 20%, #1a4d2e 0%, var(--navy-900) 45%, var(--navy-950) 100%);
    overflow: hidden;
    color: #fff;
    width: 100vw; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%);
}
.ad-embed .hero-slides{ position: absolute; inset: 0; z-index: 0; }
.ad-embed .hero-slide{
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.4s ease-in-out;
}
.ad-embed .hero-slide.active{ opacity: 1; }
.ad-embed .hero-fullscreen{ min-height: 100vh; display: flex; align-items: center; padding-top: var(--header-h); padding-bottom: 60px; }
.ad-embed .hero-fullscreen .hero-inner-centered{ padding-bottom: 60px; }
.ad-embed .stats-heading{
    text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 13px;
    text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-400); margin-bottom: 24px;
}
.ad-embed .hero-social-rail, .ad-embed .hero-action-rail{
    position: fixed; top: 50%; transform: translateY(-50%); z-index: 400;
    display: flex; flex-direction: column; gap: 12px;
}
.ad-embed .hero-social-rail{ left: 22px; }
.ad-embed .hero-action-rail{ right: 22px; }
.ad-embed .hero-social-rail a{
    width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.9);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md); transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ad-embed .hero-social-rail a:hover{ transform: translateY(-3px) scale(1.08); box-shadow: var(--shadow-lg); }
.ad-embed .hero-social-rail svg{ width: 19px; height: 19px; }
.ad-embed .hero-social-rail .social-instagram{ background: radial-gradient(circle at 30% 110%, #ffdb73 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.ad-embed .hero-social-rail .social-instagram svg{ color: #fff; }
.ad-embed .hero-social-rail .social-facebook svg{ color: #1877F2; }
.ad-embed .hero-social-rail .social-linkedin svg{ color: #0A66C2; }
.ad-embed .hero-social-rail .social-youtube svg{ color: #FF0000; }
.ad-embed .hero-social-rail .social-twitter svg{ color: #000000; }
.ad-embed .hero-social-rail .social-whatsapp svg{ color: #25D366; }
.ad-embed .hero-social-rail .social-telegram svg{ color: #229ED9; }
.ad-embed .hero-social-rail .social-pinterest svg{ color: #E60023; }
.ad-embed .rail-btn{
    width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md); transition: transform 0.25s ease;
}
.ad-embed .rail-btn:hover{ transform: translateY(-3px) scale(1.05); }
.ad-embed .rail-btn svg{ width: 20px; height: 20px; color: #fff; }
.ad-embed .rail-whatsapp{ background: #25d366; animation: pulseWa 2.4s ease-in-out infinite; }
.ad-embed .rail-phone{ background: var(--navy-700); }
.ad-embed .rail-plus{ background: var(--gold-500); }

.ad-embed .hero-inner-centered{ position: relative; z-index: 1; max-width: 780px; margin: 0 auto; text-align: center; padding-bottom: 110px; }
.ad-embed .eyebrow-light{ background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); color: #fff; }
.ad-embed .hero-inner-centered h1{ font-size: clamp(32px, 5vw, 54px); color: #fff; margin: 18px 0 20px; letter-spacing: -0.01em; }
.ad-embed .hero-sub-centered{ color: rgba(255,255,255,0.82); font-size: 17px; max-width: 620px; margin: 0 auto 32px; }
.ad-embed .hero-actions-centered{ display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.ad-embed .hero-wave{ position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 70px; display: block; }

/* Courses marquee — continuous scrolling ribbon */
.ad-embed .courses-marquee{
    background: var(--navy-900); padding: 16px 0; overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100vw; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%);
}
.ad-embed .marquee-track{
    display: flex; width: max-content; gap: 16px;
    animation: adMarquee 32s linear infinite;
}
.ad-embed .courses-marquee:hover .marquee-track{ animation-play-state: paused; }
.ad-embed .marquee-pill{
    display: flex; align-items: center; gap: 10px; flex-shrink: 0;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px; padding: 10px 20px 10px 12px;
    font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: #fff;
    transition: background 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
}
.ad-embed .marquee-pill:hover{ background: rgba(212,162,78,0.22); transform: translateY(-2px); }
.ad-embed .marquee-icon{
    width: 28px; height: 28px; border-radius: 50%; background: var(--gold-500);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ad-embed .marquee-icon svg{ width: 14px; height: 14px; color: #fff; }
@keyframes adMarquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .ad-embed .marquee-track{ animation: none; } }


.ad-embed .stats-band{ padding: 30px 0 90px; }
.ad-embed .stats-grid{
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
    border-radius: var(--radius-lg); padding: 46px 30px;
    box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.ad-embed .stats-grid::before{
    content: ''; position: absolute; width: 260px; height: 260px; border-radius: 50%;
    background: rgba(212,162,78,0.16); filter: blur(50px); top: -100px; right: -60px;
}
.ad-embed .stat-item{ text-align: center; color: #fff; position: relative; transition: transform 0.3s ease; }
.ad-embed .stat-item:hover{ transform: translateY(-4px); }
.ad-embed .stat-icon{
    width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 15px;
    background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center;
}
.ad-embed .stat-icon svg{ width: 23px; height: 23px; color: var(--gold-400); }
.ad-embed .stat-number{ display: block; font-family: var(--font-display); font-size: 32px; font-weight: 800; }
.ad-embed .stat-label{ display: block; font-size: 13.5px; color: rgba(255,255,255,0.65); margin-top: 4px; }

.ad-embed .tilt-card{ transform-style: preserve-3d; transition: transform 0.2s ease, box-shadow 0.3s ease; will-change: transform; }
.ad-embed .text-gradient-dark{ background: linear-gradient(100deg, var(--navy-800), var(--navy-700) 60%, var(--teal-400)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.ad-embed .card-link{ display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--navy-800); }
.ad-embed .card-link svg{ width: 15px; height: 15px; transition: transform 0.25s ease; }
.ad-embed .card-link:hover svg{ transform: translateX(4px); }

/* Why Choose Us — simple premium cards */
.ad-embed .why-cards-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ad-embed .why-simple-card{
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
    padding: 32px 26px; box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ad-embed .why-simple-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ad-embed .why-simple-icon{
    width: 54px; height: 54px; border-radius: 14px; background: rgba(27,58,107,0.08);
    display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.ad-embed .why-simple-icon svg{ width: 25px; height: 25px; color: var(--navy-800); }
.ad-embed .why-simple-card h3{ font-size: 17.5px; margin-bottom: 8px; }
.ad-embed .why-simple-card p{ color: var(--ad-text-color, var(--ink-600)); font-size: 14px; }

/* Services — tinted premium cards */
.ad-embed .tint-cards-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ad-embed .tint-card{
    border-radius: var(--radius-md); padding: 30px 26px; transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}
.ad-embed .tint-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ad-embed .tint-icon{
    width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; background: rgba(255,255,255,0.65);
}
.ad-embed .tint-icon svg{ width: 23px; height: 23px; }
.ad-embed .tint-label{ display: block; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.ad-embed .tint-card h3{ font-size: 18px; margin-bottom: 8px; }
.ad-embed .tint-card p{ color: var(--ad-text-color, var(--ink-600)); font-size: 14px; margin-bottom: 18px; }

.ad-embed .tint-blue{ background: #eaf1fd; } .ad-embed .tint-blue .tint-icon svg{ color: #2b5fc4; } .ad-embed .tint-blue .tint-label{ color: #2b5fc4; }
.ad-embed .tint-peach{ background: #fdf1e4; } .ad-embed .tint-peach .tint-icon svg{ color: #c67a1e; } .ad-embed .tint-peach .tint-label{ color: #c67a1e; }
.ad-embed .tint-mint{ background: #e7f8f1; } .ad-embed .tint-mint .tint-icon svg{ color: #1a9c6e; } .ad-embed .tint-mint .tint-label{ color: #1a9c6e; }
.ad-embed .tint-pink{ background: #fbe9f0; } .ad-embed .tint-pink .tint-icon svg{ color: #c23b7a; } .ad-embed .tint-pink .tint-label{ color: #c23b7a; }

.ad-embed .courses-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ad-embed .course-card{ position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 30px 26px; box-shadow: var(--shadow-sm); }
.ad-embed .course-card:hover{ box-shadow: var(--shadow-lg); }
.ad-embed .course-icon{ width: 52px; height: 52px; border-radius: 14px; background: rgba(233,169,59,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.ad-embed .course-icon svg{ width: 24px; height: 24px; color: var(--gold-500); }
.ad-embed .course-badge{ position: absolute; top: 26px; right: 24px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--teal-400); background: rgba(55,201,176,0.12); padding: 5px 11px; border-radius: 999px; }
.ad-embed .course-card h3{ font-size: 19px; margin-bottom: 8px; padding-right: 60px; }
.ad-embed .course-card p{ color: var(--ad-text-color, var(--ink-600)); font-size: 14.5px; margin-bottom: 20px; min-height: 62px; }
.ad-embed .course-meta{ display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); }
.ad-embed .course-meta span{ display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink-400); }
.ad-embed .course-meta svg{ width: 14px; height: 14px; }

.ad-embed .process-track{ display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; position: relative; }
.ad-embed .process-track::before{
    content: ''; position: absolute; top: 84px; left: 10%; right: 10%; height: 2px;
    background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
    z-index: 0;
}
.ad-embed .process-step{
    position: relative; z-index: 1; text-align: center; background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius-md); padding: 30px 18px 26px;
    box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ad-embed .process-step:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ad-embed .step-icon{
    position: relative; width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 22px rgba(18,53,36,0.22);
    transition: transform 0.3s ease;
}
.ad-embed .process-step:hover .step-icon{ transform: scale(1.08); }
.ad-embed .step-icon svg{ width: 27px; height: 27px; color: #fff; }
.ad-embed .step-num{
    position: absolute; top: -8px; right: -8px; width: 26px; height: 26px; border-radius: 50%;
    background: var(--gold-500); color: #fff; font-family: var(--font-display); font-weight: 800;
    font-size: 11.5px; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2); letter-spacing: 0;
}
.ad-embed .process-step h3{ font-size: 16.5px; margin-bottom: 8px; }
.ad-embed .process-step p{ font-size: 13.5px; color: var(--ad-text-color, var(--ink-600)); }

.ad-embed .testi-slider{ max-width: 760px; margin: 0 auto; }
.ad-embed .testi-track{ display: flex; transition: transform 0.5s cubic-bezier(0.65,0,0.35,1); }
.ad-embed .testi-card{
    flex: 0 0 100%; background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 44px; text-align: center; box-shadow: var(--shadow-sm);
}
.ad-embed .testi-stars{ display: flex; justify-content: center; gap: 4px; margin-bottom: 18px; }
.ad-embed .testi-stars svg{ width: 18px; height: 18px; }
.ad-embed .star-filled{ color: var(--gold-500); fill: var(--gold-500); }
.ad-embed .star-empty{ color: var(--border); }
.ad-embed .testi-message{ font-size: 18px; color: var(--ad-text-color, var(--ink-700)); line-height: 1.7; margin-bottom: 26px; font-family: var(--font-display); font-weight: 500; }
.ad-embed .testi-person{ display: flex; align-items: center; justify-content: center; gap: 12px; }
.ad-embed .testi-avatar{ width: 44px; height: 44px; border-radius: 50%; background: var(--navy-800); color: var(--gold-400); font-family: var(--font-display); font-weight: 700; display: flex; align-items: center; justify-content: center; }
.ad-embed .testi-person strong{ display: block; font-size: 14.5px; color: var(--navy-900); }
.ad-embed .testi-person span{ font-size: 13px; color: var(--ink-400); }
.ad-embed .testi-controls{ display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }
.ad-embed .testi-controls button{ width: 40px; height: 40px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: background 0.25s ease; }
.ad-embed .testi-controls button:hover{ background: var(--navy-800); color: #fff; }
.ad-embed .testi-controls button svg{ width: 18px; height: 18px; }
.ad-embed .testi-dots{ display: flex; gap: 8px; }
.ad-embed .testi-dots span{ width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: background 0.25s ease, transform 0.25s ease; }
.ad-embed .testi-dots span.active{ background: var(--gold-500); transform: scale(1.3); }

.ad-embed .cta-banner{ padding: 80px 0; }
.ad-embed .cta-inner{
    background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
    border-radius: var(--radius-lg); padding: 60px 50px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; gap: 24px;
    position: relative; overflow: hidden;
}
.ad-embed .cta-inner::before{
    content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%;
    background: rgba(212,162,78,0.2); filter: blur(60px); top: -100px; right: -60px;
}
.ad-embed .cta-text{ max-width: 620px; }
.ad-embed .cta-text h2{ color: #fff; font-size: clamp(24px, 3vw, 32px); margin-bottom: 10px; position: relative; }
.ad-embed .cta-text p{ color: rgba(255,255,255,0.75); position: relative; }
.ad-embed .cta-actions{ display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; position: relative; }

/* "Who Is This For?" — large gradient cards */
.ad-embed .wif-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.ad-embed .wif-card{
    position: relative; overflow: hidden; border-radius: var(--radius-lg);
    padding: 40px 38px; color: #fff; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ad-embed .wif-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ad-embed .wif-glow{ position: absolute; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,0.12); top: -80px; right: -60px; }
.ad-embed .wif-blue{ background: linear-gradient(135deg, #1a4d2e, #236b3d); }
.ad-embed .wif-peach{ background: linear-gradient(135deg, #a8722f, #c28a45); }
.ad-embed .wif-mint{ background: linear-gradient(135deg, #1a7a67, #2f9c85); }
.ad-embed .wif-pink{ background: linear-gradient(135deg, #7a3b5e, #a5507d); }
.ad-embed .wif-icon{
    width: 56px; height: 56px; border-radius: 15px; background: rgba(255,255,255,0.18);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px; position: relative;
}
.ad-embed .wif-icon svg{ width: 26px; height: 26px; color: #fff; }
.ad-embed .wif-card h3{ color: #fff; font-size: 24px; margin-bottom: 12px; position: relative; }
.ad-embed .wif-card p{ color: rgba(255,255,255,0.85); font-size: 14.5px; margin-bottom: 20px; position: relative; }
.ad-embed .wif-points{ display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; position: relative; }
.ad-embed .wif-points li{ display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.ad-embed .wif-points svg{ width: 18px; height: 18px; color: #fff; flex-shrink: 0; }
.ad-embed .wif-card .btn-light{ position: relative; }

/* University Partners — premium logo cards */
.ad-embed .partners-grid{ display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.ad-embed .partner-card{
    position: relative; display: flex; flex-direction: column; align-items: center; gap: 14px;
    border-radius: var(--radius-md); padding: 30px 16px; text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.35s cubic-bezier(.2,.9,.3,1.2), box-shadow 0.3s ease, border-color 0.3s ease;
}
.ad-embed .partner-card:hover{ transform: translateY(-8px) scale(1.03); box-shadow: var(--shadow-lg); border-color: rgba(255,255,255,0.6); }
.ad-embed .partner-logo{
    width: 64px; height: 64px; border-radius: 50%; object-fit: contain; background: #fff;
    padding: 10px; box-shadow: 0 8px 18px rgba(18,53,36,0.14);
    filter: grayscale(35%); transition: filter 0.3s ease, transform 0.3s ease;
}
.ad-embed .partner-card:hover .partner-logo{ filter: grayscale(0%); transform: scale(1.08); }
.ad-embed .partner-logo-fallback{
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--navy-800);
    box-shadow: 0 8px 18px rgba(18,53,36,0.14);
}
.ad-embed .partner-name{ font-size: 13px; font-weight: 700; color: var(--ad-text-color, var(--ink-700)); line-height: 1.35; }
.ad-embed .partner-blue{ background: linear-gradient(160deg, #eaf1fd, #f4f8fe); }
.ad-embed .partner-peach{ background: linear-gradient(160deg, #fdf1e4, #fef8f0); }
.ad-embed .partner-mint{ background: linear-gradient(160deg, #e7f8f1, #f2fbf7); }
.ad-embed .partner-pink{ background: linear-gradient(160deg, #fbe9f0, #fdf3f6); }


.ad-embed .form-grid{ display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: flex-start; }
.ad-embed .form-side-info .eyebrow{ margin-bottom: 18px; }
.ad-embed .form-side-info h2{ font-size: clamp(26px, 3vw, 34px); margin-bottom: 14px; }
.ad-embed .form-side-info p{ color: var(--ad-text-color, var(--ink-600)); margin-bottom: 24px; }
.ad-embed .form-perks{ display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.ad-embed .form-perks li{ display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--ad-text-color, var(--ink-700)); font-weight: 500; }
.ad-embed .form-perks svg{ width: 18px; height: 18px; color: #fff; background: var(--teal-400); border-radius: 50%; padding: 3px; }
.ad-embed .form-side-card{ display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px 22px; box-shadow: var(--shadow-sm); }
.ad-embed .form-side-card svg{ width: 24px; height: 24px; color: var(--gold-500); }
.ad-embed .form-side-card span{ display: block; font-size: 12.5px; color: var(--ink-400); }
.ad-embed .form-side-card strong{ font-family: var(--font-display); font-size: 16px; color: var(--navy-900); }

.ad-embed .form-card{ background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.ad-embed .form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ad-embed .form-group{ margin-bottom: 18px; }
.ad-embed .form-group label{ display: block; font-size: 13.5px; font-weight: 600; color: var(--navy-800); margin-bottom: 7px; }
.ad-embed .form-group input, .ad-embed .form-group select, .ad-embed .form-group textarea{
    width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 10px;
    font-family: var(--font-body); font-size: 14.5px; color: var(--ink-900); background: #fbfcfe;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.ad-embed .form-group select{
    color: var(--ink-900) !important; background-color: #fbfcfe !important;
    -webkit-appearance: none; -moz-appearance: none; appearance: none; cursor: pointer;
    padding-right: 42px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2357685c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
}
.ad-embed .form-group select option{ color: var(--ink-900); background-color: #ffffff; white-space: normal; }
.ad-embed .form-group input:focus, .ad-embed .form-group select:focus, .ad-embed .form-group textarea:focus{
    outline: none; border-color: var(--navy-700); box-shadow: 0 0 0 4px rgba(27,58,107,0.1);
}
.ad-embed .form-group textarea{ resize: vertical; }
.ad-embed .form-note{ display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--ink-400); margin-top: 14px; justify-content: center; }
.ad-embed .form-note svg{ width: 13px; height: 13px; }
.ad-embed .form-response{ margin-top: 14px; padding: 12px 16px; border-radius: 10px; font-size: 14px; display: none; }
.ad-embed .form-response.show{ display: block; }
.ad-embed .form-response.success{ background: rgba(55,201,176,0.12); color: #1a7a67; }
.ad-embed .form-response.error{ background: rgba(220,80,80,0.1); color: #b23434; }

.ad-embed .faq-grid{ display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; }
.ad-embed .faq-head h2{ font-size: clamp(26px, 3vw, 34px); margin: 0 0 14px; }
.ad-embed .faq-head p{ color: var(--ad-text-color, var(--ink-600)); margin-bottom: 26px; }
.ad-embed .faq-item{ border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; background: var(--surface); }
.ad-embed .faq-question{ width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: var(--navy-900); text-align: left; }
.ad-embed .faq-question svg{ width: 20px; height: 20px; color: var(--gold-500); transition: transform 0.3s ease; flex-shrink: 0; margin-left: 14px; }
.ad-embed .faq-item.active .faq-question svg{ transform: rotate(45deg); }
.ad-embed .faq-answer{ max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.ad-embed .faq-item.active .faq-answer{ max-height: 200px; }
.ad-embed .faq-answer p{ padding: 0 24px 20px; color: var(--ad-text-color, var(--ink-600)); font-size: 14.5px; }

.ad-embed .contact-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.ad-embed .contact-card{ background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 30px 24px; text-align: center; box-shadow: var(--shadow-sm); }
.ad-embed .contact-icon{ width: 52px; height: 52px; border-radius: 50%; background: rgba(27,58,107,0.08); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.ad-embed .contact-icon svg{ width: 22px; height: 22px; color: var(--navy-800); }
.ad-embed .contact-card h3{ font-size: 15.5px; margin-bottom: 8px; }
.ad-embed .contact-card p{ font-size: 14px; color: var(--ad-text-color, var(--ink-600)); }
.ad-embed .contact-card a{ color: var(--navy-800); font-weight: 600; }

.ad-embed .back-to-top{
    position: fixed; right: 22px; bottom: 26px; width: 46px; height: 46px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; z-index: 400;
    box-shadow: var(--shadow-md); transition: transform 0.25s ease, opacity 0.25s ease;
    background: var(--navy-800); color: #fff; opacity: 0; pointer-events: none;
}
.ad-embed .back-to-top.show{ opacity: 1; pointer-events: auto; }
.ad-embed .back-to-top:hover{ transform: translateY(-4px); }
.ad-embed .back-to-top svg{ width: 20px; height: 20px; }
@keyframes pulseWa { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 50% { box-shadow: 0 0 0 10px rgba(37,211,102,0); } }

@keyframes pulseWa { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 50% { box-shadow: 0 0 0 10px rgba(37,211,102,0); } }

/* Boxed layout option (Settings → Layout → Boxed) */
.ad-embed.ad-boxed-layout{
    max-width: 1360px; margin: 0 auto;
    box-shadow: 0 0 70px rgba(11,31,62,0.14);
    border-radius: 20px; overflow: hidden;
}

@media (max-width: 1080px) {
    .ad-embed .hero-inner-centered{ padding-bottom: 90px; }
    .ad-embed .why-cards-grid, .ad-embed .tint-cards-grid, .ad-embed .courses-grid{ grid-template-columns: repeat(2, 1fr); }
    .ad-embed .form-grid, .ad-embed .faq-grid{ grid-template-columns: 1fr; }
    .ad-embed .stats-grid{ grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .ad-embed .process-track{ grid-template-columns: repeat(3, 1fr); gap: 34px; }
    .ad-embed .process-track::before{ display: none; }
    .ad-embed .contact-grid{ grid-template-columns: repeat(2, 1fr); }
    .ad-embed .partners-grid{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 780px) {
    .ad-embed .hero-fullscreen{ min-height: auto; padding-top: 120px; padding-bottom: 70px; }
    .ad-embed .section{ padding: 70px 0; }
    .ad-embed .why-cards-grid, .ad-embed .tint-cards-grid, .ad-embed .courses-grid, .ad-embed .process-track{ grid-template-columns: 1fr; }
    .ad-embed .form-row{ grid-template-columns: 1fr; }
    .ad-embed .contact-grid{ grid-template-columns: 1fr; }
    .ad-embed .hero-social-rail{ display: none; }
    .ad-embed .hero-action-rail{ top: auto; bottom: 20px; right: 16px; transform: none; flex-direction: column; }
    .ad-embed .rail-btn{ width: 42px; height: 42px; }
    .ad-embed .hero-inner-centered h1{ font-size: 30px; }
    .ad-embed .wif-grid{ grid-template-columns: 1fr; }
    .ad-embed .wif-card{ padding: 32px 26px; }
    .ad-embed .partners-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .ad-embed .stats-grid{ grid-template-columns: 1fr 1fr; }
    .ad-embed .form-card{ padding: 26px; }
    .ad-embed .hero-actions-centered{ flex-direction: column; width: 100%; }
    .ad-embed .hero-actions-centered .btn{ width: 100%; }
    .ad-embed.ad-boxed-layout{ border-radius: 0; }
    .ad-embed .marquee-pill{ font-size: 12.5px; padding: 8px 16px 8px 10px; }
}


/* Text size preference (Admin → Content → Typography) */
.ad-embed.ad-text-small .hero-sub-centered{ font-size: 15px; }
.ad-embed.ad-text-small .section-head p{ font-size: 15px; }
.ad-embed.ad-text-small .why-simple-card p, .ad-embed.ad-text-small .tint-card p,
.ad-embed.ad-text-small .course-card p, .ad-embed.ad-text-small .process-step p,
.ad-embed.ad-text-small .faq-answer p, .ad-embed.ad-text-small .contact-card p{ font-size: 13px; }
.ad-embed.ad-text-small .testi-message{ font-size: 16px; }

.ad-embed.ad-text-large .hero-sub-centered{ font-size: 19px; }
.ad-embed.ad-text-large .section-head p{ font-size: 18.5px; }
.ad-embed.ad-text-large .why-simple-card p, .ad-embed.ad-text-large .tint-card p,
.ad-embed.ad-text-large .course-card p, .ad-embed.ad-text-large .process-step p,
.ad-embed.ad-text-large .faq-answer p, .ad-embed.ad-text-large .contact-card p{ font-size: 16px; }
.ad-embed.ad-text-large .testi-message{ font-size: 20px; }
.ad-embed.ad-text-large .why-simple-card h3, .ad-embed.ad-text-large .tint-card h3,
.ad-embed.ad-text-large .course-card h3{ font-size: 20px; }

/* ==========================================================================
   Inquiry Popup
   ========================================================================== */
.ad-embed .ad-popup-overlay{
    position: fixed; inset: 0; background: rgba(8,24,18,0.6); backdrop-filter: blur(3px);
    z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px;
    opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.ad-embed .ad-popup-overlay.show{ opacity: 1; visibility: visible; }
.ad-embed .ad-popup{
    background: var(--surface); border-radius: var(--radius-lg); width: 100%; max-width: 440px;
    max-height: 92vh; overflow-y: auto; position: relative; box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    transform: translateY(30px) scale(0.97); opacity: 0; transition: transform 0.35s ease, opacity 0.35s ease;
}
.ad-embed .ad-popup-overlay.show .ad-popup{ transform: translateY(0) scale(1); opacity: 1; }
.ad-embed .ad-popup-close{
    position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.25); color: #fff; font-size: 22px; line-height: 1; z-index: 2;
    display: flex; align-items: center; justify-content: center; transition: background 0.2s ease;
}
.ad-embed .ad-popup-close:hover{ background: rgba(255,255,255,0.4); }
.ad-embed .ad-popup-header{
    background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
    padding: 30px 30px 26px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; position: relative; overflow: hidden;
}
.ad-embed .ad-popup-header::before{
    content: ''; position: absolute; width: 200px; height: 200px; border-radius: 50%;
    background: rgba(212,162,78,0.2); filter: blur(40px); top: -80px; right: -40px;
}
.ad-embed .ad-popup-badge{
    display: inline-block; background: var(--gold-500); color: #fff; font-family: var(--font-display);
    font-weight: 700; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.04em;
    padding: 6px 14px; border-radius: 999px; margin-bottom: 14px; position: relative;
}
.ad-embed .ad-popup-header h3{ color: #fff; font-size: 22px; margin: 0; position: relative; line-height: 1.3; }
.ad-embed .ad-popup-body{ padding: 26px 30px 30px; }
.ad-embed .ad-popup-body .form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ad-embed .ad-popup-toggle-group label:first-child{ display: block; font-size: 13.5px; font-weight: 600; color: var(--navy-800); margin-bottom: 8px; }
.ad-embed .ad-popup-toggle{ display: flex; gap: 10px; }
.ad-embed .ad-popup-toggle label{
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
    border: 1.5px solid var(--border); border-radius: 10px; padding: 10px; font-size: 14px;
    font-weight: 500; cursor: pointer; transition: border-color 0.2s ease, background 0.2s ease;
}
.ad-embed .ad-popup-toggle input{ width: auto; margin: 0; }
.ad-embed .ad-popup-toggle input:checked + * , .ad-embed .ad-popup-toggle label:has(input:checked){
    border-color: var(--navy-700); background: rgba(27,58,107,0.06);
}

@media (max-width: 480px) {
    .ad-embed .ad-popup-body .form-row{ grid-template-columns: 1fr; }
    .ad-embed .ad-popup-header{ padding: 24px 22px 20px; }
    .ad-embed .ad-popup-body{ padding: 20px 22px 24px; }
}
