:root {
            --primary: #0066FF;
            --primary-light: #00D1FF;
            --dark-accent: #0A1628;
            --bg-base: #FFFFFF;
            --bg-alt: #F8FAFC;
            --text-main: #0A1628;
            --text-muted: #64748B;
            --card-radius: 16px;
            --btn-radius: 12px;
            --pill-radius: 100px;
            --shadow-sm: 0 4px 12px rgba(0, 102, 255, 0.05);
            --shadow-hover: 0 20px 40px rgba(0, 102, 255, 0.12);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-main);
            background-color: var(--bg-base);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .outfit {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        a {
            text-decoration: none;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .text-gradient {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .text-amber-gradient {
            background: linear-gradient(135deg, #F59E0B, #FBBF24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .eyebrow {
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
            display: block;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            border-radius: var(--btn-radius);
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 14px rgba(0, 102, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
            background: #005ce6;
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-main);
            border: 1px solid #E2E8F0;
        }

        .btn-secondary:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(0, 102, 255, 0.05);
        }

        section {
            padding: 100px 0;
        }

        @media (max-width: 1024px) {
            section {
                padding: 70px 0;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 55px 0;
            }
        }

        /* HERO */
        .hero {
            position: relative;
            min-height: calc(100vh - 48px);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            padding: 120px 20px 80px;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top center, rgba(0, 102, 255, 0.08) 0%, #FFFFFF 60%);
            z-index: -2;
        }

        #heroCanvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            opacity: 0.3;
            z-index: -1;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .ai-badge {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            background: rgba(0, 102, 255, 0.1);
            color: var(--primary);
            border-radius: var(--pill-radius);
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 24px;
            border: 1px solid rgba(0, 102, 255, 0.2);
        }

        .hero h1 {
            font-size: clamp(3rem, 6vw, 4.5rem);
            margin-bottom: 24px;
            color: var(--dark-accent);
        }

        .hero p {
            font-size: clamp(1.125rem, 2vw, 1.25rem);
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 64px;
        }

        .floating-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin: 0 auto;
        }

        .tag {
            background: white;
            border: 1px solid #E2E8F0;
            padding: 8px 16px;
            border-radius: var(--pill-radius);
            font-size: 0.875rem;
            color: var(--text-main);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        .tag:nth-child(1) {
            animation-delay: 0.0s;
        }

        .tag:nth-child(2) {
            animation-delay: 0.5s;
        }

        .tag:nth-child(3) {
            animation-delay: 1.0s;
        }

        .tag:nth-child(4) {
            animation-delay: 1.5s;
        }

        .tag:nth-child(5) {
            animation-delay: 2.0s;
        }

        .tag:nth-child(6) {
            animation-delay: 2.5s;
        }

        /* TICKER */
        .ticker-wrap {
            width: 100%;
            overflow: hidden;
            background: #F1F5F9;
            padding: 12px 0;
            border-top: 1px solid #E2E8F0;
            border-bottom: 1px solid #E2E8F0;
            display: flex;
        }

        .ticker {
            display: flex;
            white-space: nowrap;
            animation: ticker 40s linear infinite;
        }

        .ticker-item {
            padding: 0 2rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-muted);
            letter-spacing: 0.05em;
        }

        @keyframes ticker {
            0% {
                transform: translate3d(0, 0, 0);
            }

            100% {
                transform: translate3d(-50%, 0, 0);
            }
        }

        /* SECTION HEADERS */
        .section-header {
            text-align: center;
            margin: 0 auto 64px;
        }

        .section-header h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 16px;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 1.125rem;
        }

        /* AGENTS GRID */
        .agents-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 48px;
        }

        @media (max-width: 1024px) {
            .agents-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .agents-grid {
                grid-template-columns: 1fr;
            }
        }

        .agent-card {
            background: white;
            border-radius: var(--card-radius);
            padding: 32px;
            border: 1px solid #E2E8F0;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            position: relative;
            overflow: hidden;
        }

        .agent-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(0, 102, 255, 0.3);
        }

        .icon-box {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .agent-card h3 {
            font-size: 1.25rem;
            margin-bottom: 12px;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
        }

        .agent-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .c-purple .icon-box {
            background: rgba(139, 92, 246, 0.1);
            color: #8B5CF6;
        }

        .c-orange .icon-box {
            background: rgba(249, 115, 22, 0.1);
            color: #F97316;
        }

        .c-teal .icon-box {
            background: rgba(20, 184, 166, 0.1);
            color: #14B8A6;
        }

        .c-indigo .icon-box {
            background: rgba(79, 70, 229, 0.1);
            color: #4F46E5;
        }

        .c-blue .icon-box {
            background: rgba(59, 130, 246, 0.1);
            color: #3B82F6;
        }

        .c-green .icon-box {
            background: rgba(34, 197, 94, 0.1);
            color: #22C55E;
        }

        .c-whatsapp .icon-box {
            background: rgba(37, 211, 102, 0.1);
            color: #25D366;
        }

        .c-red .icon-box {
            background: rgba(239, 68, 68, 0.1);
            color: #EF4444;
        }

        .custom-panel {
            background: linear-gradient(to right, #F8FAFC, #E0F2FE);
            border-radius: var(--card-radius);
            padding: 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid #BAE6FD;
            gap: 32px;
        }

        @media (max-width: 768px) {
            .custom-panel {
                flex-direction: column;
                text-align: center;
                padding: 32px;
            }
        }

        .custom-panel-content {
            flex: 1;
        }

        .custom-panel h3 {
            font-size: 1.5rem;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        @media (max-width: 768px) {
            .custom-panel h3 {
                justify-content: center;
            }
        }

        .custom-panel p {
            color: var(--text-muted);
        }

        /* ==================== LIMITED OFFER SECTION STYLES ==================== */
        .offer-section {
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #667eea 0%, #0066FF 35%, #00b4d8 70%, #06d6a0 100%);
        }

        /* Animated mesh overlay */
        .offer-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(255, 200, 50, 0.2) 0%, transparent 40%),
                radial-gradient(ellipse at 60% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 45%);
            z-index: 0;
        }

        /* Floating orbs */
        .offer-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            z-index: 0;
            animation: orbFloat 8s ease-in-out infinite;
        }

        .orb-1 {
            width: 300px;
            height: 300px;
            background: rgba(255, 200, 50, 0.3);
            top: -80px;
            right: 10%;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 250px;
            height: 250px;
            background: rgba(255, 255, 255, 0.15);
            bottom: -60px;
            left: 5%;
            animation-delay: -4s;
        }

        .orb-3 {
            width: 180px;
            height: 180px;
            background: rgba(0, 212, 255, 0.25);
            top: 30%;
            right: 30%;
            animation-delay: -2s;
        }

        @keyframes orbFloat {

            0%,
            100% {
                transform: translateY(0) scale(1);
            }

            50% {
                transform: translateY(-20px) scale(1.05);
            }
        }

        .offer-inner {
            position: relative;
            z-index: 1;
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 40px;
        }

        @media (max-width: 900px) {
            .offer-inner {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        .offer-left {
            color: white;
        }

        .offer-badge-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: white;
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 20px;
        }

        .offer-badge-pill .dot-pulse {
            width: 8px;
            height: 8px;
            background: #FFD60A;
            border-radius: 50%;
            animation: pulseDot 1.5s ease-in-out infinite;
        }

        @keyframes pulseDot {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.4);
                opacity: 0.7;
            }
        }

        .offer-headline {
            font-size: clamp(2rem, 4vw, 3rem);
            color: white;
            line-height: 1.1;
            margin-bottom: 12px;
        }

        .offer-headline .free-text {
            background: linear-gradient(135deg, #FFD60A, #FFA500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .offer-subtext {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 520px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        @media (max-width: 900px) {
            .offer-subtext {
                margin-left: auto;
                margin-right: auto;
            }
        }

        .offer-urgency {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #FFD60A;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Right side card */
        .offer-right {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .spots-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            padding: 28px 32px;
            text-align: center;
            min-width: 260px;
        }

        .spots-label {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 14px;
            display: block;
        }

        .spots-dots {
            display: flex;
            gap: 7px;
            justify-content: center;
            margin-bottom: 10px;
        }

        .spot-dot {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .spot-dot.taken {
            background: #FFD60A;
            box-shadow: 0 0 12px rgba(255, 214, 10, 0.7);
        }

        .spot-dot.open {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.4);
        }

        .spots-caption {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        .offer-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            color: #0A1628;
            padding: 15px 28px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
            white-space: nowrap;
        }

        .offer-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
        }

        .offer-fine-print {
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.55);
            text-align: center;
        }

        /* ==================== END LIMITED OFFER SECTION STYLES ==================== */

        /* WHY US */
        .why-us {
            background: var(--bg-alt);
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 48px;
        }

        @media (max-width: 768px) {
            .feature-grid {
                grid-template-columns: 1fr;
            }
        }

        .feature-item {
            display: flex;
            gap: 16px;
        }

        .feature-icon {
            color: var(--primary);
            flex-shrink: 0;
            width: 24px;
            height: 24px;
        }

        .feature-text h3 {
            font-size: 1.25rem;
            margin-bottom: 8px;
        }

        .feature-text p {
            color: var(--text-muted);
        }

        /* RESULTS */
        .results {
            background: linear-gradient(180deg, #FFFFFF, #F1F5F9);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

        .stat-card {
            background: white;
            padding: 40px 24px;
            border-radius: var(--card-radius);
            text-align: center;
            border: 1px solid #E2E8F0;
            box-shadow: var(--shadow-sm);
        }

        .stat-number {
            display: inline-block;
            font-family: 'Outfit', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 12px;
        }

        .stat-label {
            color: var(--text-muted);
            font-weight: 500;
        }

        /* PRICING */
        .pricing-box {
            background: white;
            border: 1px solid #E2E8F0;
            border-radius: 24px;
            padding: 64px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
            text-align: center;
        }

        @media (max-width: 768px) {
            .pricing-box {
                padding: 32px 20px;
            }
        }

        .price-pills {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin: 40px 0;
        }

        .price-pill {
            background: #E0F2FE;
            color: #0369A1;
            padding: 6px 16px;
            border-radius: var(--pill-radius);
            font-size: 0.875rem;
            font-weight: 500;
        }

        .model-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 40px;
            text-align: left;
        }

        @media (max-width: 1024px) {
            .model-cards {
                grid-template-columns: 1fr;
            }
        }

        .m-card {
            background: var(--bg-alt);
            padding: 32px;
            border-radius: var(--card-radius);
            border: 1px solid #E2E8F0;
        }

        .m-card h3 {
            font-size: 1.25rem;
            margin-bottom: 12px;
        }

        .m-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .pricing-footer {
            font-style: italic;
            color: var(--text-muted);
            margin-top: 32px;
            margin-bottom: 32px;
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            border: 1px solid #E2E8F0;
            border-radius: var(--card-radius);
            background: white;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active {
            border-color: var(--primary);
            box-shadow: var(--shadow-sm);
        }

        .faq-q {
            padding: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.125rem;
            font-family: 'Inter', sans-serif;
            color: var(--text-main);
            user-select: none;
        }

        .faq-q .icon {
            transition: transform 0.3s ease;
            color: var(--primary);
        }

        .faq-item.active .faq-q .icon {
            transform: rotate(180deg);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background: var(--bg-alt);
        }

        .faq-item.active .faq-a {
            max-height: 300px;
            padding: 0 24px 24px;
        }

        .faq-a p {
            color: var(--text-muted);
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(180deg, #E0F2FE 0%, #FFFFFF 100%);
            text-align: center;
        }

        .cta-section .section-header {
            margin-bottom: 40px;
        }

        .contact-line {
            margin-top: 32px;
            display: flex;
            justify-content: center;
            gap: 24px;
            color: var(--text-muted);
            flex-wrap: wrap;
        }

        .contact-line a {
            color: var(--primary);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        /* ANIMATIONS */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }