        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }

        :root {
            --primary: #4361ee;
            --primary-light: #4895ef;
            --primary-dark: #3a0ca3;
            --secondary: #4cc9f0;
            --dark-bg: #0f172a;
            --darker-bg: #0a0f1c;
            --light-text: #f8fafc;
            --muted-text: rgba(248, 250, 252, 0.7);
            --border-color: rgba(248, 250, 252, 0.1);
            --card-bg: rgba(15, 23, 42, 0.6);
            --header-height: 80px;
            --border-radius: 12px;
            --transition-normal: all 0.3s ease;
            --transition-smooth: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        body {
            background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
            color: var(--light-text);
            overflow-x: hidden;
            line-height: 1.6;
            font-weight: 400;
        }

        /* Typography */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.2;
        }

        p {
            margin-bottom: 1.5rem;
        }

        a {
            text-decoration: none;
            color: var(--primary-light);
            transition: var(--transition-normal);
        }

        a:hover {
            color: var(--secondary);
        }

        /* Layout */
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        section {
            padding: 7rem 0;
            position: relative;
        }

        /* Header & Navigation */
        header {
            padding: 0 5%;
            height: var(--header-height);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            background: rgba(10, 15, 28, 0.85);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        header.scrolled {
            height: 70px;
            background: rgba(10, 15, 28, 0.92);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

        .logo {
            font-size: 1.7rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary-light), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            letter-spacing: -0.5px;
            transition: all 0.3s ease;
        }

        .logo:hover {
            transform: translateY(-1px);
        }

        .logo-icon {
            font-size: 1.8rem;
            color: var(--primary-light);
            transition: all 0.3s ease;
        }

        .logo:hover .logo-icon {
            transform: rotate(20deg);
        }

        .navbar {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        nav ul {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        nav ul li a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            color: var(--primary-light);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-light), var(--secondary));
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .nav-cta {
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 50px;
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 4px 15px rgba(67, 97, 238, 0.4);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(67, 97, 238, 0.5);
            color: white;
        }

        .nav-cta i {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .nav-cta:hover i {
            transform: translateX(3px);
        }

        /* Mobile Menu Styles */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light-text);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
            padding: 0.5rem;
            margin-left: auto;
            transition: all 0.3s ease;
            -webkit-tap-highlight-color: transparent;
        }

        .mobile-menu-btn:hover {
            color: var(--primary-light);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(10, 15, 28, 0.98);
            backdrop-filter: blur(10px);
            z-index: 999;
            padding: 5rem 2rem 2rem;
            transform: translateY(-100%);
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .mobile-menu.active {
            display: block;
            transform: translateY(0);
        }

        .mobile-menu ul {
            list-style: none;
            padding: 0;
        }

        .mobile-menu ul li {
            margin-bottom: 1.5rem;
            text-align: center;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        .mobile-menu.active ul li {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu.active ul li:nth-child(1) {
            transition-delay: 0.1s;
        }

        .mobile-menu.active ul li:nth-child(2) {
            transition-delay: 0.2s;
        }

        .mobile-menu.active ul li:nth-child(3) {
            transition-delay: 0.3s;
        }

        .mobile-menu.active ul li:nth-child(4) {
            transition-delay: 0.4s;
        }

        .mobile-menu.active ul li:nth-child(5) {
            transition-delay: 0.5s;
        }

        .mobile-menu ul li a {
            color: var(--light-text);
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 500;
            display: inline-block;
            padding: 0.8rem 1.5rem;
            transition: all 0.3s ease;
            border-radius: 8px;
            width: 100%;
            max-width: 250px;
        }

        .mobile-menu ul li a:hover {
            background: rgba(67, 97, 238, 0.1);
            color: var(--primary-light);
            transform: translateY(-2px);
        }

        .mobile-menu ul li:last-child a {
            margin-top: 1rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(67, 97, 238, 0.4);
        }

        .mobile-menu ul li:last-child a:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(67, 97, 238, 0.5);
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition-smooth);
            cursor: pointer;
            font-size: 0.95rem;
            gap: 0.5rem;
            border: none;
            outline: none;
            text-align: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: var(--light-text);
            box-shadow: 0 4px 15px rgba(67, 97, 238, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(67, 97, 238, 0.5);
            color: white;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-light);
            color: var(--primary-light);
        }

        .btn-outline:hover {
            background: rgba(67, 97, 238, 0.1);
            color: var(--secondary);
            border-color: var(--secondary);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: var(--header-height) 5% 0;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            width: 50%;
            z-index: 2;
        }

        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            letter-spacing: -0.5px;
        }

        .highlight {
            background: linear-gradient(90deg, var(--primary-light), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline;
        }

        .hero-description {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            color: var(--muted-text);
            max-width: 85%;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
        }

        .hero-image {
            position: absolute;
            width: 45%;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1;
        }

        .floating {
            animation: float 4s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(-50%) translateX(0);
            }

            50% {
                transform: translateY(-50%) translateX(10px) translateY(-10px);
            }

            100% {
                transform: translateY(-50%) translateX(0);
            }
        }

        /* Animated gradient background */
        .bg-gradient {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 0;
            background: radial-gradient(circle at 15% 50%, rgba(67, 97, 238, 0.08), transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(76, 201, 240, 0.08), transparent 25%);
        }

        /* Shapes */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            background: rgba(67, 97, 238, 0.1);
            border-radius: 10px;
            transform: rotate(10deg);
        }

        /* App Demo Styles (preserved) */
        .app-demo {
            width: 100%;
            background: rgba(15, 23, 42, 0.9);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            position: relative;
            border: 1px solid rgba(248, 250, 252, 0.1);
        }

        .demo-header-bar {
            background: rgba(10, 15, 28, 0.9);
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(248, 250, 252, 0.05);
        }

        .demo-title {
            color: var(--primary-light);
            font-weight: 600;
        }

        .demo-dots {
            display: flex;
            gap: 0.5rem;
        }

        .demo-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .demo-dot:nth-child(1) {
            background: #ff5f56;
        }

        .demo-dot:nth-child(2) {
            background: #ffbd2e;
        }

        .demo-dot:nth-child(3) {
            background: #27c93f;
        }

        .demo-content {
            padding: 2rem;
        }

        .demo-text-area {
            background: rgba(248, 250, 252, 0.05);
            border: 1px solid rgba(248, 250, 252, 0.1);
            border-radius: 8px;
            padding: 1rem;
            color: var(--muted-text);
            font-family: 'SF Mono', SFMono-Regular, ui-monospace, 'DejaVu Sans Mono', Menlo, Consolas, monospace;
            margin-bottom: 1rem;
            position: relative;
            min-height: 150px;
            line-height: 1.6;
        }

        .demo-text-area::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent 0%, rgba(67, 97, 238, 0.1) 50%, transparent 100%);
            background-size: 200% 100%;
            animation: loading 2s linear infinite;
            border-radius: 8px;
        }

        @keyframes loading {
            0% {
                background-position: 200% 0;
            }

            100% {
                background-position: -200% 0;
            }
        }

        .demo-cursor {
            display: inline-block;
            width: 2px;
            height: 18px;
            background: var(--primary-light);
            margin-left: 5px;
            animation: blink 1s step-end infinite;
            vertical-align: middle;
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0;
            }
        }

        .demo-button {
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(67, 97, 238, 0.4);
        }

        .demo-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(67, 97, 238, 0.5);
        }

        /* Quiz Container Styles (preserved for hero interaction) */
        .quiz-container {
            background: rgba(248, 250, 252, 0.05);
            border-radius: 10px;
            padding: 1.5rem;
            margin-top: 2rem;
            border: 1px solid rgba(248, 250, 252, 0.1);
            transition: all 0.4s ease-out;
            opacity: 0;
            transform: translateY(20px);
            backface-visibility: hidden;
        }

        .quiz-container.visible {
            opacity: 1;
            transform: translateY(0) translateZ(0);
        }

        .quiz-question {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }

        .quiz-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .quiz-option {
            background: rgba(248, 250, 252, 0.05);
            border: 1px solid rgba(248, 250, 252, 0.1);
            padding: 1rem;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition-normal);
        }

        .quiz-option:hover {
            background: rgba(67, 97, 238, 0.1);
            border-color: var(--primary-light);
        }

        .quiz-option.correct {
            background: rgba(39, 201, 63, 0.15);
            border-color: rgba(39, 201, 63, 0.5);
        }

        .quiz-option.incorrect {
            background: rgba(255, 95, 86, 0.15);
            border-color: rgba(255, 95, 86, 0.5);
        }

        .quiz-feedback {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 8px;
            font-size: 0.95rem;
            line-height: 1.5;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transform: translateY(-10px) scale(0.98) translateZ(0);
            transition:
                opacity 0.65s cubic-bezier(0.33, 1, 0.68, 1),
                transform 0.75s cubic-bezier(0.34, 1.56, 0.64, 1),
                max-height 0.65s cubic-bezier(0.33, 1, 0.68, 1),
                margin 0.65s cubic-bezier(0.33, 1, 0.68, 1),
                box-shadow 0.65s cubic-bezier(0.33, 1, 0.68, 1);
            will-change: transform, opacity, max-height;
            pointer-events: none;
            transform-origin: center top;
            backface-visibility: hidden;
        }

        .quiz-feedback.active {
            max-height: 300px;
            opacity: 1;
            transform: translateY(0) scale(1) translateZ(0);
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            pointer-events: auto;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .quiz-feedback.correct {
            background: rgba(39, 201, 63, 0.1);
            border: 1px solid rgba(39, 201, 63, 0.3);
            color: #4ade80;
        }

        .quiz-feedback.incorrect {
            background: rgba(255, 95, 86, 0.1);
            border: 1px solid rgba(255, 95, 86, 0.3);
            color: #fb7185;
        }

        .ai-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(67, 97, 238, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 600;
            margin-top: 1rem;
            font-size: 0.85rem;
            color: var(--primary-light);
        }

        /* Features Section */
        .features {
            padding: 7rem 5%;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(10, 15, 28, 0.95));
            position: relative;
            overflow: hidden;
        }

        .features::before,
        .features::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
        }

        .features::before {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(67, 97, 238, 0.15), transparent 70%);
            top: 5%;
            left: -5%;
            animation: pulse 15s ease-in-out infinite;
        }

        .features::after {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(76, 201, 240, 0.1), transparent 70%);
            bottom: 5%;
            right: -5%;
            animation: pulse 15s ease-in-out infinite reverse;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.5;
            }

            50% {
                transform: scale(1.3);
                opacity: 0.8;
            }

            100% {
                transform: scale(1);
                opacity: 0.5;
            }
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-light), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            z-index: 2;
            letter-spacing: -0.5px;
        }

        .section-subtitle {
            text-align: center;
            color: var(--muted-text);
            font-size: 1.15rem;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 2;
            line-height: 1.6;
        }

        /* New feature layout styles */
        .features-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 5;
        }

        .feature-row {
            display: flex;
            align-items: center;
            margin-bottom: 8rem;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .feature-row:last-child {
            margin-bottom: 0;
        }

        .feature-row.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .feature-row:nth-child(even) {
            flex-direction: row-reverse;
        }

        .feature-content {
            flex: 1;
            padding: 2rem;
        }

        .feature-image-container {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .feature-image {
            width: 90%;
            max-width: 500px;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
            transform: translateY(20px);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            opacity: 0;
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(67, 97, 238, 0.2);
            overflow: hidden;
            will-change: transform, opacity;
        }

        .feature-row:nth-child(even) .feature-image {
            transform: translateY(20px);
        }

        .feature-image.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .feature-row:hover .feature-image {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 20px rgba(67, 97, 238, 0.15);
            border-color: rgba(67, 97, 238, 0.3);
        }

        .feature-tag {
            display: inline-block;
            padding: 0.4rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--primary-light);
            background: rgba(67, 97, 238, 0.1);
            margin-bottom: 1rem;
        }

        .feature-title {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--light-text);
            transition: var(--transition-normal);
            letter-spacing: -0.5px;
        }

        .feature-description {
            color: var(--muted-text);
            line-height: 1.7;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .feature-points {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }

        .feature-points li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 0.7rem;
            color: var(--muted-text);
        }

        .feature-points li i {
            color: var(--primary-light);
            margin-right: 0.7rem;
            margin-top: 0.3rem;
            font-size: 0.8rem;
        }

        .feature-cta {
            margin-top: 1rem;
        }

        .feature-cta .btn {
            font-size: 0.95rem;
        }

        .feature-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.05), rgba(76, 201, 240, 0.05));
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 12px;
        }

        .feature-row:hover .feature-image-overlay {
            opacity: 1;
        }

        .image-decoration {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            opacity: 0.15;
            z-index: -1;
        }

        .image-decoration.one {
            width: 150px;
            height: 150px;
            top: -30px;
            right: 20%;
            filter: blur(30px);
        }

        .image-decoration.two {
            width: 100px;
            height: 100px;
            bottom: -20px;
            left: 10%;
            filter: blur(20px);
        }

        /* Screen image inner elements */
        .screen-content {
            padding: 1.5rem;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .screen-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .screen-dots {
            display: flex;
            gap: 5px;
        }

        .screen-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .screen-dot:nth-child(1) {
            background: #ff5f56;
        }

        .screen-dot:nth-child(2) {
            background: #ffbd2e;
        }

        .screen-dot:nth-child(3) {
            background: #27c93f;
        }

        .screen-title {
            margin-left: 1rem;
            font-size: 0.9rem;
            color: var(--muted-text);
        }

        .screen-body {
            flex: 1;
            overflow: hidden;
        }

        /* Responsive styles for features */
        @media (max-width: 992px) {
            .feature-row {
                margin-bottom: 5rem;
            }

            .feature-title {
                font-size: 1.8rem;
            }

            .feature-description {
                font-size: 1rem;
            }
        }

        @media (max-width: 768px) {

            .feature-row,
            .feature-row:nth-child(even) {
                flex-direction: column;
                text-align: center;
            }

            .feature-content {
                padding: 1rem 0 2rem;
                order: 2;
            }

            .feature-image-container {
                order: 1;
                margin-bottom: 2rem;
            }

            .feature-image {
                width: 100%;
                max-width: 400px;
            }

            .feature-points li {
                justify-content: center;
            }

            .feature-points li i {
                margin-top: 0.25rem;
            }

            .feature-cta {
                display: flex;
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .feature-row {
                margin-bottom: 4rem;
            }

            .feature-title {
                font-size: 1.6rem;
            }
        }

        /* Utility Classes */
        .flex {
            display: flex;
        }

        .justify-between {
            justify-content: space-between;
        }

        .items-center {
            align-items: center;
        }

        .gap-2 {
            gap: 0.5rem;
        }

        .mb-2 {
            margin-bottom: 0.5rem;
        }

        .hidden {
            display: none;
        }

        /* Quiz Loading Animation */
        .quiz-loading {
            text-align: center;
            padding: 2rem 0;
            color: var(--light-text);
        }

        .loading-dots {
            display: flex;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .loading-dots span {
            width: 10px;
            height: 10px;
            margin: 0 5px;
            border-radius: 50%;
            background-color: var(--primary-light);
            animation: loading-dots 1.4s infinite ease-in-out both;
        }

        .loading-dots span:nth-child(1) {
            animation-delay: -0.32s;
        }

        .loading-dots span:nth-child(2) {
            animation-delay: -0.16s;
        }

        @keyframes loading-dots {

            0%,
            80%,
            100% {
                transform: scale(0);
            }

            40% {
                transform: scale(1.0);
            }
        }

        /* Pricing Section */
        .pricing {
            padding: 7rem 5%;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(10, 15, 28, 0.97), rgba(15, 23, 42, 0.97));
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1280px;
            margin: 3rem auto;
            position: relative;
            z-index: 2;
        }

        .pricing-card {
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            padding: 3rem 2rem;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            border-color: rgba(67, 97, 238, 0.3);
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.2),
                0 0 20px rgba(67, 97, 238, 0.15);
        }

        .pricing-card.popular {
            background: rgba(15, 23, 42, 0.7);
            border: 2px solid rgba(67, 97, 238, 0.3);
            transform: scale(1.05);
            z-index: 2;
        }

        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-8px);
            border-color: rgba(67, 97, 238, 0.5);
            box-shadow:
                0 25px 50px rgba(0, 0, 0, 0.25),
                0 0 30px rgba(67, 97, 238, 0.2);
        }

        .popular-badge {
            position: absolute;
            top: 1.25rem;
            right: 1.25rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 700;
            color: white;
            box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);
        }

        .plan-name {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            transition: var(--transition-normal);
            color: var(--light-text);
        }

        .pricing-card.popular .plan-name {
            font-size: 2rem;
            background: linear-gradient(135deg, var(--primary-light), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shineGradient 3s linear infinite;
        }

        @keyframes shineGradient {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .plan-price {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 0.5rem;
            background: -webkit-linear-gradient(var(--light-text), rgba(248, 250, 252, 0.7));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .plan-billing {
            color: var(--muted-text);
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        .plan-features {
            list-style: none;
            padding: 0;
            margin: 0;
            flex-grow: 1;
        }

        .plan-features li {
            margin: 0.8rem 0;
            color: var(--muted-text);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1rem;
        }

        .feature-check {
            color: var(--primary-light);
            font-size: 1.2em;
        }

        .pricing-card .btn {
            margin-top: 2rem;
            width: 100%;
        }

        /* CTA Section */
        .cta {
            padding: 7rem 5%;
            text-align: center;
            position: relative;
            background: linear-gradient(135deg, rgba(10, 15, 28, 0.97), rgba(15, 23, 42, 0.97));
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(67, 97, 238, 0.1) 0%, transparent 70%);
            z-index: 1;
        }

        .cta-title {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
            background: linear-gradient(135deg, var(--light-text), rgba(248, 250, 252, 0.8));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
        }

        .cta-description {
            font-size: 1.2rem;
            color: var(--muted-text);
            margin-bottom: 2.5rem;
            position: relative;
            z-index: 2;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta .btn-primary {
            position: relative;
            z-index: 2;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
        }

        /* Footer */
        footer {
            background: rgba(10, 15, 28, 0.95);
            padding: 6rem 5% 3rem;
            position: relative;
            overflow: hidden;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 4rem;
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-light), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.5rem;
            letter-spacing: -0.5px;
        }

        .footer-description {
            color: var(--muted-text);
            line-height: 1.7;
            font-size: 1rem;
        }

        .footer-title {
            font-size: 1.25rem;
            color: var(--light-text);
            margin-bottom: 2rem;
            position: relative;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -0.75rem;
            left: 0;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-light), transparent);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-links li a {
            color: var(--muted-text);
            text-decoration: none;
            transition: var(--transition-normal);
            font-size: 1rem;
            display: inline-block;
        }

        .footer-links li a:hover {
            color: var(--primary-light);
            transform: translateX(5px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(248, 250, 252, 0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            position: relative;
            z-index: 2;
        }

        .copyright {
            color: var(--muted-text);
            font-size: 0.95rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 38px;
            height: 38px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(248, 250, 252, 0.05);
            border-radius: 50%;
            transition: var(--transition-smooth);
            color: var(--muted-text);
        }

        .social-link:hover {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(67, 97, 238, 0.3);
        }

        /* Cookie Consent Banner */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            display: none;
            border: 1px solid rgba(67, 97, 238, 0.2);
            transform-origin: center bottom;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            opacity: 0;
            transform: translateY(20px) scale(0.95);
        }

        .cookie-banner.visible {
            display: block;
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .cookie-banner.hiding {
            display: block;
            opacity: 0;
            transform: translateY(20px) scale(0.95);
            pointer-events: none;
        }

        .cookie-content {
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .cookie-content p {
            margin: 0;
            flex: 1;
            min-width: 300px;
            color: var(--muted-text);
            line-height: 1.6;
        }

        .cookie-content a {
            color: var(--primary-light);
            text-decoration: none;
            transition: var(--transition-normal);
        }

        .cookie-content a:hover {
            text-decoration: underline;
            color: var(--secondary);
        }

        .cookie-buttons {
            display: flex;
            gap: 15px;
        }

        .cookie-btn {
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-smooth);
            border: none;
            font-size: 0.9rem;
        }

        .cookie-btn.accept {
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            color: white;
            box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
        }

        .cookie-btn.settings {
            background: transparent;
            color: var(--light-text);
            border: 1px solid rgba(248, 250, 252, 0.2);
        }

        .cookie-btn:hover {
            transform: translateY(-2px);
        }

        .cookie-btn.accept:hover {
            box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
        }

        .cookie-btn.settings:hover {
            background: rgba(248, 250, 252, 0.05);
        }

        /* Animation Classes */
        .animate-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .animate-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Demo Section */
        .demo {
            padding: 7rem 5%;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(10, 15, 28, 0.97), rgba(15, 23, 42, 0.97));
        }

        .demo-container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
        }

        .demo-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .demo-title {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--primary-light), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .demo-subtitle {
            color: var(--muted-text);
            font-size: 1.15rem;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .workflow-container {
            position: relative;
            display: flex;
            flex-direction: column;
            margin-bottom: 4rem;
        }

        .workflow-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom,
                    rgba(67, 97, 238, 0.1),
                    rgba(67, 97, 238, 0.3),
                    rgba(67, 97, 238, 0.6),
                    rgba(76, 201, 240, 0.4),
                    rgba(76, 201, 240, 0.2));
            transform: translateX(-50%);
            z-index: 1;
            border-radius: 4px;
        }

        .workflow-step {
            display: flex;
            align-items: center;
            margin-bottom: 8rem;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .workflow-step:last-child {
            margin-bottom: 0;
        }

        .workflow-step.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .workflow-step:nth-child(even) {
            flex-direction: row-reverse;
        }

        .workflow-number {
            position: absolute;
            left: 50%;
            top: 20px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(15, 23, 42, 0.9);
            border: 3px solid rgba(67, 97, 238, 0.4);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-light);
            transform: translateX(-50%);
            z-index: 3;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
        }

        .workflow-step:hover .workflow-number {
            transform: translateX(-50%) scale(1.1);
            background: rgba(15, 23, 42, 0.95);
            border-color: rgba(76, 201, 240, 0.6);
            color: var(--secondary);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(67, 97, 238, 0.2);
        }

        .workflow-content {
            flex: 1;
            padding: 2rem 3rem;
            max-width: 45%;
        }

        .workflow-step:nth-child(odd) .workflow-content {
            text-align: right;
            margin-right: auto;
        }

        .workflow-step:nth-child(even) .workflow-content {
            text-align: left;
            margin-left: auto;
        }

        .workflow-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--light-text);
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .workflow-step:hover .workflow-title {
            color: var(--primary-light);
            transform: translateY(-2px);
        }

        .workflow-description {
            color: var(--muted-text);
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 0;
        }

        .workflow-image-container {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .workflow-image {
            width: 90%;
            max-width: 450px;
            aspect-ratio: 16/9;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
            border: 1px solid rgba(67, 97, 238, 0.2);
            transform: translateY(20px);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            opacity: 0;
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(10px);
            will-change: transform, opacity;
        }

        .workflow-image.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .workflow-step:hover .workflow-image {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 20px rgba(67, 97, 238, 0.2);
            border-color: rgba(67, 97, 238, 0.3);
        }

        .workflow-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .demo-cta {
            text-align: center;
            margin-top: 4rem;
        }

        .demo-cta .btn {
            padding: 1rem 2rem;
            font-size: 1.1rem;
            min-width: 220px;
        }

        /* Decoration */
        .workflow-decoration {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            opacity: 0.1;
            z-index: 0;
            filter: blur(50px);
        }

        .workflow-decoration.one {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 5%;
            animation: float 15s ease-in-out infinite;
        }

        .workflow-decoration.two {
            width: 250px;
            height: 250px;
            bottom: 15%;
            right: 8%;
            animation: float 12s ease-in-out infinite reverse;
        }

        @media (max-width: 992px) {
            .workflow-content {
                padding: 1.5rem;
                max-width: 42%;
            }

            .workflow-title {
                font-size: 1.6rem;
            }

            .workflow-description {
                font-size: 1rem;
            }
        }

        @media (max-width: 768px) {
            .workflow-line {
                left: 30px;
                transform: none;
            }

            .workflow-step,
            .workflow-step:nth-child(even) {
                flex-direction: column;
                margin-bottom: 5rem;
                padding-left: 60px;
            }

            .workflow-number {
                left: 30px;
                top: 0;
                transform: none;
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }

            .workflow-step:hover .workflow-number {
                transform: scale(1.1);
            }

            .workflow-content,
            .workflow-step:nth-child(odd) .workflow-content,
            .workflow-step:nth-child(even) .workflow-content {
                text-align: left;
                max-width: 100%;
                margin: 0;
                padding: 0;
                margin-top: 1.5rem;
                margin-bottom: 2rem;
            }

            .workflow-image-container {
                width: 100%;
            }

            .workflow-image {
                width: 100%;
            }
        }

        /* Responsive Styles */
        @media (max-width: 1280px) {
            .section-title {
                font-size: 2.5rem;
            }

            .hero-title {
                font-size: 3.2rem;
            }

            .cta-title {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 992px) {
            :root {
                --header-height: 70px;
            }

            .hero-title {
                font-size: 2.8rem;
            }

            .hero-description {
                font-size: 1.1rem;
                max-width: 95%;
            }

            .section-title {
                font-size: 2.3rem;
            }

            .demo-title {
                font-size: 2.5rem;
            }

            .workflow-content {
                padding: 1.5rem;
                max-width: 42%;
            }

            .workflow-title {
                font-size: 1.6rem;
            }

            .workflow-description {
                font-size: 1rem;
            }

            .plan-price {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 0 5%;
            }

            .navbar {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                padding: var(--header-height) 5% 3rem;
                flex-direction: column;
                text-align: center;
                min-height: auto;
                position: relative;
                display: block;
            }

            .hero-content {
                width: 100%;
                margin-bottom: 3rem;
                position: relative;
                z-index: 2;
            }

            .hero-title {
                font-size: 2.3rem;
            }

            .hero-description {
                font-size: 1.05rem;
                margin: 0 auto 2rem;
            }

            .hero-cta {
                justify-content: center;
                flex-wrap: wrap;
                gap: 1rem;
            }

            .hero-image {
                position: relative;
                width: 100%;
                max-width: 500px;
                right: auto;
                top: auto;
                transform: none;
                margin: 3rem auto 0;
                z-index: 1;
            }

            .hero-image.floating {
                animation: none;
            }

            .floating-elements {
                display: none;
            }

            .app-demo {
                margin: 0;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            }

            .features,
            .demo,
            .pricing,
            .cta {
                padding: 5rem 5%;
            }

            .section-title {
                font-size: 2rem;
            }

            .section-subtitle {
                font-size: 1.05rem;
                margin-bottom: 3rem;
            }

            .demo-title {
                font-size: 2.2rem;
            }

            .quiz-options {
                grid-template-columns: 1fr;
            }

            .pricing-card.popular {
                transform: scale(1);
            }

            .pricing-card.popular:hover {
                transform: translateY(-8px);
            }

            .feature-row,
            .feature-row:nth-child(even) {
                flex-direction: column;
                text-align: center;
            }

            .feature-content {
                padding: 1rem 0 2rem;
                order: 2;
            }

            .feature-image-container {
                order: 1;
                margin-bottom: 2rem;
            }

            .feature-image {
                width: 100%;
                max-width: 400px;
            }

            .feature-points li {
                justify-content: center;
            }

            .feature-points li i {
                margin-top: 0.25rem;
            }

            .feature-cta {
                display: flex;
                justify-content: center;
            }

            .workflow-line {
                left: 30px;
                transform: none;
            }

            .workflow-step,
            .workflow-step:nth-child(even) {
                flex-direction: column;
                margin-bottom: 5rem;
                padding-left: 60px;
            }

            .workflow-number {
                left: 30px;
                top: 0;
                transform: none;
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }

            .workflow-step:hover .workflow-number {
                transform: scale(1.1);
            }

            .workflow-content,
            .workflow-step:nth-child(odd) .workflow-content,
            .workflow-step:nth-child(even) .workflow-content {
                text-align: left;
                max-width: 100%;
                margin: 0;
                padding: 0;
                margin-top: 1.5rem;
                margin-bottom: 2rem;
            }

            .workflow-image-container {
                width: 100%;
            }

            .workflow-image {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.8rem;
                line-height: 1.3;
            }

            .hero-description {
                font-size: 1rem;
            }

            .btn {
                width: 100%;
                text-align: center;
                margin-bottom: 0.5rem;
                padding: 0.75rem 1rem;
                font-size: 0.9rem;
            }

            .section-title,
            .cta-title {
                font-size: 1.8rem;
                line-height: 1.3;
            }

            .section-subtitle,
            .cta-description {
                font-size: 0.95rem;
            }

            .feature-title {
                font-size: 1.5rem;
            }

            .feature-description {
                font-size: 0.95rem;
            }

            .plan-price {
                font-size: 2.5rem;
            }

            .footer-grid {
                gap: 2.5rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .social-links {
                justify-content: center;
            }

            .cookie-content {
                flex-direction: column;
                align-items: flex-start;
                padding: 1rem;
            }

            .cookie-buttons {
                width: 100%;
                justify-content: space-between;
            }

            .demo-header {
                margin-bottom: 3rem;
            }

            .workflow-step {
                margin-bottom: 4rem;
            }

            .workflow-title {
                font-size: 1.4rem;
            }

            .workflow-description {
                font-size: 0.95rem;
            }

            .demo-cta .btn {
                min-width: auto;
                width: 100%;
            }

            .pricing-cards {
                gap: 1.5rem;
            }

            .pricing-card {
                padding: 2rem 1.5rem;
            }
        }

        /* Add these new mobile optimizations */
        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.6rem;
            }

            .demo-dots,
            .screen-dots {
                gap: 0.3rem;
            }

            .demo-dot,
            .screen-dot {
                width: 8px;
                height: 8px;
            }

            .demo-content {
                padding: 1.5rem 1rem;
            }

            .quiz-option {
                padding: 0.8rem;
                font-size: 0.9rem;
            }

            .plan-name {
                font-size: 1.5rem;
            }

            .plan-features li {
                font-size: 0.9rem;
            }

            .feature-points li {
                font-size: 0.9rem;
            }

            .cookie-banner {
                left: 10px;
                right: 10px;
                bottom: 10px;
            }

            .cookie-btn {
                padding: 8px 15px;
                font-size: 0.8rem;
            }
        }

        /* --- NEW STYLES --- */

        /* 1. Live Badge */
        .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(76, 201, 240, 0.1);
            border: 1px solid rgba(76, 201, 240, 0.3);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(5px);
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background-color: #4ade80;
            border-radius: 50%;
            box-shadow: 0 0 10px #4ade80;
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
            }

            70% {
                transform: scale(1);
                box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
            }

            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
            }
        }

        /* 2. Pulse Button */
        .pulse-btn {
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(76, 201, 240, 0.4);
            animation: btn-pulse 2s infinite;
        }

        @keyframes btn-pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(76, 201, 240, 0.7);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(76, 201, 240, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(76, 201, 240, 0);
            }
        }

        /* 3. Pricing Layout */
        .pricing-cards.focused-layout {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .main-card {
            flex: 1;
            min-width: 320px;
            max-width: 450px;
            transform: scale(1.05);
            border: 2px solid var(--primary);
            background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7));
            z-index: 10;
        }

        .side-card {
            flex: 1;
            min-width: 300px;
            max-width: 350px;
            opacity: 0.9;
        }

        .plan-benefits {
            margin: 2rem 0;
            text-align: left;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            color: var(--light-text);
            font-size: 1.05rem;
        }

        .benefit-icon {
            color: var(--primary);
            width: 20px;
            text-align: center;
        }

        .free-plan-link {
            text-align: center;
            margin-top: 3rem;
            font-size: 0.95rem;
            color: var(--muted-text);
        }

        .free-plan-link a {
            color: var(--muted-text);
            text-decoration: underline;
        }

        .free-plan-link a:hover {
            color: var(--primary);
        }

        .trust-badges {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
            font-size: 0.9rem;
            color: var(--muted-text);
        }

        .trust-badges i {
            color: #fbbf24;
            /* Star color */
            margin-right: 0.5rem;
        }

        .plan-features.compact li {
            font-size: 0.9rem;
            padding: 0.3rem 0;
        }

        .full-width {
            width: 100%;
        }

        .trial-text {
            text-align: center;
            font-size: 0.8rem;
            color: var(--muted-text);
            margin-top: 0.8rem;
            margin-bottom: 0;
        }