    /* ===========================================
       Live ID Marketing Site
       Proctorio brand - green, light theme, Inter
       =========================================== */
    @font-face {
    font-family: 'Geist';
    src: url('fonts/a369fcf5.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geist';
    src: url('fonts/5aa7d48f.woff2') format('woff2');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

    :root {
        /* Primary brand colors - Proctorio */
        --color-primary: #1B8B3D;
        --color-primary-light: #7EC953;
        --color-primary-dark: #14692E;
        --color-accent: #1B8B3D;
        --color-accent-light: #25A54A;

        /* Neutrals */
        --color-white: #ffffff;
        --color-gray-50: #f7fafc;
        --color-gray-100: #edf2f7;
        --color-gray-200: #e2e8f0;
        --color-gray-300: #cbd5e0;
        --color-gray-600: #4a5568;
        --color-gray-700: #2d3748;
        --color-gray-900: #1a202c;

        --color-warning: #b7791f;
        --color-warning-bg: #fffaf0;
        --color-warning-border: #f6e05e;

        --font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        --container-max-width: 1200px;
        --section-padding: 5rem 1.5rem;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
        font-family: var(--font-family);
        font-size: 1rem;
        line-height: 1.6;
        color: var(--color-gray-700);
        background: var(--color-white);
    }
    .container { max-width: var(--container-max-width); margin: 0 auto; padding: 0 1.5rem; }

    h1, h2, h3 { color: var(--color-gray-900); line-height: 1.2; }
    h1 { font-size: 3rem; font-weight: 600; }
    h2 { font-size: 2.25rem; font-weight: 600; margin-bottom: 1.5rem; }
    h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }

    /* Buttons */
    .btn {
        display: inline-block; padding: 0.875rem 2rem; font-size: 1rem; font-weight: 600;
        text-decoration: none; border-radius: 6px; transition: all 0.2s ease; cursor: pointer; border: none;
    }
    .btn-primary { background: var(--color-accent); color: var(--color-white); }
    .btn-primary:hover { background: var(--color-accent-light); transform: translateY(-1px); }
    .btn-large { padding: 1rem 2.5rem; font-size: 1.125rem; }

    /* Header */
    .header {
        position: fixed; top: 0; left: 0; right: 0;
        background: var(--color-white); border-bottom: 1px solid var(--color-gray-200); z-index: 100;
    }
    .header.scrolled { box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
    .nav {
        max-width: var(--container-max-width); margin: 0 auto; padding: 1rem 1.5rem;
        display: flex; justify-content: space-between; align-items: center;
    }
    .logo { display: flex; align-items: center; gap: 0.5rem; }
    .logo-icon { height: 32px; width: auto; }
    .logo-text { font-size: 1.25rem; font-weight: 700; color: var(--color-primary); }
    .logo-sub { font-size: 1.25rem; font-weight: 400; color: var(--color-gray-300); }
    .logo-product { font-size: 1.25rem; font-weight: 600; color: var(--color-gray-900); }
    .nav-cta {
        font-size: 0.875rem; font-weight: 600; color: var(--color-accent); text-decoration: none;
        padding: 0.5rem 1rem; border: 2px solid var(--color-accent); border-radius: 6px; transition: all 0.2s ease;
    }
    .nav-cta:hover { background: var(--color-accent); color: var(--color-white); }

    /* Hero */
    .hero { padding: 8rem 1.5rem 5rem; background: linear-gradient(135deg, var(--color-gray-50) 0%, var(--color-white) 100%); }
    .hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .hero-text { text-align: left; }
    .hero h1 { margin-bottom: 1.5rem; }
    .hero h1 em { font-style: normal; color: var(--color-primary); }
    .hero-subtitle { font-size: 1.25rem; color: var(--color-gray-600); margin-bottom: 2.5rem; }
    .hero-stat-line { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--color-gray-200); font-size: 0.9375rem; font-weight: 600; color: var(--color-gray-600); }

    /* Media placeholder (video / screenshot) */
    .placeholder {
        position: relative; border-radius: 12px; overflow: hidden;
        background: var(--color-gray-100);
        border: 1px dashed var(--color-gray-300);
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        text-align: center; color: var(--color-gray-600);
    }
    .placeholder .badge {
        position: absolute; top: 12px; left: 12px; font-size: 0.65rem; letter-spacing: 0.08em;
        text-transform: uppercase; color: var(--color-primary); background: rgba(27,139,61,0.1);
        border: 1px solid rgba(27,139,61,0.25); padding: 0.25rem 0.6rem; border-radius: 5px; font-weight: 700;
    }
    .placeholder .play {
        width: 64px; height: 64px; border-radius: 50%;
        background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
        display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
        box-shadow: 0 10px 30px rgba(27,139,61,0.3);
    }
    .placeholder .play svg { width: 24px; height: 24px; fill: #fff; margin-left: 4px; }
    .placeholder .ph-label { font-size: 0.9375rem; font-weight: 600; color: var(--color-gray-700); }
    .placeholder .ph-sub { font-size: 0.8125rem; opacity: 0.7; margin-top: 0.15rem; }
    .hero-media {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.05);
    }

    /* Screenshot frames (shared) */
    .screenshot-frame { background: var(--color-gray-100); border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.05); }
    .screenshot-frame-dots { display: flex; gap: 6px; padding: 10px 14px; background: var(--color-gray-200); }
    .screenshot-frame-dots span { width: 10px; height: 10px; border-radius: 50%; }
    .screenshot-frame-dots span:nth-child(1) { background: #fc5c65; }
    .screenshot-frame-dots span:nth-child(2) { background: #fed330; }
    .screenshot-frame-dots span:nth-child(3) { background: #26de81; }
    .screenshot-frame .placeholder { border: none; border-radius: 0; }

    /* Problem / how / etc. shared section titles */
    .section-intro { text-align: center; font-size: 1.125rem; color: var(--color-gray-600); max-width: 700px; margin: 0 auto 3rem; line-height: 1.7; }
    .section-intro em { font-style: italic; color: var(--color-gray-900); font-weight: 600; }

    /* How it works */
    .how-section { padding: var(--section-padding); background: var(--color-gray-50); }
    .how-section h2 { text-align: center; margin-bottom: 1rem; }
    .flow-tabs { display: flex; justify-content: center; gap: 0.5rem; margin: 0 auto 3rem; }
    .flow-tab, .gallery-tab {
        padding: 0.75rem 1.5rem; border-radius: 8px; border: 1px solid var(--color-gray-200);
        background: var(--color-white); color: var(--color-gray-600); cursor: pointer;
        font-family: inherit; font-size: 0.9375rem; font-weight: 600; transition: all 0.2s ease;
    }
    .flow-tab.active, .gallery-tab.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
    .flow-panel, .gallery-panel { display: none; }
    .flow-panel.active, .gallery-panel.active { display: block; animation: fade 0.4s ease; }
    @keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
    .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
    .steps.steps-two { grid-template-columns: repeat(2, 1fr); max-width: 740px; margin: 0 auto; }
    .step { background: var(--color-white); border: 1px solid var(--color-gray-200); border-radius: 12px; padding: 1.75rem 1.5rem; position: relative; }
    .step-number {
        display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
        background: var(--color-primary); color: #fff; border-radius: 50%; font-size: 1.125rem; font-weight: 700; margin-bottom: 1rem;
    }
    .step h4 { font-size: 1.0625rem; color: var(--color-gray-900); margin-bottom: 0.4rem; }
    .step p { font-size: 0.9rem; color: var(--color-gray-600); }
    .step .connector { position: absolute; right: -1rem; top: 2.75rem; color: var(--color-gray-300); z-index: 2; }
    .step .connector svg { width: 20px; height: 20px; }
    .flow-note {
        margin: 2rem auto 0; max-width: 740px; text-align: center; font-size: 0.9375rem; color: var(--color-gray-700);
        background: rgba(27,139,61,0.06); border: 1px solid rgba(27,139,61,0.2); border-radius: 10px; padding: 1rem 1.25rem;
    }
    .flow-note strong { color: var(--color-primary); }

    /* Benefits */
    .features { padding: var(--section-padding); background: var(--color-white); }
    .features h2 { text-align: center; margin-bottom: 3rem; }
    .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
    .feature { padding: 1.5rem; }
    .feature-icon {
        width: 44px; height: 44px; background: rgba(27,139,61,0.1); border-radius: 10px;
        display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--color-primary);
    }
    .feature h3 { color: var(--color-primary); }
    .feature p { color: var(--color-gray-600); font-size: 0.9375rem; }

    /* Flexibility / routing */
    .flex-section { padding: var(--section-padding); background: var(--color-gray-50); }
    .flex-section h2 { text-align: center; margin-bottom: 1rem; }
    .flex-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; margin-top: 3rem; }
    .flex-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
    .flex-list li { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--color-gray-200); }
    .flex-list li:last-child { border-bottom: none; }
    .flex-ic { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; background: rgba(27,139,61,0.1); display: flex; align-items: center; justify-content: center; color: var(--color-primary); }
    .flex-ic svg { width: 20px; height: 20px; }
    .flex-list h4 { font-size: 1.0625rem; color: var(--color-gray-900); margin-bottom: 0.15rem; }
    .flex-list p { font-size: 0.9375rem; color: var(--color-gray-600); }
    .routing-card { background: var(--color-white); border: 1px solid var(--color-gray-200); border-radius: 16px; padding: 2rem; box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
    .routing-card .rc-title { text-align: center; font-weight: 700; color: var(--color-gray-900); margin-bottom: 1.5rem; font-size: 1.0625rem; }
    .flowchart { display: flex; flex-direction: column; }
    .fc-node { display: flex; align-items: center; gap: 0.7rem; padding: 0.8rem 1rem; border-radius: 10px; font-size: 0.9rem; font-weight: 600; border: 1px solid; }
    .fc-node .fc-icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
    .fc-node .fc-text small { display: block; font-weight: 400; font-size: 0.75rem; margin-top: 0.15rem; opacity: 0.85; }
    .fc-node.fc-primary { background: rgba(27,139,61,0.08); border-color: var(--color-primary); color: var(--color-primary-dark); }
    .fc-node.fc-primary .fc-icon { background: rgba(27,139,61,0.15); color: var(--color-primary); }
    .fc-node.fc-ok { background: rgba(126,201,83,0.18); border-color: var(--color-primary-light); color: var(--color-primary-dark); }
    .fc-node.fc-ok .fc-icon { background: rgba(20,105,46,0.15); color: var(--color-primary-dark); }
    .fc-node.fc-warn { background: var(--color-warning-bg); border-color: var(--color-warning-border); color: var(--color-warning); }
    .fc-node.fc-warn .fc-icon { background: rgba(246,224,94,0.35); color: var(--color-warning); }
    .fc-row, .fc-final-row { display: flex; gap: 1rem; }
    .fc-row .fc-node, .fc-final-row .fc-node, .fc-final-row .fc-spacer { flex: 1; }

    .fc-branch, .fc-stem-right { position: relative; height: 30px; }
    .fc-branch::before { content: ''; position: absolute; top: 0; left: 50%; width: 2px; height: 12px; background: var(--color-gray-300); transform: translateX(-50%); }
    .fc-branch::after { content: ''; position: absolute; top: 12px; left: 25%; right: 25%; height: 2px; background: var(--color-gray-300); }
    .fc-branch .fc-leg { position: absolute; top: 12px; width: 2px; height: 18px; background: var(--color-gray-300); }
    .fc-branch .fc-leg.left { left: 25%; transform: translateX(-50%); }
    .fc-branch .fc-leg.right { left: 75%; transform: translateX(-50%); }
    .fc-branch .fc-dot, .fc-stem-right .fc-dot { position: absolute; top: 12px; left: 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--color-primary-light); transform: translate(-50%, -50%); }
    .fc-stem-right::before { content: ''; position: absolute; top: 0; left: 75%; width: 2px; height: 30px; background: var(--color-gray-300); transform: translateX(-50%); }
    .fc-stem-right .fc-dot { left: 75%; top: 15px; }

    /* Gallery */
    .gallery-section { padding: var(--section-padding); background: var(--color-white); }
    .gallery-section h2 { text-align: center; margin-bottom: 1rem; }
    .gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
    .gallery .screenshot-frame .placeholder { aspect-ratio: 9/16; }
    .gallery .shot-wide { grid-column: span 3; }
    .gallery .shot-wide .placeholder { aspect-ratio: 16/6; }
    /* Real screenshots (already include browser chrome) */
    .gallery-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; margin-bottom: 2rem; }
    .real-shot { background: var(--color-white); border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.05); }

    /* Mock desktop-screen graphics (return-visit illustrations) */
    .mock-body { aspect-ratio: 4/3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.1rem; background: var(--color-gray-50); padding: 1.5rem; }
    .mock-caption { font-size: 0.8125rem; font-weight: 600; color: var(--color-gray-600); }
    .mock-check-badge {
        width: 88px; height: 88px; border-radius: 50%;
        background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
        display: flex; align-items: center; justify-content: center;
        box-shadow: 0 10px 30px rgba(27,139,61,0.35);
    }
    .mock-check-badge svg { width: 42px; height: 42px; }
    .mock-matched-text { font-size: 1.375rem; font-weight: 700; color: var(--color-primary-dark); }
    .real-shot img { width: 100%; height: auto; display: block; }
    .real-shot .cap { padding: 1rem 1.25rem 1.15rem; border-top: 1px solid var(--color-gray-100); }
    .real-shot .cap .step-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-primary); }
    .real-shot .cap .cap-title { font-size: 1rem; font-weight: 600; color: var(--color-gray-900); margin: 0.1rem 0 0.2rem; }
    .real-shot .cap p { font-size: 0.875rem; color: var(--color-gray-600); }
    @media (max-width: 968px) { .gallery-steps { grid-template-columns: 1fr; } }
    /* Mobile submission step (phones) + confirmation */
    .phone-step { max-width: 780px; margin: 0.5rem auto 0; }
    .phone-step .ps-head { text-align: center; margin-bottom: 1.5rem; }
    .phone-step .ps-head .step-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-primary); }
    .phone-step .ps-head h3 { font-size: 1.25rem; margin: 0.15rem 0 0.35rem; }
    .phone-step .ps-head p { font-size: 0.9375rem; color: var(--color-gray-600); max-width: 620px; margin: 0 auto; }
    .phones { display: flex; justify-content: center; gap: 1.75rem; flex-wrap: wrap; }
    .phone { width: 218px; margin: 0; border-radius: 22px; overflow: hidden; background: var(--color-white); box-shadow: 0 20px 50px rgba(0,0,0,0.14), 0 0 0 1px rgba(0,0,0,0.05); }
    .phone img { width: 100%; height: auto; display: block; }
    .phone .pcap { font-size: 0.8125rem; color: var(--color-gray-600); text-align: center; padding: 0.65rem 0.5rem 0.9rem; }
    .confirm-callout { max-width: 780px; margin: 2.5rem auto 0; display: flex; align-items: center; gap: 1.15rem; background: rgba(27,139,61,0.06); border: 1px solid rgba(27,139,61,0.25); border-radius: 14px; padding: 1.35rem 1.6rem; }
    .confirm-callout .cc-check { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: var(--color-primary); color: #fff; display: flex; align-items: center; justify-content: center; }
    .confirm-callout .cc-check svg { width: 24px; height: 24px; }
    .confirm-callout .cc-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-primary); }
    .confirm-callout h4 { font-size: 1.0625rem; color: var(--color-gray-900); margin: 0.1rem 0 0.15rem; }
    .confirm-callout p { font-size: 0.9375rem; color: var(--color-gray-700); }

    /* Continuity check - dedicated section */
    .continuity { padding: var(--section-padding); background: var(--color-gray-50); }
    .continuity h2 { text-align: center; margin-bottom: 1rem; }
    .cont-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; margin-top: 3rem; }
    .cont-points { list-style: none; display: flex; flex-direction: column; gap: 1.4rem; }
    .cont-points li { display: flex; gap: 1rem; }
    .cont-ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px; background: rgba(27,139,61,0.1); display: flex; align-items: center; justify-content: center; color: var(--color-primary); }
    .cont-ic svg { width: 22px; height: 22px; }
    .cont-points h4 { font-size: 1.0625rem; color: var(--color-gray-900); margin-bottom: 0.2rem; }
    .cont-points p { font-size: 0.9375rem; color: var(--color-gray-600); }
    .cont-visual { background: var(--color-white); border: 1px solid var(--color-gray-200); border-radius: 14px; padding: 2rem 1.9rem 2.25rem; box-shadow: 0 20px 60px rgba(0,0,0,0.07); }
    .cont-visual .cv-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-gray-600); text-align: center; margin-bottom: 3rem; }
    .timeline { position: relative; height: 6px; background: var(--color-gray-200); border-radius: 3px; margin: 0 0.75rem; }
    .timeline .fill { position: absolute; left: 0; top: 0; height: 100%; width: 100%; background: linear-gradient(90deg, var(--color-primary-light), var(--color-primary)); border-radius: 3px; }
    .timeline .dot { position: absolute; top: 50%; width: 16px; height: 16px; border-radius: 50%; transform: translate(-50%,-50%); border: 3px solid #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.25); z-index: 2; }
    .timeline .dot.ok { background: var(--color-primary); }
    .timeline .dot.flag { background: var(--color-warning); width: 20px; height: 20px; box-shadow: 0 0 0 4px rgba(183,121,31,0.18); }
    .timeline .tick { position: absolute; transform: translateX(-50%); font-size: 0.7rem; color: var(--color-gray-600); white-space: nowrap; }
    .timeline .tick.up { top: -1.85rem; }
    .timeline .tick.down { top: 1.4rem; }
    .timeline .tick.warn { color: var(--color-warning); font-weight: 700; }
    .cv-legend { display: flex; justify-content: center; gap: 1.75rem; margin-top: 2.5rem; font-size: 0.8125rem; color: var(--color-gray-700); }
    .cv-legend span { display: flex; align-items: center; gap: 0.4rem; }
    .cv-legend .swatch { width: 12px; height: 12px; border-radius: 50%; }
    .cont-flag-note { margin-top: 1.5rem; background: var(--color-warning-bg); border: 1px solid var(--color-warning-border); border-radius: 10px; padding: 0.9rem 1.05rem; font-size: 0.8625rem; color: #8a5a12; line-height: 1.5; }
    @media (max-width: 968px) { .cont-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

    /* Pricing */
    .pricing-section { padding: var(--section-padding); background: var(--color-gray-50); text-align: center; }
    .pricing-section h2 { margin-bottom: 1rem; }
    .price-card {
        max-width: 460px; margin: 3rem auto 0; background: var(--color-white);
        border: 2px solid var(--color-primary); border-radius: 16px; padding: 2.75rem; text-align: center;
        box-shadow: 0 20px 60px rgba(27,139,61,0.12);
    }
    .price-kicker { color: var(--color-primary); font-weight: 700; font-size: 0.8125rem; letter-spacing: 0.08em; text-transform: uppercase; }
    .price { font-size: 3.5rem; font-weight: 700; color: var(--color-gray-900); margin: 0.5rem 0 0.15rem; }
    .price span { font-size: 1.125rem; font-weight: 500; color: var(--color-gray-600); }
    .price-sub { color: var(--color-gray-600); margin-bottom: 1.5rem; }
    .price-card ul { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 0.6rem; margin: 1.5rem 0; }
    .price-card li { font-size: 0.9375rem; color: var(--color-gray-700); padding-left: 1.6rem; position: relative; }
    .price-card li::before { content: '✓'; position: absolute; left: 0; color: var(--color-primary); font-weight: 700; }
    .price-card .btn { width: 100%; }
    .price-fine { font-size: 0.8125rem; color: var(--color-gray-600); margin-top: 1rem; }

    /* CTA */
    .cta { padding: var(--section-padding); background: var(--color-white); text-align: center; }
    .cta h2 { margin-bottom: 1rem; }
    .cta p { font-size: 1.125rem; color: var(--color-gray-600); margin-bottom: 2rem; }

    /* Footer */
    .footer { padding: 3rem 1.5rem 2rem; background: var(--color-gray-900); color: var(--color-gray-200); }
    .footer-content { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--color-gray-700); }
    .footer-logo { height: 40px; width: auto; margin-bottom: 0.5rem; }
    .footer-brand p { font-size: 0.875rem; opacity: 0.7; }
    .footer-links { display: flex; gap: 2rem; }
    .footer-links a { color: var(--color-gray-200); text-decoration: none; font-size: 0.875rem; transition: color 0.2s ease; }
    .footer-links a:hover { color: var(--color-white); }
    .copyright { font-size: 0.8125rem; opacity: 0.6; }

    /* Responsive */
    @media (max-width: 968px) {
        .hero .container { grid-template-columns: 1fr; gap: 3rem; }
        .hero-text { text-align: center; order: 2; }
        .hero-media { order: 1; }
        .steps, .gallery { grid-template-columns: 1fr; }
        .gallery .shot-wide { grid-column: span 1; }
        .flex-grid { grid-template-columns: 1fr; }
        .step .connector { display: none; }
    }
    @media (max-width: 768px) {
        h1 { font-size: 2.25rem; }
        h2 { font-size: 1.75rem; }
        .hero { padding: 7rem 1.5rem 3rem; }
        .hero-subtitle { font-size: 1.125rem; }
        .footer-content { flex-direction: column; align-items: center; text-align: center; }
    }
