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

        :root {
            --background: hsl(0, 0%, 4%);
            --foreground: hsl(0, 0%, 98%);
            --card: hsl(0, 0%, 7%);
            --card-foreground: hsl(0, 0%, 98%);
            --muted: hsl(0, 0%, 15%);
            --muted-foreground: hsl(0, 0%, 65%);
            --secondary: hsl(0, 0%, 12%);
            --border: hsl(0, 0%, 18%);
            --cta: hsl(74, 64%, 60%);
            --cta-hover: hsl(74, 70%, 68%);
            --cta-active: hsl(74, 60%, 55%);
            --cta-foreground: hsl(0, 0%, 0%);
            --destructive: hsl(0, 84%, 60%);
            --radius: 0.75rem;
            --font-heading: 'Space Grotesk', system-ui, sans-serif;
            --font-body: 'DM Sans', system-ui, sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--background);
            color: var(--foreground);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            line-height: 1.2;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* ============ Container ============ */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0.2rem;
        }

        /* ============ Button Styles ============ */
        .btn {
            background-color: #BADA55;
            color: #000;
            border: 2px solid #000;
            border-bottom: 6px solid #000000;
            padding: 0.7rem 0.6rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 40px;
            cursor: pointer;
            transition: background-color 0.25s ease, transform 0.25s ease, border-bottom 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: var(--font-body);
            text-decoration: none;
        }

        .btn:hover {
            background-color: #d9f365;
            /* border-bottom: 6px solid #bbe20bce; */
            transform: translateY(-2px);
        }

        .btn:active {
            transform: translateY(0);
            background-color: #b5db48;
            border-bottom: 4px solid #000;
        }

        .btn-outline {
            background-color: transparent;
            color: #BADA55;
            border: 2px solid #BADA55;
            border-bottom: 4px solid #BADA55;
        }

        .btn-outline:hover {
            background-color: rgba(186, 218, 85, 0.1);
        }

        .btn-outline:active {
            background-color: rgba(186, 218, 85, 0.2);
            border-bottom: 2px solid #BADA55;
        }

        .btn-xl {
            padding: 1rem 1.1rem;
            font-size: 1.2rem;
        }

        /* ============ Utilities ============ */
        .text-gradient-cta {
            background: linear-gradient(135deg, #BADA55 0%, #d9f365 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .bg-grid {
            background-image:
                linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        .glow-box {
            box-shadow: 0 0 60px -12px rgba(186, 218, 85, 0.4);
        }

        /* ============ Animations ============ */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

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

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.6;
            }
        }

        .animate-fade-up {
            animation: fadeUp 0.6s ease-out forwards;
        }

        .animate-float {
            animation: float 6s ease-in-out infinite;
        }

        .animate-pulse {
            animation: pulse 2s ease-in-out infinite;
        }

        /* ============ Marquee Styles ============ */
        .marquee-container {
            overflow: hidden;
            padding: 1rem 0;
            background: var(--secondary);
        }

        .marquee-track {
            display: flex;
            width: max-content;
            animation: marquee 25s linear infinite;
            will-change: transform;
        }

        .marquee-track.reverse {
            animation-direction: reverse;
        }

        .marquee {
            display: flex;
            flex-shrink: 0;
        }

        .marquee-item {
            flex-shrink: 0;
            white-space: nowrap;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            gap: .5rem;
        }

        @keyframes marquee {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        .marquee-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0 2rem;
            white-space: nowrap;
            font-weight: 500;
            color: var(--muted-foreground);
        }

        .marquee-item span {
            color: #BADA55;
        }

        /* ============ Header ============ */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 700;
            font-size: 1.25rem;
            font-family: var(--font-heading);
            color: #BADA55;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: #BADA55;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav {
            display: none;
            gap: 2.5rem;
        }

        @media (min-width: 768px) {
            .nav {
                display: flex;
            }
        }

        .nav a {
            font-size: 0.9rem;
            color: var(--muted-foreground);
            transition: color 0.3s;
        }

        .nav a:hover {
            color: var(--foreground);
        }

        /* ============ Hero Section ============ */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 8rem 0 6rem;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(186, 218, 85, 0.12), transparent);
        }

        .hero-glow {
            position: absolute;
            top: 30%;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 600px;
            background: rgba(186, 218, 85, 0.05);
            border-radius: 50%;
            filter: blur(80px);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--secondary);
            border: 1px solid var(--border);
            border-radius: 50px;
            margin-bottom: 2rem;
            font-size: 0.9rem;
            color: var(--muted-foreground);
        }

        .badge svg {
            color: #BADA55;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--muted-foreground);
            max-width: 700px;
            margin: 0 auto 2.5rem;
        }

        .hero-ctas {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            margin: 4rem 0.5rem;
        }

        .hero-image-wrapper {
            position: relative;
            max-width: 1000px;
            margin: 0 auto 4rem;
            padding: 0 1rem;
        }

        .hero-image {
            width: 100%;
            height: auto;
            border-radius: 1.25rem;
            border: 1px solid var(--border);
            background: rgba(255, 255, 255, 0.02);
            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 80px rgba(186, 218, 85, 0.15);
            transform: perspective(1200px) rotateX(6deg);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        /* Subtle hover lift */
        .hero-image:hover {
            transform: perspective(1200px) rotateX(0deg) translateY(-6px);
            box-shadow:
                0 30px 80px rgba(0, 0, 0, 0.5),
                0 0 120px rgba(186, 218, 85, 0.25);
        }

        /* Mobile optimization */
        @media (max-width: 640px) {
            .hero-image-wrapper {
                margin-bottom: 3rem;
            }

            .hero-image {
                border-radius: 1rem;
                transform: none;
            }
        }


        @media (min-width: 640px) {
            .hero-ctas {
                flex-direction: row;
                justify-content: center;
            }
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
        }

        @media (min-width: 640px) {
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .stat-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border);
            border-radius: 1rem;
        }

        .stat-card svg {
            width: 32px;
            height: 32px;
            color: #BADA55;
            margin-bottom: 0.75rem;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            font-family: var(--font-heading);
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }

        /* ============ Social Proof Section ============ */
        .social-proof {
            padding: 4rem 0;
            background: rgba(255, 255, 255, 0.02);
        }

        .proof-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .proof-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .proof-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border);
            border-radius: 1rem;
            transition: border-color 0.3s;
        }

        .proof-card:hover {
            border-color: rgba(186, 218, 85, 0.3);
        }

        .proof-icon {
            width: 48px;
            height: 48px;
            background: rgba(186, 218, 85, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .proof-icon svg {
            color: #BADA55;
        }

        .proof-title {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .proof-desc {
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }

        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }

        .trust-badge svg {
            width: 16px;
            height: 16px;
            color: #BADA55;
        }

        .trust-divider {
            display: none;
            width: 1px;
            height: 16px;
            background: var(--border);
        }

        @media (min-width: 640px) {
            .trust-divider {
                display: block;
            }
        }

        /* ============ Whats Included Section ============ */
        .whats-included {
            padding: 6rem 0;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(186, 218, 85, 0.1);
            border: 1px solid rgba(186, 218, 85, 0.2);
            border-radius: 50px;
            margin-bottom: 1.5rem;
            font-size: 0.875rem;
            color: #BADA55;
            font-weight: 500;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--muted-foreground);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1.5rem;
        }

        @media (min-width: 640px) {
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .categories-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .category-card {
            position: relative;
            padding: 1.5rem;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 1rem;
            transition: all 0.3s;
        }

        .category-card:hover {
            border-color: rgba(186, 218, 85, 0.5);
            transform: translateY(-4px);
            box-shadow: 0 0 40px -12px rgba(186, 218, 85, 0.3);
        }

        .category-count {
            position: absolute;
            top: 1rem;
            right: 1rem;
            padding: 0.25rem 0.75rem;
            background: rgba(186, 218, 85, 0.1);
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #BADA55;
        }

        .category-icon {
            width: 48px;
            height: 48px;
            background: rgba(186, 218, 85, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .category-icon svg {
            width: 24px;
            height: 24px;
            color: #BADA55;
        }

        .category-title {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .category-desc {
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }

        /* ============ Benefits Section ============ */
        .benefits {
            padding: 6rem 0;
            background: rgba(255, 255, 255, 0.02);
            position: relative;
            overflow: hidden;
        }

        .benefits-glow {
            position: absolute;
            top: 0;
            left: 25%;
            width: 400px;
            height: 400px;
            background: rgba(186, 218, 85, 0.05);
            border-radius: 50%;
            filter: blur(100px);
        }

        .comparison-table {
            max-width: 900px;
            margin: 0 auto 4rem;
            border-radius: 1rem;
            border: 1px solid var(--border);
            overflow: hidden;
        }

        .table-header {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            background: var(--secondary);
            padding: 1rem;
            border-bottom: 1px solid var(--border);
        }

        .table-header-cell {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--muted-foreground);
        }

        .table-header-cell:nth-child(2) {
            color: #BADA55;
            text-align: center;
        }

        .table-header-cell:nth-child(3) {
            text-align: right;
        }

        .table-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            padding: 1rem;
            align-items: center;
            border-bottom: 1px solid var(--border);
        }

        .table-row:last-child {
            border-bottom: none;
        }

        .table-cell {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
        }

        .table-cell:nth-child(2) {
            justify-content: center;
        }

        .table-cell:nth-child(3) {
            justify-content: flex-end;
        }

        .icon-x {
            color: var(--destructive);
        }

        .icon-check {
            color: #BADA55;
        }

        .savings-badge {
            display: inline-flex;
            padding: 0.25rem 0.75rem;
            background: rgba(186, 218, 85, 0.1);
            border-radius: 50px;
            font-weight: 600;
            color: #BADA55;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1.5rem;
            max-width: 900px;
            margin: 0 auto;
        }

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

        .benefit-card {
            display: flex;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 1rem;
        }

        .benefit-icon {
            width: 48px;
            height: 48px;
            background: rgba(186, 218, 85, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .benefit-icon svg {
            color: #BADA55;
        }

        .benefit-title {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .benefit-desc {
            font-size: 0.9rem;
            color: var(--muted-foreground);
        }

        /* ============ AI Facts Section ============ */
        .ai-facts {
            padding: 6rem 0;
        }

        .facts-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1.5rem;
            margin-bottom: 4rem;
        }

        @media (min-width: 640px) {
            .facts-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .facts-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .fact-card {
            position: relative;
            padding: 1.5rem;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 1rem;
            transition: all 0.3s;
        }

        .fact-card:hover {
            border-color: rgba(186, 218, 85, 0.5);
        }

        .fact-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(186, 218, 85, 0.05), transparent);
            border-radius: 1rem;
            opacity: 0;
            transition: opacity 0.3s;
        }

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

        .fact-card svg {
            width: 32px;
            height: 32px;
            color: #BADA55;
            margin-bottom: 1rem;
            position: relative;
        }

        .fact-stat {
            font-size: 2.5rem;
            font-weight: 700;
            font-family: var(--font-heading);
            margin-bottom: 0.5rem;
            position: relative;
        }

        .fact-title {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            position: relative;
        }

        .fact-desc {
            font-size: 0.875rem;
            color: var(--muted-foreground);
            position: relative;
        }

        .callout-box {
            padding: 2rem;
            background: rgba(186, 218, 85, 0.05);
            border: 1px solid rgba(186, 218, 85, 0.2);
            border-radius: 1rem;
            text-align: center;
        }

        .callout-title {
            font-size: 1.25rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .callout-title span {
            color: #BADA55;
        }

        .callout-desc {
            color: var(--muted-foreground);
        }

        /* ============ Pricing Section ============ */
        .pricing {
            padding: 6rem 0;
            background: rgba(255, 255, 255, 0.02);
            position: relative;
            overflow: hidden;
        }

        .pricing-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: rgba(186, 218, 85, 0.05);
            border-radius: 50%;
            filter: blur(100px);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

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

        .pricing-card {
            position: relative;
            padding: 2rem;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 1.5rem;
            transition: all 0.3s;
        }

        .pricing-card.popular {
            border-color: #BADA55;
            box-shadow: 0 0 60px -12px rgba(186, 218, 85, 0.4);
            transform: scale(1.02);
        }

        .pricing-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            padding: 0.5rem 1.25rem;
            background: #BADA55;
            color: #000;
            font-size: 0.75rem;
            font-weight: 700;
            border-radius: 50px;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .pricing-name {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .pricing-desc {
            font-size: 0.9rem;
            color: var(--muted-foreground);
            margin-bottom: 1.5rem;
        }

        .pricing-amount {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .price-current {
            font-size: 3rem;
            font-weight: 700;
            font-family: var(--font-heading);
        }

        .price-original {
            font-size: 1.25rem;
            color: var(--muted-foreground);
            text-decoration: line-through;
        }

        .price-savings {
            display: inline-flex;
            padding: 0.25rem 0.75rem;
            background: rgba(186, 218, 85, 0.1);
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            color: #BADA55;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .pricing-features svg {
            width: 20px;
            height: 20px;
            color: #BADA55;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .pricing-note {
            text-align: center;
            margin-top: 2rem;
            font-size: 0.9rem;
            color: var(--muted-foreground);
        }

        /* ============ Dev Support Section ============ */
        .dev-support {
            padding: 6rem 0;
        }

        .support-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .support-layout {
                grid-template-columns: 1fr 1fr;
            }
        }

        .support-content h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .support-content>p {
            font-size: 1.1rem;
            color: var(--muted-foreground);
            margin-bottom: 2rem;
        }

        .value-box {
            padding: 1.5rem;
            background: rgba(186, 218, 85, 0.05);
            border: 1px solid rgba(186, 218, 85, 0.2);
            border-radius: 1rem;
            margin-bottom: 2rem;
        }

        .value-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
        }

        .value-row:not(:last-child) {
            border-bottom: 1px solid rgba(186, 218, 85, 0.2);
        }

        .value-row.highlight {
            font-weight: 700;
            font-size: 1.1rem;
        }

        .value-row.highlight span:first-child {
            color: #BADA55;
        }

        .value-row.highlight span:last-child {
            color: #BADA55;
            font-size: 1.5rem;
        }

        .support-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1rem;
        }

        @media (min-width: 640px) {
            .support-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .support-item {
            padding: 1.25rem;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 12px;
            transition: border-color 0.3s;
        }

        .support-item:hover {
            border-color: rgba(186, 218, 85, 0.3);
        }

        .support-item svg {
            width: 32px;
            height: 32px;
            color: #BADA55;
            margin-bottom: 0.75rem;
        }

        .support-item h4 {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .support-item p {
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }

        /* ============ FAQ Section ============ */
        .faq {
            padding: 6rem 0;
            background: rgba(255, 255, 255, 0.02);
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 1rem;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: border-color 0.3s;
        }

        .faq-item.active {
            border-color: rgba(186, 218, 85, 0.5);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 1.5rem;
            background: transparent;
            border: none;
            width: 100%;
            text-align: left;
            cursor: pointer;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            color: var(--foreground);
        }

        .faq-question svg {
            width: 20px;
            height: 20px;
            color: var(--muted-foreground);
            transition: transform 0.3s;
        }

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

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

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

        .faq-answer p {
            color: var(--muted-foreground);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* ============ Final CTA Section ============ */
        .final-cta {
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        .final-cta-bg {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(186, 218, 85, 0.15), transparent);
        }

        .final-cta-glow {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 400px;
            background: rgba(186, 218, 85, 0.1);
            border-radius: 50%;
            filter: blur(80px);
        }

        .final-cta-content {
            position: relative;
            z-index: 10;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .urgency-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(186, 218, 85, 0.1);
            border: 1px solid rgba(186, 218, 85, 0.2);
            border-radius: 50px;
            margin-bottom: 2rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: #BADA55;
        }

        .urgency-badge svg {
            animation: pulse 2s ease-in-out infinite;
        }

        .final-cta h2 {
            font-size: clamp(2rem, 6vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .final-cta-subtitle {
            font-size: 1.2rem;
            color: var(--muted-foreground);
            max-width: 650px;
            margin: 0 auto 2.5rem;
        }

        .final-ctas {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        @media (min-width: 640px) {
            .final-ctas {
                flex-direction: row;
                justify-content: center;
            }
        }

        .trust-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            font-size: 0.9rem;
            color: var(--muted-foreground);
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .trust-item svg {
            width: 16px;
            height: 16px;
            color: #BADA55;
        }

        /* ============ Footer ============ */
        .footer {
            padding: 3rem 0;
            border-top: 1px solid var(--border);
        }

        .footer-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .footer-inner {
                flex-direction: row;
                justify-content: space-between;
            }
        }

        .footer-links {
            display: flex;
            gap: 1.5rem;
            font-size: 0.9rem;
        }

        .footer-links a {
            color: var(--muted-foreground);
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--foreground);
        }

        .footer-copy {
            font-size: 0.9rem;
            color: var(--muted-foreground);
        }

        /* ============ Responsive Table Fix ============ */
        @media (max-width: 768px) {

            .table-header,
            .table-row {
                grid-template-columns: 1fr;
                gap: 0.5rem;
            }

            .table-header-cell,
            .table-cell {
                text-align: left !important;
            }

            .table-cell:nth-child(2),
            .table-cell:nth-child(3) {
                justify-content: flex-start;
            }

            .table-row {
                padding: 1.5rem 1rem;
            }
        }


        /* -----------Contact-us----------------- */

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

        :root {
            --background: #0a0a0a;
            --foreground: #fafafa;
            --card: #141414;
            --card-foreground: #fafafa;
            --muted: #1a1a1a;
            --muted-foreground: #a3a3a3;
            --border: #262626;
            --cta: #BADA55;
            --cta-foreground: #000000;
            --secondary: #1a1a1a;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background-color: var(--background);
            color: var(--foreground);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .text-gradient {
            background: linear-gradient(135deg, var(--cta) 0%, #e8f5a1 50%, var(--cta) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }


        /* Hero Section */
        .hero {
            position: relative;
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding-top: 6rem;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(ellipse 80% 50% at 50% -20%, rgba(186, 218, 85, 0.12), transparent);
        }

        .hero-glow {
            position: absolute;
            top: 25%;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 600px;
            background: rgba(186, 218, 85, 0.05);
            border-radius: 50%;
            filter: blur(80px);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 800px;
            padding: 2rem 0;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--secondary);
            border: 1px solid var(--border);
            border-radius: 9999px;
            margin-bottom: 2rem;
        }

        .badge svg {
            width: 1rem;
            height: 1rem;
            color: var(--cta);
        }

        .badge span {
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            margin-bottom: 1.5rem;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--muted-foreground);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Contact Cards Section */
        .contact-section {
            padding: 4rem 0 6rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            /* margin-bottom: 1rem; */
        }

        .section-header p {
            color: var(--muted-foreground);
            font-size: 1.125rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .email-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1.3rem;
            margin-bottom: 4rem;
        }

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

        .email-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 1rem;
            padding: 1rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .email-card:hover {
            border-color: var(--cta);
            transform: translateY(-4px);
            box-shadow: 0 20px 40px -20px rgba(186, 218, 85, 0.2);
        }

        .email-icon {
            width: 4rem;
            height: 4rem;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--cta), #e8f5a1);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .email-icon svg {
            width: 2rem;
            height: 2rem;
            color: var(--cta-foreground);
        }

        .email-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .email-card p {
            color: var(--muted-foreground);
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .email-address {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--cta);
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.95rem;
            text-decoration: none;
            padding: 0.5rem 1rem;
            background: rgba(186, 218, 85, 0.1);
            border-radius: 0.5rem;
            transition: background 0.2s;
        }

        .email-address:hover {
            background: rgba(186, 218, 85, 0.2);
        }

        /* Support Features */
        .features-section {
            padding: 4rem 0;
            background: var(--muted);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .feature-card {
            text-align: center;
            padding: 2rem;
        }

        .feature-icon {
            width: 5rem;
            height: 5rem;
            margin: 0 auto 1.5rem;
            background: var(--card);
            border: 2px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            border-color: var(--cta);
            background: rgba(186, 218, 85, 0.1);
        }

        .feature-icon svg {
            width: 2.5rem;
            height: 2.5rem;
            color: var(--cta);
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .feature-card p {
            color: var(--muted-foreground);
            font-size: 1rem;
            line-height: 1.6;
        }

        .feature-highlight {
            display: inline-block;
            color: var(--cta);
            font-weight: 600;
            font-size: 1.125rem;
            margin-top: 0.75rem;
        }

        /* Availability Section */
        .availability-section {
            padding: 5rem 0;
        }

        .availability-content {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .availability-content h2 {
            font-size: clamp(1.75rem, 4vw, 2.25rem);
            margin-bottom: 1rem;
        }

        .availability-content p {
            color: var(--muted-foreground);
            font-size: 1.125rem;
            margin-bottom: 2rem;
        }

        .availability-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .availability-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 9999px;
            font-size: 0.9rem;
        }

        .availability-badge svg {
            width: 1.25rem;
            height: 1.25rem;
            color: var(--cta);
        }

        /* Marquee */
        .marquee-container {
            overflow: hidden;
            padding: 1rem 0;
            background: var(--card);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .marquee-track {
            display: flex;
            animation: marquee 30s linear infinite;
            width: max-content;
        }

        .marquee-track:hover {
            animation-play-state: paused;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .marquee-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0 2rem;
            font-size: 1rem;
            font-weight: 500;
            white-space: nowrap;
        }

        .marquee-item svg {
            width: 1.25rem;
            height: 1.25rem;
            color: var(--cta);
        }

        /* Social Links Section */
        .social-section {
            padding: 4rem 0;
        }

        .social-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .social-header h2 {
            font-size: 1.75rem;
            margin-bottom: 0.5rem;
        }

        .social-header p {
            color: var(--muted-foreground);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.5rem;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 0.75rem;
            text-decoration: none;
            color: var(--foreground);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            border-color: var(--cta);
            transform: translateY(-2px);
        }

        .social-link svg {
            width: 1.5rem;
            height: 1.5rem;
            color: var(--cta);
        }

        /* CTA Section */
        .cta-section {
            padding: 5rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 400px;
            background: radial-gradient(ellipse, rgba(186, 218, 85, 0.15), transparent 70%);
            pointer-events: none;
        }

        .cta-content {
            position: relative;
            z-index: 10;
        }

        .cta-content h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            margin-bottom: 1rem;
        }

        .cta-content p {
            color: var(--muted-foreground);
            font-size: 1.125rem;
            margin-bottom: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }

        @media (min-width: 640px) {
            .cta-buttons {
                flex-direction: row;
                justify-content: center;
            }
        }

        /* Footer */
        .footer {
            padding: 3rem 0;
            border-top: 1px solid var(--border);
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            text-align: center;
        }

        @media (min-width: 768px) {
            .footer-content {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
        }

        .footer-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-links a {
            color: var(--muted-foreground);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--foreground);
        }

        .footer-copyright {
            color: var(--muted-foreground);
            font-size: 0.875rem;
        }

        /* Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.6s ease forwards;
        }

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

        .delay-1 {
            animation-delay: 0.1s;
        }

        .delay-2 {
            animation-delay: 0.2s;
        }

        .delay-3 {
            animation-delay: 0.3s;
        }

        .delay-4 {
            animation-delay: 0.4s;
        }