/* Index page styles - inherits base styles from site.css */
        body {
            overflow-x: hidden;
        }
        
        /* Skip to main content link for accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--navy);
            color: white;
            padding: 8px 16px;
            text-decoration: none;
            z-index: 1000;
            border-radius: 0 0 8px 0;
        }
        .skip-link:focus {
            top: 0;
        }
        
        /* Respect reduced motion preferences */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        
        /* Index page uses default site typography */
        
        /* Dropdown styles */
        .schedule-dropdown {
            margin-top: 1rem;
        }
        .schedule-toggle {
            background: none;
            border: none;
            color: var(--navy);
            font-size: 0.875rem;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0;
            font-weight: 500;
            transition: all 0.3s ease;
            min-height: 48px;
        }
        .schedule-toggle:hover {
            color: var(--blue);
        }
        .schedule-toggle svg {
            width: 12px;
            height: 12px;
            transition: transform 0.3s ease;
        }
        .schedule-toggle.open svg {
            transform: rotate(180deg);
        }
        .schedule-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            margin-left: 1rem;
        }
        .schedule-content.open {
            max-height: 200px;
            margin-top: 1rem;
        }
        
        /* Math dropdown styles */
        .math-dropdown {
            margin-top: 1rem;
        }
        .math-toggle {
            background: none;
            border: none;
            color: var(--navy);
            font-size: 0.875rem;
            cursor: pointer;
            text-decoration: underline;
            padding: 0.25rem 0;
            transition: all 0.3s ease;
            min-height: 48px;
        }
        .math-toggle:hover {
            color: var(--blue);
        }
        .math-content {
            display: none;
            background: white;
            border: 1px solid rgba(15, 31, 51, 0.1);
            border-radius: 8px;
            padding: 1.5rem;
            margin-top: 1rem;
        }
        .math-content.open {
            display: block;
        }
        .math-calculation {
            font-family: 'Courier New', monospace;
            font-size: 0.875rem;
            line-height: 1.8;
            color: var(--text);
        }
        
        /* Focus States */
        *:focus {
            outline: 2px solid var(--navy);
            outline-offset: 2px;
        }
        *:focus:not(:focus-visible) {
            outline: none;
        }
        
        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 1;
            transition: opacity 0.5s ease;
        }
        .loading-lever {
            width: 80px;
            height: 60px;
            position: relative;
        }
        .loading-lever svg {
            width: 100%;
            height: 100%;
            animation: leverTilt 1.5s ease-in-out infinite;
        }
        @keyframes leverTilt {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(-10deg); }
        }
        
        
        /* Nottingham Badge */
        .nottingham-badge {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.75);
            margin-top: 2rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.65s;
            text-align: center;
        }
        .nottingham-badge span {
            padding: 0 1rem;
            border-right: 1px solid rgba(255, 255, 255, 0.3);
        }
        .nottingham-badge span:last-child {
            border-right: none;
        }
        
        /* Main Content */
        main {
            margin-top: 90px;
        }
        /* Ultra-fallback color */
        .hero {
            padding: 6rem 0;
            text-align: center;
            background-color: var(--navy);
            /* Fallback gradient (widely supported) */
            background-image:
                radial-gradient(1200px 600px at 12% -10%, rgba(37, 99, 235, 0.35), transparent 70%),
                radial-gradient(900px 450px at 88% 0%,  rgba(37, 99, 235, 0.25), transparent 75%),
                linear-gradient(180deg, #0f1f33 0%, #152a44 60%, #0f1f33 100%);
        }

        /* Progressive enhancement where color-mix is supported */
        @supports (color: color-mix(in oklch, white, black)) {
            .hero {
                background-image:
                    radial-gradient(1200px 600px at 12% -10%, color-mix(in oklch, var(--blue) 35%, transparent), transparent 70%),
                    radial-gradient(900px 450px at 88% 0%,  color-mix(in oklch, var(--blue) 25%, transparent), transparent 75%),
                    linear-gradient(180deg, var(--navy) 0%, color-mix(in oklch, var(--navy) 65%, var(--blue) 35%) 60%, var(--navy) 100%);
            }
        }

        .hero-content-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            margin-bottom: 1.5rem;
            color: white;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.2s;
        }
        .hero-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.4s;
        }
        .hero-location {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.5s;
        }

        .hero-guarantee {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.8);
            font-style: italic;
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.55s;
        }
        
        /* Trust Strip */
        .trust-strip {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            padding: 0.75rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            margin: 1rem 0 0;
            font-size: 0.875rem;
            color: white;
            font-weight: 500;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.6s;
        }
        .trust-strip span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .trust-strip span:not(:last-child) {
            padding-right: 1.5rem;
            border-right: 1px solid rgba(255, 255, 255, 0.3);
        }
        @media (max-width: 768px) {
            .trust-strip {
                font-size: 0.75rem;
                gap: 1rem;
            }
            .trust-strip span:not(:last-child) {
                border-right: none;
                padding-right: 0;
            }
            
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
            from {
                opacity: 0;
                transform: translateY(20px);
            }
        }
        
        /* Lever Diagram */
        .lever-diagram {
            max-width: 600px;
            margin: 4rem auto;
            padding: 3rem;
            background: var(--bg-subtle);
            border-radius: 16px;
            position: relative;
        }
        .lever-visual {
            width: 100%;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
        }
        .lever-visual svg {
            width: 100%;
            max-width: 400px;
            height: auto;
        }
        
        /* Lever Animation Elements */
        .lever-animated {
            opacity: 0;
        }
        .lever-animated.triggered {
            opacity: 1;
        }
        #leverBeam {
            transform-origin: 200px 120px;
            transition: transform 1.8s cubic-bezier(0.45, 0, 0.15, 1) 0.5s;
        }
        .lever-animated.triggered #leverBeam {
            transform: rotate(-8deg);
        }
        #smallWeight {
            transform-origin: center;
            transition: transform 1.8s cubic-bezier(0.45, 0, 0.15, 1) 0.5s;
        }
        .lever-animated.triggered #smallWeight {
            transform: translateY(20px);
        }
        #largeWeight {
            transform-origin: center;
            transition: transform 1.8s cubic-bezier(0.45, 0, 0.15, 1) 0.5s;
        }
        .lever-animated.triggered #largeWeight {
            transform: translateY(-28px);
        }
        
        /* Subtle bounce at end */
        @keyframes settleSmall {
            0% { transform: translateY(20px); }
            60% { transform: translateY(18px); }
            100% { transform: translateY(20px); }
        }
        @keyframes settleLarge {
            0% { transform: translateY(-28px); }
            60% { transform: translateY(-26px); }
            100% { transform: translateY(-28px); }
        }
        .lever-animated.triggered.settled #smallWeight {
            animation: settleSmall 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.3s forwards;
        }
        .lever-animated.triggered.settled #largeWeight {
            animation: settleLarge 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.3s forwards;
        }
        
        /* Text labels fade in */
        .lever-label {
            opacity: 0;
            transition: opacity 0.8s ease;
        }
        .lever-animated.triggered .lever-label {
            transition-delay: 2.2s;
            opacity: 1;
        }
        

        /* AI Teaser Section */
        .ai-teaser-section {
            padding: 6rem 0;
            background: linear-gradient(to bottom, var(--bg) 0%, var(--bg-subtle) 50%, var(--bg) 100%);
            position: relative;
        }
        .ai-teaser-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .ai-teaser-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .ai-teaser-subtitle {
            font-size: 1.25rem;
            color: var(--text-light);
            margin-bottom: 0.5rem;
        }
        
        /* Problem Cards for Teaser */
        .teaser-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
        .teaser-card {
            background: var(--bg);
            border: 2px solid transparent;
            border-radius: 16px;
            padding: 2rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(15, 31, 51, 0.05);
            color: inherit;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .teaser-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
            transition: left 0.6s ease;
        }
        .teaser-card:hover {
            border-color: var(--navy);
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(15, 31, 51, 0.12);
        }
        .teaser-card:hover::before {
            left: 100%;
        }
        .teaser-card[aria-selected="true"] {
            border-color: var(--navy);
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(15, 31, 51, 0.12);
        }
        .teaser-card:focus-visible {
            outline: 2px solid var(--navy);
            outline-offset: 2px;
        }
        .teaser-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--navy), var(--blue));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.75rem;
        }
        .teaser-title {
            font-weight: 600;
            font-size: 1.25rem;
            color: var(--navy);
            margin-bottom: 1.5rem;
        }
        .teaser-description {
            display: none; /* Hidden in streamlined version */
        }
        .teaser-stat {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--bg-subtle);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            color: var(--navy);
            font-weight: 600;
            margin-top: auto;
        }
        .teaser-stat-icon {
            color: var(--green);
        }
        
        /* CTA to Demo Page */
        .demo-cta {
            text-align: center;
            margin-top: 3rem;
        }
        .demo-cta-secondary {
            display: inline-block;
            color: var(--navy);
            padding: 0.75rem 2rem;
            border: 2px solid var(--navy);
            border-radius: 8px;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            background: transparent;
            min-height: 48px;
        }
        .demo-cta-secondary:hover {
            background: var(--navy);
            color: white;
            transform: translateY(-2px);
        }
        .demo-cta-primary:hover {
            background: var(--blue);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(15, 31, 51, 0.2);
        }
        .demo-cta-subtitle {
            margin-top: 1rem;
            font-size: 0.875rem;
            color: var(--text-light);
        }
        
        /* Results Grid */
        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 6rem 0;
        }
        .result-card {
            background: var(--bg);
            padding: 2.5rem;
            border: 1px solid rgba(15, 31, 51, 0.1);
            border-radius: 8px;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            min-height: 280px;
            text-decoration: none;
            color: inherit;
        }
        .result-card p:last-of-type {
            margin-top: auto;
        }
        .result-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--navy);
            transition: height 0.3s ease;
        }
        .result-card:hover {
            border-color: var(--navy);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(15, 31, 51, 0.1);
        }
        .result-card:hover::before {
            height: 100%;
        }
        .practice-type {
            font-size: 0.875rem;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .main-metric {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            color: var(--navy);
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        /* Breathing animation for metrics */
        .breathing {
            animation: subtleBreathe 4s ease-in-out infinite;
            display: inline-block;
            transform-origin: left center;
        }
        @keyframes subtleBreathe {
            0%, 95% { transform: scale(1); }
            97.5% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }
        
        /* East Midlands One-liner */
        .east-midlands-oneliner {
            text-align: center;
            padding: 3rem 0;
            font-size: 1.125rem;
            color: var(--navy);
            font-weight: 500;
            background: var(--bg-subtle);
            margin: 4rem 0;
        }
        
        /* Whisper Mode - Limited to key sections */
        .whisper {
            opacity: 0;
        }
        .whisper.visible {
            animation: whisperIn 2.5s ease forwards;
        }
        @keyframes whisperIn {
            0% {
                opacity: 0;
                filter: blur(4px);
                transform: translateY(10px);
            }
            50% {
                opacity: 0.5;
                filter: blur(2px);
            }
            100% {
                opacity: 1;
                filter: blur(0);
                transform: translateY(0);
            }
        }
        .whisper-delay-1 { animation-delay: 0.5s; }
        .whisper-delay-2 { animation-delay: 1s; }
        
        /* Testimonials */
        .testimonials-section {
            padding: 4rem 0;
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        .testimonial-card {
            text-align: center;
        }
        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--bg-subtle);
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--navy);
            font-weight: 600;
        }
        
        /* Trusted By Section */
        .trusted-section {
            padding: 4rem 0;
            text-align: center;
        }
        .trusted-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
        .trusted-logo {
            width: 150px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .trusted-pending {
            width: 150px;
            height: 60px;
            border: 2px dashed rgba(15, 31, 51, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }
        
        /* Case Studies - Card Based */
        .case-studies-section {
            padding: 4rem 0;
        }
        .case-study-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        .case-study-card {
            background: var(--bg-subtle);
            padding: 2.5rem;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .case-study-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(15, 31, 51, 0.1);
        }
        .case-study-card .case-study-metric {
            font-size: 3rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.5rem;
            line-height: 1;
        }
        .case-study-card h3 {
            color: var(--navy);
            margin-bottom: 1rem;
            font-size: 1.25rem;
        }
        .case-study-card p {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        .case-study-link {
            color: var(--navy);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .case-study-link:hover {
            color: var(--blue);
            text-decoration: underline;
        }
        
        /* Before/After Grid */
        .before-after-grid {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 2rem;
            align-items: center;
        }
        @media (max-width: 768px) {
            .before-after-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .before-after-grid > div:nth-child(2) {
                transform: rotate(90deg);
                margin: 1rem 0;
            }
        }
        
        /* Pricing Banner - Redesigned */
        .pricing-banner-redesign {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--navy) 0%, #1a2d45 100%);
            margin: 4rem 0;
            position: relative;
            overflow: hidden;
        }
        .pricing-banner-redesign::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }
        .pricing-banner-content {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .pricing-checklist {
            list-style: none;
            padding: 0;
            margin: 2rem auto;
            max-width: 400px;
            text-align: left;
        }
        .pricing-checklist li {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 0;
            color: white;
            font-size: 1.125rem;
            font-weight: 500;
        }
        .pricing-cta-white {
            display: inline-block;
            background: white;
            color: var(--navy);
            padding: 1rem 2.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 1rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        .pricing-cta-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }
        
        /* Old pricing banner styles - removed to avoid conflicts */
        .pricing-highlight {
            background: var(--bg);
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            border: 2px solid var(--navy);
        }
        .pricing-from {
            font-size: 3rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 1rem;
        }
        .pricing-features {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            font-size: 0.875rem;
            color: var(--text);
        }
        .pricing-cta {
            display: inline-block;
            background: var(--navy);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }
        .pricing-cta:hover {
            background: var(--blue);
            transform: translateY(-2px);
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 4rem 0;
        }
        .faq-grid {
            max-width: 700px;
            margin: 0 auto;
        }
        .faq-item {
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(15, 31, 51, 0.1);
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            font-weight: 500;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }
        .faq-answer {
            color: var(--text-light);
        }
        
        /* Contact Section */
        .contact-section {
            padding: 6rem 0;
            background: var(--bg-subtle);
        }
        .contact-image-float {
            position: absolute;
            top: 0;
            right: -140px;
            width: 120px;
            height: 120px;
        }
        .contact-image-float img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 4px 12px rgba(15, 31, 51, 0.15);
        }
        .contact-intro {
            font-size: 1.125rem;
            color: var(--text-light);
            line-height: 1.6;
        }
        .contact-form {
            margin: 2rem 0;
        }
        .contact-form .form-field {
            margin: 1.5rem 0;
        }
        .contact-form label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 0.75rem;
            background: var(--bg);
            border: 1px solid rgba(15, 31, 51, 0.2);
            border-radius: 8px;
            color: var(--text);
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }
        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--navy);
            box-shadow: 0 0 0 3px rgba(15, 31, 51, 0.1);
        }
        .contact-form textarea {
            resize: vertical;
            min-height: 120px;
        }
        .contact-form .form-privacy {
            font-size: 0.75rem;
            color: var(--text-light);
            margin-top: 1rem;
        }
        .contact-form .form-privacy a {
            color: var(--navy);
            text-decoration: underline;
        }
        .contact-form .submit-button {
            width: 100%;
            padding: 1rem;
            background: var(--navy);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }
        .contact-form .submit-button:hover {
            background: var(--blue);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(15, 31, 51, 0.2);
        }
        .contact-alternatives {
            padding-top: 1.5rem;
            border-top: 1px solid rgba(15, 31, 51, 0.1);
        }
        .contact-alternatives a {
            color: var(--navy);
            text-decoration: underline;
            font-weight: 500;
        }
        .capacity-note {
            margin-top: 2rem;
            padding: 1.5rem;
            background: var(--bg);
            border-left: 4px solid var(--navy);
            border-radius: 4px;
        }
        .capacity-note strong {
            color: var(--navy);
        }
        
        /* Results Grid */
        .results-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
            justify-items: center;
        }
        .result-card {
            background: var(--bg);
            border: 1px solid rgba(15, 31, 51, 0.1);
            border-radius: 12px;
            padding: 2rem;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            min-height: 250px;
            width: 100%;
            max-width: 350px;
        }
        .result-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(15, 31, 51, 0.12);
            border-color: var(--navy);
        }
        .practice-type {
            font-size: 0.875rem;
            color: var(--navy);
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .main-metric {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        
        
        /* Mobile optimizations */
        @media (max-width: 768px) {
            .phase { 
                grid-template-columns: 1fr;
                text-align: center; 
                gap: 1rem; 
            }
            .phase-price {
                text-align: center;
            }
            .faq-grid { grid-template-columns: 1fr; }
            .testimonial-grid { grid-template-columns: 1fr; }
            .case-study-header { grid-template-columns: 1fr; text-align: center; }
            .case-study-metric { font-size: 3.5rem; }
            .case-study-cards { grid-template-columns: 1fr; }
            .teaser-cards { grid-template-columns: 1fr; padding: 0 1rem; }
            .teaser-card { padding: 1.75rem; min-height: auto; }
            .results-grid { 
                grid-template-columns: 1fr; 
                gap: 1.5rem; 
                padding: 0 1.5rem;
            }
            .result-card { 
                max-width: 100%; 
                padding: 1.5rem;
            }
            .contact-image-float {
                display: none;
            }
            .pricing-features {
                gap: 1rem;
            }
            
            /* Touch targets */
            .teaser-card,
            .demo-cta-secondary,
            .cookie-button,
            .pricing-cta,
            button,
            a.case-study-link {
                min-height: 48px;
            }
        }
        
        /* Behavioral adaptations */
        .welcome-back {
            display: none;
            background: rgba(15, 31, 51, 0.05);
            padding: 0.75rem;
            text-align: center;
            font-size: 0.875rem;
            color: var(--navy);
            border-bottom: 1px solid rgba(15, 31, 51, 0.1);
            animation: slideDown 0.5s ease;
        }
        .welcome-back.visible {
            display: block;
        }
        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }
        
        .cookie-buttons {
            display: inline-flex;
            gap: 1rem;
            margin-left: 1rem;
        }
        .cookie-button {
            background: transparent;
            color: var(--bg);
            border: 1px solid var(--bg);
            padding: 0.5rem 1.5rem;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.875rem;
            transition: all 0.3s ease;
        }
        .cookie-button:hover {
            background: var(--bg);
            color: var(--navy);
        }
        .cookie-button.primary {
            background: var(--bg);
            color: var(--navy);
        }
        .cookie-button.primary:hover {
            background: rgba(255, 255, 255, 0.9);
        }
        
        /* Time-based adaptations */
        body.evening {
            --navy: #1a2a3d;
            --text-light: #5a6578;
        }
        body.morning {
            --blue: #1e50d8;
        }
        
        /* No-JS Fallback */
        .no-js .whisper {
            opacity: 1 !important;
            filter: none !important;
            transform: none !important;
        }