/* Page-specific styles for luke.html */
/* ═══════════════════════════════════════════════════════════
           NAVIGATION — matches home page (Playfair Display, cream)
           ═══════════════════════════════════════════════════════════ */

        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--space-lg) var(--space-2xl);
            background: rgba(250, 248, 245, 0.95);
            backdrop-filter: blur(10px);
            transition: box-shadow 0.3s ease;
        }

        .nav-logo {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 700;
            color: var(--deep-navy);
            text-decoration: none;
        }

        .nav-logo span { color: var(--signal-red); }

        .nav-links {
            display: flex;
            align-items: center;
            gap: var(--space-xl);
        }

        .nav-links a {
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 500;
            color: var(--charcoal);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .nav-links a:hover { color: var(--signal-red); }

        .nav-cta {
            background: var(--signal-red) !important;
            color: white !important;
            padding: 12px 24px !important;
            border-radius: 8px;
            font-weight: 600 !important;
            transition: all 0.2s ease !important;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
            background: none;
            border: none;
            padding: 0;
        }

        .nav-toggle span {
            width: 25px;
            height: 2px;
            background: var(--charcoal);
            transition: all 0.3s ease;
            display: block;
        }

        .nav-link.active {
            color: var(--signal-red) !important;
        }

        @media (max-width: 900px) {
            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(250, 248, 245, 0.98);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: var(--space-xl);
                z-index: 999;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links a {
                font-size: 20px;
            }

            .nav-toggle {
                display: flex;
            }

            .nav-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            .nav-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            .nav-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }
        }

        /* ═══════════════════════════════════════════════════════════
           LUKE HEALTH PAGE STYLES
           ═══════════════════════════════════════════════════════════ */

        :root {
            --luke-teal: #0D9488;
            --luke-teal-light: #14B8A6;
            --luke-navy: #0F172A;
            --luke-gradient: linear-gradient(135deg, var(--luke-teal), var(--deep-navy));
        }

        /* Hero Section */
        .luke-hero {
            padding: 160px var(--space-2xl) var(--space-4xl);
            background: var(--luke-navy);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .luke-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse at 30% 40%, rgba(13,148,136,0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 60%, rgba(29,53,87,0.3) 0%, transparent 50%);
            pointer-events: none;
        }

        .luke-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }

        .luke-hero-inner {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .luke-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(13,148,136,0.2);
            border: 1px solid rgba(13,148,136,0.4);
            color: var(--luke-teal-light);
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 10px 20px;
            border-radius: 100px;
            margin-bottom: var(--space-xl);
        }

        .luke-hero h1 {
            font-family: var(--font-display);
            font-size: clamp(42px, 6vw, 72px);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: var(--space-xl);
            color: white;
        }

        .luke-hero h1 em {
            font-style: italic;
            color: var(--luke-teal-light);
        }

        .luke-hero-subtitle {
            font-family: var(--font-body);
            font-size: clamp(18px, 2vw, 22px);
            color: rgba(255,255,255,0.8);
            max-width: 750px;
            margin: 0 auto var(--space-2xl);
            line-height: 1.7;
        }

        .luke-hero-cta {
            display: flex;
            justify-content: center;
            gap: var(--space-md);
            flex-wrap: wrap;
        }

        .luke-hero .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
        }

        .luke-hero .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.5);
        }

        /* Problem Section */
        .problem-section {
            padding: var(--space-4xl) var(--space-2xl);
            background: var(--cream);
        }

        .problem-inner {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .problem-text {
            font-family: var(--font-body);
            font-size: 19px;
            color: var(--soft-gray);
            line-height: 1.8;
            margin-bottom: var(--space-lg);
        }

        .problem-highlight {
            font-family: var(--font-display);
            font-size: 24px;
            font-style: italic;
            color: var(--charcoal);
            padding: var(--space-xl);
            background: var(--blush);
            border-left: 4px solid var(--signal-red);
            border-radius: 0 12px 12px 0;
            margin-top: var(--space-2xl);
        }

        .problem-stack {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: var(--space-md);
            margin: var(--space-2xl) 0 var(--space-lg);
        }

        .stack-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 500;
            color: var(--soft-gray);
            background: white;
            padding: 10px 18px;
            border-radius: 100px;
            border: 1px solid rgba(0,0,0,0.08);
        }

        .stack-item .cost {
            color: var(--signal-red);
            font-weight: 600;
        }

        /* Domains Section */
        .domains-section {
            padding: var(--space-4xl) var(--space-2xl);
            background: var(--warm-white);
        }

        .domains-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .domains-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
        }

        .domains-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-xl);
        }

        .domain-card {
            background: var(--cream);
            border-radius: 20px;
            padding: var(--space-2xl);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .domain-card.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .domain-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(13,148,136,0.3);
        }

        .domain-card.animate-in:hover {
            transform: translateY(-6px);
        }

        .domain-icon {
            width: 56px;
            height: 56px;
            background: var(--luke-teal);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--space-lg);
            font-size: 28px;
        }

        .domain-card h3 {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: var(--space-md);
        }

        .domain-card p {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--soft-gray);
            line-height: 1.7;
            margin-bottom: var(--space-lg);
        }

        .domain-features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .domain-feature {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 500;
            color: var(--luke-teal);
            background: rgba(13,148,136,0.08);
            padding: 6px 12px;
            border-radius: 100px;
        }

        /* Differentiator Section */
        .diff-section {
            padding: var(--space-4xl) var(--space-2xl);
            background: var(--luke-navy);
            color: white;
        }

        .diff-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .diff-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
        }

        .diff-header .section-label {
            color: var(--luke-teal-light);
        }

        .diff-header .section-headline {
            color: white;
        }

        .diff-header .section-headline em {
            color: var(--luke-teal-light);
        }

        .diff-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-xl);
        }

        .diff-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: var(--space-2xl);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s ease, border-color 0.3s ease;
        }

        .diff-card.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .diff-card:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(13,148,136,0.4);
        }

        .diff-card.animate-in:hover {
            transform: translateY(-4px);
        }

        .diff-card h3 {
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 600;
            color: white;
            margin-bottom: var(--space-md);
        }

        .diff-card p {
            font-family: var(--font-body);
            font-size: 15px;
            color: rgba(255,255,255,0.7);
            line-height: 1.7;
        }

        .diff-card .diff-icon {
            width: 48px;
            height: 48px;
            background: rgba(13,148,136,0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--space-lg);
            font-size: 24px;
        }

        /* Compliance Section */
        .compliance-section {
            padding: var(--space-4xl) var(--space-2xl);
            background: var(--cream);
        }

        .compliance-inner {
            max-width: 1000px;
            margin: 0 auto;
        }

        .compliance-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
        }

        .compliance-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-lg);
        }

        .compliance-item {
            text-align: center;
            padding: var(--space-xl);
            background: var(--warm-white);
            border-radius: 16px;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .compliance-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .compliance-icon {
            width: 64px;
            height: 64px;
            background: rgba(13,148,136,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto var(--space-md);
            font-size: 28px;
        }

        .compliance-item h3 {
            font-family: var(--font-display);
            font-size: 18px;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 8px;
        }

        .compliance-item p {
            font-family: var(--font-body);
            font-size: 14px;
            color: var(--soft-gray);
            line-height: 1.6;
        }

        /* Audience Section */
        .audience-section {
            padding: var(--space-4xl) var(--space-2xl);
            background: var(--warm-white);
        }

        .audience-inner {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .audience-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: var(--space-md);
            margin-top: var(--space-2xl);
        }

        .audience-tag {
            font-family: var(--font-body);
            font-size: 16px;
            font-weight: 500;
            color: var(--charcoal);
            background: var(--cream);
            padding: 14px 28px;
            border-radius: 100px;
            border: 2px solid rgba(13,148,136,0.2);
            transition: all 0.3s ease;
        }

        .audience-tag:hover {
            border-color: var(--luke-teal);
            background: rgba(13,148,136,0.05);
        }

        /* Pricing Section */
        .pricing-section {
            padding: var(--space-4xl) var(--space-2xl);
            background: var(--cream);
        }

        .pricing-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
        }

        .pricing-context {
            font-family: var(--font-body);
            font-size: 17px;
            color: var(--soft-gray);
            max-width: 650px;
            margin: var(--space-lg) auto 0;
            line-height: 1.7;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-xl);
        }

        .pricing-card {
            background: var(--warm-white);
            border-radius: 20px;
            padding: var(--space-2xl);
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }

        .pricing-card:hover {
            border-color: rgba(13,148,136,0.3);
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }

        .pricing-card.featured {
            border-color: var(--luke-teal);
            box-shadow: 0 0 40px rgba(13,148,136,0.15);
        }

        .pricing-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--luke-teal);
            color: white;
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 6px 20px;
            border-radius: 100px;
        }

        .pricing-card h3 {
            font-family: var(--font-display);
            font-size: 26px;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: var(--space-sm);
        }

        .pricing-card .price {
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 700;
            color: var(--luke-teal);
            margin-bottom: 4px;
        }

        .pricing-card .price-period {
            font-family: var(--font-body);
            font-size: 14px;
            color: var(--soft-gray);
            margin-bottom: var(--space-lg);
        }

        .pricing-card .price-desc {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--soft-gray);
            line-height: 1.6;
            margin-bottom: var(--space-xl);
            min-height: 48px;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0 0 var(--space-xl);
            text-align: left;
        }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-family: var(--font-body);
            font-size: 14px;
            color: var(--charcoal);
            padding: 10px 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

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

        .pricing-features li svg {
            width: 18px;
            height: 18px;
            stroke: var(--luke-teal);
            flex-shrink: 0;
            margin-top: 1px;
        }

        .pricing-btn {
            display: block;
            width: 100%;
            text-align: center;
            font-family: var(--font-body);
            font-size: 16px;
            font-weight: 600;
            padding: 14px 24px;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            background: transparent;
            color: var(--luke-teal);
            border: 2px solid var(--luke-teal);
        }

        .pricing-btn:hover {
            background: var(--luke-teal);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(13,148,136,0.25);
        }

        .pricing-btn-featured {
            background: var(--luke-teal);
            color: white;
        }

        .pricing-btn-featured:hover {
            background: var(--luke-teal-light);
        }

        /* CTA Section */
        .luke-cta-section {
            padding: var(--space-4xl) var(--space-2xl);
            background: var(--luke-navy);
            color: white;
            text-align: center;
        }

        .luke-cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .luke-cta-headline {
            font-family: var(--font-display);
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            color: white;
            line-height: 1.2;
            margin-bottom: var(--space-lg);
        }

        .luke-cta-headline em {
            font-style: italic;
            color: var(--luke-teal-light);
        }

        .luke-cta-text {
            font-family: var(--font-body);
            font-size: 18px;
            color: rgba(255,255,255,0.8);
            line-height: 1.7;
            margin-bottom: var(--space-2xl);
        }

        .luke-cta-buttons {
            display: flex;
            justify-content: center;
            gap: var(--space-md);
            flex-wrap: wrap;
        }

        /* Shared button styles */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--luke-teal);
            color: white;
            font-family: var(--font-body);
            font-size: 16px;
            font-weight: 600;
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            min-height: 44px;
        }

        .btn-primary:hover {
            background: var(--luke-teal-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(13,148,136,0.3);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--charcoal);
            font-family: var(--font-body);
            font-size: 16px;
            font-weight: 600;
            padding: 16px 32px;
            border-radius: 12px;
            border: 2px solid rgba(0,0,0,0.15);
            text-decoration: none;
            transition: all 0.3s ease;
            min-height: 44px;
        }

        .btn-secondary:hover {
            border-color: rgba(0,0,0,0.3);
            background: rgba(0,0,0,0.03);
        }

        /* Section labels and headlines (shared) */
        .section-label {
            display: inline-block;
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--luke-teal);
            margin-bottom: var(--space-lg);
        }

        .section-headline {
            font-family: var(--font-display);
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            color: var(--charcoal);
            line-height: 1.2;
        }

        .section-headline em {
            font-style: italic;
            color: var(--signal-red);
        }

        /* Footer */
        .footer {
            padding: var(--space-3xl) var(--space-2xl) var(--space-xl);
            background: #0a0a0a;
            color: rgba(255,255,255,0.7);
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: var(--space-2xl);
            padding-bottom: var(--space-2xl);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-brand h3 {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 700;
            color: white;
            margin-bottom: var(--space-md);
        }

        .footer-brand h3 span {
            color: var(--warm-gold);
        }

        .footer-brand p {
            font-family: var(--font-body);
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255,255,255,0.5);
            margin-bottom: var(--space-lg);
        }

        .footer-column h4 {
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: white;
            margin-bottom: var(--space-lg);
        }

        .footer-column a {
            display: block;
            font-family: var(--font-body);
            font-size: 14px;
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            padding: 6px 0;
            transition: color 0.2s ease;
        }

        .footer-column a:hover {
            color: var(--warm-gold);
        }

        .footer-bottom {
            padding-top: var(--space-xl);
            text-align: center;
        }

        .footer-bottom p {
            font-family: var(--font-body);
            font-size: 13px;
            color: rgba(255,255,255,0.3);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .domains-grid {
                grid-template-columns: 1fr;
            }
            .diff-grid {
                grid-template-columns: 1fr;
            }
            .compliance-grid {
                grid-template-columns: 1fr;
            }
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }
            .footer-main {
                grid-template-columns: 1fr;
                gap: var(--space-xl);
            }
            .problem-stack {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 1024px) and (min-width: 769px) {
            .domains-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .pricing-card:last-child {
                grid-column: span 2;
                max-width: 400px;
                justify-self: center;
            }
        }
