        :root {
            --primary-color: #2563eb;
            --secondary-color: #3b82f6;
            --accent-color: #60a5fa;
            --bg-color: #f8fafc;
            --card-bg: rgba(255, 255, 255, 0.75);
            --card-border: rgba(255, 255, 255, 0.6);
            --text-primary: #0f172a;
            --text-secondary: #64748b;
            --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
        }

        [data-theme="dark"] {
            --bg-color: #020617;
            --card-bg: rgba(15, 23, 42, 0.7);
            --card-border: rgba(255, 255, 255, 0.08);
            --text-primary: #f8fafc;
            --text-secondary: #94a3b8;
            --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-color);
            color: var(--text-primary);
            transition: all 0.3s ease;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(135deg, var(--bg-color) 0%, #e0f2fe 100%);
            overflow: hidden;
        }

        [data-theme="dark"] .bg-animation {
            background: linear-gradient(135deg, #020617 0%, #1e3a8a 100%);
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.35;
            animation: float 25s infinite ease-in-out;
        }

        .shape-1 {
            width: 500px;
            height: 500px;
            background: var(--primary-color);
            top: -150px;
            right: -100px;
        }

        .shape-2 {
            width: 400px;
            height: 400px;
            background: var(--accent-color);
            bottom: -100px;
            left: -100px;
            animation-delay: -8s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            50% {
                transform: translate(30px, -30px) scale(1.1);
            }
        }

        /* Glassmorphism */
        .glass {
            background: var(--card-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--card-border);
            box-shadow: var(--glass-shadow);
        }

        /* Navbar */
.navbar {
    background: var(--card-bg) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
            padding: 1rem 0;
            transition: all 0.3s ease;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.navbar-brand.brand-logo {
    padding-top: 0;
    padding-bottom: 0;
}

.brand-logo img {
    display: block;
    width: auto;
    height: 42px;
    max-width: 100%;
    flex: 0 0 auto;
}

.brand-logo-img {
    width: auto !important;
    height: 42px !important;
    max-width: 100% !important;
    max-height: 42px !important;
    object-fit: contain;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-brand img {
    height: 46px;
}

.footer-brand .brand-logo-img {
    height: 46px !important;
    max-height: 46px !important;
}

[data-theme="dark"] .brand-logo-img {
    filter: brightness(0) invert(1);
}

        .nav-link {
            font-weight: 500;
            color: var(--text-primary) !important;
            margin: 0 0.75rem;
            position: relative;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Theme Toggle */
        .theme-toggle {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--text-primary);
        }

        .theme-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
        }

        /* Hero Section */
        .hero-section {
            padding: clamp(130px, 16vw, 180px) 0 100px;
            position: relative;
        }

        .hero-shell {
            position: relative;
            padding: clamp(2rem, 4vw, 4rem);
            border-radius: 0;
            overflow: visible;
            background: transparent;
            box-shadow: none;
        }

.hero-shell::before {
    content: none;
        }

        .hero-copy {
            position: relative;
            z-index: 1;
            /* margin-top: 100px; */
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            padding: 0.7rem 1rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.72);
            border: 1px solid rgba(37, 99, 235, 0.14);
            color: var(--text-primary);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            box-shadow: 0 16px 30px rgba(37, 99, 235, 0.08);
        }

        .hero-badge i {
            color: var(--primary-color);
        }

        .hero-title {
            font-size: clamp(2.6rem, 4.6vw, 3.9rem);
            font-weight: 700;
            line-height: 1.02;
            margin-bottom: 1.35rem;
            letter-spacing: -2px;
            background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            max-width: 640px;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 1.7rem;
            line-height: 1.7;
            max-width: 540px;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .hero-stats {
            row-gap: 1rem;
        }

        .hero-stats .stats-card {
            height: 100%;
            padding: 1.5rem 1rem;
            background: rgba(255, 255, 255, 0.72);
        }

        .hero-stats .stats-label {
            margin-top: 0.3rem;
            display: inline-block;
        }

        .hero-visual-wrap {
            position: relative;
            min-height: 100%;
        }

        .hero-visual {
            position: relative;
            padding: 1rem 0 0 2rem;
            min-height: 100%;
        }

        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(8px);
            opacity: 0.9;
            pointer-events: none;
        }

        .hero-orb.one {
            width: 180px;
            height: 180px;
            top: 12%;
            right: 8%;
            background: radial-gradient(circle, rgba(96, 165, 250, 0.38), transparent 68%);
        }

        .hero-orb.two {
            width: 210px;
            height: 210px;
            bottom: 2%;
            left: 3%;
            background: radial-gradient(circle, rgba(14, 165, 233, 0.22), transparent 70%);
        }

        .hero-dashboard {
            position: relative;
            z-index: 1;
            padding: 1.35rem;
            border-radius: 28px;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72)),
                var(--card-bg);
            box-shadow: 0 28px 50px rgba(15, 23, 42, 0.12);
        }

        .hero-dashboard-header,
        .hero-dashboard-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .hero-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.55rem 0.95rem;
            border-radius: 999px;
            background: rgba(37, 99, 235, 0.08);
            color: var(--primary-color);
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .hero-dashboard-status {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-weight: 600;
        }

        .hero-dashboard-body {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            margin: 1rem 0;
        }

        .hero-panel {
            border-radius: 22px;
            padding: 1.25rem;
            background: rgba(248, 250, 252, 0.86);
            border: 1px solid rgba(148, 163, 184, 0.12);
        }

        .hero-kicker {
            display: block;
            font-size: 0.78rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-bottom: 0.8rem;
            font-weight: 700;
        }

        .hero-big-number {
            font-size: clamp(2.4rem, 4vw, 3.5rem);
            font-weight: 800;
            letter-spacing: -2px;
            line-height: 1;
            color: var(--text-primary);
            margin-bottom: 0.75rem;
        }

        .hero-profit {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.45rem 0.75rem;
            border-radius: 999px;
            background: rgba(37, 99, 235, 0.12);
            color: var(--primary-color);
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .hero-panel p {
            margin: 0;
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.65;
        }

        .hero-chart-panel {
            position: relative;
            overflow: hidden;
        }

        .hero-chart-grid {
            position: absolute;
            inset: 1rem;
            background-image:
                linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px),
                linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
            background-size: 100% 25%, 20% 100%;
            border-radius: 16px;
            pointer-events: none;
        }

        .hero-chart-panel svg {
            width: 100%;
            height: 210px;
            position: relative;
            z-index: 1;
        }

.hero-chart-caption {
    display: flex;
    justify-content: space-between;
    align-items: center;
            gap: 1rem;
            margin-top: 0.85rem;
            color: var(--text-secondary);
    font-size: 0.88rem;
}

.hero-chart-caption strong {
    color: var(--text-primary);
    font-weight: 700;
}

.hero-dashboard-note {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
        }

.hero-session-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.9rem;
            border-radius: 16px;
            background: rgba(15, 23, 42, 0.04);
            color: var(--text-secondary);
            font-weight: 600;
    font-size: 0.9rem;
}

[data-theme="dark"] .hero-shell {
    background: transparent;
    box-shadow: none;
}

[data-theme="dark"] .hero-shell::before {
    content: none;
}

[data-theme="dark"] .hero-badge,
[data-theme="dark"] .hero-stats .stats-card,
[data-theme="dark"] .hero-dashboard,
[data-theme="dark"] .hero-panel,
[data-theme="dark"] .hero-session-chip {
    background: rgba(15, 23, 42, 0.82);
    border-color: rgba(148, 163, 184, 0.16);
    box-shadow: none;
}

[data-theme="dark"] .hero-chart-grid {
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.1) 1px, transparent 1px);
}

[data-theme="dark"] .hero-orb.one {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.28), transparent 68%);
}

[data-theme="dark"] .hero-orb.two {
    background: radial-gradient(circle, rgba(34, 211, 238, 0.18), transparent 70%);
}

        .hero-mini-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.85rem;
            width: 100%;
        }

        .hero-mini-card {
            padding: 1rem;
            border-radius: 18px;
            background: rgba(248, 250, 252, 0.86);
            border: 1px solid rgba(148, 163, 184, 0.12);
        }

        .hero-mini-card span {
            display: block;
            color: var(--text-secondary);
            font-size: 0.76rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.35rem;
            font-weight: 700;
        }

        .hero-mini-card strong {
            font-size: 1rem;
            color: var(--text-primary);
            letter-spacing: -0.02em;
        }

        .hero-float-card {
            position: absolute;
            z-index: 2;
            padding: 1rem 1.1rem;
            border-radius: 20px;
            min-width: 180px;
            background: rgba(255, 255, 255, 0.82);
            box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
        }

        .hero-float-top {
            top: 0;
            right: 0;
        }

        .hero-float-bottom {
            left: 0;
            bottom: 0.5rem;
        }

        .hero-float-label {
            display: block;
            color: var(--text-secondary);
            font-size: 0.76rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 0.4rem;
            font-weight: 700;
        }

        .hero-float-value {
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -0.04em;
            margin-bottom: 0.3rem;
        }

        .hero-float-meta {
            color: #059669;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .btn-glass {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
        }

        .btn-glass:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
            color: white;
        }

        .btn-outline-glass {
            background: transparent;
            border: 1.5px solid var(--primary-color);
            color: var(--primary-color);
            padding: 1rem 2.5rem;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-outline-glass:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }

        .member-choice-modal {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 28px;
            box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
        }

        .member-choice-icon {
            width: 72px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 22px;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(96, 165, 250, 0.22));
            color: var(--primary-color);
            font-size: 1.8rem;
        }

        /* Stats Cards */
        .stats-card {
            border-radius: 16px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stats-card:hover {
            transform: translateY(-5px);
        }

        .stats-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
            letter-spacing: -0.5px;
        }

        .stats-label {
            color: var(--text-secondary);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }

        .section-subtitle {
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Course Cards */
        .course-card {
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            height: 100%;
        }

        .course-card:hover {
            transform: translateY(-8px);
        }

        .course-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .course-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .course-card:hover .course-image img {
            transform: scale(1.05);
        }


        .course-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: rgba(37, 99, 235, 0.9);
            color: white;
            padding: 0.4rem 0.875rem;
            border-radius: 8px;
            font-size: 0.75rem;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }

        .course-badge.live {
            background: rgba(239, 68, 68, 0.9);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
            }

            50% {
                box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
            }
        }

        .course-content {
            padding: 1.5rem;
        }

        .course-category {
            color: var(--primary-color);
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.5rem;
        }

        .course-title {
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--text-primary);
            line-height: 1.4;
        }

        .course-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--card-border);
        }

        .course-price {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        /* Live Session Card */
        .live-card {
            border-radius: 20px;
            overflow: hidden;
            position: relative;
        }

        .live-indicator {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(239, 68, 68, 0.15);
            color: #ef4444;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.875rem;
        }

        .live-session-meta {
            display: flex;
            align-items: center;
        }

        .live-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #ef4444;
            border-radius: 50%;
            animation: blink 1.5s infinite;
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.3;
            }
        }

        /* Feature Cards */
        .feature-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            margin-bottom: 1.25rem;
            box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
        }

        .feature-card {
            border-radius: 20px;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        /* Tools Grid */
        .tool-card {
            border-radius: 16px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .tool-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-color);
        }

        .tool-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 1rem;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            color: white;
        }

        /* Pricing Section */
        .pricing-card {
            border-radius: 24px;
            padding: 0;
            max-width: 1100px;
            margin: 0 auto;
            text-align: left;
            position: relative;
            overflow: hidden;
        }

        .pricing-layout {
            display: grid;
            grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr) minmax(280px, 0.85fr);
            align-items: stretch;
        }

        .pricing-section {
            padding: 3rem 2.25rem;
        }

        .pricing-section+.pricing-section {
            border-left: 1px solid var(--card-border);
        }

        .pricing-intro {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .pricing-description {
            max-width: 260px;
            margin-bottom: 1.5rem;
        }

        .pricing-details {
            display: flex;
            align-items: center;
        }

        .pricing-actions {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .pricing-actions .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            white-space: nowrap;
        }

        .pricing-action-copy {
            color: var(--text-secondary);
            font-size: 0.98rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .pricing-badge {
            position: absolute;
            top: 0;
            right: 0;
            background: var(--primary-color);
            color: white;
            padding: 0.5rem 1.5rem;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom-left-radius: 16px;
        }

        .pricing-amount {
            display: inline-flex;
            flex-direction: column;
            align-items: flex-start;
            font-size: 4rem;
            font-weight: 800;
            color: var(--primary-color);
            margin: 1rem 0;
            letter-spacing: -2px;
            line-height: 1;
        }

        .pricing-amount span {
            display: block;
            margin-top: 0.55rem;
            font-size: 1.25rem;
            color: var(--text-secondary);
            font-weight: 500;
            letter-spacing: 0;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
        }

        .pricing-features li {
            padding: 0.875rem 0;
            border-bottom: 1px solid var(--card-border);
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li i {
            color: #10b981;
            font-size: 1.1rem;
        }

        .pricing-note {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
            padding: 0.75rem;
            border-radius: 8px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-top: 1.5rem;
        }

        /* FAQ Section */
        .faq-item {
            border-radius: 16px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(37, 99, 235, 0.05);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: var(--text-secondary);
        }

        .faq-item.active .faq-answer {
            padding: 0 1.5rem 1.5rem;
            max-height: 500px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-icon {
            transition: transform 0.3s ease;
            color: var(--primary-color);
        }

        /* Testimonials */
        .testimonial-card {
            border-radius: 20px;
            padding: 2rem;
            position: relative;
        }

        .quote-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            opacity: 0.15;
            position: absolute;
            top: 20px;
            left: 20px;
        }

        /* Footer */
        footer {
            background: var(--card-bg);
            backdrop-filter: blur(20px);
            border-top: 1px solid var(--card-border);
            padding: 4rem 0 2rem;
            margin-top: 6rem;
        }

        .footer-link {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            padding: 0.5rem 0;
            font-size: 0.95rem;
        }

        .footer-link:hover {
            color: var(--primary-color);
            transform: translateX(3px);
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            color: var(--text-primary);
            margin-right: 0.5rem;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }

        .legal-page {
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        .legal-page .legal-nav {
            padding-top: 1.5rem;
        }

        .legal-hero {
            padding: 7rem 0 2.5rem;
        }

        .legal-shell {
            max-width: 980px;
            margin: 0 auto;
        }

        .legal-card {
            padding: 2rem;
        }

        .legal-kicker {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.45rem 0.85rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.65);
            border: 1px solid var(--card-border);
            color: var(--primary-color);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .legal-title {
            font-size: clamp(2rem, 4vw, 3.25rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            margin: 1.25rem 0 1rem;
        }

        .legal-subtitle {
            max-width: 760px;
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .legal-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1.5rem;
            color: var(--text-secondary);
            font-size: 0.92rem;
        }

        .legal-section + .legal-section {
            margin-top: 1.5rem;
        }

        .legal-section h2 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .legal-section p,
        .legal-section li {
            color: var(--text-secondary);
            line-height: 1.85;
        }

        .legal-section ul {
            padding-left: 1.2rem;
            margin-bottom: 0;
        }

        .legal-section li + li {
            margin-top: 0.45rem;
        }

        .legal-link-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 1.75rem;
        }

        .legal-link-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.7rem 1rem;
            border-radius: 999px;
            color: var(--text-primary);
            text-decoration: none;
            background: rgba(255, 255, 255, 0.55);
            border: 1px solid var(--card-border);
            transition: all 0.2s ease;
        }

        .legal-link-pill:hover {
            transform: translateY(-1px);
            color: var(--primary-color);
            border-color: rgba(37, 99, 235, 0.25);
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .navbar .container,
            .hero-section .container {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }

            .hero-section .row {
                --bs-gutter-x: 0;
                --bs-gutter-y: 2.5rem;
            }

            .navbar-brand.brand-logo img {
                height: 30px;
            }

            .navbar-brand.brand-logo .brand-logo-img {
                height: 30px !important;
                max-height: 30px !important;
            }

            .hero-section {
                padding: 252px 0 96px;
            }

            .hero-copy {
                padding-top: 1rem;
                padding-left: 0;
                padding-right: 0;
            }

            .hero-badge {
                margin-bottom: 2.25rem;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 236px 0 84px;
            }

            .hero-shell {
                padding: 1.75rem 0;
                border-radius: 0;
            }

            .hero-badge {
                gap: 0.5rem;
                padding: 0.7rem 0.9rem;
                font-size: 0.78rem;
                line-height: 1.45;
                max-width: 100%;
            }

            .hero-badge i {
                font-size: 0.95rem;
            }

            .hero-title {
                font-size: 2.35rem;
                letter-spacing: -1px;
                line-height: 1.04;
            }

            .hero-subtitle {
                font-size: 1.05rem;
            }

            .hero-actions {
                flex-direction: column;
            }

            .hero-actions .btn {
                width: 100%;
            }

            .hero-visual {
                display: flex;
                flex-direction: column;
                gap: 1rem;
                padding: 0;
            }

            .hero-orb {
                display: none;
            }

            .hero-dashboard-body {
                grid-template-columns: 1fr;
            }

            .hero-mini-grid {
                grid-template-columns: 1fr;
            }

            .hero-float-card {
                position: relative;
                inset: auto;
                width: 100%;
            }

            .hero-dashboard {
                order: 1;
            }

            .hero-float-top {
                order: 2;
            }

            .hero-float-bottom {
                order: 3;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .pricing-card {
                max-width: 520px;
                text-align: center;
            }

            .pricing-layout {
                grid-template-columns: 1fr;
            }

            .pricing-section {
                padding: 2.25rem 1.5rem;
            }

            .pricing-section+.pricing-section {
                border-left: none;
                border-top: 1px solid var(--card-border);
            }

            .pricing-description {
                max-width: none;
                margin-left: auto;
                margin-right: auto;
            }

            .pricing-actions {
                text-align: center;
            }

            .pricing-amount {
                display: inline-block;
                font-size: 3rem;
            }

            .pricing-action-copy {
                margin-bottom: 1.25rem;
            }

            .pricing-amount span {
                display: inline;
                margin-top: 0;
                margin-left: 0.2rem;
                vertical-align: middle;
            }
            /* .hero-copy{
                margin-top: 10px;
            } */

            .legal-hero {
                padding-top: 6rem;
            }

            .legal-card {
                padding: 1.5rem;
            }
        }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-color);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 4px;
        }

        /* Fade in animation */
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    
