/* =============================================
   XL MANAGEMENT SERVICES — STYLES.CSS
   Clean, fully responsive, no redundancy
   ============================================= */

/* --- CSS Variables --- */
:root {
    --bg:          #020617;
    --bg-card:     #0c1427;
    --bg-surface:  rgba(15, 23, 42, 0.8);
    --blue:        #2563eb;
    --blue-light:  #3273e8;
    --green:       #22c55e;
    --green-bright:#37eb73;
    --white:       #ffffff;
    --muted:       #94a3b8;
    --border:      rgba(255,255,255,0.07);
    --radius:      16px;
    --radius-sm:   10px;
    --transition:  0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* --- Layout --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section { padding: 80px 0; overflow: hidden; }

/* --- Typography --- */
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.1; font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.2; font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }

.tagline {
    color: var(--green-bright);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.blue-text { color: var(--blue); }

.sub-description {
    color: var(--muted);
    max-width: 580px;
    margin: 12px auto 0;
    font-size: 0.98rem;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* --- Buttons --- */
.btn-solid {
    background: var(--blue);
    color: var(--white);
    border: none;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}
.btn-solid:hover { background: #1d4ed8; transform: translateY(-2px); }

.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 1.5px solid var(--blue);
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

.btn-green {
    background: var(--green);
    color: #000;
    border: none;
    padding: 11px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-green:hover { background: #16a34a; }

/* --- Icon Boxes --- */
.blue-bg { background: rgba(37,99,235,0.15); color: var(--blue); }
.green-bg { background: rgba(34,197,94,0.15); color: var(--green); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.flex-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-group { display: flex; align-items: center; gap: 12px; }

.logo-icon {
    width: 42px; height: 42px;
    background: var(--blue);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-size: 0.9rem; font-weight: 700; white-space: nowrap; }
.brand-sub { font-size: 0.6rem; color: var(--blue); font-weight: 600; letter-spacing: 1px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links a.active { border-bottom: 2px solid var(--blue); padding-bottom: 2px; }

.nav-cta { display: block; white-space: nowrap; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero { padding: 80px 0 60px; }

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-content { display: flex; flex-direction: column; }

.hero-content h1 { margin: 10px 0 16px; }

.description {
    color: var(--muted);
    font-size: 1rem;
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.75;
}

.cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

/* Stats Bar */
.stats-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid #1e293b;
    padding-top: 28px;
}

.stat { display: flex; align-items: center; gap: 10px; }

.icon-box {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.green-icon { background: rgba(34,197,94,0.15); color: var(--green); }
.blue-icon { background: rgba(37,99,235,0.15); color: var(--blue); }

.stat strong { display: block; font-size: 1rem; font-weight: 700; }
.stat span { font-size: 0.75rem; color: var(--muted); }

.divider { width: 1px; height: 30px; background: #1e293b; flex-shrink: 0; }

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 520px;
}

.hero-glow {
    position: absolute;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(37,99,235,0.18), transparent 70%);
    pointer-events: none;
}

.dashed-circle {
    position: absolute;
    width: 440px; height: 440px;
    border: 2px dashed rgba(37,99,235,0.2);
    border-radius: 50%;
    pointer-events: none;
}

.hero-img-wrap {
    position: relative;
    z-index: 3;
    max-width: 380px;
    width: 100%;
}

.hero-img {
    width: 100%;
    filter: drop-shadow(0 10px 40px rgba(37,99,235,0.35));
}

/* Floating Cards */
.floating-card {
    position: absolute;
    z-index: 10;
    background: rgba(12, 20, 39, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.goal-card     { top: 8%; right: 5%; }
.guidance-card { top: 40%; left: 0; }
.skills-card   { bottom: 18%; left: 0; }

.card-icon {
    width: 34px; height: 34px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.card-icon.green { background: rgba(34,197,94,0.2); color: var(--green); }
.card-icon.blue  { background: rgba(37,99,235,0.2); color: var(--blue); }

.card-title { font-size: 0.82rem; font-weight: 600; }
.card-sub   { font-size: 0.68rem; color: var(--muted); }

/* =============================================
   MISSION BANNER
   ============================================= */
.mission-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    background: #070b1d;
    border: 1px solid #1e293b;
    border-radius: 20px;
    padding: 28px 36px;
    margin-bottom: 0;
}

.mission-text {
    display: flex;
    align-items: center;
    gap: 14px;
}

.quote-mark {
    font-size: 3.5rem;
    color: var(--blue);
    font-weight: 900;
    line-height: 1;
    flex-shrink: 0;
}

.mission-text h3 { font-size: 1.15rem; margin-bottom: 4px; }
.mission-text p { color: var(--muted); font-size: 0.9rem; }

/* =============================================
   SERVICES
   ============================================= */
.services-section { background: var(--bg); }

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.services-list { display: flex; flex-direction: column; gap: 18px; }

.service-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 22px 22px 26px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(15,23,42,0.9), rgba(2,6,23,0.9));
    border: 1px solid var(--border);
    transition: var(--transition);
    overflow: hidden;
}

.service-item::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--green), var(--blue));
    border-radius: 4px 0 0 4px;
}

.service-item:hover {
    transform: translateX(10px);
    border-color: rgba(37,99,235,0.35);
    box-shadow: 0 16px 32px rgba(37,99,235,0.12);
}

.service-icon-box {
    width: 52px; height: 52px;
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.service-info { flex: 1; min-width: 0; }
.service-info h3 { font-size: 1rem; margin-bottom: 4px; }
.service-info p { color: var(--muted); font-size: 0.85rem; line-height: 1.5; }

.arrow-icon { color: var(--blue); opacity: 0.5; flex-shrink: 0; }

/* Services Visual */
.services-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 520px;
}

.dashed-circle-lg {
    position: absolute;
    width: 440px; height: 440px;
    border: 2px dashed rgba(37,99,235,0.18);
    border-radius: 50%;
    pointer-events: none;
}

.visual-img {
    position: relative;
    z-index: 4;
    max-height: 480px;
    width: auto;
    max-width: 100%;
    filter: drop-shadow(0 8px 30px rgba(37,99,235,0.25));
}

.orbit-icon {
    position: absolute;
    width: 46px; height: 46px;
    background: rgba(12,20,39,0.95);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue);
    font-size: 0.95rem;
    z-index: 6;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.orbit-1 { top: 12%; left: 18%; }
.orbit-2 { top: 48%; left: 4%; color: var(--green); }
.orbit-3 { top: 14%; right: 14%; }
.orbit-4 { bottom: 18%; right: 4%; color: var(--green); }

.mini-card {
    position: absolute;
    bottom: 24px; right: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(25,37,62,0.97);
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 10;
    max-width: 240px;
}

/* =============================================
   WHO WE HELP (AUDIENCE)
   ============================================= */
.audience-section { background: var(--bg); }

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.audience-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
}

.audience-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37,99,235,0.3);
}

.audience-card:nth-child(odd)  { border-bottom: 3px solid var(--blue); }
.audience-card:nth-child(even) { border-bottom: 3px solid var(--green); }

.card-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.audience-card:hover .card-img-wrap img { transform: scale(1.05); }

.cat-icon-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.cat-icon {
    /* position: absolute;
    bottom: -22px; left: 50%; */
    /* transform: translateX(-50%); */
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    /* z-index: 2; */
    border: 3px solid var(--bg-card);
}

.blue-glow  { background: #1e293b; color: var(--blue);  box-shadow: 0 0 16px rgba(37,99,235,0.4); }
.green-glow { background: #1e293b; color: var(--green); box-shadow: 0 0 16px rgba(34,197,94,0.4); }

.card-body {
    padding: 38px 22px 28px;
    text-align: center;
    flex: 1;
}

.card-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.card-body p  { font-size: 0.88rem; color: var(--muted); margin-bottom: 20px; line-height: 1.55; }

.feat-list { text-align: left; display: inline-block; }
.feat-list li {
    font-size: 0.85rem;
    color: #e2e8f0;
    margin-bottom: 10px;
    display: flex; align-items: center; gap: 8px;
}
.feat-list li i { color: var(--green); font-size: 0.85rem; }

/* =============================================
   OUTCOMES
   ============================================= */
.outcomes-section { background: var(--bg); }

.outcomes-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.outcomes-list { display: flex; flex-direction: column; gap: 14px; }

.outcome-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 24px 28px;
    border-radius: 16px;
    transition: var(--transition);
}

.outcome-card:hover {
    background: rgba(30,41,59,0.7);
    transform: translateX(8px);
}

.outcome-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.outcome-card h3 { font-size: 1rem; margin-bottom: 4px; }
.outcome-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

/* Outcomes Visual */
.outcomes-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 480px;
}

.float-result {
    position: absolute;
    right: 0; z-index: 10;
    display: flex; align-items: center; gap: 12px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 18px;
    border-radius: 12px;
    white-space: nowrap;
}

.float-top { top: 12%; }
.float-mid { top: 43%; right: -10px; }
.float-bot { bottom: 14%; }

.res-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.res-icon.green { background: rgba(34,197,94,0.2); color: var(--green); }
.res-icon.blue  { background: rgba(37,99,235,0.2); color: var(--blue); }

/* Outcomes Stats */
.outcomes-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 28px 32px;
    border-radius: 20px;
    margin-top: 56px;
}

.stat-item { display: flex; align-items: center; gap: 14px; }

.stat-icon-circle {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.stat-item h3 { font-size: 1.5rem; color: var(--green); font-weight: 700; }
.stat-item p  { font-size: 0.78rem; color: var(--muted); line-height: 1.4; }

/* =============================================
   PROCESS
   ============================================= */
.process-section { background: var(--bg); }

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.process-card { text-align: center; }

.step-num {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.78rem; font-weight: 700;
    margin: 0 auto 20px;
}

.num-blue  { background: var(--blue);  color: #fff; box-shadow: 0 0 12px rgba(37,99,235,0.4); }
.num-green { background: var(--green); color: #fff; box-shadow: 0 0 12px rgba(34,197,94,0.4); }

.card-inner {
    background: rgba(15,23,42,0.4);
    border: 1px solid var(--border);
    padding: 24px 16px;
    border-radius: 16px;
    height: 100%;
    transition: var(--transition);
}

.card-inner:hover     { border-color: var(--blue);  transform: translateY(-5px); }
.card-inner.green-card:hover { border-color: var(--green); transform: translateY(-5px); }

.step-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}

.process-card h3 { font-size: 1rem; margin-bottom: 10px; }
.process-card p  { font-size: 0.8rem; color: var(--muted); line-height: 1.55; margin-bottom: 16px; }

.step-features { text-align: left; border-top: 1px solid var(--border); padding-top: 14px; }
.step-features li {
    font-size: 0.78rem; color: #cbd5e1;
    margin-bottom: 7px;
    display: flex; align-items: center; gap: 7px;
}
.step-features li i { color: var(--green); font-size: 0.8rem; }

/* Process CTA */
.process-cta {
    margin-top: 48px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 24px 36px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-left { display: flex; align-items: center; gap: 18px; }
.cta-icon { font-size: 1.8rem; color: var(--green); flex-shrink: 0; }
.cta-left h4 { font-size: 1rem; margin-bottom: 4px; }
.cta-left p  { font-size: 0.88rem; color: var(--muted); }

.cta-link {
    color: var(--blue);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex; align-items: center; gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
}
.cta-link:hover { color: #93c5fd; gap: 14px; }

/* =============================================
   SUCCESS STORIES
   ============================================= */
.success-section { background: var(--bg); }

.carousel-wrap {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 50px;
}

.cards-track {
    position: relative;
    height: 460px;
    overflow: hidden;
}

.tcard {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    z-index: 1;
}

.tcard.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.tcard-img {
    width: 42%;
    position: relative;
    flex-shrink: 0;
}

.tcard-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.placed-badge {
    position: absolute;
    bottom: 16px; left: 16px;
    background: rgba(0,0,0,0.75);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 8px 14px;
    display: flex; align-items: center; gap: 10px;
    font-size: 0.85rem;
}
.placed-badge small { display: block; color: var(--muted); font-size: 0.7rem; }
.placed-badge strong { font-weight: 600; }

.tcard-body {
    flex: 1;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    text-align: left;
    overflow-y: auto;
}

.quote-mark {
    font-size: 3.5rem;
    color: var(--green);
    opacity: 0.35;
    line-height: 1;
    margin-bottom: -8px;
}

.tcard-body h2  { font-size: 1.6rem; font-weight: 700; margin-bottom: 2px; }
.role           { color: var(--muted); font-size: 0.9rem; margin-bottom: 20px; }

.timeline { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }

.tl-item strong { font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; }
.tl-item.before strong { color: var(--blue-light); }
.tl-item.after  strong { color: var(--green); }
.tl-item p { color: var(--white); font-size: 0.88rem; margin-top: 2px; line-height: 1.5; }

.tl-divider {
    border: none;
    border-top: 1px dashed rgba(255,255,255,0.1);
}

.statement { color: var(--muted); font-size: 0.82rem; font-style: italic; line-height: 1.6; margin-top: auto; }

/* Nav Buttons */
.nav-btn {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    background: rgba(15,23,42,0.5);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--muted);
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    z-index: 10;
    transition: var(--transition);
}
.nav-btn:hover { background: var(--border); color: var(--white); }
.prev-btn { left: -5px; }
.next-btn { right: -5px; }

/* Dots */
.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 24px 0 40px;
}

.dot {
    width: 9px; height: 9px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}
.dot.active { background: var(--blue); }

/* Success Footer */
.success-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(8,14,30,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 60px;
    padding: 14px 32px;
    flex-wrap: wrap;
}

.sf-left { display: flex; align-items: center; gap: 12px; }
.sf-icon {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.sf-left p { color: var(--muted); font-size: 0.82rem; max-width: 170px; line-height: 1.4; }

.sf-stats { display: flex; align-items: center; gap: 32px; }
.sf-stat { text-align: center; }
.sf-stat strong { display: block; font-size: 1.3rem; font-weight: 700; line-height: 1.2; }
.blue-val  { color: var(--blue-light); }
.green-val { color: var(--green); }
.sf-stat small { color: #64748b; font-size: 0.68rem; }

.sf-divider {
    width: 1px; height: 32px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
}

.sf-cta {
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid #1e40af;
    border-radius: 40px;
    display: flex; align-items: center; gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
}
.sf-cta:hover { background: var(--blue-light); border-color: var(--blue-light); }

/* =============================================
   FAQ
   ============================================= */
.faq-section { position: relative; background: var(--bg); }

.faq-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Accordion */
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active { border-color: var(--green); }

.faq-row {
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    user-select: none;
}

.faq-num {
    width: 30px; height: 30px;
    background: var(--blue-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 600;
    flex-shrink: 0;
}
.faq-num.blue { background: var(--blue-light); }

.faq-text { flex: 1; font-weight: 500; font-size: 0.96rem; }
.faq-toggle { font-size: 1.4rem; color: var(--green); flex-shrink: 0; }

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.active .faq-body { max-height: 200px; }

.faq-body p {
    padding: 0 22px 22px 66px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* Support Card */
.support-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 36px 30px;
    position: sticky;
    top: 90px;
}

.support-card h2  { font-size: 1.4rem; }
.support-sub      { color: var(--green); margin: 6px 0 24px; font-size: 1rem; }

.support-feats { display: flex; flex-direction: column; gap: 20px; margin-bottom: 24px; }

.sfeat { display: flex; align-items: center; gap: 14px; }

.sfeat-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.blue-feat   { background: rgba(37,99,235,0.15);  color: var(--blue);  border: 1px solid var(--border); }
.green-feat  { background: rgba(34,197,94,0.15);  color: var(--green); border: 1px solid var(--border); }
.border-feat { background: transparent; color: var(--blue); border: 1px solid var(--border); }

.sfeat strong { display: block; font-size: 0.9rem; }
.sfeat small  { color: var(--muted); font-size: 0.78rem; }

.contact-row {
    background: rgba(0,0,0,0.3);
    padding: 14px 16px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

@media(max-width:500px){
    .contact-row{
        flex-direction: column;
    }
}

.contact-txt {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.78rem; color: var(--muted);
    flex: 1;
}
.contact-txt small { display: block; }
.contact-txt i { flex-shrink: 0; }

/* Commitment Bar */
.commitment-bar {
    margin-top: 48px;
    background: rgba(10,16,32,0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 80px;
    padding: 16px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.comm-left { display: flex; align-items: center; gap: 18px; }

.shield-icon {
    width: 44px; height: 44px;
    border: 1px solid var(--blue);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue);
    font-size: 1rem;
    flex-shrink: 0;
}

.comm-left strong { display: block; font-size: 0.95rem; }
.comm-left p { font-size: 0.82rem; color: var(--muted); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: #03071a;
    border-top: 1px solid var(--border);
    padding: 60px 0 36px;
}

.footer-cta-box {
    background: linear-gradient(135deg, #0f172a 0%, #0d1117 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.footer-cta-box h3 { font-size: 1.4rem; margin-bottom: 6px; }
.footer-cta-box p  { color: var(--muted); font-size: 0.9rem; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 36px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.footer-brand p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
    max-width: 280px;
    margin: 16px 0 24px;
}

.social-links { display: flex; gap: 10px; }

.social-link {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 9px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--muted);
    font-size: 0.85rem;
    transition: var(--transition);
}
.social-link:hover {
    color: var(--white);
    background: var(--blue-light);
    border-color: var(--blue-light);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
    color: var(--muted);
    font-size: 0.88rem;
    transition: var(--transition);
}
.footer-col ul a:hover { color: var(--blue-light); padding-left: 4px; }

.footer-col p { color: var(--muted); font-size: 0.85rem; margin-bottom: 14px; }

.newsletter {
    position: relative;
    display: flex;
}

.newsletter input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 12px 48px 12px 14px;
    border-radius: 9px;
    font-size: 0.85rem;
    outline: none;
    font-family: inherit;
}
.newsletter input::placeholder { color: var(--muted); }
.newsletter input:focus { border-color: var(--blue); }

.newsletter button {
    position: absolute;
    right: 6px; top: 6px; bottom: 6px;
    width: 34px;
    background: var(--blue);
    border: none;
    border-radius: 6px;
    color: var(--white);
    font-size: 0.85rem;
    transition: var(--transition);
}
.newsletter button:hover { background: #1d4ed8; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p { color: var(--muted); font-size: 0.82rem; }

.footer-status { display: flex; align-items: center; gap: 8px; }

.status-dot {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--green);
    animation: pulse 2s ease-in-out infinite;
}

.status-text { color: var(--green); font-size: 0.82rem; font-weight: 600; }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */

/* --- 1200px --- */
@media (max-width: 1200px) {
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid  { grid-template-columns: repeat(3, 1fr); }
    .footer-grid   { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-grid .footer-col:last-child { grid-column: 1 / -1; max-width: 360px; }
    .outcomes-stats { grid-template-columns: repeat(2, 1fr); }
}

/* --- 1024px --- */
@media (max-width: 1024px) {
    .hero{
        padding-top: 20px;
    }
    
    section { padding: 70px 0; }

    .hero-grid,
    .services-grid,
    .outcomes-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content { text-align: center; align-items: center; }
    .description  { max-width: 100%; }
    .cta-group    { justify-content: center; }
    .stats-bar    { justify-content: center; }

    .hero-visual,
    .services-visual,
    .outcomes-visual {
        min-height: 440px;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .outcomes-list { order: 2; }
    .outcomes-visual { order: 1; }

    .services-grid .services-list { order: 2; }
    /* .services-grid .services-visual { order: 1; } */
    .services-visual{
        display: none;
    }

    .section-header .sub-description { margin-left: auto; margin-right: auto; }

    /* Hide floating cards on tablet to avoid overlap */
    .floating-card { display: none; }

    .mini-card {
        position: relative;
        bottom: auto; right: auto;
        margin: 16px auto 0;
        width: fit-content;
    }

    .float-result {
        position: relative;
        bottom: auto; top: auto; right: auto;
        display: inline-flex;
        margin: 6px;
    }

    .outcomes-visual {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        gap: 0;
    }

    .outcomes-visual .visual-img {
        max-height: 320px;
    }

    .outcomes-visual .dashed-circle-lg { display: none; }

    .float-results-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 12px;
    }

    .faq-grid { gap: 30px; }
    .support-card { position: static; }

    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    .navbar .nav-cta { display: none; }
    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 65px; left: 0; right: 0;
        background: rgba(3,7,26,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
        border-bottom: 1px solid var(--border);
        z-index: 999;
    }

    .nav-links.open {
        max-height: 400px;
        padding: 16px 0 24px;
    }

    .nav-links li { width: 100%; text-align: center; }
    .nav-links a  {
        display: block;
        padding: 12px 24px;
        font-size: 1rem;
    }

    .success-footer {
        border-radius: 20px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 24px;
    }

    .sf-left p { max-width: 100%; }

    .commitment-bar {
        border-radius: 20px;
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 24px;
    }

    .comm-left { flex-direction: column; align-items: center; text-align: center; }
}

/* --- 768px --- */
@media (max-width: 768px) {
    section { padding: 60px 0; }
    .container { padding: 0 18px; }

    h1 { font-size: clamp(1.9rem, 6vw, 2.6rem); }
    h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }

    .audience-grid { grid-template-columns: 1fr; gap: 20px; }

    .card-img-wrap { height: 180px; }

    .process-grid { grid-template-columns: 1fr 1fr; }

    .outcomes-stats { grid-template-columns: 1fr 1fr; gap: 16px; padding: 20px; }

    .carousel-wrap { padding: 0 44px; }

    .tcard { flex-direction: column; height: auto; }
    .cards-track { height: auto; min-height: 500px; }
    .tcard.active { position: relative; }
    .tcard:not(.active) { display: none; }

    .tcard-img { width: 100%; height: 220px; }
    .tcard-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* move image little down */
    object-position: center 20%;
}
    .tcard-body { padding: 24px 20px; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-col:last-child { grid-column: 1 / -1; max-width: 100%; }

    .footer-cta-box {
        flex-direction: column;
        text-align: center;
        border-radius: 16px;
        padding: 28px 24px;
    }

    .process-cta { padding: 20px 24px; }
    .cta-left { flex-direction: column; align-items: flex-start; text-align: left; }

    .sf-stats { gap: 20px; }
}

/* --- 480px --- */
@media (max-width: 480px) {
    section { padding: 50px 0; }
    .container { padding: 0 16px; }

    .stats-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .stats-bar .divider { display: none; }

    .stat {
        padding: 14px;
        background: var(--bg-surface);
        border: 1px solid var(--border);
        border-radius: 14px;
        height: 100%;
    }

    .process-grid { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: 1fr; }
    .outcomes-stats { grid-template-columns: 1fr 1fr; }

    .faq-body p { padding: 0 16px 18px 16px; }

    .mission-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 16px;
    }

    .hero-visual { min-height: 300px; }
    .dashed-circle { width: 280px; height: 280px; }
    .hero-img-wrap { max-width: 260px; }

    /* .services-visual { min-height: 360px; } */
    .dashed-circle-lg { width: 280px; height: 280px; }
    .orbit-icon { width: 38px; height: 38px; font-size: 0.8rem; }

    .carousel-wrap { padding: 0 38px; }
    .nav-btn { width: 36px; height: 36px; font-size: 0.85rem; }

    .sf-stats { gap: 16px; }
    .sf-cta { width: 100%; justify-content: center; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }

    .commitment-bar { padding: 20px 18px; }

    .process-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 20px 20px;
    }
}
