@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    --hero-bg:      #0d0b2b;
    --hero-bg2:     #1a0a3c;
    --primary:      #7c3aed;
    --primary-light:#a855f7;
    --accent:       #f43f8b;
    --accent2:      #ff6b35;
    --indigo:       #4f46e5;
    --text-dark:    #1e293b;
    --text-muted:   #64748b;
    --border:       #e8edf4;
    --bg-light:     #f8fafc;
    --card-bg:      #ffffff;
    --footer-bg:    #0d0b2b;

    --radius-sm:    10px;
    --radius-md:    16px;
    --radius-lg:    24px;
    --shadow-sm:    0 1px 4px rgba(0,0,0,0.06);
    --shadow-md:    0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg:    0 20px 50px rgba(0,0,0,0.12);

    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar-strip {
    background: var(--hero-bg);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-strip, .topbar-strip a { color: #94a3b8; }
.topbar-strip a:hover { color: #ffffff; }

/* ============================================================
   HEADER
   ============================================================ */
#header {
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    z-index: 999;
    height: 72px;
    background: rgba(13, 11, 43, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
}

#header.scrolled {
    top: 0;
    background: rgba(13, 11, 43, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.site-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

/* Navbar */
#header .navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0; padding: 0;
}

#header .navbar a.nav-link {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 14px;
    padding: 7px 14px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

#header .navbar a.nav-link:hover,
#header .navbar a.nav-link.active {
    color: #ffffff;
    background: rgba(255,255,255,0.08);
}

.nav-btn-outline {
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 22px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}
.nav-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

.nav-btn {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
    color: #fff !important;
    padding: 8px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(244,63,139,0.3);
}
.nav-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(244,63,139,0.4); }

.mobile-nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle { display: block; }
    #header .navbar ul { display: none; }
    #header .navbar.navbar-mobile ul {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--hero-bg);
        align-items: center;
        justify-content: center;
        gap: 20px;
        z-index: 998;
    }
}

/* ============================================================
   HERO - DARK SECTION
   ============================================================ */
#hero {
    position: relative;
    background: linear-gradient(135deg, #0d0b2b 0%, #1a0a3c 40%, #0e1845 100%);
    min-height: 100vh;
    padding: 200px 0 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Glow blobs */
#hero::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, transparent 70%);
    top: -100px; left: -100px;
    pointer-events: none;
}

#hero::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(244,63,139,0.15) 0%, transparent 70%);
    bottom: 0; right: 0;
    pointer-events: none;
}

#hero .container { position: relative; z-index: 1; }

/* Trusted banner */
.hero-trust-bar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244,63,139,0.12);
    border: 1px solid rgba(244,63,139,0.3);
    color: #fb7bb8;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-title .accent-pink { color: var(--accent); }
.hero-title .accent-indigo { color: #a78bfa; }

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    max-width: 520px;
    margin-bottom: 38px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
    color: #fff;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 15px;
    transition: all 0.25s ease;
    box-shadow: 0 8px 24px rgba(244,63,139,0.35);
    display: inline-block;
    white-space: nowrap;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(244,63,139,0.45);
    color: #fff;
}

.btn-hero-outline {
    background: transparent;
    color: rgba(255,255,255,0.85);
    padding: 13px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.25s ease;
    display: inline-block;
    white-space: nowrap;
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

/* Hero image (right side person) */
.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-person-img {
    width: 100%;
    max-width: 420px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 60px rgba(124,58,237,0.4));
}

/* Floating icon badges */
.hero-float-badge {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    z-index: 2;
    animation: floatBadge 5s ease-in-out infinite;
}

.hero-float-badge.top-right { top: 10%; right: -20px; animation-delay: 0s; }
.hero-float-badge.mid-left  { top: 45%; left: -30px; animation-delay: -1.5s; }
.hero-float-badge.bottom    { bottom: 10%; right: 10%; animation-delay: -3s; }

@keyframes floatBadge {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-12px); }
}

.fb-icon { font-size: 20px; }
.fb-green  { color: #4ade80; }
.fb-yellow { color: #fbbf24; }
.fb-pink   { color: var(--accent); }

.hero-trust-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.ht-item { display: flex; flex-direction: column; }
.ht-num {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
}
.ht-label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600; }
.ht-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }

/* ============================================================
   FEATURES BENTO GRID
   ============================================================ */
.features-section {
    padding: 90px 0;
    background: #ffffff;
}

.section-label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.section-heading {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 12px auto 0;
    line-height: 1.75;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .bento-grid { grid-template-columns: 1fr; }
}

.bento-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: #d4d9f5;
}

.bento-card:hover::before { opacity: 1; }

.bc-icon-wrap {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.bc-purple { background: #f3efff; color: var(--primary); }
.bc-pink   { background: #fdf2f8; color: var(--accent); }
.bc-blue   { background: #eff6ff; color: #3b82f6; }
.bc-green  { background: #ecfdf5; color: #10b981; }
.bc-orange { background: #fff7ed; color: #f97316; }
.bc-indigo { background: #eef2ff; color: var(--indigo); }

.bento-card h6 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.bento-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: #c4b5fd;
}

.sc-icon {
    width: 60px; height: 60px;
    background: #f3efff;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 18px;
}

.service-card h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    flex: 1;
    line-height: 1.7;
    margin-bottom: 18px;
}

.sc-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s, color 0.2s;
}

.sc-link:hover { gap: 12px; color: var(--accent); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw-section {
    padding: 90px 0;
    background: #ffffff;
}

.hiw-step {
    text-align: center;
    padding: 32px 20px;
}

.hiw-number {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 15px;
    margin: 0 auto 20px;
    font-family: var(--font-head);
}

.hiw-icon {
    font-size: 52px;
    margin-bottom: 16px;
    display: block;
}

.hiw-step h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.hiw-step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
}

.hiw-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    color: #c4b5fd;
    font-size: 24px;
}

@media (max-width: 767px) { .hiw-arrow { display: none; } }

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #0d0b2b 0%, #1a0a3c 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(244,63,139,0.12) 0%, transparent 70%);
    top: -100px; right: -100px;
}

.stat-card {
    text-align: center;
    padding: 32px 16px;
    border-right: 1px solid rgba(255,255,255,0.07);
}

.stat-card:last-child { border-right: none; }

.stat-num {
    font-family: var(--font-head);
    font-size: 2.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    display: block;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.about-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    background: #ecfdf5;
    color: #15803d;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid #bbf7d0;
}

.about-bar-wrap { margin-top: 24px; }

.about-bar-row {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.about-bar {
    flex: 1;
    height: 8px;
    background: #e8edf4;
    border-radius: 100px;
    overflow: hidden;
}

.about-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 100px;
}

.about-bar-pct {
    font-weight: 700;
    color: var(--primary);
    width: 40px;
    text-align: right;
    flex-shrink: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
    padding: 90px 0;
    background: #ffffff;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.faq-q {
    width: 100%;
    background: #ffffff;
    border: none;
    outline: none;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 14.5px;
    color: var(--text-dark);
    cursor: pointer;
    font-family: var(--font-body);
    gap: 12px;
    text-align: left;
    transition: background 0.2s;
}

.faq-q:not(.collapsed) { background: #f8f4ff; color: var(--primary); }
.faq-q i { font-size: 15px; flex-shrink: 0; transition: transform 0.3s; color: var(--primary); }
.faq-q:not(.collapsed) i { transform: rotate(180deg); }

.faq-a {
    padding: 14px 22px 18px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    border-top: 1px solid var(--border);
    background: #faf8ff;
}

.faq-a a { color: var(--primary); font-weight: 600; }

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #0d0b2b 0%, #1a0a3c 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 65%);
    top: -200px; left: -100px;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(244,63,139,0.15) 0%, transparent 65%);
    bottom: -100px; right: -50px;
}

.cta-section .container { position: relative; z-index: 1; }

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.cta-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.55);
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.btn-hero-outline-white {
    background: rgba(255,255,255,0.08);
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.25s ease;
    display: inline-block;
}

.btn-hero-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
    background: #070613;
    color: #64748b;
    padding: 80px 0 0;
    font-size: 14px;
}

.footer-brand {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    display: block;
}

.footer-desc {
    color: #49546a;
    line-height: 1.8;
    font-size: 14px;
    max-width: 280px;
    margin-bottom: 22px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    color: #64748b;
    transition: all 0.25s;
}

.footer-socials a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #e2e8f0;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0; margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: #49546a;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.footer-links a:hover { color: #fff; padding-left: 4px; }

.footer-contact-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #49546a;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-list li i {
    color: var(--primary);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-list a { color: #64748b; transition: color 0.2s; }
.footer-contact-list a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    margin-top: 64px;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p { margin: 0; font-size: 13px; color: #374151; }
.footer-bottom strong { color: #64748b; }
.footer-bottom a { color: var(--accent); font-weight: 700; }
.footer-bottom a:hover { color: #f472b6; }

@media (max-width: 576px) {
    .footer-bottom { flex-direction: column; text-align: center; }
}
