        /* ===================================
           RESET & BASE STYLES
           =================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --color-black: #1a1a1a;
            --color-gray: #666666;
            --color-light-gray: #888888;
            --color-bg-light: #fafafa;
            --color-bg-white: #ffffff;
            --color-accent-purple: #a855f7;
            --color-accent-blue: #6366f1;
            --gradient-primary: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
            --gradient-secondary: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
            --font-heading: 'Archivo', sans-serif;
            --font-body: 'Inter', sans-serif;
            --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--color-black);
            background: var(--color-bg-white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===================================
           SCROLL ANIMATIONS
           =================================== */
        .fade-in-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in {
            opacity: 0;
            transition: opacity 1s ease;
        }

        .fade-in.visible {
            opacity: 1;
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(60px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* ===================================
           TYPOGRAPHY
           =================================== */
        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            margin-bottom: 2rem;
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            margin-bottom: 1rem;
        }

        p {
            font-size: 1.125rem;
            line-height: 1.7;
            color: var(--color-gray);
        }

        /* ===================================
           BUTTONS
           =================================== */
        .btn {
            display: inline-block;
            padding: 16px 36px;
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 8px;
            transition: var(--transition-smooth);
            cursor: pointer;
            border: none;
            letter-spacing: -0.01em;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn span {
            position: relative;
            z-index: 1;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(99, 102, 241, 0.5);
        }

        .btn-secondary {
            background: var(--color-black);
            color: white;
        }

        .btn-secondary:hover {
            background: var(--color-gray);
            transform: translateY(-4px);
        }

        .btn-outline {
            background: transparent;
            color: var(--color-black);
            border: 2px solid var(--color-black);
        }

        .btn-outline:hover {
            background: var(--color-black);
            color: white;
            transform: translateY(-2px);
        }

        /* ===================================
           NAVIGATION
           =================================== */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            transition: var(--transition-smooth);
        }

        .nav.scrolled {
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-link {
            text-decoration: none;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 2px;
            font-family: var(--font-heading);
        }

        .logo-linear {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--color-black);
            letter-spacing: -0.03em;
        }

        .logo-slash {
            font-size: 2.2rem;
            font-weight: 300;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transform: skewX(-12deg);
            margin: 0 -4px;
            transition: var(--transition-bounce);
        }

        .nav-logo:hover .logo-slash {
            transform: skewX(-12deg) scale(1.15) rotate(5deg);
        }

        .logo-ms {
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-gray);
            letter-spacing: -0.02em;
            align-self: flex-end;
            padding-bottom: 4px;
        }

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

        .nav-links a {
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--color-black);
            text-decoration: none;
            transition: var(--transition-smooth);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.4s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--color-accent-purple);
        }

        .nav-cta {
            padding: 10px 24px;
            background: var(--gradient-primary);
            color: white !important;
            border-radius: 6px;
        }

        .nav-cta::after {
            display: none;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--color-black);
            transition: var(--transition-smooth);
        }

        /* Mobile menu active states */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(255, 255, 255, 0.98);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 24px;
                opacity: 0;
                visibility: hidden;
                transition: var(--transition-smooth);
            }

            .nav-links.active {
                display: flex;
                opacity: 1;
                visibility: visible;
            }

            .nav-links a {
                font-size: 1.5rem;
            }

            .mobile-menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .mobile-menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .mobile-menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
        }

        /* ===================================
           HERO SECTION
           =================================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 24px 80px;
            background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #f8f9fa 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.1); }
        }

        .hero-content {
            max-width: 900px;
            text-align: center;
            z-index: 2;
            position: relative;
        }

        .hero-headline {
            margin-bottom: 24px;
            animation: fadeInUp 1s ease;
        }

        .highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            animation: shimmer 3s ease infinite;
        }

        @keyframes shimmer {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-subhead {
            font-size: 1.5rem;
            color: var(--color-gray);
            margin-bottom: 40px;
            animation: fadeInUp 1s ease 0.2s backwards;
        }

        .email-capture {
            display: flex;
            gap: 12px;
            max-width: 500px;
            margin: 0 auto 24px;
            animation: fadeInUp 1s ease 0.4s backwards;
        }

        .email-input {
            flex: 1;
            padding: 16px 20px;
            font-size: 1rem;
            border: 2px solid #e8e8e8;
            border-radius: 8px;
            font-family: var(--font-body);
            transition: var(--transition-smooth);
        }

        .email-input:focus {
            outline: none;
            border-color: var(--color-accent-purple);
            box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.1);
        }

        .hero-content > .btn-secondary {
            animation: fadeInUp 1s ease 0.6s backwards;
        }

        /* Floating elements */
        .hero-visual {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            pointer-events: none;
        }

        .floating-element {
            position: absolute;
            border-radius: 50%;
            opacity: 0.4;
            animation: float 8s ease-in-out infinite;
            filter: blur(40px);
        }

        .element-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }

        .element-2 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
            bottom: 20%;
            left: 5%;
            animation-delay: 2s;
        }

        .element-3 {
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
            top: 50%;
            left: 15%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        }

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

        /* ===================================
           PROBLEM/SOLUTION SECTION
           =================================== */
        .problem-solution {
            padding: 100px 24px;
            background: var(--color-bg-white);
            position: relative;
        }

        .problem-solution h2 {
            text-align: center;
            margin-bottom: 60px;
        }

        .split-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
            position: relative;
        }

        .split-content::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 10%;
            bottom: 10%;
            width: 2px;
            background: linear-gradient(to bottom, transparent, var(--color-accent-purple), transparent);
            transform: translateX(-50%);
        }

        .problem, .solution {
            padding: 40px;
            border-radius: 16px;
            transition: var(--transition-smooth);
            position: relative;
        }

        .problem::before,
        .solution::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 16px;
            padding: 2px;
            background: var(--gradient-primary);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .problem:hover::before,
        .solution:hover::before {
            opacity: 1;
        }

        .problem {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border: 1px solid #e8e8e8;
        }

        .solution {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
            border: 1px solid rgba(99, 102, 241, 0.2);
        }

        .problem:hover,
        .solution:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .solution-tagline {
            font-weight: 700;
            color: var(--color-black);
            margin-top: 20px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .problem-solution .btn {
            display: block;
            width: fit-content;
            margin: 0 auto;
        }

        /* ===================================
           SERVICES SECTION
           =================================== */
        .services {
            padding: 100px 24px;
            background: var(--color-bg-light);
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 400px;
            background: radial-gradient(ellipse at top, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .services h2 {
            text-align: center;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .service-card {
            background: white;
            padding: 40px;
            border-radius: 16px;
            border: 1px solid #e8e8e8;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .service-card:hover::before {
            transform: translateX(0);
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .service-card:hover::after {
            width: 500px;
            height: 500px;
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
            border-color: var(--color-accent-purple);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: inline-block;
            transition: var(--transition-bounce);
            position: relative;
            z-index: 1;
        }

        .service-card:hover .service-icon {
            transform: scale(1.2) rotate(5deg);
        }

        .service-card h3 {
            color: var(--color-black);
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .service-card p {
            font-size: 1rem;
            color: var(--color-gray);
            position: relative;
            z-index: 1;
        }

        .services .btn {
            display: block;
            width: fit-content;
            margin: 0 auto;
        }

        /* ===================================
           HOW IT WORKS SECTION
           =================================== */
        .how-it-works {
            padding: 100px 24px;
            background: var(--color-bg-white);
        }

        .how-it-works h2 {
            text-align: center;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
            position: relative;
        }

        .step {
            text-align: center;
            padding: 40px 24px;
            position: relative;
        }

        .step::before {
            content: '';
            position: absolute;
            top: 60px;
            right: -20px;
            width: 40px;
            height: 2px;
            background: linear-gradient(to right, var(--color-accent-purple), transparent);
        }

        .step:last-child::before {
            display: none;
        }

        .step-number {
            font-family: var(--font-heading);
            font-size: 5rem;
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 20px;
            transition: var(--transition-bounce);
            display: inline-block;
        }

        .step:hover .step-number {
            transform: scale(1.1) rotate(-5deg);
        }

        .step h3 {
            color: var(--color-black);
            margin-bottom: 16px;
        }

        .step p {
            font-size: 1rem;
        }

        .how-it-works .btn {
            display: block;
            width: fit-content;
            margin: 0 auto;
        }

        /* ===================================
           WHO FOR SECTION
           =================================== */
        .who-for {
            padding: 100px 24px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
        }

        .who-for::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 300px;
            background: radial-gradient(ellipse at bottom, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .who-for h2 {
            text-align: center;
        }

        .who-intro {
            font-size: 1.25rem;
            text-align: center;
            max-width: 900px;
            margin: 0 auto 24px;
            color: var(--color-gray);
        }

        .who-detail {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .fit-checklist {
            max-width: 700px;
            margin: 0 auto 60px;
            padding: 40px;
            background: white;
            border-radius: 16px;
            border: 2px solid var(--color-accent-purple);
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.1);
            transition: var(--transition-smooth);
        }

        .fit-checklist:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 80px rgba(99, 102, 241, 0.2);
        }

        .fit-checklist h3 {
            margin-bottom: 24px;
        }

        .fit-checklist ul {
            list-style: none;
        }

        .fit-checklist li {
            padding: 12px 0 12px 32px;
            position: relative;
            font-size: 1.125rem;
            color: var(--color-gray);
            transition: var(--transition-smooth);
        }

        .fit-checklist li:hover {
            transform: translateX(8px);
            color: var(--color-black);
        }

        .fit-checklist li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--color-accent-purple);
            font-weight: 700;
            font-size: 1.5rem;
            transition: var(--transition-bounce);
        }

        .fit-checklist li:hover::before {
            transform: scale(1.3) rotate(360deg);
        }

        .who-for .btn {
            display: block;
            width: fit-content;
            margin: 0 auto;
        }

        /* ===================================
           TRUST SECTION
           =================================== */
        .trust {
            padding: 100px 24px;
            background: var(--color-black);
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .trust::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            animation: pulse 4s ease infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
            50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
        }

        .trust h2 {
            color: white;
            position: relative;
            z-index: 1;
        }

        .trust p {
            font-size: 1.25rem;
            color: var(--color-light-gray);
            max-width: 800px;
            margin: 0 auto 40px;
            position: relative;
            z-index: 1;
        }

        .trust .btn {
            position: relative;
            z-index: 1;
        }

        /* ===================================
           CONTACT FORM SECTION
           =================================== */
        .contact-section {
            padding: 100px 24px;
            background: var(--color-bg-light);
        }

        .contact-section h2 {
            text-align: center;
        }

        .contact-form {
            max-width: 700px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

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

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

        .form-group label {
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 8px;
            color: var(--color-black);
        }

        .form-group input,
        .form-group textarea {
            padding: 14px 16px;
            font-family: var(--font-body);
            font-size: 1rem;
            border: 2px solid #e8e8e8;
            border-radius: 8px;
            transition: var(--transition-smooth);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--color-accent-purple);
            box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.1);
            transform: translateY(-2px);
        }

        .form-group textarea {
            resize: vertical;
        }

        .contact-form button {
            grid-column: 1 / -1;
            justify-self: center;
            margin-top: 16px;
        }

        .alt-contact {
            text-align: center;
            margin-top: 40px;
            font-size: 1rem;
        }

        .alt-contact a {
            color: var(--color-accent-purple);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        .alt-contact a:hover {
            text-decoration: underline;
        }

        /* ===================================
           FOOTER
           =================================== */
        .footer {
            background: var(--color-black);
            color: white;
            padding: 60px 24px 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand p {
            color: var(--color-light-gray);
            margin-top: 16px;
            font-size: 0.95rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 2px;
            margin-bottom: 16px;
        }

        .footer h4 {
            font-size: 1.125rem;
            margin-bottom: 16px;
            font-weight: 700;
        }

        .footer p,
        .footer a {
            color: var(--color-light-gray);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .footer a {
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        .footer a:hover {
            color: var(--color-accent-purple);
            transform: translateX(4px);
            display: inline-block;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .social-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom p {
            color: var(--color-light-gray);
            font-size: 0.875rem;
        }

        /* ===================================
           RESPONSIVE
           =================================== */
        @media (max-width: 968px) {
            .split-content {
                grid-template-columns: 1fr;
            }

            .split-content::before {
                display: none;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .process-steps {
                grid-template-columns: 1fr;
            }

            .step::before {
                display: none;
            }
            
            .contact-form {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }
            
            .hero {
                padding: 100px 24px 60px;
            }
            
            .email-capture {
                flex-direction: column;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.75rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
