
        :root {
            /* Main Brand Colors */
            --navy: #0e0e44;
            --navy-dark: #0a0a30;
            --violet: #8167ea;
            --violet-light: #a78bfa;
            --violet-bright: #b794f6;
            --lavender: #d2c3ef;
            --off-white: #f4f4f4;
            --white: #ffffff;
            
            /* Accent Colors */
            --accent-cyan: #49ccf9;
            --accent-purple: #8700ff;
            --accent-pink: #ff6b9d;
            --accent-orange: #f9a852;
            --green: #22c55e;
            --red: #ef4444;
            
            /* Text */
            --dark-text: #1a1a2e;
            --muted: #64748b;
            --light-muted: #94a3b8;
            
            /* Gradients */
            --gradient-hero: linear-gradient(135deg, #0d0a1a 0%, #1a1333 50%, #0f0c1f 100%);
            --gradient-hero-mesh: 
                radial-gradient(ellipse 600px 400px at 15% 20%, rgba(124, 92, 252, 0.25) 0%, transparent 60%),
                radial-gradient(ellipse 500px 500px at 85% 15%, rgba(168, 85, 247, 0.2) 0%, transparent 55%),
                radial-gradient(ellipse 400px 300px at 75% 75%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse 450px 350px at 25% 80%, rgba(99, 102, 241, 0.18) 0%, transparent 55%),
                radial-gradient(ellipse 300px 300px at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
            --gradient-violet: linear-gradient(135deg, #8167ea 0%, #a855f7 50%, #c084fc 100%);
            --glow-gradient: linear-gradient(90deg, 
                #49ccf9, #8700ff, #8167ea, #ff6b9d,
                #f9a852, #ff6b9d, #8167ea, #8700ff, #49ccf9);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: #0d0a1a;
            background-image: 
                var(--gradient-hero-mesh),
                var(--gradient-hero);
            background-attachment: fixed;
            color: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Noise overlay for entire page */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            opacity: 0.035;
            pointer-events: none;
            z-index: 0;
        }

        .serif-italic {
            font-family: 'Instrument Serif', Georgia, serif;
            font-style: italic;
        }

        .gradient-text {
            background: linear-gradient(135deg, #7c5cfc 0%, #a855f7 33%, #ec4899 66%, #f97316 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .gradient-text-cyan {
            background: linear-gradient(135deg, #06b6d4 0%, #8167ea 50%, #a855f7 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ========== BUTTONS ========== */
        /* Button styles */
        .btn {
            padding: 12px 24px;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            position: relative;
        }

        .btn-primary {
            background: var(--gradient-violet);
            color: var(--white);
            box-shadow: 0 4px 20px rgba(129, 103, 234, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(129, 103, 234, 0.5);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 16px 32px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        .btn-large {
            padding: 16px 32px;
            font-size: 16px;
        }

        .btn-xl {
            padding: 20px 40px;
            font-size: 18px;
        }

        .btn-white-glow {
            position: relative;
            background: var(--white);
            color: var(--navy);
            z-index: 1;
            font-weight: 700;
        }

        .btn-white-glow::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: var(--glow-gradient);
            background-size: 400% 100%;
            border-radius: 100px;
            z-index: -1;
            opacity: 0;
            animation: gradientMove 8s ease-in-out infinite;
            transition: opacity 0.5s ease;
        }

        .btn-white-glow::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--white);
            border-radius: 100px;
            z-index: -1;
        }

        .btn-white-glow:hover::before {
            opacity: 1;
        }

        .btn-white-glow:hover {
            transform: translateY(-2px);
        }

        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            100% { background-position: 400% 50%; }
        }

        /* ========== HERO SECTION ========== */
        .hero {
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 160px 48px 100px;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(ellipse 800px 600px at 20% 30%, rgba(124, 92, 252, 0.3) 0%, transparent 60%),
                radial-gradient(ellipse 600px 500px at 80% 20%, rgba(168, 85, 247, 0.25) 0%, transparent 55%),
                radial-gradient(ellipse 500px 400px at 70% 80%, rgba(236, 72, 153, 0.18) 0%, transparent 50%),
                radial-gradient(ellipse 450px 350px at 15% 75%, rgba(6, 182, 212, 0.18) 0%, transparent 55%);
            pointer-events: none;
            z-index: 0;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            /* No animation to prevent layout shift */
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            background: rgba(129, 103, 234, 0.08);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(129, 103, 234, 0.2);
            border-radius: 100px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--lavender);
            margin-bottom: 24px;
        }

        .section-badge svg {
            width: 16px;
            height: 16px;
            stroke: var(--violet);
            stroke-width: 1.5;
            fill: none;
        }

        .hero h1 {
            font-size: clamp(40px, 5vw, 64px);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -2px;
            margin-bottom: 24px;
            color: var(--white);
        }

        .hero-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
            line-height: 1.7;
            max-width: 520px;
        }

        .hero-ctas {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        /* Hero Dashboard Visual - Original Style */
        .hero-visual {
            position: relative;
        }

        .dashboard-preview {
            background: rgba(15, 12, 35, 0.95);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
            box-shadow:
                0 50px 100px rgba(0, 0, 0, 0.5),
                0 0 100px rgba(124, 92, 252, 0.2);
            will-change: auto;
        }

        .window-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 16px 24px;
            background: rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .window-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .window-dot.red { background: #ff5f57; }
        .window-dot.yellow { background: #ffbd2e; }
        .window-dot.green { background: #28c840; }

        .window-title {
            margin-left: 16px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
        }

        .dashboard-content {
            padding: 32px;
        }

        .metrics-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 28px;
        }

        .hero-metric-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 28px 24px;
            text-align: center;
        }

        .hero-metric-value {
            font-size: 48px;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 8px;
            font-variant-numeric: tabular-nums;
            height: 58px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-metric-value .hero-counter {
            display: inline-block;
            text-align: center;
        }

        .hero-metric-value.green {
            color: var(--green);
        }

        .hero-metric-value.violet {
            color: var(--violet);
        }

        .hero-metric-value.cyan {
            color: var(--accent-cyan);
        }

        .hero-metric-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .hero-metric-change {
            font-size: 13px;
            color: var(--green);
            font-weight: 500;
        }

        /* Line Chart */
        .chart-container {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            padding: 24px;
        }

        .chart-title {
            font-size: 16px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 24px;
        }

        .line-chart {
            height: 120px;
            position: relative;
        }

        .line-chart svg {
            width: 100%;
            height: 100%;
        }

        .line-chart path.animated-line {
            stroke-dasharray: 500;
            stroke-dashoffset: 500;
            animation: drawLine 2s ease-out forwards;
            animation-delay: 0.5s;
        }

        .line-chart path.animated-line-2 {
            stroke-dasharray: 500;
            stroke-dashoffset: 500;
            animation: drawLine 2s ease-out forwards;
            animation-delay: 0.8s;
        }

        @keyframes drawLine {
            to {
                stroke-dashoffset: 0;
            }
        }

        /* ========== KEY STATS SECTION ========== */
        .stats-section {
            padding: 100px 48px;
            position: relative;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse 500px 400px at 30% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse 400px 350px at 70% 60%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .stats-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .stats-header h2 {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            letter-spacing: -1.5px;
            margin-bottom: 16px;
            color: var(--white);
        }

        .stats-header p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.6);
            max-width: 600px;
            margin: 0 auto;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 40px 32px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-violet);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-8px);
            border-color: rgba(129, 103, 234, 0.3);
            box-shadow: 0 20px 60px rgba(129, 103, 234, 0.15);
        }

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

        .stat-number {
            font-size: 56px;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 12px;
        }

        .stat-number.gradient-cyan {
            color: #67e8f9;
        }

        .stat-number.gradient-pink {
            color: #f472b6;
        }

        .stat-number.gradient-purple {
            color: #c084fc;
        }

        .stat-number.gradient-orange {
            color: #fb923c;
        }

        .stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.5;
        }

        /* ========== DASHBOARD VIEWS SECTION ========== */
        .dashboard-section {
            padding: 120px 48px;
            position: relative;
        }

        .dashboard-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse 600px 400px at 80% 30%, rgba(124, 92, 252, 0.2) 0%, transparent 60%),
                radial-gradient(ellipse 500px 400px at 20% 70%, rgba(168, 85, 247, 0.15) 0%, transparent 55%);
            pointer-events: none;
        }

        .dashboard-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .dashboard-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .dashboard-header h2 {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            letter-spacing: -1.5px;
            margin-bottom: 16px;
            color: var(--white);
        }

        .dashboard-header p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.6);
            max-width: 650px;
            margin: 0 auto;
        }

        .dashboard-tabs {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 48px;
            background: rgba(255, 255, 255, 0.03);
            padding: 6px;
            border-radius: 100px;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .dashboard-tab {
            padding: 14px 28px;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.6);
            background: transparent;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dashboard-tab:hover {
            color: var(--white);
        }

        .dashboard-tab.active {
            background: var(--gradient-violet);
            color: var(--white);
            box-shadow: 0 4px 20px rgba(129, 103, 234, 0.4);
        }

        .dashboard-views {
            position: relative;
        }

        .dashboard-view {
            display: none;
            animation: fadeIn 0.4s ease;
        }

        .dashboard-view.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .view-content {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 60px;
            align-items: center;
        }

        .view-text h3 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
            color: #ffffff;
        }

        .view-text p {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .view-features {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .view-feature {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.85);
        }

        .view-feature-icon {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            background: rgba(129, 103, 234, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--violet);
            font-size: 14px;
            flex-shrink: 0;
        }

        .view-mockup {
            background: rgba(20, 15, 45, 0.85);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
            box-shadow:
                0 40px 80px rgba(0, 0, 0, 0.4),
                0 0 60px rgba(124, 92, 252, 0.15);
        }

        .mockup-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 14px 20px;
            background: rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .mockup-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .mockup-content {
            padding: 24px;
        }

        /* Funnel Chart */
        .funnel-chart {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 24px;
        }

        .funnel-row {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .funnel-label {
            width: 120px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
            text-align: right;
        }

        .funnel-bar {
            height: 32px;
            border-radius: 6px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding-right: 12px;
        }

        .funnel-bar span {
            font-size: 12px;
            font-weight: 700;
            color: white;
        }

        .funnel-bar.violet { background: linear-gradient(90deg, var(--violet), #a78bfa); }
        .funnel-bar.cyan { background: linear-gradient(90deg, #06b6d4, var(--accent-cyan)); }
        .funnel-bar.pink { background: linear-gradient(90deg, #ec4899, var(--accent-pink)); }
        .funnel-bar.green { background: linear-gradient(90deg, #10b981, var(--green)); }

        .conversion-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .conversion-metric {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            padding: 16px;
            text-align: center;
        }

        .conversion-value {
            font-size: 24px;
            font-weight: 800;
            color: var(--green);
            margin-bottom: 4px;
        }

        .conversion-label {
            font-size: 11px;
            color: var(--muted);
            text-transform: uppercase;
        }

        /* Pipeline Mockup */
        .pipeline-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .pipeline-title {
            font-size: 16px;
            font-weight: 700;
            color: white;
        }

        .pipeline-total {
            font-size: 14px;
            color: var(--green);
            font-weight: 600;
        }

        .pipeline-bars {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 20px;
        }

        .pipeline-row {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .pipeline-label {
            width: 100px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
        }

        .pipeline-bar-track {
            flex: 1;
            height: 24px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
            overflow: hidden;
        }

        .pipeline-bar-fill {
            height: 100%;
            border-radius: 4px;
            display: flex;
            align-items: center;
            padding-left: 10px;
        }

        .pipeline-bar-fill span {
            font-size: 11px;
            font-weight: 600;
            color: white;
        }

        .deal-list {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 10px;
            padding: 16px;
        }

        .deal-list-header {
            font-size: 12px;
            color: var(--muted);
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .deal-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .deal-item:last-child {
            border-bottom: none;
        }

        .deal-name {
            font-size: 13px;
            color: white;
            font-weight: 500;
        }

        .deal-badge {
            font-size: 10px;
            padding: 4px 10px;
            border-radius: 100px;
            font-weight: 600;
        }

        .deal-badge.influenced {
            background: rgba(34, 197, 94, 0.15);
            color: var(--green);
        }

        /* Ops Mockup */
        .ops-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .ops-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            padding: 20px;
        }

        .ops-card-title {
            font-size: 12px;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }

        .gauge-container {
            display: flex;
            justify-content: center;
            margin-bottom: 12px;
        }

        .gauge {
            width: 100px;
            height: 50px;
        }

        .gauge-bg {
            fill: none;
            stroke: rgba(255, 255, 255, 0.1);
            stroke-width: 10;
        }

        .gauge-fill {
            fill: none;
            stroke-width: 10;
            stroke-linecap: round;
        }

        .gauge-value {
            text-align: center;
            font-size: 24px;
            font-weight: 800;
        }

        .leaderboard-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .leaderboard-item:last-child {
            border-bottom: none;
        }

        .leaderboard-rank {
            width: 24px;
            height: 24px;
            border-radius: 6px;
            background: rgba(129, 103, 234, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            color: var(--violet-light);
        }

        .leaderboard-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--violet), var(--accent-pink));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 600;
            color: white;
        }

        .leaderboard-name {
            flex: 1;
            font-size: 13px;
            color: white;
        }

        .leaderboard-calls {
            font-size: 12px;
            color: var(--muted);
        }

        /* Executive Mockup */
        .exec-summary {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 24px;
        }

        .exec-metric {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
        }

        .exec-value {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 6px;
        }

        .exec-label {
            font-size: 12px;
            color: var(--muted);
        }

        .exec-chart {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 12px;
            padding: 20px;
        }

        .exec-chart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .exec-chart-title {
            font-size: 14px;
            font-weight: 600;
            color: white;
        }

        .exec-chart-legend {
            display: flex;
            gap: 16px;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            color: var(--muted);
        }

        .legend-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .legend-dot.violet { background: var(--violet); }
        .legend-dot.green { background: var(--green); }

        .trend-chart {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            height: 100px;
            gap: 6px;
        }

        .trend-bar-group {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }

        .trend-bars {
            display: flex;
            gap: 3px;
            align-items: flex-end;
        }

        .trend-bar {
            width: 12px;
            border-radius: 2px 2px 0 0;
        }

        .trend-label {
            font-size: 9px;
            color: var(--muted);
        }

        /* ========== ANALYTICS FEATURES SECTION - LIGHT MODE ========== */
        .features-section {
            padding: 120px 48px;
            position: relative;
            background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
        }

        .features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse 500px 400px at 15% 40%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse 450px 350px at 85% 60%, rgba(236, 72, 153, 0.06) 0%, transparent 55%);
            pointer-events: none;
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .features-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .features-header .section-badge {
            background: rgba(129, 103, 234, 0.1);
            border-color: rgba(129, 103, 234, 0.2);
            color: var(--violet);
        }

        .features-header h2 {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            letter-spacing: -1.5px;
            margin-bottom: 16px;
            color: var(--dark-text);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .feature-card {
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 20px;
            padding: 40px 32px;
            transition: all 0.4s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: rgba(129, 103, 234, 0.3);
            box-shadow: 0 20px 60px rgba(129, 103, 234, 0.15);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            background: rgba(129, 103, 234, 0.1);
        }

        .feature-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--violet);
            stroke-width: 1.5;
            fill: none;
        }

        .feature-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--dark-text);
        }

        .feature-card p {
            font-size: 15px;
            color: var(--muted);
            line-height: 1.6;
        }

        /* ========== REPORTS SECTION ========== */
        .reports-section {
            padding: 120px 48px;
            position: relative;
        }

        .reports-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse 500px 400px at 50% 30%, rgba(124, 92, 252, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }

        .reports-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .reports-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .reports-header h2 {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            letter-spacing: -1.5px;
            margin-bottom: 16px;
            color: var(--white);
        }

        .reports-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .report-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .report-card:hover {
            transform: translateY(-8px);
            border-color: rgba(129, 103, 234, 0.3);
            box-shadow: 0 20px 60px rgba(129, 103, 234, 0.15);
        }

        .report-preview {
            background: rgba(15, 12, 35, 0.8);
            padding: 24px;
            height: 180px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .report-line {
            height: 8px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.1);
        }

        .report-line.title {
            width: 60%;
            background: linear-gradient(90deg, var(--violet), rgba(129, 103, 234, 0.3));
        }

        .report-line.short {
            width: 45%;
        }

        .report-line.medium {
            width: 70%;
        }

        .report-line.long {
            width: 85%;
        }

        .report-info {
            padding: 24px;
        }

        .report-info h4 {
            font-size: 18px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        .report-info p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.5;
        }

        /* ========== BEFORE VS AFTER SECTION ========== */
        .comparison-section {
            padding: 120px 48px;
            position: relative;
        }

        .comparison-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse 600px 400px at 30% 50%, rgba(139, 92, 246, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse 500px 400px at 70% 60%, rgba(6, 182, 212, 0.1) 0%, transparent 55%);
            pointer-events: none;
        }

        .comparison-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .comparison-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .comparison-header h2 {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            letter-spacing: -1.5px;
            margin-bottom: 16px;
            color: var(--white);
        }

        .comparison-header p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.6);
        }

        .comparison-table {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            overflow: hidden;
        }

        .comparison-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

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

        .comparison-row.header {
            background: rgba(255, 255, 255, 0.03);
        }

        .comparison-cell {
            padding: 20px 24px;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.8);
        }

        .comparison-cell.metric {
            font-weight: 600;
            color: rgba(255, 255, 255, 0.6);
            border-right: 1px solid rgba(255, 255, 255, 0.06);
        }

        .comparison-cell.header-cell {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 16px 24px;
        }

        .comparison-cell.without {
            color: rgba(255, 255, 255, 0.5);
            text-align: center;
        }

        .comparison-cell.with {
            color: var(--green);
            font-weight: 600;
            text-align: center;
            background: rgba(34, 197, 94, 0.05);
        }

        .comparison-cell.header-cell.without {
            color: rgba(255, 255, 255, 0.5);
        }

        .comparison-cell.header-cell.with {
            color: var(--green);
            background: rgba(34, 197, 94, 0.08);
        }

        /* ========== ROI CALCULATOR SECTION (Original Layout) ========== */
        .calculator-section {
            padding: 120px 48px;
            position: relative;
        }

        .calculator-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse 600px 500px at 50% 30%, rgba(124, 92, 252, 0.2) 0%, transparent 60%),
                radial-gradient(ellipse 400px 350px at 30% 70%, rgba(6, 182, 212, 0.12) 0%, transparent 55%);
            pointer-events: none;
        }

        .calculator-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .calculator-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .calculator-text {
            /* Static - no animation */
        }

        .calculator-text h2 {
            font-size: clamp(36px, 4vw, 52px);
            font-weight: 800;
            letter-spacing: -1.5px;
            margin-bottom: 20px;
            line-height: 1.1;
            color: var(--white);
        }

        .calculator-text > p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .calculator-features {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .calculator-feature {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.85);
        }

        .calculator-feature-check {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(34, 197, 94, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .calculator-feature-check svg {
            width: 14px;
            height: 14px;
            stroke: var(--green);
            stroke-width: 2.5;
            fill: none;
        }

        .calculator-card {
            background: rgba(20, 15, 45, 0.8);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 28px;
            padding: 40px;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
        }

        .calculator-card-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .calculator-card-header h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--white);
        }

        .calculator-card-header p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
        }

        .calculator-inputs {
            display: flex;
            flex-direction: column;
            gap: 28px;
            margin-bottom: 32px;
        }

        .calculator-row {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .calculator-label {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .calculator-label span:first-child {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .calculator-value {
            font-size: 18px;
            font-weight: 700;
            color: var(--white);
        }

        input[type="range"] {
            width: 100%;
            height: 6px;
            border-radius: 3px;
            background: rgba(255, 255, 255, 0.1);
            outline: none;
            -webkit-appearance: none;
            cursor: pointer;
        }

        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--violet);
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(129, 103, 234, 0.5);
            transition: all 0.2s ease;
        }

        input[type="range"]::-webkit-slider-thumb:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 15px rgba(129, 103, 234, 0.7);
        }

        input[type="range"]::-moz-range-thumb {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--violet);
            cursor: pointer;
            border: none;
            box-shadow: 0 2px 10px rgba(129, 103, 234, 0.5);
        }

        .calculator-result {
            text-align: center;
            padding: 32px;
            background: rgba(129, 103, 234, 0.08);
            border-radius: 20px;
            border: 1px solid rgba(129, 103, 234, 0.2);
        }

        .result-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        .result-value {
            font-size: 56px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--violet) 0%, var(--accent-pink) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 8px;
        }

        .result-subtitle {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
        }

        /* Lead Capture Form */
        .lead-capture-section {
            margin-top: 60px;
            padding-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .lead-capture-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .lead-capture-text h3 {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
            color: var(--white);
        }

        .lead-capture-text p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .report-highlights {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .report-highlight {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }

        .report-highlight-icon {
            width: 24px;
            height: 24px;
            border-radius: 6px;
            background: rgba(129, 103, 234, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .report-highlight-icon svg {
            width: 12px;
            height: 12px;
            stroke: var(--violet-light);
            stroke-width: 2;
            fill: none;
        }

        .lead-form-card {
            background: rgba(20, 15, 45, 0.8);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 36px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
        }

        .lead-form-header {
            text-align: center;
            margin-bottom: 28px;
        }

        .lead-form-header h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--white);
        }

        .lead-form-header p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
        }

        .lead-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .form-group.full-width {
            grid-column: span 2;
        }

        .form-label {
            font-size: 12px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-input {
            width: 100%;
            padding: 14px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: var(--white);
            font-size: 15px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            transition: all 0.3s ease;
        }

        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--violet);
            background: rgba(129, 103, 234, 0.08);
            box-shadow: 0 0 0 3px rgba(129, 103, 234, 0.15);
        }

        .form-select {
            width: 100%;
            padding: 14px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: var(--white);
            font-size: 15px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            transition: all 0.3s ease;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a78bfa' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            cursor: pointer;
        }

        .form-select:focus {
            outline: none;
            border-color: var(--violet);
            background-color: rgba(129, 103, 234, 0.08);
            box-shadow: 0 0 0 3px rgba(129, 103, 234, 0.15);
        }

        .form-select option {
            background: #1a1333;
            color: var(--white);
        }

        .btn-submit {
            width: 100%;
            padding: 16px 24px;
            background: var(--gradient-violet);
            color: var(--white);
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(129, 103, 234, 0.4);
            margin-top: 8px;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(129, 103, 234, 0.5);
        }

        .form-disclaimer {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
            text-align: center;
            margin-top: 12px;
        }

        .form-disclaimer a {
            color: var(--violet-light);
            text-decoration: none;
        }

        .form-disclaimer a:hover {
            text-decoration: underline;
        }

        @media (max-width: 992px) {
            .lead-capture-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .lead-capture-text {
                text-align: center;
            }

            .report-highlights {
                align-items: center;
            }
        }

        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
            }

            .form-group.full-width {
                grid-column: span 1;
            }

            .lead-form-card {
                padding: 24px;
            }
        }

        /* ========== TESTIMONIAL SECTION - LIGHT MODE ========== */
        .testimonial-section {
            padding: 100px 48px;
            position: relative;
            background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
        }

        .testimonial-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .testimonial-section .section-badge {
            background: rgba(129, 103, 234, 0.1);
            border-color: rgba(129, 103, 234, 0.2);
            color: var(--violet);
        }

        .testimonial-quote {
            font-size: 28px;
            font-weight: 500;
            line-height: 1.6;
            margin-bottom: 40px;
            font-family: 'Instrument Serif', Georgia, serif;
            font-style: italic;
            color: var(--dark-text);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .testimonial-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--violet), var(--accent-pink));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            color: white;
        }

        .testimonial-info h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 4px;
            text-align: left;
        }

        .testimonial-info p {
            font-size: 14px;
            color: var(--muted);
            text-align: left;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            padding: 140px 48px;
            position: relative;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse 700px 500px at 50% 50%, rgba(124, 92, 252, 0.25) 0%, transparent 60%),
                radial-gradient(ellipse 500px 400px at 30% 30%, rgba(168, 85, 247, 0.15) 0%, transparent 55%),
                radial-gradient(ellipse 500px 400px at 70% 70%, rgba(236, 72, 153, 0.12) 0%, transparent 55%);
            pointer-events: none;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            font-size: clamp(40px, 5vw, 64px);
            font-weight: 800;
            letter-spacing: -2px;
            margin-bottom: 24px;
            line-height: 1.1;
            color: var(--white);
        }

        .cta-section > .cta-container > p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 48px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }

        .cta-note {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
        }

        .cta-note span {
            color: var(--green);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1200px) {
            .reports-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .hero {
                padding: 120px 24px 80px;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 48px;
                text-align: center;
            }

            .hero-subtitle {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-ctas {
                justify-content: center;
            }

            .hero-visual {
                max-width: 600px;
                margin: 0 auto;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .view-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .view-mockup {
                order: -1;
            }

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

            .calculator-content {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .calculator-text {
                text-align: center;
            }

            .calculator-features {
                align-items: center;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 100px 20px 60px;
            }

            .hero h1 {
                font-size: 32px;
                letter-spacing: -1.5px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .hero-ctas {
                flex-direction: column;
                gap: 12px;
            }

            .hero-ctas .btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            .metrics-row {
                grid-template-columns: 1fr;
            }

            .hero-metric-value {
                font-size: 36px;
            }

            .section-badge {
                padding: 8px 14px;
            }

            .stats-section,
            .dashboard-section,
            .features-section,
            .reports-section,
            .comparison-section,
            .calculator-section,
            .testimonial-section,
            .cta-section {
                padding: 60px 20px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .stat-number {
                font-size: 40px;
            }

            .dashboard-tabs {
                flex-wrap: wrap;
                border-radius: 20px;
                padding: 8px;
            }

            .dashboard-tab {
                padding: 10px 18px;
                font-size: 13px;
            }

            .features-grid,
            .reports-grid {
                grid-template-columns: 1fr;
            }

            .comparison-row {
                grid-template-columns: 1fr;
            }

            .comparison-cell {
                text-align: center !important;
                border-right: none !important;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }

            .comparison-cell.metric {
                background: rgba(255, 255, 255, 0.02);
                font-weight: 700;
            }

            .calculator-card {
                padding: 28px 20px;
            }

            .result-value {
                font-size: 40px;
            }

            .testimonial-quote {
                font-size: 22px;
            }

            .cta-section h2 {
                font-size: 32px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
    