:root {
            --color-cream: #FAF7F2;
            --color-sage: #7A9E7E;
            --color-sage-dark: #5A7E5E;
            --color-sage-light: #E8F0E9;
            --color-terracotta: #C4704B;
            --color-terracotta-light: #E8A98A;
            --color-charcoal: #2D3436;
            --color-charcoal-light: #636E72;
            --color-white: #FFFFFF;
            --font-display: 'Fraunces', Georgia, serif;
            --font-body: 'DM Sans', system-ui, sans-serif;
            --shadow-soft: 0 4px 20px rgba(45, 52, 54, 0.08);
            --shadow-medium: 0 8px 40px rgba(45, 52, 54, 0.12);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--color-charcoal);
            background: var(--color-cream);
            line-height: 1.7;
            font-size: 17px;
            overflow-x: hidden;
        }

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

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(250, 247, 242, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(122, 158, 126, 0.1);
            animation: slideDown 0.6s ease-out;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-sage-dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            object-fit: cover;
        }

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

        nav a {
            color: var(--color-charcoal);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-sage);
            transition: var(--transition);
        }

        nav a:hover::after {
            width: 100%;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-dark) 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(122, 158, 126, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(122, 158, 126, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--color-sage-dark);
            border: 2px solid var(--color-sage);
        }

        .btn-secondary:hover {
            background: var(--color-sage-light);
        }

        .btn-terracotta {
            background: linear-gradient(135deg, var(--color-terracotta) 0%, #A85A3B 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(196, 112, 75, 0.3);
        }

        .btn-terracotta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(196, 112, 75, 0.4);
        }

        /* Hero */
        .hero {
            padding: 160px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(122, 158, 126, 0.15) 0%, transparent 70%);
            animation: float 20s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(196, 112, 75, 0.1) 0%, transparent 70%);
            animation: float 15s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(5deg); }
            66% { transform: translate(-20px, 20px) rotate(-5deg); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: var(--color-sage-light);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-sage-dark);
            margin-bottom: 24px;
            animation: fadeInUp 0.6s ease-out 0.2s both;
        }

        .hero-badge::before {
            content: '✦';
            color: var(--color-sage);
        }

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

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            line-height: 1.15;
            color: var(--color-charcoal);
            margin-bottom: 24px;
            animation: fadeInUp 0.6s ease-out 0.3s both;
        }

        .hero h1 span {
            color: var(--color-sage-dark);
            font-style: italic;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--color-charcoal-light);
            margin-bottom: 40px;
            max-width: 600px;
            animation: fadeInUp 0.6s ease-out 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeInUp 0.6s ease-out 0.5s both;
        }

        /* Section Styles */
        section {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-label {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-sage);
            margin-bottom: 16px;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 700;
            color: var(--color-charcoal);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--color-charcoal-light);
        }

        /* Problem Section */
        .problem {
            background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-white) 100%);
        }

        .problem-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 48px;
            box-shadow: var(--shadow-medium);
            border: 1px solid rgba(122, 158, 126, 0.1);
            position: relative;
            overflow: hidden;
        }

        .problem-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--color-sage) 0%, var(--color-terracotta) 100%);
        }

        .problem-card p {
            font-size: 1.15rem;
            line-height: 1.8;
        }

        /* Features Grid */
        .features {
            background: var(--color-white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
            gap: 32px;
        }

        .feature-card {
            background: var(--color-cream);
            border-radius: var(--radius-md);
            padding: 36px;
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            border-color: var(--color-sage);
            box-shadow: var(--shadow-soft);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--color-sage-light) 0%, rgba(122, 158, 126, 0.2) 100%);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--color-charcoal);
        }

        .feature-card p {
            color: var(--color-charcoal-light);
            font-size: 0.95rem;
        }

        /* Highlight Section */
        .highlight {
            background: linear-gradient(135deg, var(--color-sage-dark) 0%, #4A6E4E 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .highlight::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        }

        .highlight .section-label {
            color: var(--color-terracotta-light);
        }

        .highlight .section-title {
            color: white;
        }

        .highlight .section-subtitle {
            color: rgba(255,255,255,0.8);
        }

        .highlight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .highlight-item {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-md);
            padding: 32px;
            border: 1px solid rgba(255,255,255,0.15);
        }

        .highlight-item h3 {
            font-family: var(--font-display);
            font-size: 1.25rem;
            margin-bottom: 12px;
        }

        .highlight-item p {
            opacity: 0.9;
            font-size: 0.95rem;
        }

        /* Patient Cockpit Section */
        .patient-cockpit {
            background: var(--color-cream);
        }

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

        @media (max-width: 900px) {
            .cockpit-content {
                grid-template-columns: 1fr;
            }
        }

        .cockpit-text h2 {
            font-family: var(--font-display);
            font-size: clamp(1.75rem, 3vw, 2.25rem);
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--color-charcoal);
        }

        .cockpit-text p {
            margin-bottom: 20px;
            color: var(--color-charcoal-light);
        }

        .cockpit-features {
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: 32px;
            box-shadow: var(--shadow-soft);
        }

        .cockpit-features h4 {
            font-family: var(--font-display);
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--color-sage-dark);
        }

        .cockpit-feature-list {
            list-style: none;
        }

        .cockpit-feature-list li {
            padding: 12px 0;
            border-bottom: 1px solid var(--color-sage-light);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .cockpit-feature-list li:last-child {
            border-bottom: none;
        }

        .cockpit-feature-list li::before {
            content: '✓';
            width: 24px;
            height: 24px;
            background: var(--color-sage-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: var(--color-sage-dark);
            font-weight: 700;
            flex-shrink: 0;
        }

        /* Comparison Section */
        .comparison {
            background: var(--color-white);
        }

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

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

        .comparison-card {
            padding: 40px;
            border-radius: var(--radius-lg);
        }

        .comparison-card.old {
            background: #FDF2F2;
            border: 2px solid #F5D5D5;
        }

        .comparison-card.new {
            background: var(--color-sage-light);
            border: 2px solid var(--color-sage);
        }

        .comparison-card h3 {
            font-family: var(--font-display);
            font-size: 1.35rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .comparison-card.old h3 {
            color: #C0392B;
        }

        .comparison-card.new h3 {
            color: var(--color-sage-dark);
        }

        .comparison-card p {
            line-height: 1.8;
        }

        /* Tech Section */
        .tech {
            background: var(--color-charcoal);
            color: white;
        }

        .tech .section-label {
            color: var(--color-terracotta-light);
        }

        .tech .section-title {
            color: white;
        }

        .tech .section-subtitle {
            color: rgba(255,255,255,0.7);
        }

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

        .tech-card {
            background: rgba(255,255,255,0.05);
            border-radius: var(--radius-md);
            padding: 32px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .tech-card h3 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            margin-bottom: 16px;
            color: var(--color-sage-light);
        }

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

        .tech-list li {
            padding: 8px 0;
            opacity: 0.85;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }

        .tech-list li::before {
            content: '→';
            color: var(--color-sage);
        }

        /* Audience Section */
        .audience {
            background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-white) 100%);
        }

        .audience-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }

        .audience-tag {
            background: var(--color-white);
            padding: 16px 28px;
            border-radius: 50px;
            font-weight: 500;
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--color-sage-light);
            transition: var(--transition);
        }

        .audience-tag:hover {
            transform: translateY(-2px);
            border-color: var(--color-sage);
        }

        /* Two Cockpits */
        .two-cockpits {
            background: var(--color-white);
        }

        .cockpits-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

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

        .cockpit-box {
            background: var(--color-cream);
            border-radius: var(--radius-lg);
            padding: 40px;
            border: 2px solid transparent;
            transition: var(--transition);
        }

        .cockpit-box:hover {
            border-color: var(--color-sage);
        }

        .cockpit-box.therapeut {
            border-top: 4px solid var(--color-sage);
        }

        .cockpit-box.patient {
            border-top: 4px solid var(--color-terracotta);
        }

        .cockpit-box h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            margin-bottom: 24px;
        }

        .cockpit-box.therapeut h3 {
            color: var(--color-sage-dark);
        }

        .cockpit-box.patient h3 {
            color: var(--color-terracotta);
        }

        .cockpit-box ul {
            list-style: none;
        }

        .cockpit-box li {
            padding: 10px 0;
            padding-left: 28px;
            position: relative;
        }

        .cockpit-box li::before {
            content: '•';
            position: absolute;
            left: 0;
            font-weight: 700;
        }

        .cockpit-box.therapeut li::before {
            color: var(--color-sage);
        }

        .cockpit-box.patient li::before {
            color: var(--color-terracotta);
        }

        /* Pricing Section */
        .pricing {
            background: var(--color-cream);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
            gap: 32px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            text-align: center;
            position: relative;
            border: 2px solid transparent;
            transition: var(--transition);
        }

        .pricing-card:hover {
            border-color: var(--color-sage);
        }

        .pricing-card.featured {
            border-color: var(--color-sage);
            box-shadow: var(--shadow-medium);
            transform: scale(1.02);
        }

        .pricing-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-dark) 100%);
            color: white;
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .pricing-header h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            color: var(--color-charcoal);
            margin-bottom: 16px;
        }

        .pricing-price {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 700;
            color: var(--color-sage-dark);
            margin-bottom: 32px;
        }

        .pricing-price span {
            font-size: 1rem;
            font-weight: 400;
            color: var(--color-charcoal-light);
        }

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

        .pricing-features li {
            padding: 10px 0;
            border-bottom: 1px solid var(--color-sage-light);
            padding-left: 28px;
            position: relative;
        }

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

        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--color-sage);
            font-weight: 700;
        }

        .pricing-card .btn {
            width: 100%;
            justify-content: center;
        }

        .pricing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-top: 24px;
        }

        .toggle-label {
            font-size: 1rem;
            color: var(--color-charcoal);
            opacity: 0.6;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .toggle-label.active {
            opacity: 1;
            font-weight: 600;
        }

        .toggle-discount {
            background: var(--color-sage);
            color: white;
            font-size: 0.75rem;
            padding: 2px 8px;
            border-radius: 12px;
            margin-left: 4px;
        }

        .toggle-switch {
            position: relative;
            width: 56px;
            height: 30px;
        }

        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--color-sage-light);
            transition: 0.3s;
            border-radius: 30px;
        }

        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: 0.3s;
            border-radius: 50%;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .toggle-switch input:checked + .toggle-slider {
            background-color: var(--color-sage);
        }

        .toggle-switch input:checked + .toggle-slider:before {
            transform: translateX(26px);
        }

        .pricing-billed {
            font-size: 0.85rem;
            color: var(--color-charcoal);
            opacity: 0.7;
            margin-top: 4px;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-dark) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before,
        .cta::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
        }

        .cta::before {
            top: -150px;
            left: -150px;
        }

        .cta::after {
            bottom: -150px;
            right: -150px;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 2.75rem);
            margin-bottom: 24px;
        }

        .cta p {
            font-size: 1.15rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 40px;
        }

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

        .cta-form {
            max-width: 560px;
            margin: 0 auto 40px;
            padding: 32px 32px 24px;
            border-radius: var(--radius-md);
            background: var(--color-white);
            box-shadow: 0 20px 60px rgba(15, 33, 25, 0.18);
            text-align: left;
        }

        .cta-form .form-row {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }

        .cta-form .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 16px;
        }

        .cta-form label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-charcoal);
            letter-spacing: 0.01em;
        }

        .cta-form input,
        .cta-form textarea {
            border: none;
            border-radius: var(--radius-sm);
            padding: 12px 14px;
            font-size: 0.95rem;
            font-family: var(--font-body);
            color: var(--color-charcoal);
            background: #F4F1EC;
            transition: background 0.2s, box-shadow 0.2s;
        }

        .cta-form input::placeholder,
        .cta-form textarea::placeholder {
            color: #A0998F;
        }

        .cta-form input:focus,
        .cta-form textarea:focus {
            outline: none;
            background: #EDE9E3;
            box-shadow: 0 0 0 2px var(--color-sage);
        }

        .cta-form textarea {
            resize: vertical;
            min-height: 100px;
        }

        .cta-form .btn.btn-primary {
            width: 100%;
            justify-content: center;
            margin-top: 4px;
            background: var(--color-sage);
            color: var(--color-white);
            border: none;
            font-size: 1rem;
            font-weight: 600;
            padding: 14px 24px;
        }

        .cta-form .btn.btn-primary:hover {
            background: var(--color-sage-dark);
        }

        .cta-form .btn.btn-primary:disabled {
            opacity: 0.7;
            cursor: wait;
        }

        .hp-field {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }

        .cta-form .form-note {
            margin: 16px 0 0;
            font-size: 0.85rem;
            color: var(--color-charcoal-light);
            text-align: center;
            opacity: 1;
        }

        .form-status {
            min-height: 22px;
            margin-top: 10px;
            font-size: 0.9rem;
            text-align: center;
            font-weight: 500;
        }

        .form-status.success {
            color: var(--color-sage-dark);
        }

        .form-status.error {
            color: var(--color-terracotta);
        }

        .cta .btn-primary {
            background: white;
            color: var(--color-sage-dark);
        }

        .cta .btn-secondary {
            border-color: white;
            color: white;
        }

        .cta .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
        }

        .cta-features {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .cta-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            opacity: 0.9;
        }

        .cta-feature::before {
            content: '✓';
            width: 20px;
            height: 20px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
        }

        /* Footer */
        footer {
            background: var(--color-charcoal);
            color: rgba(255,255,255,0.7);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-logo {
            font-family: var(--font-display);
            font-size: 1.25rem;
            color: white;
            font-weight: 600;
        }

        .footer-tagline {
            max-width: 500px;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .footer-nav {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            margin-top: 16px;
        }

        .footer-nav a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

        .footer-nav a:hover {
            color: white;
        }

        .footer-bottom {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 0.85rem;
        }

        /* Mobile Navigation */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--color-charcoal);
            margin: 6px 0;
            transition: var(--transition);
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            header nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--color-cream);
                flex-direction: column;
                padding: 24px;
                gap: 16px;
                box-shadow: var(--shadow-medium);
            }

            header nav.active {
                display: flex;
            }

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

            /* Hero responsive */
            .hero {
                padding: 100px 0 60px;
            }

            .hero h1 {
                font-size: 2rem;
            }

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

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

            .hero-buttons .btn {
                width: 100%;
                justify-content: center;
            }

            /* Section headers responsive */
            .section-title {
                font-size: 1.75rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            /* Highlight grid responsive */
            .highlight-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .highlight-item {
                padding: 24px;
            }

            /* Comparison grid responsive */
            .comparison-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .comparison-card {
                padding: 24px;
            }

            /* Pricing responsive */
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .pricing-card {
                padding: 28px;
            }

            .pricing-toggle {
                flex-wrap: wrap;
                gap: 12px;
            }

            .pricing-price {
                font-size: 2.5rem;
            }

            /* CTA responsive */
            .cta-content h2 {
                font-size: 1.75rem;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 12px;
            }

            .cta-buttons .btn {
                width: 100%;
                justify-content: center;
            }

            .cta-form {
                padding: 24px 20px 20px;
                margin-bottom: 32px;
            }

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

            .cta-features {
                flex-direction: column;
                gap: 12px;
                align-items: center;
            }

            /* Cockpit features responsive */
            .cockpit-features {
                padding: 24px;
            }

            /* Footer responsive */
            .footer-content {
                text-align: center;
                flex-direction: column;
            }

            .footer-nav {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }

            section {
                padding: 50px 0;
            }

            .hero {
                padding: 90px 0 50px;
            }

            .hero h1 {
                font-size: 1.75rem;
            }

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

            .feature-card {
                padding: 24px;
            }

            .feature-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }

            .pricing-card.featured {
                transform: none;
            }

            .logo-icon {
                width: 36px;
                height: 36px;
            }

            .logo-text {
                font-size: 1.1rem;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

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