        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            background-color: #ffffff;
            color: #2d3748;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* KinexPay Design System */
        :root {
            --brand-primary: #0d9488;
            --brand-primary-light: #14b8a6;
            --brand-secondary: #064e57;
            --accent: #14b8a6;
            --text-primary: #2d3748;
            --text-secondary: #4a5568;
            --text-on-dark: #ffffff;
            --shadow-glow: 0 0 40px rgba(20, 184, 166, 0.4);
            --shadow-soft: 0 4px 6px -1px rgba(74, 85, 104, 0.1);
        }

        /* Navigation */
        .navigation {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background-color: rgb(255 255 255 / 59%);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #e2e8f059;
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
        }

        .nav-logo img {
            height: 32px;
            width: auto;
        }

        .nav-menu {
            display: none;
            align-items: center;
            gap: 32px;
        }

        @media (min-width: 768px) {
            .nav-menu {
                display: flex;
            }
        }

        .nav-menu a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--brand-primary);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .btn {
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            border: 2px solid transparent;
            cursor: pointer;
        }

        .btn-ghost {
            color: var(--text-secondary);
            background: transparent;
        }

        .btn-ghost:hover {
            color: var(--brand-primary);
        }

        .btn-primary {
            background-color: var(--brand-primary);
            color: white;
            box-shadow: var(--shadow-glow);
        }

        .btn-primary:hover {
            background-color: var(--brand-primary-light);
            transform: translateY(-1px);
        }

        .btn-outline {
            border: 2px solid rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(4px);
            color: white;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.7);
        }

        .btn-lg {
            padding: 16px 32px;
            font-size: 18px;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(135deg, #064e57 0%, #000b0a 100%);
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(6, 78, 87, 0.1) 100%);
        }

        .hero-content {
            position: relative;
            padding-top: 96px;
            padding-bottom: 64px;
        }

        /* Desktop (duas colunas) */
        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 48px;
            align-items: center;
        }

        /* Mobile: uma coluna, imagem na 1ª linha, texto na 2ª */
        @media (max-width: 768px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .hero-image {
                grid-row: 1;
            }

            .hero-content {
                text-align: center;
            }

            .hero-title {
                text-align: left;
            }

            .hero-subtitle {
                text-align: left;
            }

            .hero-image img {
                padding: 10px;
            }

            .toast-icon {
                padding: 0 !important;
            }

            .hero-grid> :first-child {
                grid-row: 2;
            }

            .hero-actions {
                justify-content: center;
                gap: 12px;
            }

            .hero-features {
                justify-content: center;
            }
        }

        /* Layout duas colunas */
        .split-grid {
            display: grid;
            grid-template-columns: 1fr 580px;
            /* título flexível + card fixo */
            /* gap: 48px; */
            align-items: center;
            position: relative;
        }

        /* Coluna esquerda */
        .split-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-headline {
            font-size: clamp(2.2rem, 4.2vw, 4rem);
            /* grande e fluido */
            line-height: 1.05;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #e8fff4;
            /* claro no tema escuro */
            margin: 0 0 12px 0;
            /* toque elegante */
            text-shadow: 0 2px 18px rgba(120, 255, 195, 0.15);
        }

        .hero-sub {
            font-size: clamp(1rem, 1.4vw, 1.125rem);
            color: rgba(232, 255, 244, 0.75);
            max-width: 40ch;
        }

        /* Coluna direita (mantém seu card) */
        .split-right .dashboard-container {
            position: relative;
            /* para os glows/strongadges */
        }

        /* Responsivo */
        @media (max-width: 1024px) {
            .split-grid {
                grid-template-columns: 1fr;
                /* empilha */
                gap: 28px;
            }

            .split-right {
                order: 2;
            }

            .split-left {
                order: 1;
            }

            .hero-headline {
                text-align: left;
            }
        }

        @media (max-width: 520px) {
            .hero-headline {
                font-size: 1.9rem;
            }

            .hero-sub {
                font-size: 0.95rem;
            }
        }


        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 24px;
            padding: 8px 16px;
            margin-bottom: 32px;
        }

        .hero-badge .dot {
            width: 8px;
            height: 8px;
            background-color: var(--accent);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .hero-badge .raio {
            animation: pulse 2s infinite;
            color: var(--accent);
        }

        .hero-badge span {
            color: var(--text-on-dark);
            font-size: 14px;
            font-weight: 500;
        }

        .hero-title {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        @media (min-width: 1024px) {
            .hero-title {
                font-size: 64px;
            }
        }

        .hero-title-t {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 24px;
        }

        @media (min-width: 1024px) {
            .hero-title-t {
                font-size: 60px;
            }
        }

        .hero-title-t .gradient-text {
            background: linear-gradient(to right, var(--accent), var(--brand-primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-title .gradient-text {
            background: linear-gradient(to right, var(--accent), var(--brand-primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 32px;
            max-width: 500px;
        }

        .hero-actions {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 48px;
        }

        /* Mobile: força 2 colunas lado a lado */
        @media (max-width: 768px) {
            .hero-actions {
                display: grid;
                grid-template-columns: 1.5fr 1fr;
                gap: 12px;
            }

            .hero-actions .btn {
                width: 100%;
                display: inline-flex;
                justify-content: center;
                align-items: center;
                text-align: center;
            }
        }

        @media (min-width: 640px) {
            .hero-actions {
                flex-direction: row;
            }
        }

        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .hero-feature .icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        .hero-feature span {
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        .hero-image {
            position: relative;
            transform: scale(1.1);
            margin-left: -48px;
            margin-top: 32px;
        }

        .hero-image img {
            width: 100%;
            height: auto;
        }

        /* garante posicionamento local do toast */
        .hero-image {
            position: relative;
        }

        /* ----- TOAST ----- */
        .sale-toast {
            position: absolute;
            top: 50%;
            /* ajuste vertical conforme seu mock */
            right: -320px;
            /* começa fora da imagem (à direita) */
            z-index: 5;
            text-align: left;

            /* layout interno */
            display: flex;
            align-items: center;
            gap: 12px;
            max-width: 360px;
            /* largura fixa evita “quebrar” o box */
            box-sizing: border-box;
            padding: 12px;

            /* visual */
            background: #162d3163;
            color: #fff;
            border-radius: 10px;
            border: 1px solid rgb(255 255 255 / 13%);
            backdrop-filter: blur(6px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, .25);

            pointer-events: none;
            /* não bloqueia cliques na imagem */
            opacity: 0;
            /* invisível até animar */
        }

        /* ícone travado (não estica) */
        .toast-icon {
            flex: 0 0 34px;
            /* largura/altura fixas */
            width: 34px !important;
            height: 34px !important;
            object-fit: contain;
            /* não distorce */
            image-rendering: auto;
        }

        /* texto nunca “vaza” do box */
        .toast-copy {
            flex: 1 1 auto;
            min-width: 0;
            /* permite encolher dentro do flex */
        }

        .toast-copy strong {
            display: block;
            font-weight: 700;
            font-size: 14px;
            line-height: 1.3;
        }

        .toast-copy span {
            display: block;
            font-size: 13px;
            line-height: 1.2;
            opacity: .92;
            word-break: break-word;
            color: #e4e4e4;
            /* quebra caso precise */
        }

        /* anima: entra e PARA sobre a imagem */
        .sale-toast.show {
            animation: toastIn 900ms cubic-bezier(.22, 1, .36, 1) forwards;
            animation-delay: 1s;
        }

        /* destino final: ajuste o 24px para posicionar */
        @keyframes toastIn {
            from {
                right: -420px;
                opacity: 0;
            }

            to {
                right: 24px;
                opacity: 1;
            }

            /* PARA em 24px da borda direita */
        }

        /* mobile */
        @media (max-width: 560px) {
            .sale-toast {
                right: -340px;
                top: 55%;
            }

            @keyframes toastIn {
                from {
                    right: -340px;
                    opacity: 0;
                }

                to {
                    right: 12px;
                    opacity: 1;
                }
            }
        }


        @media (max-width: 768px) {
            .hero-image {
                margin-left: 0px;
                margin-top: 0px;
            }
        }

        .floating-element {
            position: absolute;
            border-radius: 50%;
            animation: float 3s ease-in-out infinite;
        }

        .floating-1 {
            top: 20px;
            right: 10px;
            width: 64px;
            height: 64px;
            background-color: rgba(20, 184, 166, 0.2);
            animation-delay: 0s;
        }

        .floating-2 {
            bottom: 40px;
            left: 30px;
            width: 48px;
            height: 48px;
            background-color: rgba(20, 184, 166, 0.3);
            animation-delay: 1s;
        }

        /* Features Section */
        .features {
            padding: 96px 0;
            background-color: #ffffff;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-title {
            font-size: 40px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        @media (min-width: 1024px) {
            .section-title {
                font-size: 48px;
            }
        }

        .section-subtitle {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 768px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            gap: 32px;
        }

        @media (min-width: 768px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .feature-card {
            background: white;
            padding: 32px;
            border-radius: 12px;
            border: 1px solid #f7fafc;
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--brand-primary), var(--accent));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 16px;
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }

        .feature-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }

        .feature-card:hover .feature-title {
            color: var(--brand-primary);
        }

        .feature-description {
            color: var(--text-secondary);
        }

        /* API Section */
        .api-section {
            padding: 96px 0;
            background: linear-gradient(to bottom, #ffffff, rgba(247, 250, 252, 0.2));
        }

        .api-grid {
            display: grid;
            gap: 48px;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .api-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .api-image {
            position: relative;
        }

        .api-image img {
            width: 100%;
            height: auto;
            border-radius: 16px;
            box-shadow: var(--shadow-glow);
        }

        .api-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(20, 184, 166, 0.1);
            border: 1px solid rgba(20, 184, 166, 0.2);
            border-radius: 24px;
            padding: 8px 16px;
            margin-bottom: 32px;
        }

        .api-features {
            margin: 32px 0;
        }

        .api-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .api-feature .icon {
            width: 24px;
            height: 24px;
            background-color: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: white;
        }

        /* Social Proof Section */
        .social-proof {
            padding: 96px 0;
            background: linear-gradient(135deg, #f8fafc, #ffffff);
            position: relative;
            overflow: hidden;
        }

        .social-proof::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 40px;
            width: 128px;
            height: 128px;
            background: var(--brand-primary);
            border-radius: 50%;
            filter: blur(48px);
            opacity: 0.05;
        }

        .social-proof::after {
            content: '';
            position: absolute;
            bottom: 40px;
            right: 40px;
            width: 160px;
            height: 160px;
            background: var(--accent);
            border-radius: 50%;
            filter: blur(48px);
            opacity: 0.05;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 96px 0;
            background: linear-gradient(135deg, #f8fafc, #ffffff);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 40px;
            width: 128px;
            height: 128px;
            background: var(--brand-primary);
            border-radius: 50%;
            filter: blur(48px);
            opacity: 0.05;
        }

        .testimonials::after {
            content: '';
            position: absolute;
            bottom: 40px;
            right: 40px;
            width: 160px;
            height: 160px;
            background: var(--accent);
            border-radius: 50%;
            filter: blur(48px);
            opacity: 0.05;
        }

        .carousel-container {
            position: relative;
            max-width: 1024px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            overflow: hidden;
            border-radius: 16px;
        }


        .carousel-track {
            display: flex;
            gap: 16px;
            /* espaçamento entre cards */
            transition: transform 0.5s ease-in-out;
            will-change: transform;
            padding: 0 2px;
            /* micro buffer para evitar 1px bleed em alguns browsers */
        }

        .testimonial-slide {
            flex: 0 0 100%;
            min-width: 100%;
        }

        .testimonial-card {
            background: white;
            padding: 48px;
            border-radius: 16px;
            box-shadow: var(--shadow-soft);
            border: 1px solid #f7fafc;
            text-align: center;
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-soft);
            z-index: 5;
            /* sobe um pouco o z-index */
        }

        .carousel-nav.prev {
            left: 0;
            transform: translate(-24px, -50%);
        }

        .carousel-nav.next {
            right: 0;
            transform: translate(24px, -50%);
        }

        .testimonial-photo-wrapper {
            display: flex;
            justify-content: center;
            margin-bottom: 32px;
        }

        .testimonial-photo {
            position: relative;
        }

        .testimonial-photo img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid rgba(13, 148, 136, 0.2);
        }

        .testimonial-check {
            position: absolute;
            bottom: -4px;
            right: -4px;
            width: 24px;
            height: 24px;
            background: var(--brand-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
        }

        .testimonial-quote {
            font-size: 24px;
            color: var(--text-primary);
            font-weight: 300;
            margin-bottom: 32px;
            line-height: 1.6;
        }

        @media (min-width: 1024px) {
            .testimonial-quote {
                font-size: 32px;
            }
        }

        .testimonial-author {
            padding-top: 32px;
            border-top: 1px solid #f7fafc;
        }

        .testimonial-name {
            font-size: 18px;
            font-weight: 600;
            color: var(--brand-primary);
            margin-bottom: 8px;
        }

        .testimonial-role {
            color: var(--text-secondary);
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-soft);
            z-index: 10;
        }

        .carousel-nav:hover {
            background: var(--brand-primary);
            color: white;
        }

        .carousel-nav.prev {
            left: 0;
            transform: translate(-24px, -50%);
        }

        .carousel-nav.next {
            right: 0;
            transform: translate(24px, -50%);
        }

        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 32px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            background: #d1d5db;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            width: 32px;
            background: var(--brand-primary);
            border-radius: 6px;
        }

        .indicator:hover {
            background: rgba(13, 148, 136, 0.5);
        }

        .trust-indicators {
            margin-top: 64px;
            padding-top: 48px;
            border-top: 1px solid #e2e8f0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            text-align: center;
        }

        @media (min-width: 768px) {
            .trust-indicators {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 480px) {
            .testimonial-card {
                padding: 28px;
            }

            .testimonial-quote {
                font-size: 20px;
            }
        }

        .trust-number {
            font-size: 32px;
            font-weight: 700;
            color: var(--brand-primary);
            margin-bottom: 8px;
        }

        .trust-label {
            font-size: 14px;
            color: var(--text-secondary);
        }

        /* Stats Section */
        .stats {
            padding: 96px 0;
            background: linear-gradient(to right, var(--brand-secondary), var(--brand-primary));
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        @media (min-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(4px);
            border-radius: 16px;
            padding: 32px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: scale(1.05);
        }

        .stat-number {
            font-size: 40px;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 12px;
            transition: transform 0.3s ease;
        }

        @media (min-width: 1024px) {
            .stat-number {
                font-size: 48px;
            }
        }

        .stat-card:hover .stat-number {
            transform: scale(1.1);
        }

        .stat-label {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-on-dark);
            margin-bottom: 4px;
        }

        .stat-description {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Footer */
        .footer {
            background-color: var(--brand-secondary);
            color: var(--text-on-dark);
        }

        .footer-cta {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 64px 0;
            text-align: center;
        }

        .footer-cta h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        @media (min-width: 1024px) {
            .footer-cta h2 {
                font-size: 40px;
            }
        }

        .footer-cta p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 512px;
            margin: 0 auto 32px auto;
        }

        .footer-actions {
            display: flex;
            flex-direction: column;
            gap: 16px;
            justify-content: center;
        }

        @media (min-width: 640px) {
            .footer-actions {
                flex-direction: row;
            }
        }

        .footer-content {
            padding: 48px 0;
        }

        .footer-grid {
            display: grid;
            gap: 32px;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .footer-brand img {
            height: 32px;
            width: auto;
            margin-bottom: 16px;
        }

        .footer-brand p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-section h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-links a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 48px;
            padding-top: 32px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }

        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
            }
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--accent);
        }

        /* Dashboard Live Section */
        .dashboard-live {
            padding: 96px 0;
            background: linear-gradient(135deg, #0a1929 0%, #1a2332 100%);
            position: relative;
            overflow: hidden;
        }

        .dashboard-container {
            position: relative;
            z-index: 10;
        }

        .dashboard-card {
            background: #ffffff05;
            backdrop-filter: blur(24px);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
            padding: 32px;
            max-width: 500px;
            margin: 0 auto;
            transition: all 0.5s ease;
        }

        @media (min-width: 768px) {
            .dashboard-card {
                padding: 48px;
            }
        }

        .dashboard-card:hover {
            transform: scale(1.05);
        }

        .dashboard-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 32px;
        }

        .dashboard-title {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
        }

        .dashboard-status {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .status-dot {
            width: 12px;
            height: 12px;
            background-color: var(--brand-primary);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .status-text {
            font-size: 14px;
            font-weight: 600;
            color: var(--brand-primary);
        }

        .dashboard-stats {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .stat-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background: linear-gradient(135deg, #e6fffa 0%, #d1fae5 100%);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateX(4px);
        }

        .stat-item:nth-child(1) {
            background: linear-gradient(135deg, #e6fffa 0%, #d1fae5 100%);
        }

        .stat-item:nth-child(2) {
            background: linear-gradient(135deg, #ccfbf1 0%, #d1fae5 100%);
        }

        .stat-item:nth-child(3) {
            background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
        }

        .stat-info h4 {
            font-size: 14px;
            color: #4a5568;
            margin-bottom: 4px;
        }

        .stat-value {
            font-size: 28px;
            font-weight: 900;
            color: #059669;
        }

        .stat-item:nth-child(2) .stat-value {
            color: #0d9488;
        }

        .stat-item:nth-child(3) .stat-value {
            color: #10b981;
        }

        .stat-icon {
            width: 32px;
            height: 32px;
            color: #059669;
        }

        .stat-item:nth-child(2) .stat-icon {
            color: #0d9488;
        }

        .stat-item:nth-child(3) .stat-icon {
            color: #10b981;
        }

        .progress-section {
            margin-top: 24px;
        }

        .progress-header {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            margin-bottom: 8px;
        }

        .progress-label {
            color: #7f8ca4;
        }

        .progress-value {
            font-weight: 700;
            color: #7f8ca4;
        }

        .progress-bar-bg {
            height: 12px;
            background-color: #e2e8f0;
            border-radius: 9999px;
            overflow: hidden;
        }

        .progress-bar-fill {
            height: 100%;
            background: linear-gradient(to right, #10b981, #059669);
            border-radius: 9999px;
            width: 87%;
            animation: pulse 2s infinite;
        }

        .floating-badge {
            position: absolute;
            background: white;
            border-radius: 16px;
            padding: 16px;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
            border: 1px solid #f7fafc;
            z-index: 20;
        }

        .badge-top-right {
            top: -24px;
            right: -24px;
            animation: bounce 2s infinite;
        }

        .badge-bottom-left {
            bottom: -24px;
            left: -24px;
            animation: pulse 2s infinite;
            animation-delay: 1s;
        }

        @media (max-width: 640px) {
            .floating-badge {
                display: none;
            }
        }

        .badge-content {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .badge-dot {
            width: 12px;
            height: 12px;
            background-color: #10b981;
            border-radius: 50%;
        }

        .badge-text {
            font-size: 14px;
            font-weight: 700;
            color: #1a202c;
        }

        .badge-icon {
            width: 16px;
            height: 16px;
            color: #059669;
        }

        .glow-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            animation: float 6s ease-in-out infinite;
        }

        .glow-top {
            top: -64px;
            right: -64px;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #10b981, #059669);
            opacity: 0.3;
        }

        .glow-bottom {
            bottom: -64px;
            left: -64px;
            width: 256px;
            height: 256px;
            background: linear-gradient(135deg, #0d9488, #10b981);
            opacity: 0.2;
            animation-delay: 2s;
        }

        /* Animations */
        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        /* Responsive Hidden Classes */
        .hidden-mobile {
            display: none;
        }

        @media (min-width: 640px) {
            .hidden-mobile {
                display: inline-flex;
            }
        }

        /* Breadcrumb */
        .breadcrumb {
            padding: 80px 0 20px;
            background: linear-gradient(to right, var(--brand-secondary), var(--brand-primary));
        }

        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #d9d9d9;
        }

        .breadcrumb-nav a {
            color: var(--brand-primary);
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .breadcrumb-nav a:hover {
            opacity: 0.7;
        }

        .breadcrumb-separator {
            color: #cbd5e0;
        }

        /* Pricing Section */
        .pricing-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #0a1f23 0%, var(--brand-secondary) 50%, #0a1f23 100%);
            position: relative;
            overflow: hidden;
        }

        .pricing-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(13, 148, 136, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .pricing-container {
            position: relative;
            z-index: 1;
        }

        .pricing-badge {
            display: inline-block;
            padding: 2px 0;
            margin-bottom: 32px;
            position: relative;
        }

        .pricing-badge::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--accent), var(--brand-primary-light));
            border-radius: 2px;
        }

        .pricing-badge span {
            color: var(--accent);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-left: 20px;
        }

        .pricing-grid {
            display: grid;
            gap: 64px;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .pricing-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .pricing-content h2 {
            font-size: 48px;
            font-weight: 700;
            color: white;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        @media (min-width: 1024px) {
            .pricing-content h2 {
                font-size: 56px;
            }
        }

        .pricing-description {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 32px;
            line-height: 1.8;
        }

        .pricing-description strong {
            color: var(--accent);
            font-weight: 700;
        }

        .pricing-footer {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        .pricing-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 48px;
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--brand-primary-light), var(--accent));
        }

        .pricing-card-header {
            margin-bottom: 32px;
        }

        .pricing-card-title {
            font-size: 24px;
            color: white;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .pricing-card-subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.6);
        }

        .pricing-rate {
            display: flex;
            align-items: baseline;
            gap: 12px;
            margin-bottom: 32px;
        }

        .pricing-percentage {
            font-size: 56px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1;
        }

        .pricing-extra {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.7);
        }

        .pricing-terms-title {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .pricing-term-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .pricing-term-item:last-child {
            border-bottom: none;
        }

        .pricing-term-label {
            color: var(--accent);
            font-weight: 600;
            font-size: 16px;
        }

        .pricing-term-value {
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
        }


        /* Terms Section */
        .terms-section {
            padding: 80px 0 120px;
            background: linear-gradient(to right, var(--brand-secondary), var(--brand-primary));
            position: relative;
            overflow: hidden;
        }

        .terms-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #14b8a6, transparent);
        }

        .terms-header {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            margin-bottom: 60px;
            align-items: start;
        }

        .terms-title {
            font-size: 48px;
            font-weight: 900;
            background: linear-gradient(135deg, #0d9488, #00ffe3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .terms-description {
            font-size: 18px;
            line-height: 1.8;
            color: #fff;
        }

        .terms-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .term-card {
            position: relative;
            padding: 32px 28px;
            background: linear-gradient(135deg, rgb(255 255 255 / 3%) 0%, rgb(240 253 250 / 19%) 100%);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(20, 184, 166, 0.2);
            border-left: 4px solid #14b8a6;
            border-radius: 16px;
            text-decoration: none;
            color: #ffffff;
            font-size: 17px;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            min-height: 100px;
            overflow: hidden;
        }

        .term-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(13, 148, 136, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .term-card::after {
            content: '→';
            position: absolute;
            right: 28px;
            font-size: 24px;
            color: #14b8a6;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .term-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(20, 184, 166, 0.2),
                0 0 0 1px rgba(20, 184, 166, 0.3);
            border-left-width: 6px;
        }

        .term-card:hover::before {
            opacity: 1;
        }

        .term-card:hover::after {
            opacity: 1;
            transform: translateX(0);
        }

        .term-card span {
            position: relative;
            z-index: 1;
            transition: transform 0.4s ease;
        }

        .term-card:hover span {
            transform: translateX(-10px);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .terms-header {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .terms-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .terms-title {
                font-size: 36px;
            }
        }

        @media (max-width: 640px) {
            .terms-section {
                padding: 60px 0 80px;
            }

            .terms-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .terms-title {
                font-size: 32px;
            }

            .terms-description {
                font-size: 16px;
            }

            .term-card {
                padding: 24px 20px;
                font-size: 16px;
                min-height: 90px;
            }

            .term-card::after {
                right: 20px;
                font-size: 20px;
            }
        }