/* ============================================================
   ONE MENTOR — onementor.com.au / onementor.pk
   Design system: deep navy #000926 + signal orange #FF8A00
   Mobile-first, fully responsive
   ============================================================ */

:root {
    --navy-950: #000926;
    --navy-900: #04102f;
    --navy-800: #081a42;
    --navy-700: #0e2657;
    --navy-600: #16336e;
    --orange: #ff8a00;
    --orange-light: #ffa733;
    --orange-dark: #e57700;
    --green: #19c37d;
    --red: #ff5c5c;
    --white: #ffffff;
    --text: #c7d2e8;
    --text-dim: #8ea0c2;
    --heading: #f4f7ff;
    --card: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.09);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    --radius: 18px;
    --font-head: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--navy-950);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--orange-light); text-decoration: none; transition: color .25s; }
a:hover { color: var(--orange); }

h1, h2, h3, h4, h5 {
    font-family: var(--font-head);
    color: var(--heading);
    line-height: 1.22;
    font-weight: 700;
}

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font-head); font-weight: 600; font-size: 15.5px;
    padding: 15px 30px; border-radius: 60px; border: 2px solid transparent;
    cursor: pointer; transition: all .28s ease; text-align: center;
}
.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff; box-shadow: 0 10px 30px rgba(255, 138, 0, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(255, 138, 0, 0.5); color: #fff; }
.btn-outline { border-color: rgba(255,255,255,0.25); color: var(--heading); background: rgba(255,255,255,0.03); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange-light); transform: translateY(-3px); }
.btn-lg { padding: 18px 40px; font-size: 17px; }
.btn-nav { padding: 11px 22px; font-size: 14px; }
.btn-whatsapp { background: #1fbe59; color: #fff; box-shadow: 0 10px 30px rgba(31,190,89,.35); }
.btn-whatsapp:hover { background: #17a84d; color: #fff; transform: translateY(-3px); }

/* ---------- Top bar ---------- */
.top-bar {
    background: linear-gradient(90deg, var(--orange-dark), var(--orange));
    font-size: 13px; font-weight: 600; color: #fff; padding: 7px 0;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.top-bar a { color: #fff; }
.top-bar a:hover { color: var(--navy-950); }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 999;
    background: rgba(0, 9, 38, 0.85);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 20px; }
.brand-logo { height: 62px; width: auto; border-radius: 10px; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.nav-link {
    color: var(--text); font-weight: 500; font-size: 15px; position: relative; padding: 6px 0;
}
.nav-link::after {
    content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
    background: var(--orange); transition: width .3s; border-radius: 2px;
}
.nav-link:hover, .nav-link.is-active { color: var(--heading); }
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--heading); margin: 5px 0; border-radius: 3px; transition: all .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative; padding: 90px 0 70px; overflow: hidden;
    background:
        radial-gradient(900px 500px at 85% -10%, rgba(255,138,0,0.14), transparent 60%),
        radial-gradient(700px 500px at -10% 30%, rgba(22,51,110,0.55), transparent 60%),
        var(--navy-950);
}
.hero::before {
    content: ''; position: absolute; inset: 0; opacity: .35; pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,138,0,0.12); border: 1px solid rgba(255,138,0,0.35);
    color: var(--orange-light); font-weight: 600; font-size: 13.5px;
    padding: 8px 18px; border-radius: 40px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 800; margin-bottom: 20px; }
.grad-text {
    background: linear-gradient(92deg, var(--orange-light), var(--orange), #ffc86b);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { font-size: 18px; max-width: 560px; margin-bottom: 32px; color: var(--text); }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-flags { display: flex; gap: 22px; flex-wrap: wrap; font-size: 14.5px; color: var(--text-dim); font-weight: 500; }
.hero-flags span strong { color: var(--heading); }

.hero-visual { position: relative; }
.hero-visual img {
    border-radius: var(--radius); box-shadow: var(--shadow);
    border: 1px solid var(--card-border);
}
.hero-card-float {
    position: absolute; bottom: -22px; left: -22px;
    background: rgba(4, 16, 47, 0.92); backdrop-filter: blur(10px);
    border: 1px solid var(--card-border); border-radius: 14px;
    padding: 14px 20px; display: flex; align-items: center; gap: 12px;
    box-shadow: var(--shadow);
}
.hero-card-float .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(25,195,125,.15); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(25,195,125,.2);} 50% { box-shadow: 0 0 0 9px rgba(25,195,125,.05);} }
.hero-card-float span { font-size: 13.5px; font-weight: 600; color: var(--heading); }

/* ---------- Ticker ---------- */
.ticker { background: var(--navy-900); border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); overflow: hidden; padding: 13px 0; }
.ticker-track { display: flex; gap: 48px; width: max-content; animation: ticker 30s linear infinite; }
.ticker-track span { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--text-dim); white-space: nowrap; }
.ticker-track .up { color: var(--green); } .ticker-track .down { color: var(--red); }
@keyframes ticker { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ---------- Sections ---------- */
.section { padding: 90px 0; position: relative; }
.section-alt { background: var(--navy-900); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.kicker {
    display: inline-block; font-family: var(--font-head); font-size: 13px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange);
    margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 16px; }
.section-head p { font-size: 17px; color: var(--text-dim); }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat-card {
    background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
    padding: 34px 20px; text-align: center; transition: transform .3s, border-color .3s;
}
.stat-card:hover { transform: translateY(-6px); border-color: rgba(255,138,0,0.4); }
.stat-num { font-family: var(--font-head); font-size: 42px; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-label { margin-top: 10px; font-size: 14.5px; color: var(--text-dim); font-weight: 500; }

/* ---------- Generic cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
    background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
    padding: 32px 28px; transition: transform .3s, border-color .3s, background .3s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(255,138,0,0.4); background: rgba(255,255,255,0.06); }
.card-icon {
    width: 56px; height: 56px; border-radius: 15px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(255,138,0,0.2), rgba(255,138,0,0.06));
    border: 1px solid rgba(255,138,0,0.3); font-size: 26px; margin-bottom: 20px;
}
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--text-dim); }

/* ---------- Before / After ---------- */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.ba-col { border-radius: var(--radius); padding: 38px 34px; border: 1px solid var(--card-border); }
.ba-before { background: linear-gradient(160deg, rgba(255,92,92,0.08), rgba(255,92,92,0.02)); }
.ba-after { background: linear-gradient(160deg, rgba(25,195,125,0.1), rgba(25,195,125,0.02)); border-color: rgba(25,195,125,0.3); }
.ba-col h3 { font-size: 22px; margin-bottom: 22px; }
.ba-col ul { list-style: none; }
.ba-col li { padding: 9px 0; font-size: 15.5px; display: flex; gap: 12px; align-items: flex-start; border-bottom: 1px dashed rgba(255,255,255,0.07); }
.ba-col li:last-child { border-bottom: 0; }
.ba-before li::before { content: '\2716'; color: var(--red); font-size: 13px; margin-top: 4px; }
.ba-after li::before { content: '\2714'; color: var(--green); font-size: 13px; margin-top: 4px; }

/* ---------- Featured course ---------- */
.course-feature { display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: center; }
.course-feature img { border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--card-border); }
.course-feature h2 { font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 18px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 28px; }
.pill {
    background: rgba(255,255,255,0.05); border: 1px solid var(--card-border);
    padding: 9px 18px; border-radius: 40px; font-size: 13.5px; font-weight: 600; color: var(--heading);
}
.check-list { list-style: none; margin: 20px 0 30px; }
.check-list li { padding: 8px 0; display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.check-list li::before { content: '\2713'; color: var(--orange); font-weight: 800; font-family: var(--font-head); margin-top: 1px; }

/* ---------- Accordion (curriculum + FAQ) ---------- */
.accordion { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.acc-item { background: var(--card); border: 1px solid var(--card-border); border-radius: 16px; overflow: hidden; transition: border-color .3s; }
.acc-item.open { border-color: rgba(255,138,0,0.45); }
.acc-head {
    width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
    padding: 22px 26px; background: none; border: 0; cursor: pointer; text-align: left;
}
.acc-head .acc-title { font-family: var(--font-head); font-size: 17px; font-weight: 600; color: var(--heading); }
.acc-head .acc-tag { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; color: var(--orange); text-transform: uppercase; display: block; margin-bottom: 4px; }
.acc-icon { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--card-border); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 17px; transition: transform .3s; }
.acc-item.open .acc-icon { transform: rotate(45deg); border-color: var(--orange); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .45s ease; }
.acc-body-inner { padding: 0 26px 24px; color: var(--text-dim); font-size: 15.5px; }
.acc-body-inner ul { list-style: none; }
.acc-body-inner li { padding: 7px 0; border-bottom: 1px dashed rgba(255,255,255,0.07); display: flex; gap: 10px; }
.acc-body-inner li:last-child { border: 0; }
.acc-body-inner li::before { content: '\25B8'; color: var(--orange); }

/* ---------- Video section ---------- */
.video-frame {
    position: relative; width: 100%; padding-top: 56.25%; border-radius: var(--radius);
    overflow: hidden; border: 1px solid var(--card-border); box-shadow: var(--shadow); background: #000;
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: 32px; align-items: stretch; }
.video-side { display: flex; flex-direction: column; gap: 18px; justify-content: center; }
.video-side .card { padding: 24px; }
.yt-btn {
    display: inline-flex; align-items: center; gap: 10px; background: #ff0000; color: #fff;
    font-family: var(--font-head); font-weight: 600; padding: 14px 28px; border-radius: 60px;
    transition: transform .28s, box-shadow .28s; font-size: 15px;
}
.yt-btn:hover { transform: translateY(-3px); color: #fff; box-shadow: 0 12px 30px rgba(255,0,0,0.35); }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 30px 28px; display: flex; flex-direction: column; gap: 18px; transition: transform .3s, border-color .3s; }
.testi-card:hover { transform: translateY(-6px); border-color: rgba(255,138,0,0.4); }
.testi-stars { color: var(--orange); letter-spacing: 3px; font-size: 15px; }
.testi-text { font-size: 15px; color: var(--text); font-style: italic; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
    width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 17px;
}
.testi-author strong { display: block; color: var(--heading); font-size: 15px; }
.testi-author span { font-size: 13px; color: var(--text-dim); }

/* ---------- Mentor ---------- */
.mentor-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 52px; align-items: center; }
.mentor-grid img { border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--card-border); }
.mentor-grid h2 { font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 8px; }
.mentor-role { color: var(--orange); font-weight: 600; font-family: var(--font-head); margin-bottom: 20px; display: block; }
.mentor-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 26px 0 30px; }
.mentor-point { background: var(--card); border: 1px solid var(--card-border); border-radius: 13px; padding: 15px 18px; font-size: 14px; font-weight: 600; color: var(--heading); display: flex; align-items: center; gap: 10px; }
.mentor-point::before { content: '\2726'; color: var(--orange); }

/* ---------- Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step-card { position: relative; background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 40px 30px 32px; transition: transform .3s, border-color .3s; }
.step-card:hover { transform: translateY(-6px); border-color: rgba(255,138,0,0.4); }
.step-num {
    font-family: var(--font-head); font-size: 54px; font-weight: 800; line-height: 1;
    background: linear-gradient(180deg, rgba(255,138,0,0.9), rgba(255,138,0,0.15));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 18px;
}
.step-card h3 { font-size: 20px; margin-bottom: 10px; }
.step-card p { font-size: 15px; color: var(--text-dim); }

/* ---------- Countries ---------- */
.country-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.country-card { text-align: center; background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 40px 28px; transition: transform .3s, border-color .3s; }
.country-card:hover { transform: translateY(-6px); border-color: rgba(255,138,0,0.4); }
.country-flag { font-size: 52px; line-height: 1; margin-bottom: 18px; }
.country-card h3 { font-size: 21px; margin-bottom: 10px; }
.country-card p { font-size: 14.5px; color: var(--text-dim); }

/* ---------- CTA band ---------- */
.cta-band {
    position: relative; border-radius: 24px; overflow: hidden; text-align: center;
    padding: 70px 34px;
    background:
        radial-gradient(600px 300px at 20% 0%, rgba(255,167,51,0.25), transparent 60%),
        linear-gradient(135deg, var(--navy-700), var(--navy-900));
    border: 1px solid rgba(255,138,0,0.3);
}
.cta-band h2 { font-size: clamp(26px, 3.6vw, 40px); margin-bottom: 16px; }
.cta-band p { max-width: 620px; margin: 0 auto 32px; color: var(--text); font-size: 17px; }
.cta-band .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ---------- Forms ---------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; align-items: start; }
.contact-info-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 36px 32px; }
.contact-info-card h3 { font-size: 22px; margin-bottom: 12px; }
.contact-info-list { list-style: none; margin-top: 24px; }
.contact-info-list li { display: flex; gap: 14px; align-items: flex-start; padding: 13px 0; border-bottom: 1px dashed rgba(255,255,255,0.08); font-size: 15px; }
.contact-info-list li:last-child { border: 0; }
.contact-info-list .ci-icon { font-size: 20px; line-height: 1.4; }
.contact-info-list strong { color: var(--heading); display: block; font-size: 14px; }

.form-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 38px 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; color: var(--heading); margin-bottom: 8px; font-family: var(--font-head); }
.form-group label .req { color: var(--orange); }
.form-control {
    width: 100%; background: rgba(0, 9, 38, 0.6); border: 1px solid var(--card-border);
    border-radius: 12px; padding: 14px 16px; color: var(--heading); font-family: var(--font-body);
    font-size: 15px; transition: border-color .25s, box-shadow .25s;
}
.form-control:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,138,0,0.12); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff8a00' stroke-width='2'%3e%3cpath d='m6 9 6 6 6-6'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; }
textarea.form-control { min-height: 130px; resize: vertical; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.alert { padding: 16px 20px; border-radius: 13px; font-size: 15px; margin-bottom: 22px; border: 1px solid; }
.alert-success { background: rgba(25,195,125,0.1); border-color: rgba(25,195,125,0.4); color: #7ce8bb; }
.alert-error { background: rgba(255,92,92,0.1); border-color: rgba(255,92,92,0.4); color: #ffb3b3; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
    padding: 70px 0 60px; text-align: center; position: relative; overflow: hidden;
    background:
        radial-gradient(700px 340px at 50% -20%, rgba(255,138,0,0.14), transparent 65%),
        var(--navy-950);
    border-bottom: 1px solid var(--card-border);
}
.page-hero h1 { font-size: clamp(30px, 4.4vw, 48px); margin-bottom: 14px; }
.page-hero p { max-width: 640px; margin: 0 auto; color: var(--text-dim); font-size: 17px; }
.breadcrumb { font-size: 13.5px; color: var(--text-dim); margin-bottom: 18px; font-weight: 500; }
.breadcrumb a { color: var(--orange-light); }

/* ---------- Footer ---------- */
.site-footer { background: #02071c; border-top: 1px solid var(--card-border); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 46px; }
.footer-logo { height: 64px; width: auto; border-radius: 10px; margin-bottom: 18px; }
.footer-col h4 { font-size: 16px; margin-bottom: 18px; color: var(--heading); }
.footer-col ul { list-style: none; }
.footer-col li { padding: 6px 0; font-size: 14.5px; }
.footer-col a { color: var(--text-dim); }
.footer-col a:hover { color: var(--orange-light); }
.footer-brand p { font-size: 14.5px; color: var(--text-dim); margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
    width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06); border: 1px solid var(--card-border); color: var(--text);
    transition: all .28s;
}
.social-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-3px); }
.footer-contact strong { color: var(--heading); }
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 26px; padding-bottom: 26px; }
.footer-disclaimer p { font-size: 12.5px; color: #5d6f92; line-height: 1.75; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13.5px; color: var(--text-dim); }

/* ---------- WhatsApp float ---------- */
.wa-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 998;
    width: 58px; height: 58px; border-radius: 50%;
    background: #1fbe59; color: #fff; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 34px rgba(31,190,89,0.45); transition: transform .28s;
    animation: waPulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.1); color: #fff; }
@keyframes waPulse { 0%,100% { box-shadow: 0 12px 34px rgba(31,190,89,0.45);} 50% { box-shadow: 0 12px 34px rgba(31,190,89,0.45), 0 0 0 14px rgba(31,190,89,0.08);} }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-grid, .course-feature, .mentor-grid { grid-template-columns: 1fr; gap: 44px; }
    .hero-visual { max-width: 560px; }
    .cards-grid, .testi-grid, .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .video-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .hero { padding: 60px 0 54px; }
    .nav-toggle { display: block; }
    .main-nav {
        position: fixed; top: 0; right: 0; transform: translateX(100%); width: min(320px, 84vw); height: 100vh;
        background: var(--navy-900); flex-direction: column; align-items: flex-start;
        padding: 96px 30px 30px; gap: 8px; transition: transform .35s ease; z-index: 990;
        border-left: 1px solid var(--card-border); box-shadow: -20px 0 60px rgba(0,0,0,.5);
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav .nav-link { font-size: 17px; padding: 12px 0; width: 100%; }
    .nav-toggle { position: relative; z-index: 995; }
    .btn-nav { margin-top: 14px; width: 100%; }
    .top-bar-inner { justify-content: center; text-align: center; }
    .ba-grid { grid-template-columns: 1fr; }
    .steps-grid, .country-grid { grid-template-columns: 1fr; }
    .mentor-points { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-card-float { left: 10px; bottom: -16px; padding: 11px 16px; }
    .brand-logo { height: 50px; }
}

@media (max-width: 540px) {
    .cards-grid, .testi-grid, .cards-grid-4, .stats-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-ctas .btn { width: 100%; }
    .cta-band { padding: 52px 22px; }
    .form-card, .contact-info-card { padding: 28px 22px; }
    .footer-bottom-inner { justify-content: center; text-align: center; }
}

/* ============================================================
   V2.1 — CINEMATIC / 3D LAYER
   ============================================================ */

/* ---------- Preloader ---------- */
.preloader {
    position: fixed; inset: 0; z-index: 9999; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 26px;
    background: var(--navy-950); transition: opacity .6s ease, visibility .6s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader img { height: 90px; width: auto; border-radius: 14px; animation: preLogo 1.4s ease infinite alternate; }
@keyframes preLogo { from { transform: scale(.96); filter: drop-shadow(0 0 0 rgba(255,138,0,0)); } to { transform: scale(1.04); filter: drop-shadow(0 0 26px rgba(255,138,0,.55)); } }
.preloader-bar { width: 180px; height: 3px; background: rgba(255,255,255,.08); border-radius: 3px; overflow: hidden; }
.preloader-bar::after { content: ''; display: block; height: 100%; width: 40%; border-radius: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light)); animation: preBar 1.1s ease-in-out infinite; }
@keyframes preBar { 0% { transform: translateX(-120%);} 100% { transform: translateX(480%);} }

/* ---------- Hero particle canvas + 3D grid floor ---------- */
.hero { perspective: 1000px; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: .8; }
.hero-floor {
    content: ''; position: absolute; left: -25%; right: -25%; bottom: -42%; height: 70%;
    pointer-events: none; transform: rotateX(63deg); transform-origin: center top;
    background-image:
        linear-gradient(rgba(255,138,0,0.13) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,138,0,0.13) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: linear-gradient(to top, transparent 4%, black 55%, transparent 100%);
    mask-image: linear-gradient(to top, transparent 4%, black 55%, transparent 100%);
    animation: floorMove 16s linear infinite;
}
@keyframes floorMove { from { background-position: 0 0, 0 0; } to { background-position: 0 560px, 0 0; } }

/* ---------- Aurora orbs (floating blurred blobs) ---------- */
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; pointer-events: none; z-index: 0;
    animation: orbFloat 14s ease-in-out infinite alternate; }
.orb-a { width: 380px; height: 380px; background: radial-gradient(circle, rgba(255,138,0,.45), transparent 70%); top: -80px; right: -60px; }
.orb-b { width: 320px; height: 320px; background: radial-gradient(circle, rgba(28,86,190,.5), transparent 70%); bottom: -60px; left: -80px; animation-delay: -7s; }
.orb-c { width: 240px; height: 240px; background: radial-gradient(circle, rgba(25,195,125,.28), transparent 70%); top: 40%; left: 55%; animation-delay: -3s; }
@keyframes orbFloat {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(-36px, 30px) scale(1.12); }
    100% { transform: translate(28px, -26px) scale(.94); }
}
.section { overflow: hidden; }

/* ---------- Animated gradient headline shimmer ---------- */
.grad-text { background-size: 220% auto; animation: gradShift 4.5s ease-in-out infinite alternate; }
@keyframes gradShift { from { background-position: 0% center; } to { background-position: 100% center; } }

/* ---------- 3D tilt cards ---------- */
.tilt { transform-style: preserve-3d; will-change: transform; transition: transform .18s ease-out, border-color .3s, background .3s, box-shadow .3s; }
.tilt:hover { box-shadow: 0 26px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(255,138,0,.25) inset; }
.tilt .card-icon, .tilt .stat-num, .tilt .step-num, .tilt .country-flag { transform: translateZ(38px); }
.tilt h3, .tilt .stat-label { transform: translateZ(24px); }
.tilt p, .tilt ul { transform: translateZ(14px); }
.tilt-glare { position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
    background: radial-gradient(420px circle at var(--gx, 50%) var(--gy, 50%), rgba(255,255,255,.1), transparent 45%);
    opacity: 0; transition: opacity .3s; }
.tilt:hover .tilt-glare { opacity: 1; }
.card, .stat-card, .step-card, .country-card, .testi-card { position: relative; }

/* ---------- Icon chips ---------- */
.card-icon { color: var(--orange-light); }
.card-icon svg { filter: drop-shadow(0 4px 10px rgba(255,138,0,.35)); }
.ci-icon { color: var(--orange-light); display: inline-flex; margin-top: 2px; }
.flag-svg { display: inline-flex; vertical-align: -4px; margin-right: 8px; border-radius: 3px;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,.4)); }
.country-flag { display: flex; justify-content: center; margin-bottom: 18px; }
.hero-flags span { display: inline-flex; align-items: center; }
.inline-ic { display: inline-flex; vertical-align: -3px; margin-right: 6px; color: var(--orange-light); }

/* ---------- Button shine sweep ---------- */
.btn { position: relative; overflow: hidden; }
.btn::after { content: ''; position: absolute; top: 0; left: -80%; width: 45%; height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255,255,255,.35), transparent);
    transform: skewX(-24deg); transition: left .55s ease; }
.btn:hover::after { left: 130%; }

/* ---------- Floating hero visual ---------- */
.hero-visual { animation: heroFloat 6.5s ease-in-out infinite alternate; transform-style: preserve-3d; }
@keyframes heroFloat { from { transform: translateY(0) rotateZ(0deg); } to { transform: translateY(-14px) rotateZ(.4deg); } }
.hero-visual::before { content: ''; position: absolute; inset: -3px; border-radius: 22px; z-index: -1;
    background: conic-gradient(from var(--rot, 0deg), var(--orange), transparent 30%, var(--navy-600) 50%, transparent 70%, var(--orange));
    animation: ringSpin 6s linear infinite; opacity: .8; }
@property --rot { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes ringSpin { to { --rot: 360deg; } }
@supports not (background: conic-gradient(from 0deg, red, blue)) {
    .hero-visual::before { background: linear-gradient(135deg, var(--orange), var(--navy-600)); animation: none; }
}

/* ---------- Stagger reveal ---------- */
.reveal { transition-duration: .8s; }
.stagger > * { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: .05s; }
.stagger.visible > *:nth-child(2) { transition-delay: .15s; }
.stagger.visible > *:nth-child(3) { transition-delay: .25s; }
.stagger.visible > *:nth-child(4) { transition-delay: .35s; }
.stagger.visible > *:nth-child(5) { transition-delay: .45s; }
.stagger.visible > *:nth-child(6) { transition-delay: .55s; }
.stagger.visible > *:nth-child(7) { transition-delay: .65s; }
.stagger.visible > *:nth-child(8) { transition-delay: .75s; }

/* ---------- Section divider glow line ---------- */
.section-alt { position: relative; }
.section-alt::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: min(560px, 70%); height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,138,0,.6), transparent); }

/* ---------- Video grid (all channel videos) ---------- */
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
    overflow: hidden; transition: transform .3s, border-color .3s, box-shadow .3s; position: relative; }
.video-card:hover { transform: translateY(-8px); border-color: rgba(255,0,0,.55); box-shadow: 0 24px 50px rgba(0,0,0,.5); }
.video-thumb { position: relative; padding-top: 56.25%; background: #000; cursor: pointer; overflow: hidden; }
.video-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, opacity .3s; }
.video-card:hover .video-thumb img { transform: scale(1.07); }
.video-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: rgba(255, 0, 0, .92); color: #fff; box-shadow: 0 10px 34px rgba(255,0,0,.5);
    transition: transform .3s; pointer-events: none; }
.video-card:hover .video-play-btn { transform: translate(-50%, -50%) scale(1.14); }
.video-play-btn svg { margin-left: 4px; }
.video-meta { padding: 18px 20px; }
.video-meta h3 { font-size: 15.5px; line-height: 1.45; margin-bottom: 8px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.video-meta time { font-size: 13px; color: var(--text-dim); font-weight: 500; }
.video-count-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,0,0,.12);
    border: 1px solid rgba(255,0,0,.4); color: #ff8f8f; font-weight: 700; font-family: var(--font-head);
    font-size: 13px; padding: 8px 18px; border-radius: 40px; }

/* ---------- Cursor glow (desktop only) ---------- */
.cursor-glow { position: fixed; top: 0; left: 0; width: 520px; height: 520px; pointer-events: none; z-index: 1;
    border-radius: 50%; transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,138,0,.07), transparent 60%);
    transition: opacity .3s; opacity: 0; }
body:hover .cursor-glow { opacity: 1; }

/* ---------- Scroll progress bar ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 1001;
    background: linear-gradient(90deg, var(--orange), var(--orange-light)); box-shadow: 0 0 12px rgba(255,138,0,.6); }

/* ---------- Marquee pause on hover ---------- */
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .hero-canvas, .cursor-glow { display: none; }
}

@media (max-width: 1024px) { .videos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .videos-grid { grid-template-columns: 1fr; } .cursor-glow { display: none; } .hero-floor { bottom: -55%; } }

/* ============================================================
   V3 — SUCCESS STORY + MOBILE PERFORMANCE LAYER
   ============================================================ */

/* ---------- Success story ---------- */
.success-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center; }
.cert-frame { position: relative; max-width: 460px; margin: 0 auto; }
.cert-frame img {
    border-radius: var(--radius); width: 100%;
    border: 1px solid rgba(255,138,0,0.4);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 70px rgba(255,138,0,0.14);
}
.cert-frame::before { content: ''; position: absolute; inset: -14px; border-radius: 26px; z-index: -1;
    background: radial-gradient(60% 60% at 50% 40%, rgba(255,138,0,0.22), transparent 75%);
    filter: blur(18px); animation: certGlow 3.6s ease-in-out infinite alternate; }
@keyframes certGlow { from { opacity: .55; } to { opacity: 1; } }
.cert-ribbon {
    position: absolute; top: 16px; right: -12px;
    display: inline-flex; align-items: center; gap: 7px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #fff;
    font-family: var(--font-head); font-weight: 700; font-size: 12.5px; letter-spacing: .6px;
    padding: 9px 16px; border-radius: 10px; box-shadow: 0 10px 26px rgba(255,138,0,.45);
    transform: rotate(3deg);
}
.funded-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(25,195,125,0.1); border: 1px solid rgba(25,195,125,0.45);
    color: #7ce8bb; font-family: var(--font-head); font-weight: 700; font-size: 12.5px;
    letter-spacing: 1.6px; padding: 9px 18px; border-radius: 40px; margin-bottom: 18px;
}
.funded-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); animation: pulse 1.8s infinite; }
.success-name { font-size: clamp(22px, 3vw, 30px); margin-bottom: 14px; }
.success-text { color: var(--text-dim); font-size: 15.5px; }

/* ---------- Mobile performance & polish ---------- */
html { -webkit-text-size-adjust: 100%; }
a, button { -webkit-tap-highlight-color: transparent; }
img { height: auto; }

@media (max-width: 1024px) {
    .success-grid { grid-template-columns: 1fr; gap: 40px; }
    .cert-ribbon { right: 8px; }
}

@media (max-width: 768px) {
    /* cheaper effects on small screens */
    .orb { width: 200px !important; height: 200px !important; filter: blur(42px); opacity: .35; }
    .hero-visual { animation: none; }
    .hero-visual::before { display: none; }
    .hero-canvas { opacity: .55; }
    .tilt .card-icon, .tilt .stat-num, .tilt .step-num, .tilt .country-flag,
    .tilt h3, .tilt .stat-label, .tilt p, .tilt ul { transform: none; }
    .preloader img { height: 72px; }

    /* layout polish */
    .hero h1 { font-size: clamp(29px, 8.4vw, 40px); }
    .hero-sub { font-size: 15.5px; }
    .hero-badge { font-size: 12px; padding: 7px 14px; }
    .hero-card-float { position: static; margin-top: 16px; width: fit-content; }
    .hero-visual { max-width: 100%; }
    .section-head { margin-bottom: 40px; }
    .section-head p { font-size: 15.5px; }
    .acc-head { padding: 18px 18px; }
    .acc-body-inner { padding: 0 18px 20px; font-size: 14.5px; }
    .acc-head .acc-title { font-size: 15.5px; }
    .ba-col { padding: 28px 22px; }
    .card { padding: 26px 22px; }
    .ticker-track { animation-duration: 22s; }
    .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
    .video-meta { padding: 15px 16px; }
    .cta-band h2 { font-size: clamp(23px, 6.4vw, 32px); }
    .footer-grid { gap: 30px; }
    .top-bar { font-size: 12px; }
}

@media (max-width: 540px) {
    .btn-lg { padding: 16px 26px; font-size: 15.5px; }
    .stat-num { font-size: 36px; }
    .step-num { font-size: 44px; }
    .mentor-grid, .course-feature { gap: 34px; }
    .testi-card { padding: 24px 20px; }
    .contact-info-card, .form-card { border-radius: 15px; }
    .cert-ribbon { top: 10px; right: 6px; font-size: 11px; padding: 7px 12px; }
    .page-hero { padding: 52px 0 46px; }
    .section { padding: 56px 0; }
    .success-name { font-size: 22px; }
}

/* extra-small phones */
@media (max-width: 380px) {
    .hero h1 { font-size: 27px; }
    .container { padding: 0 16px; }
    .hero-flags { gap: 12px; font-size: 13px; }
    .brand-logo { height: 44px; }
}

/* ============================================================
   V4 — CONVERSATIONAL CHATBOT LAYER
   ============================================================ */

.om-chat {
    display: flex; flex-direction: column; overflow: hidden;
    background: linear-gradient(170deg, var(--navy-900), var(--navy-950));
    border: 1px solid var(--card-border); border-radius: 20px;
}
.om-chat-inline { height: 560px; }
.form-card-chat { padding: 18px; }

/* Head */
.om-chat-head {
    display: flex; align-items: center; gap: 13px; padding: 16px 18px;
    background: linear-gradient(135deg, rgba(255,138,0,0.16), rgba(255,138,0,0.04));
    border-bottom: 1px solid var(--card-border);
}
.om-chat-avatar {
    width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #fff;
    box-shadow: 0 8px 22px rgba(255,138,0,0.4);
}
.om-chat-headtext { flex: 1; min-width: 0; }
.om-chat-headtext strong { display: block; font-family: var(--font-head); color: var(--heading); font-size: 15px; }
.om-chat-status { font-size: 12px; color: var(--text-dim); display: inline-flex; align-items: center; gap: 6px; }
.om-chat-status .om-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 1.8s infinite; }
.om-chat-close {
    background: rgba(255,255,255,0.06); border: 1px solid var(--card-border); color: var(--text);
    width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: all .25s;
}
.om-chat-close:hover { background: rgba(255,92,92,0.2); color: #fff; border-color: rgba(255,92,92,0.5); }

/* Body / messages */
.om-chat-body { flex: 1; overflow-y: auto; padding: 20px 16px 10px; scroll-behavior: smooth; }
.om-chat-body::-webkit-scrollbar { width: 6px; }
.om-chat-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 6px; }
.om-msg { display: flex; margin-bottom: 12px; animation: msgIn .35s cubic-bezier(.2,.7,.3,1.2); }
@keyframes msgIn { from { opacity: 0; transform: translateY(14px) scale(.96); } to { opacity: 1; transform: none; } }
.om-msg-bot { justify-content: flex-start; }
.om-msg-user { justify-content: flex-end; }
.om-bubble {
    max-width: 82%; padding: 12px 16px; font-size: 14.5px; line-height: 1.55;
    border-radius: 16px; word-wrap: break-word;
}
.om-msg-bot .om-bubble {
    background: rgba(255,255,255,0.06); border: 1px solid var(--card-border);
    color: var(--text); border-bottom-left-radius: 5px;
}
.om-msg-user .om-bubble {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff; font-weight: 500; border-bottom-right-radius: 5px;
    box-shadow: 0 8px 20px rgba(255,138,0,0.3);
}
.om-bubble strong { color: var(--heading); }
.om-msg-user .om-bubble strong { color: #fff; }
.om-sum { display: block; padding: 3px 0; font-size: 13.5px; }

/* Typing dots */
.om-typing { display: inline-flex; gap: 5px; align-items: center; padding: 15px 18px; }
.om-typing span {
    width: 7px; height: 7px; border-radius: 50%; background: var(--orange-light);
    animation: omBlink 1.2s infinite;
}
.om-typing span:nth-child(2) { animation-delay: .18s; }
.om-typing span:nth-child(3) { animation-delay: .36s; }
@keyframes omBlink { 0%, 70%, 100% { opacity: .25; transform: translateY(0); } 35% { opacity: 1; transform: translateY(-4px); } }

/* Quick reply chips */
.om-chat-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 4px 16px 10px; }
.om-chip {
    background: rgba(255,138,0,0.09); border: 1px solid rgba(255,138,0,0.45);
    color: var(--orange-light); font-family: var(--font-head); font-weight: 600; font-size: 13px;
    padding: 9px 16px; border-radius: 40px; cursor: pointer; transition: all .22s;
    animation: msgIn .35s cubic-bezier(.2,.7,.3,1.2);
}
.om-chip:hover { background: var(--orange); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,138,0,0.35); }
.om-chip-link { text-decoration: none; display: inline-flex; align-items: center; }

/* Input bar */
.om-chat-inputbar {
    display: flex; gap: 10px; padding: 13px 14px;
    border-top: 1px solid var(--card-border); background: rgba(0,9,38,0.5);
}
.om-chat-input {
    flex: 1; background: rgba(255,255,255,0.06); border: 1px solid var(--card-border);
    border-radius: 40px; padding: 12px 18px; color: var(--heading);
    font-family: var(--font-body); font-size: 14.5px; transition: border-color .25s, box-shadow .25s;
}
.om-chat-input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,138,0,0.12); }
.om-chat-input:disabled { opacity: .45; cursor: not-allowed; }
.om-chat-send {
    width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer; flex-shrink: 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: transform .22s, box-shadow .22s;
}
.om-chat-send:hover { transform: scale(1.08) rotate(-8deg); box-shadow: 0 10px 24px rgba(255,138,0,0.45); }
.om-chat-inputbar.om-disabled .om-chat-send { opacity: .45; pointer-events: none; }

/* ---------- Floating launcher ---------- */
.chat-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 998;
    width: 60px; height: 60px; border-radius: 50%; border: 0; cursor: pointer;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 14px 36px rgba(255,138,0,0.5);
    transition: transform .28s; animation: chatPulse 2.6s infinite;
}
.chat-float:hover { transform: scale(1.1); }
.chat-float.active { animation: none; }
.chat-float.active .chat-float-icon { transform: rotate(90deg) scale(.85); }
.chat-float-icon { display: flex; transition: transform .3s; }
@keyframes chatPulse {
    0%, 100% { box-shadow: 0 14px 36px rgba(255,138,0,0.5); }
    50% { box-shadow: 0 14px 36px rgba(255,138,0,0.5), 0 0 0 16px rgba(255,138,0,0.08); }
}
.chat-float-badge {
    position: absolute; top: -3px; right: -3px;
    min-width: 21px; height: 21px; border-radius: 12px; padding: 0 5px;
    background: var(--red); color: #fff; font-family: var(--font-head);
    font-size: 11.5px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--navy-950); animation: badgeBounce 2.2s infinite;
}
@keyframes badgeBounce { 0%, 100% { transform: translateY(0); } 12% { transform: translateY(-5px); } 24% { transform: translateY(0); } }

/* WhatsApp float moves above the chat launcher */
.wa-float { bottom: 96px; width: 52px; height: 52px; right: 26px; }

/* ---------- Floating panel ---------- */
.chat-float-panel {
    position: fixed; right: 22px; bottom: 96px; z-index: 999;
    width: min(390px, calc(100vw - 32px));
    opacity: 0; visibility: hidden; transform: translateY(24px) scale(.95);
    transform-origin: bottom right;
    transition: opacity .3s ease, transform .3s cubic-bezier(.2,.7,.3,1.2), visibility .3s;
}
.chat-float-panel.open { opacity: 1; visibility: visible; transform: none; }
.chat-float-panel .om-chat { height: min(540px, calc(100dvh - 140px)); box-shadow: 0 30px 90px rgba(0,0,0,0.65); }

@media (max-width: 640px) {
    .chat-float { right: 16px; bottom: 16px; width: 56px; height: 56px; }
    .wa-float { right: 19px; bottom: 86px; width: 50px; height: 50px; }
    .chat-float-panel { right: 16px; left: 16px; bottom: 84px; width: auto; }
    .chat-float-panel .om-chat { height: min(500px, calc(100dvh - 120px)); }
    .om-chat-inline { height: 500px; }
    .om-bubble { max-width: 88%; font-size: 14px; }
    .form-card-chat { padding: 12px; }
}
