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



        html,
        body {
            font-family: 'Inter', sans-serif;
            color: #1e293b;
            background: #f8fafc;
            line-height: 1.6;
            width: 100%;
            overflow-x: hidden;
            position: relative;
        }

        :root {
            --primary: #0d9488;
            --primary-light: #14b8a6;
            --primary-dark: #0f766e;
            --secondary: #f59e0b;
            --accent: #f43f5e;
            --text-main: #0f172a;
            --text-muted: #64748b;
            --bg-light: #f8fafc;
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(255, 255, 255, 0.5);
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: transparent;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 10px 0;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
            padding: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            transition: padding 0.4s ease;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: #0D9488;
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-links a:not(.nav-cta) {
            color: #334155;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:not(.nav-cta)::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: #0D9488;
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 2px;
        }

        .nav-links a:not(.nav-cta):hover {
            color: #0D9488;
        }

        .nav-links a:not(.nav-cta):hover::after {
            width: 100%;
        }

        .nav-cta {
            text-decoration: none;
            background: #0D9488;
            color: #fff !important;
            padding: 10px 24px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 14px 0 rgba(13, 148, 136, 0.3);
        }

        .nav-cta:hover {
            background: #0f766e;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
        }

        .mobile-menu-btn {
            display: none;
        }

        @media (max-width: 900px) {
            .nav-links {
                display: none;
            }

            .navbar .container {
                justify-content: space-between;
            }
        }

        /* Hero */
        .hero {
            padding: 160px 0 100px;
            background: #f8fafc;
            position: relative;
            /* overflow: hidden; Removed to allow blob bleed */
        }

        /* Ambient Organic Blobs */
        /* Ambient Organic Blobs */
        .ambient-blob-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* overflow: hidden; Removed to allow blob bleed */
            z-index: 0;
            pointer-events: none;
            opacity: 0.4;
        }

        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
        }

        .blob-1 {
            top: -10%;
            left: -10%;
            width: 700px;
            height: 700px;
            background: #2dd4bf;
            /* Teal 400 */
            opacity: 0.3;
            animation: blobMove 20s infinite alternate;
        }

        .blob-2 {
            bottom: -10%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: #0d9488;
            /* Teal 600 */
            opacity: 0.2;
            animation: blobMove 15s infinite alternate-reverse;
        }

        @keyframes blobMove {
            0% {
                transform: translate(0, 0) scale(1);
            }

            100% {
                transform: translate(50px, 30px) scale(1.1);
            }
        }

        .hero .container {
            display: grid;
            grid-template-columns: 0.85fr 1.25fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.75rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 28px;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #0f172a 0%, #0d9488 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: none;
        }

        .hero-glass-card {
            background: transparent;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            border: none;
            padding: 0;
            box-shadow: none;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(13, 148, 136, 0.1);
            color: #0f766e;
            padding: 6px 16px;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 20px;
            border: 1px solid rgba(13, 148, 136, 0.2);
        }

        .hero-subheading {
            font-size: 1.25rem;
            color: #475569;
            margin-bottom: 32px;
            max-width: 540px;
            line-height: 1.6;
            font-weight: 500;
        }

        .hero-bullets {
            list-style: none;
            margin-bottom: 32px;
        }

        .hero-bullets li {
            padding: 8px 0;
            padding-left: 28px;
            position: relative;
            color: #1e293b;
        }

        .hero-bullets li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #0d9488;
            font-weight: bold;
        }

        .btn-primary {
            display: inline-block;
            background: #0D9488;
            color: #fff;
            padding: 18px 36px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
            animation: btnPulse 2s infinite;
        }

        .hero .btn-primary {
            padding: 20px 64px;
            min-width: 280px;
            text-align: center;
            font-size: 1.2rem;
        }

        @keyframes btnPulse {
            0% {
                box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.7);
            }

            70% {
                box-shadow: 0 0 0 12px rgba(13, 148, 136, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(13, 148, 136, 0);
            }
        }

        .btn-primary:hover {
            background: #0f766e;
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 10px 30px rgba(13, 148, 136, 0.4);
        }

        .micro-copy {
            margin-top: 12px;
            font-size: 0.85rem;
            color: #6b7280;
        }

        .video-container {
            position: relative;
            padding: 12px;
            background: #ffffff;
            border-radius: 36px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

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

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

        .video-frame {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 24px;
            overflow: hidden;
            aspect-ratio: 16/9;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #000;
            border-radius: 24px;
            transition: opacity 0.5s ease;
        }

        .video-frame.playing .video-overlay {
            opacity: 0;
            pointer-events: none;
            z-index: -1;
        }

        .video-cover {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.9;
        }

        .video-play-btn {
            position: relative;
            z-index: 2;
            width: 80px;
            height: 80px;
            background: rgba(255, 0, 0, 0.9);
            border-radius: 50%;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease, background 0.3s ease;
            box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
            animation: pulse-red 2s infinite;
        }

        .video-play-btn svg {
            width: 32px;
            height: 32px;
            margin-left: 4px;
            /* Optical center */
        }

        .video-play-btn:hover {
            transform: scale(1.1);
            background: #cc0000;
        }

        @keyframes pulse-red {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
            }

            70% {
                transform: scale(1);
                box-shadow: 0 0 0 20px rgba(255, 0, 0, 0);
            }

            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
            }
        }

        .video-frame {
            background: #000;
            border-radius: 24px;
            aspect-ratio: 16/9;
            overflow: hidden;
            box-shadow: none;
            position: relative;
        }

        .video-frame iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .pulse-ring {
            position: absolute;
            width: 100px;
            height: 100px;
            border: 2px solid var(--primary);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(0.8);
                opacity: 0.8;
            }

            100% {
                transform: scale(2.5);
                opacity: 0;
            }
        }

        .video-caption {
            text-align: center;
            margin-top: 20px;
            color: #94a3b8;
            font-size: 0.95rem;
            font-weight: 500;
        }

        @media (max-width: 900px) {
            .hero {
                padding: 64px 0 24px;
                /* Maximum compaction */
            }

            .hero .container {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 6px;
                /* Micro gap */
                text-align: center;
            }

            /* Unwrap content containers to allow interleaving */
            .hero-content,
            .hero-glass-card {
                display: contents;
            }

            .hero-badge {
                display: none;
            }

            .hero h1 {
                order: 2;
                font-size: 1.35rem;
                /* Very compact title */
                line-height: 1.15;
                width: 100%;
                margin-bottom: 0;
            }

            .hero-video {
                order: 3;
                width: 100%;
                margin: 0 0 6px;
            }

            .hero-bullets {
                order: 4;
                /* Bullets before CTA */
                display: inline-block;
                text-align: left;
                margin-bottom: 4px;
                font-size: 0.8rem;
                padding-left: 0;
                line-height: 1.4;
            }

            .hero-bullets li {
                padding: 1px 0 1px 20px;
            }

            .hero-bullets li::before {
                font-size: 0.9em;
                top: 2px;
            }

            .hero-cta-group {
                order: 5;
                /* CTA last */
                width: 100%;
            }

            .hero .btn-primary {
                padding: 10px 20px;
                min-width: auto;
                width: 100%;
                font-size: 0.95rem;
            }

            .micro-copy {
                margin-top: 4px;
                font-size: 0.7rem;
            }
        }

        /* Sections */
        section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.25rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 16px;
        }

        .section-subtitle {
            text-align: center;
            color: #6b7280;
            max-width: 700px;
            margin: 0 auto 48px;
            font-size: 1.1rem;
        }

        /* Social Proof */


        .stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-bottom: 48px;
            flex-wrap: wrap;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #0D9488;
        }

        .stat-label {
            color: #6b7280;
            font-size: 0.95rem;
        }

        .testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .testimonial {
            background: rgba(255, 255, 255, 0.8);
            padding: 32px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: var(--shadow-md);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s, box-shadow 0.4s;
            position: relative;
            overflow: hidden;
        }

        .testimonial::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .testimonial:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: var(--primary-light);
            box-shadow: var(--shadow-xl);
        }

        .testimonial:hover::after {
            opacity: 1;
        }

        .testimonial q {
            font-style: italic;
            color: #0F172A;
            display: block;
            margin-bottom: 16px;
        }

        .testimonial cite {
            font-style: normal;
            font-weight: 600;
            color: #0F172A;
            font-size: 0.9rem;
        }

        /* Video Testimonials */
        .video-testimonials {
            margin-bottom: 48px;
        }

        .video-testimonials h3 {
            text-align: center;
            font-size: 1.25rem;
            margin-bottom: 24px;
            color: #0F172A;
        }

        .video-carousel {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            overflow-y: hidden;
            padding: 30px 0 50px;
            /* Increased padding to prevent clipping */
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            /* Firefox */
            -ms-overflow-style: none;
            /* IE and Edge */
        }

        .video-carousel::-webkit-scrollbar {
            display: none;
            /* Chrome, Safari, Opera */
        }

        .video-card {
            flex: 0 0 280px;
            background: #fff;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s, box-shadow 0.4s;
            cursor: pointer;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .video-card:hover {
            transform: translateY(-12px) scale(1.05);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-light);
        }

        .video-thumb {
            position: relative;
            aspect-ratio: 9/16;
            overflow: hidden;
            background: #0f172a;
        }

        .video-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 72px;
            height: 72px;
            background: rgba(13, 148, 136, 0.2);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255, 255, 255, 0.4);
            z-index: 5;
        }

        .play-btn::after {
            content: '';
            border-left: 24px solid #fff;
            border-top: 14px solid transparent;
            border-bottom: 14px solid transparent;
            margin-left: 6px;
        }

        .video-card:hover .play-btn {
            transform: translate(-50%, -50%) scale(1.15);
            background: var(--primary);
            box-shadow: 0 0 30px rgba(13, 148, 136, 0.5);
        }

        .video-card-name {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px 10px 24px;
            text-align: center;
            font-weight: 700;
            color: #fff;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
            z-index: 6;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            letter-spacing: 0.02em;
        }

        /* Inline Video Player */
        .video-thumb video {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 10;
        }

        .video-card.playing .video-thumb video {
            display: block;
        }

        .video-card.playing .video-thumb img,
        .video-card.playing .play-btn,
        .video-card.playing .video-card-name {
            display: none;
        }

        /* Comparison */
        .comparison {
            background: transparent;
        }

        .comparison-intro {
            text-align: center;
            color: #6b7280;
            margin-bottom: 48px;
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }

        .comparison-col {
            padding: 32px;
            border-radius: 16px;
        }

        .old-way {
            background: #fef2f2;
            border: 2px solid #fecaca;
        }

        .new-way {
            background: #f0fdf4;
            border: 2px solid #bbf7d0;
        }

        .comparison-col h3 {
            font-size: 1.25rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .old-way h3::before {
            content: "✕";
            color: #dc2626;
        }

        .new-way h3::before {
            content: "✓";
            color: #16a34a;
        }

        .comparison-col ul {
            list-style: none;
        }

        .comparison-col li {
            padding: 10px 0;
            padding-left: 24px;
            position: relative;
        }

        .old-way li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #dc2626;
        }

        .new-way li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #16a34a;
        }

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

        /* Benefits */
        .benefits {
            background: #F9FAFB;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 24px;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.8);
            padding: 32px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            box-shadow: var(--shadow-md);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s, box-shadow 0.4s;
        }

        .benefit-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: var(--primary-light);
            box-shadow: var(--shadow-xl);
        }

        .benefit-card h4 {
            font-size: 1.15rem;
            margin-bottom: 12px;
            color: #0F172A;
        }

        .benefit-card p {
            color: #6b7280;
            font-size: 0.95rem;
        }

        /* How It Works - Modern Grid */
        .how-it-works {
            background: transparent;
            position: relative;
            overflow: visible;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 48px;
        }

        .step-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 32px;
            position: relative;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            min-height: 200px;
        }

        .step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
            border-color: rgba(13, 148, 136, 0.3);
        }

        .step-number-watermark {
            position: absolute;
            top: 16px;
            right: 24px;
            font-size: 4rem;
            font-weight: 900;
            color: #f1f5f9;
            /* Very subtle gray */
            line-height: 1;
            z-index: 0;
            pointer-events: none;
            transition: color 0.3s ease;
        }

        .step-card:hover .step-number-watermark {
            color: rgba(13, 148, 136, 0.1);
            /* Subtle teal tint on hover */
        }

        .step-card h4 {
            font-size: 1.25rem;
            color: #0f172a;
            font-weight: 700;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .step-card p {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        /* 5th Card Highlight */
        .step-card.highlight-step {
            background: linear-gradient(135deg, #fff 0%, #f0fdfa 100%);
            border-color: #ccfbf1;
        }

        .step-card.highlight-step:hover {
            border-color: #0d9488;
        }

        @media (max-width: 600px) {
            .steps-grid {
                grid-template-columns: 1fr;
            }

            .step-card {
                min-height: auto;
                padding: 24px;
            }

            .step-number-watermark {
                font-size: 3rem;
                top: 12px;
                right: 20px;
            }
        }

        /* Curriculum */
        .curriculum {
            background: #0F172A;
            color: #fff;
        }

        .curriculum .section-title {
            color: #fff;
        }

        .curriculum-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
        }

        .day-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 28px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .day-badge {
            display: inline-block;
            background: #F59E0B;
            color: #0F172A;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .day-card h4 {
            margin-bottom: 8px;
        }

        .day-card p {
            color: #9ca3af;
            font-size: 0.95rem;
        }

        /* Who & About */
        .who-about {
            background: #F9FAFB;
        }

        .who-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
        }

        .who-list {
            list-style: none;
        }

        .who-list li {
            padding: 12px 0;
            padding-left: 28px;
            position: relative;
        }

        .who-list li::before {
            content: "→";
            position: absolute;
            left: 0;
            color: #0D9488;
        }

        .about-box {
            background: #0D9488;
            color: #fff;
            padding: 40px;
            border-radius: 16px;
        }

        .about-box h3 {
            margin-bottom: 16px;
        }

        .about-box p {
            opacity: 0.9;
        }

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

        /* Pricing */
        .pricing {
            background: #fff;
            text-align: center;
        }

        .pricing-card {
            max-width: 480px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid var(--primary);
            border-radius: 32px;
            padding: 48px;
            box-shadow: var(--shadow-2xl);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: "BEST VALUE";
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--secondary);
            color: #000;
            padding: 8px 40px;
            font-size: 0.75rem;
            font-weight: 800;
            transform: rotate(45deg);
        }

        .pricing-title {
            font-size: 1.5rem;
            margin-bottom: 8px;
        }

        .pricing-amount {
            font-size: 4rem;
            font-weight: 800;
            color: #0D9488;
        }

        .pricing-features {
            list-style: none;
            text-align: left;
            margin: 32px 0;
        }

        .pricing-features li {
            padding: 12px 0;
            padding-left: 28px;
            position: relative;
            border-bottom: 1px solid #e5e7eb;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #16a34a;
            font-weight: bold;
        }

        .pricing-note {
            margin-top: 24px;
            font-size: 0.85rem;
            color: #6b7280;
        }

        /* FAQ */
        .faq {
            background: #F9FAFB;
        }

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

        .accordion-item {
            background: #fff;
            margin-bottom: 12px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .accordion-btn {
            width: 100%;
            text-align: left;
            padding: 20px 24px;
            background: none;
            border: none;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: inherit;
            color: #0F172A;
        }

        .accordion-btn::after {
            content: "+";
            font-size: 1.5rem;
            color: #0D9488;
            transition: transform 0.3s;
        }

        .accordion-item.active .accordion-btn::after {
            content: "−";
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .accordion-content p {
            padding: 0 24px 20px;
            color: #6b7280;
        }

        /* Final CTA */
        .final-cta {
            background: linear-gradient(135deg, #0D9488 0%, #0f766e 100%);
            color: #fff;
            text-align: center;
            padding: 100px 0;
        }

        .final-cta .section-title {
            color: #fff;
        }

        .final-cta .section-subtitle {
            color: rgba(255, 255, 255, 0.9);
        }

        .final-cta .btn-primary {
            background: #fff;
            color: #0D9488;
        }

        .final-cta .btn-primary:hover {
            background: #f0f7ff;
        }

        .final-cta .micro-copy {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Footer */
        footer {
            background: transparent;
            color: #1e293b;
            padding: 48px 0 24px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            /* Subtle separator */
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
            margin-bottom: 32px;
        }

        .logo img {
            height: 48px;
            width: auto;
            display: block;
        }

        .footer-logo img {
            height: 60px;
            width: auto;
            display: block;
        }

        .footer-links {
            display: flex;
            gap: 24px;
        }

        .footer-links a {
            color: #64748b;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #0D9488;
        }

        .social-links {
            display: flex;
            gap: 16px;
        }

        .social-links a {
            color: #64748b;
            text-decoration: none;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: #0D9488;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            font-size: 0.85rem;
            color: #94a3b8;
        }

        @media (max-width: 600px) {
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Scroll to Top */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #0D9488;
            color: #fff;
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
            box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background: #0f766e;
            transform: translateY(-3px);
        }

        /* Modal Styles */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            padding: 20px;
        }

        .modal.active {
            display: flex;
        }

        .modal-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.4);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .modal-container {
            position: relative;
            background: #fff;
            width: 100%;
            max-width: 500px;
            border-radius: 24px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            z-index: 10;
            overflow: hidden;
            animation: modalFadeIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: scale(0.95) translateY(10px);
            }

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

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 32px;
            height: 32px;
            background: #f1f5f9;
            border: none;
            border-radius: 50%;
            font-size: 20px;
            color: #64748b;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            z-index: 20;
        }

        .modal-close:hover {
            background: #e2e8f0;
            color: #0f172a;
            transform: rotate(90deg);
        }

        .modal-content {
            padding: 40px;
        }

        .registration-form-container h3 {
            font-size: 1.75rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 8px;
        }

        .registration-form-container p {
            color: #64748b;
            margin-bottom: 32px;
        }

        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .form-group label {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: #475569;
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            background: #f8fafc;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-family: inherit;
            font-size: 1rem;
            color: #0f172a;
            transition: all 0.2s;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #0d9488;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
        }

        .form-group .error-message {
            display: none;
            color: #ef4444;
            font-size: 0.8rem;
            margin-top: 5px;
            font-weight: 500;
        }

        .form-group.error input,
        .form-group.error select {
            border-color: #ef4444;
        }

        .form-group.error .error-message {
            display: block;
        }

        .btn-full {
            width: 100%;
            margin-top: 10px;
        }

        /* Success Message */
        .success-message {
            text-align: center;
            padding: 20px 0;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background: #f0fdf4;
            color: #22c55e;
            font-size: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }

        .success-message h3 {
            font-size: 1.75rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 12px;
        }

        .success-message p {
            color: #64748b;
            margin-bottom: 32px;
            line-height: 1.6;
        }

        @media (max-width: 480px) {
            .modal-content {
                padding: 30px 20px;
            }

            .registration-form-container h3 {
                font-size: 1.5rem;
            }
        }

        /* Added Media Queries for Polish */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 2.25rem;
            }

            .hero .container {
                gap: 40px;
            }
        }

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

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

            .hero-bullets li {
                padding-left: 0;
                display: inline-block;
                margin: 0 10px;
            }

            .hero-bullets li::before {
                position: relative;
                margin-right: 8px;
            }

            .hero-video {
                order: -1;
            }

            .section-title {
                font-size: 2rem;
            }

            .logo img {
                height: 36px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.85rem;
            }

            .hero-subheading {
                font-size: 1rem;
            }

            .hero-bullets li {
                display: block;
                margin: 8px 0;
                text-align: left;
                padding-left: 28px;
            }

            .hero-bullets li::before {
                position: absolute;
            }

            .btn-primary {
                width: 100%;
                padding: 16px 24px;
            }

            .modal-content {
                padding: 30px 20px;
            }

            .registration-form-container h3 {
                font-size: 1.5rem;
            }
        }

        /* Floating Steps UI */
        .floating-steps-container {
            position: relative;
            max-width: 900px;
            margin: 60px auto 0;
            padding: 40px 20px;
        }

        .floating-line {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom,
                    transparent,
                    var(--primary-light) 20%,
                    var(--primary-light) 80%,
                    transparent);
            z-index: 0;
            opacity: 0.3;
        }

        .floating-step-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: 20px;
            padding: 24px 30px;
            margin-bottom: 40px;
            position: relative;
            width: 45%;
            box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
            /* Increased shadow for float effect */
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: 2;
        }

        .floating-step-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px -10px rgba(13, 148, 136, 0.15);
            border-color: var(--primary-light);
            z-index: 10;
        }

        /* Floating Animation */
        @keyframes float-card {

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

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

        /* Staggered Floating */
        .float-1 {
            animation: float-card 6s ease-in-out infinite;
            animation-delay: 0s;
        }

        .float-2 {
            animation: float-card 7s ease-in-out infinite;
            animation-delay: 1s;
        }

        .float-3 {
            animation: float-card 6.5s ease-in-out infinite;
            animation-delay: 2s;
        }

        .float-4 {
            animation: float-card 7.5s ease-in-out infinite;
            animation-delay: 0.5s;
        }

        .float-5 {
            animation: float-card 8s ease-in-out infinite;
            animation-delay: 1.5s;
        }

        /* Left/Right Alignment */
        .floating-step-card:nth-child(odd) {
            margin-left: auto;
            transform-origin: left center;
        }

        .floating-step-card:nth-child(even) {
            margin-right: auto;
            transform-origin: right center;
        }

        /* Connecting Dots on the Line */
        .floating-step-card::before {
            content: '';
            position: absolute;
            top: 50%;
            width: 16px;
            height: 16px;
            background: #fff;
            border: 4px solid var(--primary);
            border-radius: 50%;
            z-index: 3;
            box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.2);
            transition: all 0.3s ease;
        }

        /* Positioning Dots */
        .floating-step-card:nth-child(odd)::before {
            left: -50px;
            /* Adjust based on gap */
            left: calc(-1 * (50px + (100% - 900px + 60px) / 2));
            /* Rough calculation, will refine with media queries */
            left: -11.5%;
            /* Approximate percentage based on width */
        }

        /* Fix for dot alignment - using specific calc */
        .floating-steps-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            /* Center everything but we'll offset cards */
        }

        .floating-step-card {
            /* Reset width to fixed or % relative to container */
            width: 42%;
            /* Override display for manual positioning */
            align-self: flex-start;
        }

        .floating-step-card:nth-child(odd) {
            align-self: flex-end;
            margin-left: 0;
            /* Reset */
        }

        .floating-step-card:nth-child(even) {
            align-self: flex-start;
            margin-right: 0;
            /* Reset */
        }



        /* Let's try a different approach for the dots to be robust */
        .floating-step-card:nth-child(odd)::before {
            left: -19%;
            /* Adjust trying to hit center */
            /* Better way: calculate form center */
            left: auto;
            right: calc(100% + 8.5%);
            /* Distance to center line ~ roughly */
        }

        .floating-step-card:nth-child(even)::before {
            right: auto;
            left: calc(100% + 8.5%);
        }

        /* Refined Dot Positioning */
        @media (min-width: 901px) {
            .floating-step-card:nth-child(odd)::before {
                right: calc(100% + 38px);
                /* 50% - 42% = 8% gap. 8% of 900px is 72px. Center is at midway. */
                /* Let's just hardcode the dots to the center line wrapper */
            }

            .floating-step-card:nth-child(even)::before {
                left: calc(100% + 38px);
            }
        }

        /* Simpler Dot Approach: Put dots on the line directly if structure allowed, but here they are in card. 
           Let's use absolute positioning relative to the container? No, cards move.
           Let's stick to relative to card but use proper math.
           Container width: W
           Card width: 0.42 * W
           Gap in middle: 0.16 * W
           Half Gap: 0.08 * W
           
           Dot needs to be at 0.08*W + (line width/2) from the card edge.
           0.08 * 900 = 72px approx.
        */

        .floating-step-card:nth-child(odd)::before {
            right: auto;
            left: -19.5%;
            /* Trial and error fallback if calc fails, but let's try calc */
            left: calc(-1 * (100% * 0.16 / 0.42 / 2) - 10px);
            /* Just eyeballing standard gap */
            /* Actually, standard design pattern: */
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: -60px;
            /* Fixed distance */
        }

        .floating-step-card:nth-child(even)::before {
            right: -60px;
            left: auto;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
        }

        /* WAIT, odd is on RIGHT (flex-end), even is on LEFT (flex-start) in my CSS above?
           No:
           nth-child(odd) -> align-self: flex-end -> Right side
           nth-child(even) -> align-self: flex-start -> Left side
           
           If Card is on Right (Odd): Dot should be on Left.
           If Card is on Left (Even): Dot should be on Right.
        */

        .floating-step-card:nth-child(odd)::before {
            left: -58px;
            /* Push to center */
            right: auto;
        }

        .floating-step-card:nth-child(even)::before {
            right: -58px;
            /* Push to center */
            left: auto;
        }


        .float-content h4 {
            font-size: 1.25rem;
            color: #0f172a;
            margin-bottom: 8px;
        }

        .float-content p {
            font-size: 0.95rem;
            color: #64748b;
        }

        .float-icon {
            font-size: 2rem;
            margin-bottom: 12px;
            background: linear-gradient(135deg, #e0f2fe 0%, #f0fdfa 100%);
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8);
        }

        .float-number {
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 3.5rem;
            font-weight: 900;
            color: rgba(203, 213, 225, 0.3);
            line-height: 1;
            z-index: 0;
            pointer-events: none;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .floating-line {
                left: 30px;
                /* Move line to left side */
                transform: none;
            }

            .floating-step-card {
                width: 100%;
                margin-left: 50px !important;
                /* Force left margin */
                margin-right: 0 !important;
                align-self: flex-start !important;
                width: calc(100% - 50px);
            }

            .floating-step-card::before {
                left: -60px !important;
                /* Always on left */
                right: auto !important;
            }

            /* Remove stagger animation on mobile for better performance/layout */
            .float-1,
            .float-2,
            .float-3,
            .float-4,
            .float-5 {
                animation: none;
            }
        }

        /* Glowing Timeline Styles - Option 1 */
        .floating-steps-container {
            position: relative;
            max-width: 900px;
            margin: 60px auto 0;
            padding: 40px 0;
        }

        /* The Spine */
        .timeline-spine {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            /* Thicker spine */
            height: 100%;
            background: rgba(203, 213, 225, 0.3);
            /* Muted gray */
            border-radius: 4px;
            z-index: 0;
            overflow: hidden;
            /* For the fill */
        }

        /* The Glowing Fill */
        .timeline-fill {
            width: 100%;
            height: 0%;
            /* animate this */
            background: linear-gradient(to bottom, var(--primary) 0%, var(--secondary) 100%);
            box-shadow: 0 0 15px var(--primary);
            transition: height 0.1s linear;
            /* Smooth fill */
        }

        /* Connector Lines */
        .timeline-connector {
            position: absolute;
            top: 50%;
            height: 2px;
            width: 40px;
            /* Distance to spine */
            background: #cbd5e1;
            z-index: -1;
            transition: background 0.3s;
        }

        /* Lighting up connectors when active */
        .floating-step-card.active .timeline-connector {
            background: var(--primary);
            box-shadow: 0 0 8px var(--primary);
        }

        /* Positioning Connectors */
        .floating-step-card:nth-child(odd) .timeline-connector {
            left: -40px;
            /* Connect from left edge of card towards left spine? No, card is on right. */
            /* Card (Odd) is on Right. Spine is on Left of card. */
            left: auto;
            right: 100%;
        }

        .floating-step-card:nth-child(even) .timeline-connector {
            /* Card (Even) is on Left. Spine is on Right of card. */
            left: 100%;
            right: auto;
        }

        /* Refined Card Styles */
        .floating-step-card {
            width: 45%;
            position: relative;
            margin-bottom: 60px;
            /* More space */
            padding: 24px;
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 20px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            opacity: 0;
            /* Start hidden for scroll reveal */
            transform: translateY(30px);
        }

        .floating-step-card.active {
            opacity: 1;
            transform: translateY(0);
            border-color: var(--primary-light);
            box-shadow: 0 10px 25px -5px rgba(13, 148, 136, 0.15);
        }

        .floating-step-card:hover {
            transform: translateY(-5px);
        }

        /* Icons */
        .float-icon {
            background: #fff;
            width: 48px;
            height: 48px;
            font-size: 1.5rem;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            margin-bottom: 16px;
        }

        /* Specific positioning */
        .floating-step-card:nth-child(odd) {
            margin-left: auto;
            /* Right side */
        }

        .floating-step-card:nth-child(even) {
            margin-right: auto;
            /* Left side */
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .timeline-spine {
                left: 20px;
            }

            .floating-step-card {
                width: calc(100% - 50px);
                margin-left: 50px !important;
                margin-right: 0 !important;
                margin-bottom: 32px;
            }

            .timeline-connector {
                width: 30px;
                right: auto !important;
                left: -30px !important;
            }
        }

        /* Bento Grid Styles - Option 2 */
        .bento-grid-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1000px;
            margin: 60px auto 0;
            padding: 20px;
        }

        .bento-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 32px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .bento-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            z-index: 2;
        }

        /* Grid Spans */
        .bento-wide {
            grid-column: span 2;
            background: radial-gradient(circle at top right, #f8fafc, #fff);
        }

        /* Number Styling */
        .bento-step-num {
            font-size: 0.85rem;
            font-weight: 700;
            color: #94a3b8;
            background: #f1f5f9;
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 16px;
            align-self: flex-start;
        }

        /* Icon Styling */
        .bento-icon-box {
            font-size: 2rem;
            margin-bottom: 16px;
            background: #f0fdfa;
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            color: var(--primary);
        }

        /* Content Styling */
        .bento-content h4 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 8px;
        }

        .bento-content p {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Highlight Card */
        .highlight-bento {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #fff;
        }

        .highlight-bento .bento-content h4 {
            color: #fff;
        }

        .highlight-bento .bento-content p {
            color: #cbd5e1;
        }

        .highlight-bento .bento-step-num {
            background: rgba(255, 255, 255, 0.1);
            color: #94a3b8;
        }

        .highlight-bento .bento-icon-box {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Decorative Circle */
        .bento-decoration-circle {
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(13, 148, 136, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        /* Mobile Responsive */
        @media (max-width: 900px) {
            .bento-grid-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .bento-grid-container {
                grid-template-columns: 1fr;
            }

            .bento-wide {
                grid-column: span 1;
            }
        }

        /* Horizontal Slider Styles - Option 3 */
        .slider-window {
            width: 100%;
            overflow-x: auto;
            overflow-y: hidden;
            padding: 40px 0;
            -webkit-overflow-scrolling: touch;
            /* Smooth scroll on iOS */
            scroll-behavior: smooth;
            /* Hide scrollbar */
            scrollbar-width: none;
            /* Firefox */
            -ms-overflow-style: none;
            /* IE 10+ */
        }

        .slider-window::-webkit-scrollbar {
            display: none;
            /* Chrome Safari */
        }

        .slider-track {
            display: flex;
            gap: 24px;
            padding: 0 20px;
            /* Side padding */
            width: max-content;
            /* Ensure it grows */
        }

        .slider-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 32px 28px;
            width: 300px;
            /* Fixed width */
            flex-shrink: 0;
            /* Don't shrink */
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            position: relative;
            scroll-snap-align: start;
            /* Snap to start */
        }

        .slider-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
        }

        .slider-number {
            font-size: 3rem;
            font-weight: 900;
            color: #f1f5f9;
            position: absolute;
            top: 20px;
            right: 20px;
            line-height: 1;
            z-index: 0;
        }

        .slider-icon {
            font-size: 2.5rem;
            margin-bottom: 24px;
            background: #f0fdfa;
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            position: relative;
            z-index: 1;
        }

        .slider-card h4 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .slider-card p {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        /* Highlight Card */
        .highlight-slider {
            background: #0f172a;
            color: #fff;
        }

        .highlight-slider .slider-number {
            color: rgba(255, 255, 255, 0.1);
        }

        .highlight-slider .slider-icon {
            background: rgba(255, 255, 255, 0.1);
        }

        .highlight-slider h4 {
            color: #ffff;
        }

        .highlight-slider p {
            color: #94a3b8;
        }

        /* Media Queries */
        @media (max-width: 768px) {
            .slider-card {
                width: 85vw;
                /* Almost full width on mobile */
            }

            .slider-window {
                scroll-snap-type: x mandatory;
                /* Force snap on mobile */
            }
        }

        /* =========================================
   DE-BOXIFY: Open Layout Styles
   ========================================= */

        /* --- Benefits Section (Organic Grid) --- */
        .benefits {
            background: #fff;
            /* Add a subtle pattern if needed, for now clean white */
        }

        .benefits .section-title {
            margin-bottom: 60px;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px 60px;
            /* More horizontal gap */
        }

        .benefit-card {
            background: transparent !important;
            border: none !important;
            box-shadow: none !important;
            padding: 0 !important;
            text-align: left;
            transition: transform 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            /* Keep slight movement */
        }

        .benefit-card h4 {
            font-size: 1.35rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 12px;
            position: relative;
            padding-left: 20px;
            /* Space for accent */
        }

        .benefit-card h4::before {
            content: '';
            position: absolute;
            left: 0;
            top: 6px;
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
        }

        .benefit-card p {
            color: #64748b;
            font-size: 1rem;
            line-height: 1.7;
            margin-left: 20px;
            /* Align with text */
        }

        /* --- Curriculum Section (Connected Steps) --- */
        .step-card {
            background: transparent !important;
            border: none !important;
            box-shadow: none !important;
            padding: 0 !important;
            min-height: auto !important;
            border-left: 2px solid #e2e8f0 !important;
            /* Subtle line */
            padding-left: 32px !important;
            border-radius: 0 !important;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            position: relative;
        }

        .step-card:hover {
            border-left-color: var(--primary) !important;
        }

        .step-number-watermark {
            position: relative !important;
            top: auto !important;
            right: auto !important;
            font-size: 1.25rem !important;
            font-weight: 800;
            color: var(--primary) !important;
            margin-bottom: 8px;
            background: transparent;
            opacity: 1 !important;
        }

        .step-card h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 8px;
        }

        .step-card p {
            font-size: 1rem;
            color: #64748b;
        }

        /* Highlight Step (Final Project) */
        .step-card.highlight-step {
            background: transparent !important;
            border: none !important;
            border-left: 2px solid var(--secondary) !important;
        }

        .step-card.highlight-step .step-number-watermark {
            color: var(--secondary) !important;
        }

        .step-card.highlight-step h4 {
            color: var(--secondary);
        }

        /* Organic Timeline Styles */
        .organic-timeline {
            position: relative;
            max-width: 800px;
            margin: 80px auto 0;
            padding: 0 20px;
        }

        .organic-line {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: #e2e8f0;
            /* Subtle line */
            z-index: 0;
        }

        .organic-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            margin-bottom: 80px;
            /* Airy spacing */
            position: relative;
            z-index: 1;
        }

        /* 3-Column Layout concept: Content - Icon - Space */
        .organic-content {
            width: 42%;
            text-align: right;
        }

        .organic-empty-space {
            width: 42%;
        }

        .organic-icon-wrapper {
            width: 60px;
            height: 60px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 4px solid #f8fafc;
            /* Halo effect */
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            /* Soft shadow for lift */
            position: relative;
            z-index: 2;
        }

        .organic-icon {
            font-size: 1.75rem;
        }

        /* Headlines */
        .organic-content h4 {
            font-size: 1.5rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 8px;
        }

        .organic-content p {
            font-size: 1.1rem;
            color: #64748b;
            line-height: 1.6;
        }

        /* Reverse Layout (Even items) */
        .organic-item.reverse {
            flex-direction: row;
        }

        .organic-item.reverse .organic-content {
            text-align: left;
        }

        /* Highlight Step */
        .organic-item.highlight-organic .organic-icon-wrapper {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 10px 20px -5px rgba(13, 148, 136, 0.3);
            border-color: #ccfbf1;
        }

        .organic-item.highlight-organic h4 {
            color: var(--primary);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .organic-line {
                left: 30px;
                /* Move line to left */
            }

            .organic-item,
            .organic-item.reverse {
                flex-direction: row;
                /* Always Row */
                justify-content: flex-start;
                align-items: flex-start;
                margin-bottom: 50px;
            }

            .organic-empty-space {
                display: none;
                /* Remove empty space column */
            }

            .organic-icon-wrapper {
                width: 60px;
                min-width: 60px;
                /* Prevent shrink */
                margin-right: 24px;
                order: 1;
                /* Icon first */
            }

            .organic-content {
                width: auto;
                flex: 1;
                text-align: left !important;
                /* Always left align */
                order: 2;
                /* Content second */
                padding-top: 10px;
                /* Align text with icon visually */
            }

            /* Connect line correction */
            .organic-line {
                left: 30px;
                /* Align with icon center (30px is half of 60px width) */
            }
        }

        /* Hero-Matched Timeline Styles (Option 4) */
        .hero-match-container {
            position: relative;
            max-width: 900px;
            margin: 80px auto 0;
            padding: 20px;
            /* Ambient Blobs for container to match hero */
        }

        /* Ambient Blobs local to this section */
        .how-it-works {
            position: relative;
            /* overflow: hidden;  Keep overflow hidden on section if needed, but hero has it */
        }

        .how-it-works::before {
            content: '';
            position: absolute;
            top: 10%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(45, 212, 191, 0.15) 0%, transparent 70%);
            filter: blur(80px);
            z-index: 0;
            pointer-events: none;
            opacity: 0.8;
        }

        .how-it-works::after {
            content: '';
            position: absolute;
            bottom: 5%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
            filter: blur(80px);
            z-index: 0;
            pointer-events: none;
            opacity: 0.8;
        }

        .hm-step {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
            /* Space between visual and text */
            margin-bottom: 100px;
            position: relative;
            z-index: 1;
        }

        .hm-visual {
            flex: 1;
            display: flex;
            justify-content: flex-end;
        }

        .hm-content {
            flex: 1;
            text-align: left;
        }

        /* Reverse layout */
        .hm-step.reverse {
            flex-direction: row-reverse;
        }

        .hm-step.reverse .hm-visual {
            justify-content: flex-start;
        }

        .hm-step.reverse .hm-content {
            text-align: right;
        }

        /* The Floating Card Visual */
        .hm-card {
            background: rgba(255, 255, 255, 0.8);
            /* Semi-transparent like hero elements can be */
            backdrop-filter: blur(12px);
            /* Glassmorphism */
            border: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: 36px;
            /* High radius like video container */
            padding: 30px;
            width: 140px;
            height: 140px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.1);
            position: relative;
            transition: transform 0.3s ease;
        }

        .hm-card .hm-number {
            font-size: 1rem;
            font-weight: 700;
            color: #94a3b8;
            margin-bottom: 8px;
            background: #f1f5f9;
            padding: 4px 12px;
            border-radius: 20px;
        }

        .hm-card .hm-icon {
            font-size: 3rem;
            line-height: 1;
        }

        /* Floating Animations */
        .float-anim-1 {
            animation: float-1 6s ease-in-out infinite;
        }

        .float-anim-2 {
            animation: float-2 7s ease-in-out infinite;
        }

        .float-anim-3 {
            animation: float-1 8s ease-in-out infinite reverse;
        }

        @keyframes float-1 {

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

            50% {
                transform: translateY(-15px) rotate(2deg);
            }
        }

        @keyframes float-2 {

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

            50% {
                transform: translateY(-12px) rotate(-2deg);
            }
        }

        /* Text Styling matching Hero */
        .hm-content h4 {
            font-size: 2.5rem;
            /* Large like hero secondary headers */
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.1;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
            /* Deep dark */
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hm-step.highlight-hm h4 {
            background: linear-gradient(135deg, #0f172a 0%, #0d9488 100%);
            /* Hero teal gradient */
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hm-content p {
            font-size: 1.15rem;
            color: #475569;
            line-height: 1.7;
            max-width: 400px;
        }

        .hm-step.reverse .hm-content p {
            margin-left: auto;
            /* Align text block to right in reverse mode */
        }

        /* Highlight Card Style */
        .hm-card.highlight-hm {
            background: rgba(255, 255, 255, 0.9);
            border-color: #ccfbf1;
            box-shadow: 0 20px 50px -10px rgba(13, 148, 136, 0.25);
            /* Teal glow */
        }

        .hm-card.highlight-hm .hm-number {
            color: #0d9488;
            background: #f0fdfa;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {

            .hm-step,
            .hm-step.reverse {
                flex-direction: column;
                text-align: center !important;
                gap: 20px;
                margin-bottom: 80px;
            }

            .hm-visual {
                justify-content: center !important;
                margin-bottom: 10px;
            }

            .hm-content {
                text-align: center !important;
            }

            .hm-content p {
                margin: 0 auto !important;
            }

            .hm-content h4 {
                font-size: 2rem;
            }
        }



        /* Blended Final CTA */
        .blended-cta {
            margin-top: 0px;
            padding: 40px 20px;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        /* Ensure typography works on light background */
        .blended-cta .section-title {
            color: #0f172a;
            background: linear-gradient(135deg, #0f172a 0%, #0d9488 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 16px;
            font-size: 2.5rem;
        }

        .blended-cta .section-subtitle {
            color: #64748b;
            margin-bottom: 32px;
        }

        .blended-cta .micro-copy {
            color: #94a3b8;
            margin-top: 16px;
        }

        /* Use the standard Primary Button again since background is light */
        .blended-cta .btn-primary {
            /* Use default global .btn-primary styles which are teal */
            background: #0D9488;
            color: #fff;
            padding: 20px 48px;
            font-size: 1.2rem;
            box-shadow: 0 10px 30px -5px rgba(13, 148, 136, 0.4);
        }

        .blended-cta .btn-primary:hover {
            background: #0f766e;
            transform: translateY(-4px);
            box-shadow: 0 20px 40px -5px rgba(13, 148, 136, 0.5);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .blended-cta {
                margin-top: 0px;
                padding: 40px 0;
            }
        }

        /* =========================================
   ADDITIONAL AMBIENT BLOBS (CREATIVE VISIBILITY)
   ========================================= */

        /* Social Proof Section Blobs - Vibrant & Multiply */
        .social-proof {
            position: relative;
            z-index: 5;
            /* Stacking Context raised to sit above next section */
            overflow: visible;
            background: transparent;
        }

        .social-proof::before {
            content: '';
            position: absolute;
            top: -15%;
            left: -15%;
            width: 650px;
            height: 650px;
            /* CREATIVE: Stronger colors + Multiply Blend */
            background: radial-gradient(circle, rgba(45, 212, 191, 0.45) 0%, transparent 65%);
            filter: blur(60px);
            z-index: -1;
            pointer-events: none;
            border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            opacity: 0.8;
            mix-blend-mode: multiply;
            /* Ensures it stains the white bg */
            animation: blobFloat 14s infinite alternate;
        }

        .social-proof-blob-bottom {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -10%;
            width: 800px;
            height: 800px;
            /* CREATIVE: Stronger colors + Multiply Blend */
            background: radial-gradient(circle, rgba(13, 148, 136, 0.35) 0%, transparent 65%);
            filter: blur(80px);
            z-index: -1;
            pointer-events: none;
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            opacity: 0.8;
            mix-blend-mode: multiply;
            animation: blobFloat 18s infinite alternate-reverse;
        }

        /* Connector Blob for Continuity */
        .connector-blob {
            position: absolute;
            top: -10%;
            right: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
            filter: blur(60px);
            z-index: -1;
            pointer-events: none;
            opacity: 0.8;
            animation: blobPulse 8s infinite alternate-reverse;
        }

        /* Blended CTA Blobs - Pulsing Core */
        .blended-cta {
            position: relative;
            z-index: 1;
            overflow: visible;
        }

        .blended-cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 150%;
            /* CREATIVE: Elliptical Glow */
            background: radial-gradient(ellipse at center, rgba(13, 148, 136, 0.25) 0%, transparent 70%);
            filter: blur(50px);
            z-index: -1;
            pointer-events: none;
            opacity: 1;
            mix-blend-mode: multiply;
            animation: pulseGlow 6s infinite alternate;
        }

        /* Refined How It Works Blobs */
        .how-it-works {
            position: relative;
            z-index: 1;
            overflow: visible;
        }

        .how-it-works::before {
            border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
            background: radial-gradient(circle, rgba(45, 212, 191, 0.35) 0%, transparent 60%);
            opacity: 0.8;
            z-index: -1;
            mix-blend-mode: multiply;
        }

        .how-it-works::after {
            border-radius: 60% 40% 40% 60% / 50% 50% 50% 50%;
            background: radial-gradient(circle, rgba(20, 184, 166, 0.3) 0%, transparent 60%);
            opacity: 0.8;
            z-index: -1;
            mix-blend-mode: multiply;
        }

        @keyframes blobFloat {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }

            100% {
                transform: translate(50px, 40px) rotate(15deg);
            }
        }

        @keyframes pulseGlow {
            0% {
                opacity: 0.7;
                transform: translate(-50%, -50%) scale(0.95);
            }

            100% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1.15);
            }
        }

        /* --- GLOBAL MOBILE OPTIMIZATIONS --- */
        @media (max-width: 900px) {
            section {
                padding: 40px 0 !important;
                /* Reduce global padding to remove free space */
            }

            /* Restore Hero padding to clear fixed navbar */
            .hero {
                padding: 100px 0 30px !important;
            }

            /* Fix Scroll Lag & Drift: Disable heavy effects on mobile */
            .blob,
            .social-proof-blob-bottom,
            .connector-blob,
            .ambient-blob-container .blob {
                animation: none !important;
                filter: blur(40px) !important;
                /* Reduce blur radius */
                opacity: 0.3 !important;
                transform: none !important;
                transition: none !important;
                will-change: auto !important;
            }

            /* Ensure how-it-works blobs don't cause lag */
            .how-it-works::before,
            .how-it-works::after {
                display: none !important;
                /* Hide complex overlapping blobs on mobile if needed, or simplify */
                filter: blur(20px) !important;
            }

            /* Safari Mobile Performance Fix: Disable glassmorphism */
            * {
                -webkit-backdrop-filter: none !important;
                backdrop-filter: none !important;
            }
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
            background-color: transparent;
            box-shadow: none;
            border-radius: 50%;
            animation: whatsappPulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            background-color: #1ebc59;
        }

        .whatsapp-icon-svg {
            width: 70%;
            height: 70%;
        }

        @keyframes whatsappPulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        @media (max-width: 768px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
            }
        }