        @font-face {
            font-family: 'Futura Condensed ExtraBold';
            src: url('<?php echo get_stylesheet_directory_uri(); ?>/assets/fonts/FuturaCondensedExtraBold.otf') format('opentype');
            font-weight: 900;
            font-style: normal;
        }
        
        /* ============================================
           CSS VARIABLES & RESET
        ============================================ */
        :root {
            --red:    #E8321A;
            --black:  #111111;
            --white:  #FFFFFF;
            --gray:   #F4F4F4;
            --dark-gray: #222222;
            --text:   #333333;
            --font-display: 'Futura Condensed ExtraBold', sans-serif;
            --font-body:    'barlow', sans-serif;
            --max-w: 1200px;
            --section-pad: 80px 24px;
        }

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

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-body);
            color: var(--text);
            background: var(--white);
            overflow-x: hidden;
        }

        img { max-width: 100%; display: block; }

        a { text-decoration: none; color: inherit; }

        .container {
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ============================================
           NAVIGATION
        ============================================ */
        .jcmo-nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            background: var(--black);
            padding: 14px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: auto;
            border-bottom: 3px solid var(--red);
        }

        .jcmo-nav__logo img {
            height: 57px;
            width: auto;
        }

        .jcmo-nav__cta {
            background: var(--red);
            color: var(--white);
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 10px 22px;
            border: none;
            cursor: pointer;
            transition: background 0.2s;
        }

        .jcmo-nav__cta:hover { background: #c4280f; }

        /* ============================================
           HERO
        ============================================ */
        .jcmo-hero {
            margin-top: 64px;
            background: var(--black);
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .jcmo-hero__banner-bg {
            position: absolute;
            inset: 0;
            background-image: url('https://www.justchangemyoil.com/wp-content/uploads/2026/05/banner-scaled.png');
            background-size: cover;
            background-position: center right;
            opacity: 0.78;
        }

        .jcmo-hero__content {
            position: relative;
            z-index: 2;
            padding: 80px 24px;
            max-width: var(--max-w);
            margin: 0 auto;
            width: 100%;
        }

        .jcmo-hero__eyebrow {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--white);
            margin-bottom: 16px;
            opacity: 0;
            animation: fadeUp 0.6s ease forwards 0.2s;
        }

        .jcmo-hero__headline {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: clamp(6.15rem, 10vw, 8rem);
            line-height: 0.92;
            text-transform: uppercase;
            color: var(--white);
            letter-spacing: -0.01em;
            margin-bottom: 24px;
            opacity: 0;
            animation: fadeUp 0.6s ease forwards 0.4s;
        }

        .jcmo-hero__headline span {
            color: var(--white);
            display: block;
        }

        .jcmo-hero__sub {
            font-family: var(--font-display);
            font-size: clamp(1.1rem, 3vw, 1.5rem);
            font-weight: 400;
            color: black;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 40px;
            opacity: 0;
            animation: fadeUp 0.6s ease forwards 0.6s;
        }

        .jcmo-hero__actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeUp 0.6s ease forwards 0.8s;
        }

        .btn-primary {
            background: var(--red);
            color: var(--white);
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 18px 40px;
            border: 3px solid var(--red);
            cursor: pointer;
            transition: all 0.2s;
            display: inline-block;
        }

        .btn-primary:hover {
            background: transparent;
            color: var(--red);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 18px 40px;
            border: 3px solid white;
            cursor: pointer;
            transition: all 0.2s;
            display: inline-block;
        }

        .btn-secondary:hover {
            border-color: var(--white);
        }

        /* ============================================
           TRUST BAR
        ============================================ */
        .jcmo-trust {
            background: var(--red);
            padding: 18px 24px;
            overflow: hidden;
        }

        .jcmo-trust__ticker {
            display: flex;
            gap: 48px;
            animation: ticker 18s linear infinite;
            white-space: nowrap;
        }

        .jcmo-trust__item {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--white);
            flex-shrink: 0;
        }

        .jcmo-trust__item::before {
            content: '⚡ ';
        }

        @keyframes ticker {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* ============================================
           QUOTE FORM SECTION — full bleed split
        ============================================ */

        /* Section is just a black wrapper — no padding, no height */
        .jcmo-quote-section {
            background: var(--black);
            padding: 0;
        }

        .jcmo-quote-section .section-label { color: var(--red); }
        .jcmo-quote-section .section-title { color: var(--white); margin-bottom: 12px; }

        /* The grid IS the section — it controls height and alignment */
        .jcmo-quote-inner {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            grid-template-rows: 955px;
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Left col fills the grid row height naturally */
        .jcmo-quote-left {
            background: var(--black);
            padding: 72px 56px 72px 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Right col fills the grid row height naturally */
        .jcmo-quote-right {
            background: #1c1c1c;
            padding: 0 48px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            overflow: hidden;
        }

        .jcmo-quote-section .section-sub {
            font-family: var(--font-display);
            font-size: 1rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: #444;
            margin-bottom: 0;
        }

        .jcmo-quote-perks {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0;
            margin-top: 40px;
            border-top: 1px solid #1e1e1e;
        }

        .jcmo-quote-perk {
            display: flex;
            align-items: center;
            gap: 14px;
            font-family: var(--font-display);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: .08em;
            color: #555;
            padding: 14px 0;
            border-bottom: 1px solid #1e1e1e;
            transition: color 0.2s;
        }

        .jcmo-quote-perk:hover { color: #aaa; }

        .jcmo-quote-perk-check {
            width: 20px;
            height: 20px;
            background: var(--red);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            flex-shrink: 0;
        }

        /* jf-outer fills the right col completely */
        .jf-outer {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        /* jf-body scrolls internally — invisible scrollbar */
        .jf-body {
            flex: 1;
            overflow-y: auto;
            padding: 94px 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            scrollbar-width: none;
        }

        .jf-body::-webkit-scrollbar { display: none; }

        /* Form fully transparent — right col bg shows through */
        .jf {
            font-family: 'Arial Narrow', Arial, sans-serif !important;
            background: transparent !important;
            padding: 0 !important;
            border-top: none !important;
            width: 100% !important;
            box-sizing: border-box !important;
        }

        @media (max-width: 900px) {
            .jcmo-quote-inner {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                padding: 0;
            }
            .jcmo-quote-left {
                padding: 56px 24px 32px;
                justify-content: flex-start;
            }
            .jcmo-quote-right {
                padding: 0 24px;
            }
            .jcmo-quote-perks { display: none; 
            }
            .jf-body {padding: 56px 0;}
        }
        .jf-progress{display:flex;gap:4px;margin-bottom:28px;}
        .jf-dot{height:4px;flex:1;background:#2a2a2a;transition:background .3s;}
        .jf-dot.active{background:#E8321A;}
        .jf-dot.done{background:#7a1a0a;}
        .jf-step{display:none;}
        .jf-step.show{display:block;}
        .jf-eyebrow{font-size:11px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:#E8321A;margin-bottom:8px;}
        .jf-heading{font-size:26px;font-weight:900;text-transform:uppercase;color:#fff;line-height:1.05;margin-bottom:24px;letter-spacing:.01em;}
        .jf-opts{display:grid;gap:10px;}
        .jf-opts.two{grid-template-columns:1fr 1fr;}
        .jf-opts.three{grid-template-columns:1fr 1fr 1fr;}
        .jf-opt{background:#222;border:2px solid #2a2a2a;padding:16px 18px;cursor:pointer;transition:border-color .15s,background .15s;display:flex;align-items:center;gap:12px;user-select:none;}
        .jf-opt:hover{border-color:#E8321A;background:#2a2a2a;}
        .jf-opt.selected{border-color:#E8321A;background:#2a2a2a;}
        .jf-opt.flash{border-color:#E8321A;background:#3a1a10;}
        .jf-opt-icon{width:36px;height:36px;background:#E8321A;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:18px;color:#fff;}
        .jf-opt-label{font-size:14px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:#fff;}
        .jf-opt-sub{font-size:11px;color:#888;margin-top:2px;text-transform:none;font-weight:400;letter-spacing:0;}
        .jf-actions{display:flex;gap:10px;margin-top:20px;}
        .jf-field{margin-bottom:16px;}
        .jf-label{font-size:11px;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:#888;display:block;margin-bottom:6px;}
        .jf-input{width:100%;background:#222;border:2px solid #2a2a2a;color:#fff;font-size:14px;padding:12px 14px;outline:none;transition:border-color .2s;box-sizing:border-box;font-family:inherit;}
        .jf-input:focus{border-color:#E8321A;}
        .jf-select{width:100%;background:#222;border:2px solid #2a2a2a;color:#fff;font-size:14px;padding:12px 14px;outline:none;transition:border-color .2s;box-sizing:border-box;font-family:inherit;appearance:none;cursor:pointer;}
        .jf-select:focus{border-color:#E8321A;}
        .jf-contact-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
        .jf-summary{background:#222;border-left:4px solid #E8321A;padding:16px 18px;margin-bottom:20px;}
        .jf-summary-row{display:flex;justify-content:space-between;align-items:center;padding:6px 0;border-bottom:1px solid #2a2a2a;font-size:13px;}
        .jf-summary-row:last-child{border-bottom:none;}
        .jf-summary-label{color:#888;text-transform:uppercase;letter-spacing:.06em;font-size:11px;font-weight:700;}
        .jf-summary-val{color:#fff;font-weight:700;font-size:13px;}
        .jf-price-badge{background:#E8321A;color:#fff;font-size:20px;font-weight:900;padding:12px 20px;text-align:center;letter-spacing:.02em;margin-bottom:8px;}
        .jf-price-note{font-size:11px;color:#888;text-align:center;margin-bottom:20px;letter-spacing:.05em;text-transform:uppercase;}
        .jf-fleet-note{background:#1a0a08;border:2px solid #E8321A;padding:16px;margin-bottom:20px;font-size:13px;color:#ccc;line-height:1.6;}
        .jf-fleet-note strong{color:#E8321A;display:block;font-size:14px;font-weight:700;text-transform:uppercase;letter-spacing:.08em;margin-bottom:6px;}
        .jf-sched-label{font-size:11px;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:#777;margin-bottom:8px;display:block;}
        .jf-step-counter{font-size:11px;color:#555;letter-spacing:.1em;text-transform:uppercase;margin-bottom:4px;}
        .jf-success{text-align:center;padding:20px 0;}
        .jf-success-icon{width:64px;height:64px;background:#E8321A;margin:0 auto 20px;display:flex;align-items:center;justify-content:center;}
        .jf-success-title{font-size:28px;font-weight:900;text-transform:uppercase;color:#fff;margin-bottom:10px;}
        .jf-success-sub{font-size:13px;color:#888;line-height:1.6;text-transform:uppercase;letter-spacing:.08em;}

        /* ============================================
           HOW IT WORKS
        ============================================ */
        .jcmo-how {
            padding: var(--section-pad);
            background: var(--white);
        }

        .section-label {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--red);
            margin-bottom: 12px;
            display: block;
        }

        .section-title {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            line-height: 1;
            text-transform: uppercase;
            color: var(--black);
            margin-bottom: 48px;
        }

        .jcmo-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 32px;
            counter-reset: steps;
        }

        .jcmo-step {
            counter-increment: steps;
            position: relative;
            padding: 32px 24px;
            border-top: 4px solid var(--black);
            transition: border-color 0.2s;
        }

        .jcmo-step:hover {
            border-color: var(--red);
        }

        .jcmo-step__num {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: 4rem;
            line-height: 1;
            color: var(--red);
            margin-bottom: 16px;
        }

        .jcmo-step__num::before {
            content: counter(steps, decimal-leading-zero);
        }

        .jcmo-step__title {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.4rem;
            text-transform: uppercase;
            color: var(--black);
            margin-bottom: 10px;
        }

        .jcmo-step__desc {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.6;
        }

        /* ============================================
           SERVICES — WP_QUERY LOOP AREA
        ============================================ */
        .jcmo-services {
            padding: var(--section-pad);
            background: var(--black);
        }

        .jcmo-services .section-title {
            color: var(--white);
        }

        .jcmo-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2px;
        }

        /* Each card is dynamically populated via WP_Query below */
        .service-card {
            background: var(--dark-gray);
            padding: 36px 28px;
            border-bottom: 3px solid transparent;
            transition: all 0.25s;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 4px;
            height: 0;
            background: var(--red);
            transition: height 0.25s;
        }

        .service-card:hover::before { height: 100%; }

        .service-card:hover {
            background: #2a2a2a;
        }

        .service-card__icon {
            font-size: 2rem;
            margin-bottom: 16px;
        }

        .service-card__title {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.3rem;
            text-transform: uppercase;
            color: var(--white);
            margin-bottom: 10px;
        }

        .service-card__desc {
            font-size: 0.9rem;
            color: #999;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .service-card__price {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-top: 4px;
        }

        .service-card__price--starting { color: var(--red); font-size: 1.1rem; }
        .service-card__price--quote    { color: #666; }
        .service-card__price--addon    { color: #aaa; }
        .service-card__price--free     { color: #4caf50; }
        .service-card__price--custom   { color: #666; }

        .service-card__badge {
            display: inline-block;
            background: var(--red);
            color: var(--white);
            font-family: var(--font-display);
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            padding: 3px 8px;
            margin-bottom: 12px;
        }

        .service-card__badge--make {
            background: #222;
            border: 1px solid #444;
            color: #aaa;
        }

        .service-card__badge--addon {
            background: transparent;
            border: 1px solid var(--red);
            color: var(--red);
        }

        .service-card__badge--fleet {
            background: #1a1a1a;
            border: 1px solid #E8321A;
            color: #E8321A;
        }

        /* No posts fallback */
        .jcmo-services-fallback {
            color: #666;
            font-family: var(--font-display);
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 40px 0;
        }

        /* ============================================
           WHY US
        ============================================ */
        .jcmo-why {
            padding: var(--section-pad);
            background: var(--gray);
        }

        .jcmo-why__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .jcmo-why__list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 32px;
        }

        .jcmo-why__item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding-bottom: 20px;
            border-bottom: 1px solid #ddd;
        }

        .jcmo-why__item:last-child { border-bottom: none; }

        .jcmo-why__check {
            width: 28px;
            height: 28px;
            background: var(--red);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .jcmo-why__item-title {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            color: var(--black);
            margin-bottom: 4px;
        }

        .jcmo-why__item-desc {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.5;
        }

        .jcmo-why__visual {
            background: var(--black);
            padding: 48px 32px;
            text-align: center;
            position: relative;
        }

        .jcmo-why__visual img {
            width: 100%;
            max-width: 320px;
            margin: 0 auto;
        }

        .jcmo-why__badge {
            position: absolute;
            bottom: -16px;
            right: -16px;
            background: var(--red);
            color: var(--white);
            font-family: var(--font-display);
            font-weight: 900;
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 16px 20px;
            text-align: center;
            line-height: 1.3;
        }

        /* ============================================
           TESTIMONIALS — WP_Query LOOP
        ============================================ */
        .jcmo-testimonials {
            padding: var(--section-pad);
            background: var(--white);
        }

        .jcmo-testimonials .section-title {
            color: var(--black);
        }

        .jcmo-testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
        }

        .testimonial-card {
            border: 2px solid #eee;
            padding: 28px;
            position: relative;
            transition: border-color 0.2s;
        }

        .testimonial-card:hover {
            border-color: var(--red);
        }

        .testimonial-card__quote {
            font-size: 3rem;
            color: var(--red);
            font-family: Georgia, serif;
            line-height: 1;
            margin-bottom: 12px;
        }

        .testimonial-card__text {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #444;
            margin-bottom: 20px;
        }

        .testimonial-card__author {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--black);
        }

        .testimonial-card__stars {
            color: var(--red);
            font-size: 0.85rem;
            margin-bottom: 14px;
        }

        /* ============================================
           SERVICE AREAS
        ============================================ */
        .jcmo-areas {
            padding: var(--section-pad);
            background: var(--red);
        }

        .jcmo-areas .section-label { color: rgba(255,255,255,0.6); }
        .jcmo-areas .section-title { color: var(--white); }

        .jcmo-areas-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 8px;
        }

        .area-tag {
            background: rgba(255,255,255,0.15);
            color: var(--white);
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 10px 20px;
            border: 1px solid rgba(255,255,255,0.25);
            transition: background 0.2s;
        }

        .area-tag:hover {
            background: rgba(255,255,255,0.25);
        }

        /* ============================================
           BOOKING / CTA SECTION
        ============================================ */
        .jcmo-cta {
            padding: 100px 24px;
            background: var(--black);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .jcmo-cta::before {
            content: 'JUST CHANGE MY OIL.';
            position: absolute;
            font-family: var(--font-display);
            font-weight: 900;
            font-size: clamp(3rem, 8vw, 6rem);
            text-transform: uppercase;
            color: rgba(255,255,255,0.03);
            white-space: nowrap;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            width: 200%;
            text-align: center;
        }

        .jcmo-cta__headline {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: clamp(2.5rem, 6vw, 5rem);
            text-transform: uppercase;
            color: var(--white);
            line-height: 1;
            margin-bottom: 16px;
            position: relative;
        }

        .jcmo-cta__sub {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 400;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 40px;
            position: relative;
        }

        .jcmo-cta__phone {
            display: inline-block;
            font-family: var(--font-display);
            font-weight: 900;
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: var(--red);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 32px;
            position: relative;
            transition: color 0.2s;
        }

        .jcmo-cta__phone:hover { color: #ff4d33; }

        .jcmo-cta__actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
        }

        /* ============================================
           FOOTER
        ============================================ */
        .jcmo-footer {
            background: #0a0a0a;
            padding: 48px 24px 24px;
            border-top: 3px solid var(--red);
        }

        .jcmo-footer__inner {
            max-width: var(--max-w);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .jcmo-footer__logo img {
            height: 48px;
            width: auto;
            margin-bottom: 16px;
        }

        .jcmo-footer__tagline {
            font-family: var(--font-display);
            font-size: 0.9rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #555;
        }

        .jcmo-footer__col-title {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--red);
            margin-bottom: 16px;
        }

        .jcmo-footer__links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .jcmo-footer__links a {
            font-size: 0.9rem;
            color: #666;
            transition: color 0.2s;
            font-family: var(--font-display);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .jcmo-footer__links a:hover { color: var(--white); }

        .jcmo-footer__bottom {
            border-top: 1px solid #1a1a1a;
            padding-top: 24px;
            text-align: center;
            font-size: 0.8rem;
            color: #444;
            font-family: var(--font-display);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* ============================================
           ANIMATIONS
        ============================================ */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* ============================================
           RESPONSIVE
        ============================================ */
        @media (max-width: 768px) {
            :root { --section-pad: 60px 20px; }

            .jcmo-why__grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .jcmo-why__visual { display: none; }

            .jcmo-hero__actions { flex-direction: column; }

            .btn-primary, .btn-secondary {
                text-align: center;
                width: 100%;
            }

            .jcmo-steps { grid-template-columns: 1fr; }
        }

        @media (max-width: 480px) {
            .jcmo-nav__logo img { height: 28px; }
            .jcmo-cta__actions { flex-direction: column; align-items: center; }
        }