/* Page-specific styles for industries/medical-practices.html */
:root {
            --signal-red: #E63946;
            --warm-gold: #D4A84B;
            --deep-navy: #1D3557;
            --cream: #FAF8F5;
            --warm-white: #FFFFFF;
            --soft-gray: #6B7280;
            --charcoal: #2D3748;
            --blush: #FDF2F0;

            /* Medical practice accents */
            --med-teal: #0D9488;
            --med-light: #F0FDFA;
            --med-deep: #134E4A;

            --font-display: 'Playfair Display', Georgia, serif;
            --font-body: 'Space Grotesk', system-ui, sans-serif;

            --space-xs: 4px;
            --space-sm: 8px;
            --space-md: 16px;
            --space-lg: 24px;
            --space-xl: 32px;
            --space-2xl: 48px;
            --space-3xl: 64px;
            --space-4xl: 96px;
            --space-5xl: 128px;

            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
            --shadow-lg: 0 12px 24px rgba(0,0,0,0.12);
            --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
            --shadow-glow: 0 0 24px rgba(230,57,70,0.15);
            --shadow-teal: 0 0 24px rgba(13,148,136,0.2);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.6;
            color: var(--charcoal);
            background: var(--cream);
            -webkit-font-smoothing: antialiased;
        }

        /* ═══════════════════════════════════════════════════════════
           NAVIGATION
           ═══════════════════════════════════════════════════════════ */

        .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.scrolled { box-shadow: var(--shadow-md); }

        .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), var(--shadow-glow);
        }

        .nav-mobile {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: var(--space-sm);
        }

        .nav-mobile svg {
            width: 24px;
            height: 24px;
            stroke: var(--charcoal);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--cream);
            z-index: 999;
            padding: 100px var(--space-xl) var(--space-xl);
            flex-direction: column;
            gap: var(--space-lg);
        }

        .mobile-menu.open { display: flex; }

        .mobile-menu a {
            font-family: var(--font-display);
            font-size: 32px;
            color: var(--charcoal);
            text-decoration: none;
            padding: var(--space-md) 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

        /* ═══════════════════════════════════════════════════════════
           HERO
           ═══════════════════════════════════════════════════════════ */

        .hero {
            padding: 160px var(--space-2xl) var(--space-4xl);
            background: linear-gradient(135deg, var(--deep-navy) 0%, var(--med-deep) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(13,148,136,0.2) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-inner {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: 100px;
            margin-bottom: var(--space-xl);
            backdrop-filter: blur(4px);
        }

        .hero-badge svg {
            width: 18px;
            height: 18px;
            stroke: var(--med-teal);
        }

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

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

        .hero-subtitle {
            font-family: var(--font-body);
            font-size: 20px;
            color: rgba(255,255,255,0.9);
            line-height: 1.7;
            margin-bottom: var(--space-2xl);
            max-width: 700px;
        }

        .hero-stats {
            display: flex;
            gap: var(--space-3xl);
            margin-bottom: var(--space-2xl);
        }

        .hero-stat {
            text-align: left;
        }

        .hero-stat-number {
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 700;
            color: var(--med-teal);
            line-height: 1;
        }

        .hero-stat-label {
            font-family: var(--font-body);
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            margin-top: var(--space-xs);
        }

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

        .btn-primary {
            background: var(--signal-red);
            color: white;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 16px;
            padding: 18px 36px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.2s ease;
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg), var(--shadow-glow);
        }

        .btn-primary svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 16px;
            padding: 16px 32px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.2s ease;
        }

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

        /* ═══════════════════════════════════════════════════════════
           CREDIBILITY STRIP
           ═══════════════════════════════════════════════════════════ */

        .cred-strip {
            background: var(--med-deep);
            padding: var(--space-2xl) var(--space-2xl);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .cred-inner {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: var(--space-2xl);
        }

        .cred-icon {
            width: 64px;
            height: 64px;
            background: rgba(13,148,136,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .cred-icon svg {
            width: 32px;
            height: 32px;
            stroke: var(--med-teal);
        }

        .cred-text {
            flex: 1;
        }

        .cred-text h3 {
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 600;
            color: white;
            margin-bottom: var(--space-sm);
        }

        .cred-text p {
            font-family: var(--font-body);
            font-size: 16px;
            color: rgba(255,255,255,0.7);
            line-height: 1.6;
        }

        .cred-text strong {
            color: var(--med-teal);
        }

        /* ═══════════════════════════════════════════════════════════
           PROBLEM SECTION
           ═══════════════════════════════════════════════════════════ */

        .problem-section {
            padding: var(--space-5xl) var(--space-2xl);
            background: var(--cream);
        }

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

        .section-label {
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--signal-red);
            margin-bottom: var(--space-md);
            display: inline-block;
        }

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

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

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

        .problem-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-lg);
            margin-top: var(--space-2xl);
        }

        .problem-item {
            display: flex;
            align-items: flex-start;
            gap: var(--space-md);
            padding: var(--space-lg);
            background: var(--warm-white);
            border-radius: 12px;
            border-left: 4px solid var(--signal-red);
        }

        .problem-item svg {
            width: 24px;
            height: 24px;
            stroke: var(--signal-red);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .problem-item p {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--charcoal);
            line-height: 1.6;
        }

        /* ═══════════════════════════════════════════════════════════
           THREE PILLARS
           ═══════════════════════════════════════════════════════════ */

        .pillars-section {
            padding: var(--space-5xl) var(--space-2xl);
            background: var(--warm-white);
        }

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

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

        .pillars-intro {
            font-family: var(--font-body);
            font-size: 18px;
            color: var(--soft-gray);
            text-align: center;
            max-width: 700px;
            margin: var(--space-xl) auto 0;
            line-height: 1.7;
        }

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

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

        .pillar-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--med-teal);
        }

        .pillar-icon {
            width: 72px;
            height: 72px;
            background: var(--med-deep);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto var(--space-lg);
        }

        .pillar-icon svg {
            width: 36px;
            height: 36px;
            stroke: var(--med-teal);
        }

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

        .pillar-card p {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--soft-gray);
            line-height: 1.7;
        }

        /* ═══════════════════════════════════════════════════════════
           AI CAPABILITIES
           ═══════════════════════════════════════════════════════════ */

        .ai-section {
            padding: var(--space-5xl) var(--space-2xl);
            background: var(--med-deep);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .ai-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(13,148,136,0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .ai-inner {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

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

        .ai-section .section-label {
            color: var(--med-teal);
        }

        .ai-section .section-headline {
            color: white;
        }

        .ai-section .section-headline em {
            color: var(--med-teal);
        }

        .ai-intro {
            font-family: var(--font-body);
            font-size: 19px;
            color: rgba(255,255,255,0.8);
            text-align: center;
            max-width: 750px;
            margin: var(--space-xl) auto var(--space-3xl);
            line-height: 1.7;
        }

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

        .ai-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;
        }

        .ai-card:hover {
            background: rgba(255,255,255,0.08);
            transform: translateY(-4px);
        }

        .ai-card-icon {
            width: 56px;
            height: 56px;
            background: rgba(13,148,136,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--space-lg);
        }

        .ai-card-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--med-teal);
        }

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

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

        .ai-features {
            list-style: none;
        }

        .ai-features li {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            font-family: var(--font-body);
            font-size: 14px;
            color: rgba(255,255,255,0.8);
            padding: var(--space-xs) 0;
        }

        .ai-features li svg {
            width: 16px;
            height: 16px;
            stroke: var(--med-teal);
            flex-shrink: 0;
        }

        /* ═══════════════════════════════════════════════════════════
           QUOTE SECTION
           ═══════════════════════════════════════════════════════════ */

        .quote-section {
            padding: var(--space-5xl) var(--space-2xl);
            background: var(--med-light);
        }

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

        .quote-mark {
            font-family: var(--font-display);
            font-size: 120px;
            color: var(--med-teal);
            line-height: 0.5;
            opacity: 0.3;
            margin-bottom: var(--space-lg);
        }

        .quote-text {
            font-family: var(--font-display);
            font-size: clamp(24px, 3vw, 32px);
            font-weight: 500;
            font-style: italic;
            color: var(--charcoal);
            line-height: 1.5;
            margin-bottom: var(--space-xl);
        }

        .quote-attribution {
            font-family: var(--font-body);
            font-size: 14px;
            color: var(--soft-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ═══════════════════════════════════════════════════════════
           CASE STUDY SECTION
           ═══════════════════════════════════════════════════════════ */

        .case-study-section {
            padding: var(--space-5xl) var(--space-2xl);
            background: var(--cream);
        }

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

        .case-study-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: var(--space-3xl);
            margin-top: var(--space-3xl);
            align-items: start;
        }

        .case-study-content {
            display: flex;
            flex-direction: column;
            gap: var(--space-xl);
        }

        .case-study-client h3 {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: var(--space-xs);
        }

        .case-study-practice {
            font-family: var(--font-body);
            font-size: 18px;
            color: var(--med-teal);
            font-weight: 500;
        }

        .case-study-specialty {
            font-family: var(--font-body);
            font-size: 14px;
            color: var(--soft-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: var(--space-xs);
        }

        .case-study-challenge,
        .case-study-solution,
        .case-study-results {
            padding-left: var(--space-lg);
            border-left: 3px solid var(--med-teal);
        }

        .case-study-challenge h4,
        .case-study-solution h4,
        .case-study-results h4 {
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--med-deep);
            margin-bottom: var(--space-sm);
        }

        .case-study-challenge p,
        .case-study-solution p {
            font-family: var(--font-body);
            font-size: 16px;
            color: var(--charcoal);
            line-height: 1.7;
        }

        .case-study-solution a {
            color: var(--med-teal);
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px solid var(--med-teal);
            transition: all 0.2s ease;
        }

        .case-study-solution a:hover {
            color: var(--med-deep);
            border-color: var(--med-deep);
        }

        .case-study-results ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
        }

        .case-study-results li {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--charcoal);
            padding-left: var(--space-lg);
            position: relative;
        }

        .case-study-results li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 8px;
            height: 8px;
            background: var(--med-teal);
            border-radius: 50%;
        }

        .case-study-visual {
            display: flex;
            flex-direction: column;
            gap: var(--space-xl);
        }

        .case-study-quote-card {
            background: var(--med-deep);
            border-radius: 20px;
            padding: var(--space-2xl);
            color: white;
        }

        .case-study-quote-icon {
            font-family: var(--font-display);
            font-size: 72px;
            color: var(--med-teal);
            line-height: 0.5;
            opacity: 0.5;
            margin-bottom: var(--space-md);
        }

        .case-study-quote-card p {
            font-family: var(--font-display);
            font-size: 18px;
            font-style: italic;
            line-height: 1.6;
            color: rgba(255,255,255,0.9);
        }

        .case-study-link {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            background: var(--med-teal);
            color: white;
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 600;
            padding: 16px 28px;
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
            align-self: flex-start;
        }

        .case-study-link:hover {
            background: var(--med-deep);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .case-study-link svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
        }

        /* ═══════════════════════════════════════════════════════════
           STATS SECTION
           ═══════════════════════════════════════════════════════════ */

        .stats-section {
            padding: var(--space-3xl) var(--space-2xl);
            background: var(--warm-white);
        }

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

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

        .stat-item {
            text-align: center;
            padding: var(--space-xl);
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: clamp(48px, 6vw, 64px);
            font-weight: 700;
            color: var(--med-teal);
            line-height: 1;
            margin-bottom: var(--space-sm);
        }

        .stat-label {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--soft-gray);
            line-height: 1.5;
        }

        /* ═══════════════════════════════════════════════════════════
           FAQ SECTION
           ═══════════════════════════════════════════════════════════ */

        .faq-section {
            padding: var(--space-5xl) var(--space-2xl);
            background: var(--cream);
        }

        .faq-inner {
            max-width: 900px;
            margin: 0 auto;
        }

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

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
        }

        .faq-item {
            background: var(--warm-white);
            border-radius: 12px;
            border: 1px solid rgba(0,0,0,0.05);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: var(--shadow-md);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--space-lg) var(--space-xl);
            cursor: pointer;
            gap: var(--space-lg);
        }

        .faq-question h3 {
            font-family: var(--font-body);
            font-size: 17px;
            font-weight: 600;
            color: var(--charcoal);
            line-height: 1.4;
            margin: 0;
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            stroke: var(--med-teal);
            transition: transform 0.3s ease;
        }

        .faq-item.open .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 var(--space-xl) var(--space-xl);
        }

        .faq-answer p {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--soft-gray);
            line-height: 1.8;
        }

        .faq-answer a {
            color: var(--med-teal);
            text-decoration: none;
            font-weight: 500;
        }

        .faq-answer a:hover {
            text-decoration: underline;
        }

        /* ═══════════════════════════════════════════════════════════
           CTA SECTION
           ═══════════════════════════════════════════════════════════ */

        .cta-section {
            padding: var(--space-5xl) var(--space-2xl);
            background: var(--deep-navy);
            text-align: center;
        }

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

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

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

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

        /* ═══════════════════════════════════════════════════════════
           FOOTER
           ═══════════════════════════════════════════════════════════ */

        .footer {
            background: var(--charcoal);
            color: white;
            padding: var(--space-3xl) var(--space-2xl);
        }

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

        .footer-main {
            display: grid;
            grid-template-columns: 1.5fr 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;
            margin-bottom: var(--space-md);
        }

        .footer-brand h3 span { color: var(--signal-red); }

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

        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--warm-gold);
            color: white;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 8px 14px;
            border-radius: 100px;
        }

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

        .footer-column a {
            display: block;
            font-size: 15px;
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            margin-bottom: var(--space-md);
            transition: color 0.2s ease;
        }

        .footer-column a:hover { color: var(--med-teal); }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: var(--space-xl);
        }

        .footer-bottom p {
            font-size: 14px;
            color: rgba(255,255,255,0.5);
        }

        /* ═══════════════════════════════════════════════════════════
           RESPONSIVE
           ═══════════════════════════════════════════════════════════ */

        @media (max-width: 1024px) {
            .pillars-grid { grid-template-columns: 1fr; }
            .ai-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr; }
            .problem-list { grid-template-columns: 1fr; }
            .case-study-grid { grid-template-columns: 1fr; }
            .footer-main { grid-template-columns: 1fr 1fr; }
            .hero-stats { flex-direction: column; gap: var(--space-xl); }
        }

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

            .hero { padding: 120px var(--space-lg) var(--space-3xl); }

            .cred-inner {
                flex-direction: column;
                text-align: center;
            }

            .footer-main { grid-template-columns: 1fr; text-align: center; }

            .footer-bottom {
                flex-direction: column;
                gap: var(--space-md);
                text-align: center;
            }
        }

        /* ═══════════════════════════════════════════════════════════
           SCROLL-TRIGGERED ANIMATIONS
           ═══════════════════════════════════════════════════════════ */

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

        .hero-inner { animation: fadeInUp 0.8s ease; }

        /* Base animation state */
        [data-animate] {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        [data-animate].animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered delays */
        [data-animate-delay="1"] { transition-delay: 0.1s; }
        [data-animate-delay="2"] { transition-delay: 0.2s; }
        [data-animate-delay="3"] { transition-delay: 0.3s; }
        [data-animate-delay="4"] { transition-delay: 0.4s; }
        [data-animate-delay="5"] { transition-delay: 0.5s; }
        [data-animate-delay="6"] { transition-delay: 0.6s; }

        /* Scale animation */
        [data-animate="scale"] {
            opacity: 0;
            transform: scale(0.85);
            transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        [data-animate="scale"].animated {
            opacity: 1;
            transform: scale(1);
        }

        /* Slide from left */
        [data-animate="slide-left"] {
            opacity: 0;
            transform: translateX(-60px);
            transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        [data-animate="slide-left"].animated {
            opacity: 1;
            transform: translateX(0);
        }

        /* Slide from right */
        [data-animate="slide-right"] {
            opacity: 0;
            transform: translateX(60px);
            transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        [data-animate="slide-right"].animated {
            opacity: 1;
            transform: translateX(0);
        }

        /* Fade only */
        [data-animate="fade"] {
            opacity: 0;
            transform: none;
            transition: opacity 0.8s ease;
        }

        [data-animate="fade"].animated {
            opacity: 1;
        }

        /* Flip animation */
        [data-animate="flip"] {
            opacity: 0;
            transform: perspective(1000px) rotateY(-15deg) translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        [data-animate="flip"].animated {
            opacity: 1;
            transform: perspective(1000px) rotateY(0) translateY(0);
        }

        /* Pop animation */
        [data-animate="pop"] {
            opacity: 0;
            transform: scale(0);
            transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        [data-animate="pop"].animated {
            opacity: 1;
            transform: scale(1);
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            [data-animate],
            [data-animate].animated {
                transition: none;
                animation: none;
                opacity: 1;
                transform: none;
            }
        }
