 *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        :root {
            --purple: #6B2D8B;
            --purple-mid: #8B3DAB;
            --purple-deep: #4a1a63;
            --pink: #C4447A;
            --pink-light: #e06096;
            --magenta: #B83A7A;
            --gold: #d4a443;
            --text-dark: #0f0718;
            --text-mid: #3d2a50;
            --text-muted: #7a6585;
            --bg-page: #fdfbfe;
            --bg-soft: #f8f4fc;
            --bg-card: #ffffff;
            --border-light: #ede5f4;
            --border-mid: #d8c8e8;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 22px;
            --radius-xl: 32px;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--bg-page);
            color: var(--text-dark);
            line-height: 1.65;
            overflow-x: hidden;
            cursor: none;
        }

        /* CUSTOM CURSOR */
        .cursor {
            width: 10px; height: 10px;
            background: var(--purple);
            border-radius: 50%;
            position: fixed; top: 0; left: 0;
            pointer-events: none; z-index: 9999;
            transform: translate(-50%, -50%);
            transition: transform 0.1s;
        }
        .cursor-ring {
            width: 36px; height: 36px;
            border: 1.5px solid rgba(107,45,139,0.4);
            border-radius: 50%;
            position: fixed; top: 0; left: 0;
            pointer-events: none; z-index: 9998;
            transform: translate(-50%, -50%);
            transition: left 0.14s ease-out, top 0.14s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
        }
        .cursor-ring.expanded { width: 56px; height: 56px; border-color: var(--pink); }
        a:hover, button:hover { cursor: none; }

        h1, h2, h3 { font-family: 'Poppins', sans-serif; font-weight: 700; letter-spacing: -0.03em; }

        .brand-text { color: var(--purple); }
        .pink-text { color: var(--pink); }
        .italic-text { font-style: italic; }

        /* ===== PROGRESS BAR ===== */
        #progress-bar {
            position: fixed; top: 0; left: 0; height: 3px; width: 0%;
            background: linear-gradient(90deg, var(--purple), var(--pink));
            z-index: 9000; transition: width 0.1s linear;
            border-radius: 0 2px 2px 0;
        }

        /* ===== NAV ===== */
        nav {
            position: fixed; top: 0; width: 100%; z-index: 200;
            background: rgba(253,251,254,0.88);
            backdrop-filter: blur(20px) saturate(1.5);
            -webkit-backdrop-filter: blur(20px) saturate(1.5);
            border-bottom: 1px solid transparent;
            transition: border-color 0.4s, box-shadow 0.4s;
        }
        nav.scrolled {
            border-color: var(--border-light);
            box-shadow: 0 4px 32px rgba(107,45,139,0.06);
        }
        .nav-inner {
            max-width: 1240px; margin: 0 auto;
            padding: 0 2rem; height: 72px;
            display: flex; align-items: center; justify-content: space-between;
        }
        .nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
        .nav-logo-mark {
            width: 40px; height: 40px;
            background: linear-gradient(135deg, var(--purple), var(--pink));
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.2rem; color: white; font-weight: 700;
            font-family: 'Poppins', sans-serif;
            box-shadow: 0 4px 16px rgba(107,45,139,0.3);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .nav-brand:hover .nav-logo-mark { transform: rotate(-5deg) scale(1.05); box-shadow: 0 8px 24px rgba(107,45,139,0.4); }
        .nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
        .nav-brand-text .name {
            font-family: 'Poppins', sans-serif; font-size: 1.05rem;
            color: var(--purple); letter-spacing: 0.01em;
        }
        .nav-brand-text .tagline { font-size: 0.6rem; color: var(--pink); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
        .nav-links { display: none; gap: 0; align-items: center; }
        @media(min-width: 768px) { .nav-links { display: flex; } }
        .nav-link {
            padding: 0.45rem 1.1rem; border-radius: var(--radius-sm);
            text-decoration: none; font-size: 0.875rem; font-weight: 500;
            color: var(--text-mid); transition: all 0.25s; position: relative;
        }
        .nav-link::after {
            content: ''; position: absolute; bottom: 4px; left: 1.1rem; right: 1.1rem;
            height: 2px; background: var(--purple); border-radius: 2px;
            transform: scaleX(0); transition: transform 0.3s;
        }
        .nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
        .nav-link:hover { color: var(--purple); }
        .nav-link.active { color: var(--purple); font-weight: 600; }
        .nav-cta {
            background: linear-gradient(135deg, var(--purple), var(--pink));
            color: white; padding: 0.6rem 1.5rem; border-radius: 999px;
            border: none; font-size: 0.875rem; font-weight: 600;
            cursor: none; font-family: 'Poppins', sans-serif;
            transition: all 0.3s; box-shadow: 0 4px 16px rgba(107,45,139,0.25);
            position: relative; overflow: hidden;
        }
        .nav-cta::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(135deg, var(--pink), var(--purple));
            opacity: 0; transition: opacity 0.3s;
        }
        .nav-cta:hover::before { opacity: 1; }
        .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(107,45,139,0.35); }
        .nav-cta span { position: relative; z-index: 1; }
        .hamburger { display: flex; flex-direction: column; gap: 5px; cursor: none; padding: 6px; border-radius: 8px; transition: background 0.2s; }
        @media(min-width: 768px) { .hamburger { display: none; } }
        .hamburger:hover { background: #f3e8fb; }
        .hamburger span { display: block; width: 22px; height: 2px; background: var(--purple); border-radius: 2px; transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1); }
        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
        .mobile-menu {
            display: none; flex-direction: column;
            position: fixed; top: 72px; left: 0; right: 0;
            background: rgba(253,251,254,0.97); backdrop-filter: blur(20px);
            z-index: 199; border-bottom: 1px solid var(--border-light);
            padding: 1rem; gap: 4px;
            box-shadow: 0 16px 48px rgba(107,45,139,0.12);
            animation: slideDown 0.3s ease;
        }
        @keyframes slideDown { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }
        .mobile-menu.open { display: flex; }
        .mobile-menu a { padding: 0.85rem 1rem; text-decoration: none; color: var(--text-mid); font-weight: 500; border-radius: var(--radius-sm); transition: background 0.2s; font-size: 1rem; }
        .mobile-menu a:hover { background: #f3e8fb; color: var(--purple); }

        /* ===== HERO ===== */
        #hero {
            min-height: 100vh; padding: 7.5rem 2rem 4rem;
            position: relative; overflow: hidden;
            display: flex; align-items: center;
        }

        /* Animated gradient mesh background */
        .hero-bg {
            position: absolute; inset: 0;
            background: var(--bg-soft);
            overflow: hidden;
        }
        .hero-bg-blob {
            position: absolute; border-radius: 50%;
            filter: blur(80px); opacity: 0.5;
            animation: blobDrift 12s ease-in-out infinite alternate;
        }
        .hero-bg-blob:nth-child(1) { width: 600px; height: 600px; background: radial-gradient(circle, rgba(107,45,139,0.18), transparent 70%); top: -10%; right: -10%; }
        .hero-bg-blob:nth-child(2) { width: 500px; height: 500px; background: radial-gradient(circle, rgba(196,68,122,0.14), transparent 70%); bottom: -10%; left: -10%; animation-delay: -4s; }
        .hero-bg-blob:nth-child(3) { width: 350px; height: 350px; background: radial-gradient(circle, rgba(212,164,67,0.1), transparent 70%); top: 30%; left: 40%; animation-delay: -8s; }
        @keyframes blobDrift { from { transform: translate(0, 0) scale(1); } to { transform: translate(30px, 20px) scale(1.08); } }

        /* Grid pattern overlay */
        .hero-grid-overlay {
            position: absolute; inset: 0;
            background-image: linear-gradient(rgba(107,45,139,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(107,45,139,0.04) 1px, transparent 1px);
            background-size: 40px 40px;
            mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
        }

        .hero-inner { max-width: 1240px; margin: 0 auto; position: relative; z-index: 1; width: 100%; }
        .hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
        @media(min-width: 960px) { .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 4rem; } }

        .hero-pill {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 0.4rem 1.1rem; background: white;
            border: 1.5px solid var(--border-mid); border-radius: 999px;
            font-size: 0.78rem; font-weight: 600; color: var(--purple);
            margin-bottom: 1.75rem;
            box-shadow: 0 2px 12px rgba(107,45,139,0.08);
        }
        .hero-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 3px rgba(196,68,122,0.2); animation: pulseGlow 2s ease-in-out infinite; }
        @keyframes pulseGlow { 0%,100%{box-shadow:0 0 0 3px rgba(196,68,122,0.2)} 50%{box-shadow:0 0 0 6px rgba(196,68,122,0.1)} }

        .hero-h1 {
            font-size: clamp(3rem, 5.5vw, 5rem); line-height: 1.05;
            margin-bottom: 1.5rem; color: var(--text-dark);
        }
        .hero-h1 .line-block { display: block; }
        .hero-h1 .highlight-wrap { position: relative; display: inline-block; }
        .hero-h1 .highlight-wrap::after {
            content: '';
            position: absolute; bottom: 4px; left: -2px; right: -2px; height: 8px;
            background: rgba(196,68,122,0.18); border-radius: 4px; z-index: -1;
        }

        .hero-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 32rem; line-height: 1.85; margin-bottom: 2.5rem; }

        .hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }

        .btn-primary {
            background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
            color: white; padding: 0.9rem 2.2rem; border-radius: 999px;
            border: none; font-size: 0.95rem; font-weight: 600;
            cursor: none; font-family: 'Poppins', sans-serif;
            transition: all 0.3s; box-shadow: 0 6px 24px rgba(107,45,139,0.3);
            position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 8px;
        }
        .btn-primary::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
            opacity: 0; transition: opacity 0.4s;
        }
        .btn-primary:hover::before { opacity: 1; }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(107,45,139,0.35); }
        .btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

        .btn-secondary {
            background: white; color: var(--purple);
            padding: 0.9rem 2.2rem; border-radius: 999px;
            border: 2px solid var(--border-mid); font-size: 0.95rem; font-weight: 600;
            cursor: none; font-family: 'Poppins', sans-serif;
            transition: all 0.3s;
        }
        .btn-secondary:hover { border-color: var(--purple); background: #f8f0fc; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(107,45,139,0.1); }

        /* Stats strip */
        .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
        .stat-card {
            background: white; border: 1.5px solid var(--border-light);
            border-radius: var(--radius-md); padding: 1.1rem 0.75rem;
            text-align: center; transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
            position: relative; overflow: hidden;
        }
        .stat-card::before {
            content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
            background: linear-gradient(90deg, var(--purple), var(--pink));
            transform: scaleX(0); transition: transform 0.35s;
        }
        .stat-card:hover::before { transform: scaleX(1); }
        .stat-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(107,45,139,0.12); border-color: var(--border-mid); }
        .stat-num { font-family: 'Poppins', sans-serif; font-size: 1.7rem; font-weight: 700; color: var(--purple); }
        .stat-lbl { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.2rem; font-weight: 500; }

        /* Hero floating card */
        .hero-float-card {
            background: white; border-radius: var(--radius-xl);
            border: 1.5px solid var(--border-light);
            padding: 2.5rem;
            box-shadow: 0 24px 64px rgba(107,45,139,0.12);
            animation: floatCard 6s ease-in-out infinite;
        }
        @keyframes floatCard { 0%,100%{transform:translateY(0) rotate(0deg)} 33%{transform:translateY(-10px) rotate(0.5deg)} 66%{transform:translateY(-6px) rotate(-0.3deg)} }

        .hcard-badge {
            display: inline-flex; align-items: center; gap: 6px;
            padding: 0.3rem 0.9rem; border-radius: 999px;
            background: linear-gradient(135deg, rgba(107,45,139,0.1), rgba(196,68,122,0.1));
            font-size: 0.72rem; font-weight: 700; color: var(--purple);
            letter-spacing: 0.06em; margin-bottom: 1.25rem;
        }
        .hcard-title { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.35rem; }
        .hcard-sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem; }
        .hcard-divider { height: 1px; background: var(--border-light); margin: 1.25rem 0; }
        .hcard-body { color: var(--text-mid); font-size: 0.88rem; line-height: 1.8; margin-bottom: 1.25rem; }
        .hcard-row { display: flex; gap: 8px; margin-bottom: 0.55rem; align-items: flex-start; }
        .hcard-check { color: #22c55e; font-size: 0.85rem; flex-shrink: 0; margin-top: 2px; }
        .hcard-row p { font-size: 0.85rem; color: var(--text-mid); }

        /* ===== TRUSTED BY TICKER ===== */
        .ticker-section {
            padding: 1.5rem 0;
            background: white;
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            overflow: hidden;
        }
        .ticker-label { text-align: center; font-size: 0.72rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
        .ticker-track { display: flex; gap: 2.5rem; animation: ticker 20s linear infinite; width: max-content; }
        .ticker-track:hover { animation-play-state: paused; }
        @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
        .ticker-item {
            display: flex; align-items: center; gap: 10px; white-space: nowrap;
            padding: 0.6rem 1.5rem; border-radius: 999px;
            background: var(--bg-soft); border: 1.5px solid var(--border-light);
            font-size: 0.85rem; font-weight: 600; color: var(--text-mid);
            transition: border-color 0.25s, color 0.25s;
        }
        .ticker-item:hover { border-color: var(--purple); color: var(--purple); }
        .ticker-dot { width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--pink)); flex-shrink: 0; }

        /* ===== SECTIONS ===== */
        section { padding: 6rem 2rem; }
        .s-inner { max-width: 1240px; margin: 0 auto; }
        .s-head { text-align: center; margin-bottom: 4.5rem; }
        .s-head h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 0.85rem; }
        .s-head p { font-size: 1.05rem; color: var(--text-muted); max-width: 38rem; margin: 0 auto; }
        .s-label {
            display: inline-flex; align-items: center; gap: 6px;
            padding: 0.3rem 1rem; border-radius: 999px;
            background: rgba(107,45,139,0.08); color: var(--purple);
            font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
            margin-bottom: 1rem;
        }
        .s-label::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--pink); }
        .bg-soft { background: var(--bg-soft); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
        .bg-deals {
            background: linear-gradient(160deg, #fdf8ff 0%, #f5edfb 40%, #fef0f6 100%);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            position: relative;
        }
        .bg-deals::before {
            content: ''; position: absolute; inset: 0;
            background-image: radial-gradient(circle at 15% 30%, rgba(107,45,139,0.07) 0%, transparent 50%),
                radial-gradient(circle at 85% 70%, rgba(196,68,122,0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        /* ===== ABOUT ===== */
        .about-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
        @media(min-width: 800px) { .about-grid { grid-template-columns: 1fr 1fr; } }

        .about-text-block p { color: var(--text-mid); margin-bottom: 0.85rem; line-height: 1.85; font-size: 0.95rem; }

        .check-list { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 2rem; }
        .check-row {
            display: flex; gap: 10px; align-items: flex-start;
            padding: 0.8rem 1rem; border-radius: var(--radius-sm);
            border: 1.5px solid transparent;
            transition: all 0.25s;
        }
        .check-row:hover { background: #f8f0fc; border-color: var(--border-mid); }
        .check-icon { color: #16a34a; font-size: 0.85rem; flex-shrink: 0; margin-top: 2px; }
        .check-row p { color: var(--text-mid); font-size: 0.9rem; }

        .about-card-side {
            background: white; border-radius: var(--radius-xl);
            border: 1.5px solid var(--border-light);
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(107,45,139,0.08);
            transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
        }
        .about-card-side:hover { transform: translateY(-10px); box-shadow: 0 32px 64px rgba(107,45,139,0.13); }

        /* Premium stat pills inside about card */
        .about-pill-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
        .about-pill {
            display: inline-flex; align-items: center; gap: 6px;
            padding: 0.4rem 1rem; border-radius: 999px;
            background: linear-gradient(135deg, rgba(107,45,139,0.07), rgba(196,68,122,0.07));
            border: 1.5px solid rgba(107,45,139,0.12);
            font-size: 0.78rem; font-weight: 700; color: var(--purple);
        }
        .about-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--pink)); flex-shrink: 0; }

        .about-card-main { padding: 2.5rem; }
        .about-card-heading { font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1rem; letter-spacing: -0.02em; }
        .about-card-heading span { color: var(--purple); }
        .about-card-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.85; margin-bottom: 2rem; }

        .about-card-metrics {
            display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
            background: var(--border-light); border-radius: var(--radius-md);
            overflow: hidden;
        }
        .about-metric {
            background: var(--bg-soft); padding: 1.25rem;
            text-align: center; transition: background 0.25s;
        }
        .about-metric:hover { background: #f3e8fb; }
        .about-metric-num { font-size: 1.5rem; font-weight: 800; color: var(--purple); line-height: 1; margin-bottom: 0.3rem; }
        .about-metric-lbl { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.04em; }

        .about-card-footer {
            padding: 1.25rem 2.5rem;
            background: linear-gradient(135deg, rgba(107,45,139,0.04), rgba(196,68,122,0.04));
            border-top: 1px solid var(--border-light);
            display: flex; align-items: center; gap: 10px;
            font-size: 0.82rem; font-weight: 600; color: var(--purple);
        }
        .about-card-footer-icon { font-size: 1rem; }

        /* ===== SERVICES ===== */
        .srv-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
        @media(min-width: 640px) { .srv-grid { grid-template-columns: repeat(2,1fr); } }
        @media(min-width: 1000px) { .srv-grid { grid-template-columns: repeat(3,1fr); } }

        .srv-card {
            background: white; padding: 2rem;
            border-radius: var(--radius-lg);
            border: 1.5px solid var(--border-light);
            transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
            position: relative; overflow: hidden;
        }
        .srv-card::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(107,45,139,0.04), rgba(196,68,122,0.04));
            opacity: 0; transition: opacity 0.35s;
        }
        .srv-card:hover::before { opacity: 1; }
        .srv-glow {
            position: absolute; top: -30px; right: -30px;
            width: 100px; height: 100px; border-radius: 50%;
            background: radial-gradient(circle, rgba(107,45,139,0.15), transparent 70%);
            transform: scale(0); transition: transform 0.4s;
        }
        .srv-card:hover .srv-glow { transform: scale(2.5); }
        .srv-card:hover { transform: translateY(-8px); border-color: rgba(107,45,139,0.3); box-shadow: 0 20px 48px rgba(107,45,139,0.12); }

        .srv-icon-wrap {
            width: 52px; height: 52px;
            background: linear-gradient(135deg, rgba(107,45,139,0.1), rgba(196,68,122,0.1));
            border-radius: var(--radius-md);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem; margin-bottom: 1.25rem;
            transition: all 0.35s; position: relative; z-index: 1;
        }
        .srv-card:hover .srv-icon-wrap { background: linear-gradient(135deg, rgba(107,45,139,0.18), rgba(196,68,122,0.18)); transform: scale(1.1) rotate(-4deg); }
        .srv-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; color: var(--text-dark); position: relative; z-index: 1; }
        .srv-card p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.75; position: relative; z-index: 1; }

        /* ===== WHY US ===== */
        .why-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
        @media(min-width: 800px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

        .mini-cards { display: flex; flex-direction: column; gap: 1rem; }
        .mini-card {
            background: white; border: 1.5px solid var(--border-light);
            border-radius: var(--radius-md); padding: 1.35rem 1.5rem;
            display: flex; gap: 14px; align-items: flex-start;
            transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
        }
        .mini-card:hover { border-color: rgba(107,45,139,0.35); transform: translateX(8px); box-shadow: 0 10px 32px rgba(107,45,139,0.1); background: #fdfaff; }
        .mini-card-icon-wrap {
            width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--radius-sm);
            background: linear-gradient(135deg, rgba(107,45,139,0.1), rgba(196,68,122,0.1));
            display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
            transition: all 0.35s;
        }
        .mini-card:hover .mini-card-icon-wrap { background: linear-gradient(135deg, rgba(107,45,139,0.18), rgba(196,68,122,0.18)); transform: rotate(-5deg) scale(1.08); }
        .mini-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.2rem; }
        .mini-card p { font-size: 0.825rem; color: var(--text-muted); }

        .why-list { display: flex; flex-direction: column; gap: 1.75rem; }
        .why-item {
            padding: 1.5rem; border-radius: var(--radius-md);
            border: 1.5px solid var(--border-light);
            background: white;
            transition: all 0.35s; position: relative; overflow: hidden;
        }
        .why-item::before {
            content: ''; position: absolute; left: 0; top: 0; bottom: 0;
            width: 4px; background: linear-gradient(180deg, var(--purple), var(--pink));
            border-radius: 4px 0 0 4px; transform: scaleY(0); transition: transform 0.35s;
        }
        .why-item:hover::before { transform: scaleY(1); }
        .why-item:hover { border-color: rgba(107,45,139,0.2); box-shadow: 0 8px 28px rgba(107,45,139,0.08); }
        .why-item h3 { font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--text-dark); transition: color 0.3s; }
        .why-item:hover h3 { color: var(--purple); }
        .why-item p { font-size: 0.875rem; color: var(--text-muted); }

        /* ===== PAST DEALS ===== */
        .deals-header { text-align: center; margin-bottom: 3.5rem; }
        .deals-header h2 { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--text-dark); margin-bottom: 0.85rem; }
        .deals-header p { color: var(--text-muted); font-size: 1rem; }

        .deals-kpi { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; margin-bottom: 4rem; }
        .kpi-box {
            padding: 2rem 3rem; text-align: center;
            background: white;
            border: 1.5px solid var(--border-light);
            border-radius: var(--radius-lg);
            transition: all 0.35s; position: relative; overflow: hidden;
            box-shadow: 0 4px 20px rgba(107,45,139,0.06);
        }
        .kpi-box::before {
            content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
            background: linear-gradient(90deg, var(--purple), var(--pink));
            transform: scaleX(0); transition: transform 0.35s;
        }
        .kpi-box:hover::before { transform: scaleX(1); }
        .kpi-box:hover { border-color: rgba(107,45,139,0.25); transform: translateY(-6px); box-shadow: 0 20px 48px rgba(107,45,139,0.12); }
        .kpi-num { font-family: 'Poppins', sans-serif; font-size: 2.8rem; font-weight: 700; color: var(--purple); position: relative; z-index: 1; }
        .kpi-lbl { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.25rem; letter-spacing: 0.06em; font-weight: 500; position: relative; z-index: 1; }

        /* Deal cards with filter */
        .deals-filter {
            display: flex; justify-content: center; gap: 0.75rem;
            margin-bottom: 2.5rem; flex-wrap: wrap;
        }
        .filter-btn {
            padding: 0.45rem 1.25rem; border-radius: 999px;
            font-size: 0.82rem; font-weight: 600;
            background: white;
            border: 1.5px solid var(--border-mid);
            color: var(--text-muted);
            cursor: none; transition: all 0.25s; font-family: 'Poppins', sans-serif;
        }
        .filter-btn.active, .filter-btn:hover {
            background: var(--purple);
            border-color: var(--purple);
            color: white;
            box-shadow: 0 4px 16px rgba(107,45,139,0.25);
        }

        .deals-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
        @media(min-width: 640px) { .deals-grid { grid-template-columns: repeat(3, 1fr); } }
        @media(min-width: 1000px) { .deals-grid { grid-template-columns: repeat(4, 1fr); } }

        .deal-card {
            background: white;
            border: 1.5px solid var(--border-light);
            border-radius: var(--radius-lg); padding: 2rem 1.25rem;
            text-align: center; transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
            position: relative; overflow: hidden;
            box-shadow: 0 2px 12px rgba(107,45,139,0.05);
        }
        .deal-card::after {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
            background: linear-gradient(90deg, var(--purple), var(--pink));
            transform: scaleX(0); transition: transform 0.35s; transform-origin: left;
        }
        .deal-card:hover::after { transform: scaleX(1); }
        .deal-card:hover { border-color: rgba(107,45,139,0.25); transform: translateY(-8px) scale(1.02); box-shadow: 0 24px 48px rgba(107,45,139,0.14); }

        .deal-ico {
            width: 56px; height: 56px; margin: 0 auto 1rem;
            background: linear-gradient(135deg, rgba(107,45,139,0.08), rgba(196,68,122,0.08));
            border-radius: var(--radius-md);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.6rem; transition: all 0.35s; position: relative; z-index: 1;
        }
        .deal-card:hover .deal-ico { background: linear-gradient(135deg, rgba(107,45,139,0.16), rgba(196,68,122,0.14)); transform: scale(1.12) rotate(-5deg); }
        .deal-name { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.6rem; position: relative; z-index: 1; }
        .closed-badge {
            display: inline-flex; align-items: center; gap: 4px;
            padding: 0.22rem 0.75rem; background: rgba(22,163,74,0.08);
            border: 1px solid rgba(22,163,74,0.2); border-radius: 999px;
            font-size: 0.68rem; color: #16a34a; font-weight: 600; position: relative; z-index: 1;
        }
        .next-badge {
            display: inline-flex; align-items: center; gap: 4px;
            padding: 0.22rem 0.75rem; background: rgba(107,45,139,0.08);
            border: 1px solid rgba(107,45,139,0.2); border-radius: 999px;
            font-size: 0.68rem; color: var(--purple); font-weight: 600; position: relative; z-index: 1;
        }

        /* ===== PROCESS — INTERACTIVE STEPPER ===== */
        .proc-stepper { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
        @media(min-width: 640px) { .proc-stepper { grid-template-columns: repeat(2, 1fr); } }
        @media(min-width: 1000px) { .proc-stepper { grid-template-columns: repeat(3, 1fr); } }

        .proc-card {
            background: white; padding: 2.25rem;
            border-radius: var(--radius-lg); border: 1.5px solid var(--border-light);
            transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
            position: relative; overflow: hidden; cursor: none;
        }
        .proc-card.active {
            border-color: var(--purple);
            box-shadow: 0 20px 48px rgba(107,45,139,0.15);
            transform: translateY(-6px);
        }
        .proc-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--purple), var(--pink));
            transform: scaleX(0); transition: transform 0.4s; transform-origin: left;
        }
        .proc-card.active::before, .proc-card:hover::before { transform: scaleX(1); }
        .proc-card:hover { transform: translateY(-6px); border-color: var(--border-mid); box-shadow: 0 16px 40px rgba(107,45,139,0.1); }

        .proc-num {
            width: 48px; height: 48px;
            background: linear-gradient(135deg, var(--purple), var(--pink));
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: white; font-weight: 800; font-size: 1rem;
            margin-bottom: 1.35rem; transition: transform 0.4s;
            box-shadow: 0 6px 16px rgba(107,45,139,0.28);
        }
        .proc-card:hover .proc-num, .proc-card.active .proc-num { transform: scale(1.15) rotate(-8deg); }
        .proc-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; color: var(--text-dark); }
        .proc-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

        /* ===== ELIGIBILITY ===== */
        .elig-wrap {
            max-width: 56rem; margin: 0 auto;
            background: white; border: 1.5px solid var(--border-light);
            border-radius: var(--radius-xl); overflow: hidden;
            box-shadow: 0 8px 40px rgba(107,45,139,0.08);
        }
        .elig-banner {
            padding: 2.5rem 3rem;
            background: linear-gradient(135deg, var(--purple-deep), var(--purple), var(--pink));
            position: relative; overflow: hidden;
        }
        .elig-banner::before {
            content: ''; position: absolute; inset: 0;
            background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
            background-size: 20px 20px;
        }
        .elig-banner h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: white; position: relative; z-index: 1; margin-bottom: 0.5rem; }
        .elig-banner p { color: rgba(255,255,255,0.7); font-size: 0.95rem; position: relative; z-index: 1; }
        .elig-body { padding: 2.5rem 3rem; }
        .elig-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2.5rem; }
        .elig-row {
            display: flex; gap: 12px; padding: 1rem 1.25rem;
            border-radius: var(--radius-sm); border: 1.5px solid transparent;
            transition: all 0.25s; align-items: flex-start;
        }
        .elig-row:hover { background: #f8f0fc; border-color: var(--border-mid); }
        .elig-check { color: #16a34a; font-weight: 800; flex-shrink: 0; }
        .elig-row p { font-size: 0.95rem; color: var(--text-mid); transition: color 0.25s; }
        .elig-row:hover p { color: var(--text-dark); }
        .apply-btn-wrap { text-align: center; }
        .apply-btn {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 1.05rem 3rem; border-radius: 999px;
            background: linear-gradient(135deg, var(--purple), var(--pink));
            color: white; font-size: 1rem; font-weight: 700; border: none;
            cursor: none; font-family: 'Poppins', sans-serif; transition: all 0.35s;
            box-shadow: 0 8px 28px rgba(107,45,139,0.28);
        }
        .apply-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(107,45,139,0.38); }

        /* ===== CONTACT ===== */
        .contact-grid { display: grid; grid-template-columns: 1fr; gap: 4.5rem; align-items: start; }
        @media(min-width: 800px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

        .contact-info h2 { font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 1.1rem; }
        .contact-info > p { color: var(--text-muted); font-size: 1rem; margin-bottom: 2.75rem; line-height: 1.85; }

        .cinfo-list { display: flex; flex-direction: column; gap: 1rem; }
        .cinfo-item {
            display: flex; gap: 14px; align-items: center;
            padding: 1rem; border-radius: var(--radius-md);
            border: 1.5px solid var(--border-light);
            background: white; transition: all 0.3s;
        }
        .cinfo-item:hover { border-color: rgba(107,45,139,0.3); transform: translateX(6px); box-shadow: 0 6px 20px rgba(107,45,139,0.08); }
        .cinfo-ico {
            width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--radius-sm);
            background: linear-gradient(135deg, rgba(107,45,139,0.1), rgba(196,68,122,0.1));
            display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
            transition: all 0.3s;
        }
        .cinfo-item:hover .cinfo-ico { background: linear-gradient(135deg, rgba(107,45,139,0.18), rgba(196,68,122,0.18)); transform: rotate(-5deg) scale(1.08); }
        .cinfo-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }
        .cinfo-val { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); transition: color 0.25s; }
        .cinfo-item:hover .cinfo-val { color: var(--purple); }

        .form-box {
            background: white; border: 1.5px solid var(--border-light);
            border-radius: var(--radius-xl); padding: 2.5rem;
            box-shadow: 0 8px 32px rgba(107,45,139,0.07);
        }
        .form-row { margin-bottom: 1.35rem; }
        .form-row label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--text-mid); margin-bottom: 0.5rem; letter-spacing: 0.04em; text-transform: uppercase; }
        .form-row input, .form-row textarea, .form-row select {
            width: 100%; background: var(--bg-soft);
            border: 1.5px solid var(--border-light);
            border-radius: var(--radius-sm); padding: 0.8rem 1.1rem;
            font-size: 0.9rem; color: var(--text-dark);
            font-family: 'Poppins', sans-serif;
            transition: all 0.25s; outline: none; appearance: none;
        }
        .form-row input::placeholder, .form-row textarea::placeholder { color: #c4b4d4; }
        .form-row input:focus, .form-row textarea:focus, .form-row select:focus {
            border-color: var(--purple);
            background: white;
            box-shadow: 0 0 0 4px rgba(107,45,139,0.08);
        }
        .form-row textarea { resize: vertical; min-height: 120px; }
        .form-row-group { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
        .send-btn {
            width: 100%; padding: 1.05rem; border-radius: 999px;
            background: linear-gradient(135deg, var(--purple), var(--pink));
            color: white; font-size: 0.95rem; font-weight: 700; border: none;
            cursor: none; font-family: 'Poppins', sans-serif; transition: all 0.35s;
            box-shadow: 0 8px 24px rgba(107,45,139,0.25);
            display: flex; align-items: center; justify-content: center; gap: 8px;
        }
        .send-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(107,45,139,0.35); }
        .send-btn:disabled { opacity: 0.7; transform: none; cursor: none; }

        /* ===== FOOTER ===== */
        footer { background: var(--text-dark); color: rgba(255,255,255,0.6); }
        .footer-inner { max-width: 1240px; margin: 0 auto; padding: 5rem 2rem 2.5rem; }
        .footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 4rem; }
        @media(min-width: 640px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
        .footer-brand-name { font-family: 'Poppins', sans-serif; font-size: 1.5rem; color: white; margin-bottom: 0.25rem; }
        .footer-brand-tag { font-size: 0.7rem; color: var(--pink-light); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
        .footer-brand > p { font-size: 0.875rem; line-height: 1.8; max-width: 22rem; }
        .footer-socials { display: flex; gap: 0.75rem; margin-top: 1.75rem; }
        .social-btn {
            width: 36px; height: 36px; border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.15);
            display: flex; align-items: center; justify-content: center;
            color: rgba(255,255,255,0.5); font-size: 0.85rem; text-decoration: none;
            transition: all 0.3s;
        }
        .social-btn:hover { background: rgba(107,45,139,0.4); border-color: rgba(180,80,140,0.4); color: #e8b4d4; transform: translateY(-3px); }
        .footer-col h5 { color: white; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.35rem; }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
        .footer-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.875rem; transition: all 0.25s; }
        .footer-col ul li a:hover { color: #e8b4d4; padding-left: 4px; }
        .footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; font-size: 0.8rem; }
        .footer-bottom-brand { font-family: 'Poppins', sans-serif; color: var(--pink-light); font-style: italic; }

        /* ===== BACK TO TOP ===== */
        #back-top {
            position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
            width: 44px; height: 44px; border-radius: 50%;
            background: linear-gradient(135deg, var(--purple), var(--pink));
            border: none; color: white; font-size: 1.1rem;
            cursor: none; box-shadow: 0 6px 20px rgba(107,45,139,0.3);
            transition: all 0.35s; opacity: 0; transform: translateY(20px);
            display: flex; align-items: center; justify-content: center;
        }
        #back-top.visible { opacity: 1; transform: translateY(0); }
        #back-top:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(107,45,139,0.4); }

        /* ===== REVEAL ANIMATIONS ===== */
        .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.25,1,0.5,1), transform 0.7s cubic-bezier(0.25,1,0.5,1); }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s cubic-bezier(0.25,1,0.5,1), transform 0.7s cubic-bezier(0.25,1,0.5,1); }
        .reveal-left.visible { opacity: 1; transform: translateX(0); }
        .reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s cubic-bezier(0.25,1,0.5,1), transform 0.7s cubic-bezier(0.25,1,0.5,1); }
        .reveal-right.visible { opacity: 1; transform: translateX(0); }

        /* TOOLTIP */
        [data-tip] { position: relative; }
        [data-tip]::after {
            content: attr(data-tip);
            position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
            background: var(--text-dark); color: white; font-size: 0.72rem; font-weight: 500;
            padding: 0.35rem 0.75rem; border-radius: 6px; white-space: nowrap;
            opacity: 0; pointer-events: none; transition: opacity 0.25s;
        }
        [data-tip]:hover::after { opacity: 1; }

        /* ===== PREMIUM POLISH ===== */
        /* Subtle noise grain on hero */
        #hero::after {
            content: '';
            position: absolute; inset: 0; pointer-events: none; z-index: 2;
            opacity: 0.025;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            background-size: 200px 200px;
        }
        /* Refined section transitions */
        section { position: relative; }
        /* Premium link underlines */
        .footer-col ul li a { position: relative; display: inline-block; }
        /* Better focus states */
        button:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; }
        input:focus-visible, textarea:focus-visible, select:focus-visible { outline: none; }
        /* Italic utility */
        .italic-text { font-style: italic; }
        @media(max-width: 600px) {
            .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
            .stat-num { font-size: 1.3rem; }
            .elig-body { padding: 1.75rem 1.5rem; }
            .elig-banner { padding: 2rem 1.5rem; }
            .form-row-group { grid-template-columns: 1fr; }
        }
        