    /* ═══════════════════════════════════════════════════
       DESIGN TOKENS — Clean White SaaS / Orange Accent
       Primary:  #F36A20  (RunYourPayroll orange)
       Surface:  #FFFFFF  (pure white)
       Navy:     #111F38  (RunYourPayroll navy)
       ═══════════════════════════════════════════════════ */
    :root {
        /* Brand — extracted from RunYourPayroll logo */
        --orange: #F36A20;
        --orange-dark: #D4571A;
        --orange-light: #FEF0E6;
        --orange-mid: #FDDCC4;

        /* Surface */
        --white: #FFFFFF;
        --surface-1: #FFFFFF;
        --surface-2: #F7F9FC;
        --surface-3: #EEF1F6;

        /* Navy — extracted from RunYourPayroll logo */
        --navy: #111F38;
        --navy-mid: #1C3055;

        /* Text */
        --text: #111F38;
        --text-muted: #556070;
        --text-light: #8A9BAD;

        /* Borders */
        --border: #E2E7EF;
        --border-dark: #C8D2DE;

        /* Utility */
        --green: #16A34A;
        --amber: #F59E0B;

        /* Radius */
        --r-sm: 6px;
        --r-md: 10px;
        --r-lg: 16px;
        --r-xl: 24px;
        --r-pill: 999px;

        /* Typography */
        --font-body: 'Inter', sans-serif;

        /* Shadows */
        --shadow-xs: 0 1px 2px rgba(17, 31, 56, .05);
        --shadow-sm: 0 1px 4px rgba(17, 31, 56, .07), 0 2px 8px rgba(17, 31, 56, .04);
        --shadow-md: 0 4px 16px rgba(17, 31, 56, .09), 0 2px 6px rgba(17, 31, 56, .04);
        --shadow-lg: 0 12px 36px rgba(17, 31, 56, .12);
        --shadow-card: 0 20px 60px rgba(17, 31, 56, .11);
    }

    /* ─── RESET ─── */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
        font-size: 16px;
    }

    body {
        font-family: var(--font-body);
        color: var(--text);
        background: var(--white);
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    .section-subtitle a,
    .timeline-content p a,
    .process-card p a,
    .pv-text p a,
    .compliance-card p a,
    .feature-card p a,
    .pricing-desc a,
    .testimonial-text a,
    .faq-a a,
    .footer-desc a,
    .footer-copy a {
        color: var(--teal);
        font-weight: 500;
        text-decoration: underline;
        text-decoration-color: rgba(243, 106, 32, .42);
        text-underline-offset: 3px;
        text-decoration-thickness: 1.5px;
        transition: color .15s ease, text-decoration-color .15s ease;
    }

    .section-subtitle a:hover,
    .timeline-content p a:hover,
    .process-card p a:hover,
    .pv-text p a:hover,
    .compliance-card p a:hover,
    .feature-card p a:hover,
    .pricing-desc a:hover,
    .testimonial-text a:hover,
    .faq-a a:hover,
    .footer-desc a:hover,
    .footer-copy a:hover {
        color: var(--orange);
        text-decoration-color: rgba(243, 106, 32, .72);
    }

    ul {
        list-style: none;
    }

    /* Skip link */
    .skip-link {
        position: absolute;
        top: -40px;
        left: 1rem;
        background: var(--navy);
        color: var(--white);
        padding: 8px 16px;
        border-radius: var(--r-sm);
        font-size: 14px;
        z-index: 9999;
        transition: top .2s;
    }

    .skip-link:focus {
        top: 1rem;
    }

    /* ─── UTILITIES ─── */
    .container {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    /* Badges & Labels */
    .badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--orange-light);
        color: var(--orange-dark);
        font-size: 13px;
        font-weight: 600;
        padding: 5px 14px;
        border-radius: var(--r-pill);
        letter-spacing: .02em;
    }

    .badge--white {
        background: var(--orange-light);
        color: var(--orange);
        border: 1px solid var(--orange-mid);
    }

    .tag {
        display: inline-block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .07em;
        text-transform: uppercase;
        color: var(--orange);
        margin-bottom: .5rem;
    }

    .section-label {
        text-align: center;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--orange);
        margin-bottom: .625rem;
    }

    .section-title {
        font-family: var(--font-display);
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        font-weight: 700;
        line-height: 1.18;
        color: var(--navy);
        margin-bottom: 1rem;
        text-align: center;
        letter-spacing: -.01em;
    }

    .section-subtitle {
        font-size: 1.0625rem;
        color: var(--text-muted);
        max-width: 580px;
        margin: 0 auto 3rem;
        text-align: center;
        line-height: 1.7;
    }

    /* ─── BUTTONS ─── */
    .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: var(--font-body);
        font-size: .9375rem;
        font-weight: 600;
        padding: 13px 26px;
        border-radius: var(--r-md);
        border: none;
        cursor: pointer;
        transition: all .16s ease;
        text-decoration: none;
        line-height: 1;
        white-space: nowrap;
    }

    .btn:focus-visible {
        outline: 3px solid var(--orange);
        outline-offset: 3px;
    }

    .btn-primary {
        background: var(--orange);
        color: #fff;
        box-shadow: 0 1px 2px rgba(243, 106, 32, .2);
    }

    .btn-primary:hover {
        background: var(--orange-dark);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(243, 106, 32, .4);
    }

    .btn-secondary {
        background: var(--white);
        color: var(--navy);
        border: 1.5px solid var(--border-dark);
        box-shadow: var(--shadow-xs);
    }

    .btn-secondary:hover {
        border-color: var(--orange);
        color: var(--orange);
        background: var(--orange-light);
    }

    .btn-outline {
        background: transparent;
        color: var(--navy);
        border: 1.5px solid var(--border);
    }

    .btn-outline:hover {
        border-color: var(--orange);
        color: var(--orange);
    }

    .btn-lg {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .btn-sm {
        padding: 10px 16px;
        font-size: .875rem;
    }

    /* ─── NAVBAR ─── */
    #navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, .92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        transition: box-shadow .25s;
    }

    #navbar.scrolled {
        box-shadow: var(--shadow-sm);
    }

    .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: .875rem 0;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        line-height: 0;
    }

    .nav-logo img {
        height: 38px;
        width: auto;
        display: block;
    }

    .nav-logo-icon {
        display: none;
    }

.nav-links { display: flex; align-items: center; gap: 25px; }

    .nav-links a {
        font-size: .875rem;
        font-weight: 500;
        color: var(--text-muted);
        padding: 6px 11px;
        border-radius: var(--r-sm);
        transition: color .15s, background .15s;
    }

    .nav-links a:hover {
        color: var(--navy);
        background: var(--surface-2);
    }

    .nav-links a.active {
        color: var(--orange);
        background: var(--orange-light);
        font-weight: 500;
    }

    .nav-links a:focus-visible {
        outline: 2px solid var(--orange);
        outline-offset: 2px;
    }

    .nav-cta {
        margin-left: .625rem;
    }

    .nav-toggle {
        display: none;
        background: none;
        border: none;
        color: var(--navy);
        cursor: pointer;
        padding: 6px;
        border-radius: var(--r-sm);
    }

    .nav-toggle:focus-visible {
        outline: 2px solid var(--orange);
    }

    /* ─── HERO ─── */
    #hero {
        background: var(--white);
        padding: 136px 0 96px;
        border-bottom: 1px solid var(--border);
    }

    .hero-bg-grid {
        display: none;
    }

    .hero-glow {
        display: none;
    }

    .hero-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .hero-badge {
        margin-bottom: 1.25rem;
    }

    .hero-title {
        font-family: var(--font-display);
        font-size: clamp(2.25rem, 5vw, 3.5rem);
        font-weight: 800;
        line-height: 1.1;
        color: var(--navy);
        margin-bottom: 1.125rem;
        letter-spacing: -.025em;
    }

    .hero-title span {
        color: var(--orange);
    }

    .hero-subtitle {
        font-size: 1.0625rem;
        color: var(--text-muted);
        line-height: 1.7;
        margin-bottom: 2rem;
        max-width: 460px;
    }

    .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: .75rem;
        align-items: center;
    }

    .hero-trust {
        margin-top: 2rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .hero-trust-text {
        font-size: .8125rem;
        color: var(--text-light);
    }

    .hero-trust-badges {
        display: flex;
        gap: .5rem;
        flex-wrap: wrap;
    }

    .trust-pill {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: .8125rem;
        font-weight: 500;
        color: var(--text-muted);
        background: var(--surface-2);
        border: 1px solid var(--border);
        padding: 4px 11px;
        border-radius: var(--r-pill);
    }

    .trust-pill svg {
        width: 13px;
        height: 13px;
        flex-shrink: 0;
    }

    /* Hero card mockup */
    .hero-visual {
        position: relative;
    }

    .hero-app-card {
        background: var(--white);
        border-radius: var(--r-xl);
        padding: 1.5rem;
        box-shadow: var(--shadow-card);
        border: 1px solid var(--border);
        position: relative;
        z-index: 2;
    }

    .app-card-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1.25rem;
    }

    .app-card-header-left {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .app-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
    }

    .app-card-title {
        font-size: .8125rem;
        font-weight: 600;
        color: var(--navy);
    }

    .app-card-date {
        font-size: .75rem;
        color: var(--text-muted);
    }

    .payroll-steps {
        display: flex;
        flex-direction: column;
        gap: .5rem;
        margin-bottom: 1.125rem;
    }

    .payroll-step {
        display: flex;
        align-items: center;
        gap: .75rem;
        padding: .75rem 1rem;
        background: var(--surface-2);
        border-radius: var(--r-md);
        border: 1px solid var(--border);
    }

    .step-icon {
        width: 32px;
        height: 32px;
        border-radius: var(--r-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .step-icon svg {
        width: 16px;
        height: 16px;
    }

    .step-text {
        flex: 1;
    }

    .step-name {
        font-size: .8125rem;
        font-weight: 600;
        color: var(--navy);
        line-height: 1.2;
    }

    .step-desc {
        font-size: .75rem;
        color: var(--text-muted);
    }

    .step-check {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .step-check.done {
        background: var(--orange);
    }

    .step-check.active {
        background: var(--amber);
    }

    .step-check.pending {
        background: var(--border);
    }

    .step-check svg {
        width: 11px;
        height: 11px;
        stroke: white;
        stroke-width: 2.5;
    }

    .payroll-total {
        background: var(--navy);
        border-radius: var(--r-md);
        padding: 1rem 1.25rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .total-label {
        font-size: .75rem;
        color: rgba(255, 255, 255, .55);
    }

    .total-amount {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 700;
        color: #fff;
    }

    .total-tag {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        background: rgba(243, 106, 32, .2);
        color: var(--orange);
        font-size: .75rem;
        font-weight: 600;
        padding: 4px 10px;
        border-radius: var(--r-pill);
    }

    .hero-floating-badge {
        position: absolute;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--r-md);
        padding: .625rem 1rem;
        box-shadow: var(--shadow-lg);
        display: flex;
        align-items: center;
        gap: .5rem;
        font-size: .8125rem;
        font-weight: 600;
        color: var(--navy);
        z-index: 3;
        animation: floatBadge 3s ease-in-out infinite;
    }

    .hero-floating-badge .badge-icon {
        width: 28px;
        height: 28px;
        border-radius: var(--r-sm);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-floating-badge.badge-top {
        top: -18px;
        right: 20px;
    }

    .hero-floating-badge.badge-bot {
        bottom: -18px;
        left: 10px;
        animation-delay: -1.5s;
    }

    @keyframes floatBadge {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-6px);
        }
    }

    /* ─── STATS BAR ─── */
    #stats {
        background: var(--navy);
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }

    .stat-item {
        padding: 1.75rem 1.5rem;
        text-align: center;
        border-right: 1px solid rgba(255, 255, 255, .07);
    }

    .stat-item:last-child {
        border-right: none;
    }

    .stat-number {
        font-family: var(--font-display);
        font-size: 2rem;
        font-weight: 800;
        color: var(--orange);
        line-height: 1;
        margin-bottom: .25rem;
    }

    .stat-label {
        font-size: .8125rem;
        color: rgba(255, 255, 255, .55);
    }

    /* ─── BEFORE PAYROLL ─── */
#before-payroll { padding: 5rem 0; background: var(--surface-2); }
.timeline { max-width: 780px; margin: 0 auto; position: relative; }
    .timeline::before { content: ''; position: absolute; left: 28px; top: 24px; bottom: 0; width: 2px; background: var(--border); }
.timeline-progress { position: absolute; left: 28px; top: 24px; width: 2px; height: 0; background: var(--orange); z-index: 0; transition: height .25s linear; }
.timeline-item { display: flex; gap: 1.5rem; margin-bottom: 1.75rem; position: relative; z-index: 9; }
.timeline-num { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1rem; font-weight: 700; flex-shrink: 0; position: relative; z-index: 1; border: 2px solid var(--border-dark); background: var(--white); color: var(--text-muted); transition: background .4s ease, border-color .4s ease, box-shadow .4s ease, color .4s ease; }
    .timeline-num .tl-check { display: none; align-items: center; justify-content: center; }
    .timeline-num.completed { background: var(--navy); color: #fff; border-color: var(--orange); box-shadow: 0 0 0 4px var(--orange-light); }
        .timeline-num.completed .tl-number { display: none; }
        .timeline-num.completed .tl-check { display: flex; }
.timeline-content { flex: 1; padding: 1.25rem 1.5rem; background: var(--white); border-radius: var(--r-md); border: 1px solid var(--border); box-shadow: var(--shadow-xs); }
    .timeline-content h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .35rem; }
    .timeline-content p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

    /* ─── RUN PAYROLL ─── */
    #run-payroll {
        padding: 5rem 0;
        background: var(--white);
    }

    .process-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .process-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--r-lg);
        padding: 2rem 1.5rem;
        position: relative;
        overflow: hidden;
        transition: box-shadow .2s, transform .2s, border-color .2s;
    }

    .process-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
        border-color: var(--border-dark);
    }

    .process-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--orange);
    }

    .process-num {
        font-family: var(--font-display);
        font-size: 3rem;
        font-weight: 800;
        color: var(--surface-3);
        line-height: 1;
        position: absolute;
        top: 1rem;
        right: 1.25rem;
    }

    .process-icon {
        width: 48px;
        height: 48px;
        border-radius: var(--r-md);
        background: var(--navy);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.125rem;
    }

    .process-icon svg {
        width: 24px;
        height: 24px;
    }

    .process-card h3 {
        font-family: var(--font-display);
        font-size: 1.0625rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: .5rem;
    }

    .process-card p {
        font-size: .9rem;
        color: var(--text-muted);
        line-height: 1.65;
    }

    /* Process visual banner */
    .process-visual {
        background: var(--navy);
        border-radius: var(--r-xl);
        padding: 2.5rem 3rem;
        display: flex;
        align-items: center;
        gap: 3rem;
        position: relative;
        overflow: hidden;
    }

    .process-visual-bg {
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(243, 106, 32, .15) 0%, transparent 65%);
    }

    .pv-text {
        position: relative;
        z-index: 1;
        flex: 1;
    }

    .pv-text h3 {
        font-family: var(--font-display);
        font-size: 1.625rem;
        font-weight: 700;
        color: #fff;
        line-height: 1.2;
        margin-bottom: .75rem;
    }

    .pv-text p {
        font-size: .9375rem;
        color: rgba(255, 255, 255, .65);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .pv-stat-row {
        display: flex;
        gap: 2.5rem;
    }

    .pv-stat .pv-num {
        font-family: var(--font-display);
        font-size: 1.75rem;
        font-weight: 800;
        color: var(--orange);
    }

    .pv-stat .pv-label {
        font-size: .8125rem;
        color: rgba(255, 255, 255, .5);
    }

    .pv-img {
        position: relative;
        z-index: 1;
    }

    /* ─── AFTER PAYROLL ─── */
    #after-payroll {
        padding: 5rem 0;
        background: var(--surface-2);
    }

    #after-payroll .section-title {
        color: var(--navy);
    }

    #after-payroll .section-subtitle {
        color: var(--text-muted);
    }

    .compliance-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.125rem;
    }

    .compliance-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--r-lg);
        padding: 1.75rem;
        transition: box-shadow .2s, border-color .2s;
    }

    .compliance-card:hover {
        box-shadow: var(--shadow-md);
        border-color: var(--border-dark);
    }

    .compliance-icon {
        width: 44px;
        height: 44px;
        border-radius: var(--r-md);
        background: var(--orange-light);
        border: 1px solid var(--orange-mid);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .compliance-icon svg {
        width: 22px;
        height: 22px;
        stroke: var(--orange);
    }

    .compliance-card h3 {
        font-family: var(--font-display);
        font-size: 1rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: .5rem;
    }

    .compliance-card p {
        font-size: .875rem;
        color: var(--text-muted);
        line-height: 1.6;
    }

    .compliance-plus {
        border-color: var(--orange-mid);
        background: var(--orange-light);
    }

    .plus-tag {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: var(--orange);
        color: #fff;
        font-size: .6875rem;
        font-weight: 700;
        letter-spacing: .06em;
        padding: 3px 9px;
        border-radius: var(--r-pill);
        text-transform: uppercase;
        margin-left: .5rem;
        vertical-align: middle;
    }

    .tax-timeline {
        margin-top: 3rem;
        display: flex;
        align-items: flex-start;
        position: relative;
    }

    .tax-timeline::before {
        content: '';
        position: absolute;
        top: 22px;
        left: 44px;
        right: 44px;
        height: 2px;
        background: linear-gradient(90deg, var(--orange) 0%, var(--border) 100%);
    }

    .tax-tl-item {
        flex: 1;
        text-align: center;
        position: relative;
        padding-top: .5rem;
    }

    .tax-tl-dot {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--orange-light);
        border: 2px solid var(--orange);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto .75rem;
    }

    .tax-tl-dot svg {
        width: 18px;
        height: 18px;
        stroke: var(--orange);
    }

    .tax-tl-label {
        font-size: .8125rem;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: .25rem;
    }

    .tax-tl-sub {
        font-size: .75rem;
        color: var(--text-muted);
    }

    /* ─── FEATURES ─── */
    #features {
        padding: 5rem 0;
        background: var(--white);
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.125rem;
    }

    .feature-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--r-lg);
        padding: 1.75rem;
        transition: box-shadow .2s, border-color .2s, transform .2s;
    }

    .feature-card:hover {
        box-shadow: var(--shadow-md);
        border-color: var(--border-dark);
        transform: translateY(-2px);
    }

    .feat-icon {
        width: 48px;
        height: 48px;
        border-radius: var(--r-md);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.125rem;
    }

    .feat-icon svg {
        width: 24px;
        height: 24px;
    }

    .feature-card h3 {
        font-family: var(--font-display);
        font-size: 1rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: .5rem;
    }

    .feature-card p {
        font-size: .875rem;
        color: var(--text-muted);
        line-height: 1.65;
    }

    .feat-list {
        margin-top: .875rem;
        display: flex;
        flex-direction: column;
        gap: .375rem;
    }

    .feat-list li {
        display: flex;
        align-items: center;
        gap: .5rem;
        font-size: .8125rem;
        color: var(--text-muted);
    }

    .feat-list li svg {
        width: 14px;
        height: 14px;
        stroke: var(--orange);
        flex-shrink: 0;
    }

    #industries {
        padding: 5rem 0;
        background: var(--bg-soft);
    }

    .industries-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.125rem;
    }

    .industry-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--r-lg);
        padding: 1.5rem;
        transition: box-shadow .2s, border-color .2s, transform .2s;
    }

    .industry-card:hover {
        box-shadow: var(--shadow-md);
        border-color: var(--border-dark);
        transform: translateY(-2px);
    }

    .industry-card h3 {
        font-family: var(--font-display);
        font-size: 1rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: .5rem;
    }

    .industry-card p {
        font-size: .875rem;
        color: var(--text-muted);
        line-height: 1.65;
        margin-bottom: 1rem;
    }

    .industry-card a {
        color: var(--teal);
        font-size: .875rem;
        font-weight: 700;
        text-decoration: none;
        transition: color .15s ease;
    }

    .industry-card a:hover {
        color: var(--orange);
    }

    /* ─── PRICING ─── */
    #pricing {
        padding: 5rem 0;
        background: var(--surface-2);
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 820px;
        margin: 0 auto;
    }

    .pricing-card {
        background: var(--white);
        border: 1.5px solid var(--border);
        border-radius: var(--r-xl);
        padding: 2.5rem 2rem;
        position: relative;
        transition: box-shadow .2s;
    }

    .pricing-card:hover {
        box-shadow: var(--shadow-lg);
    }

    .pricing-card.popular {
        border-color: var(--orange);
        box-shadow: 0 0 0 4px var(--orange-light), var(--shadow-md);
    }

    .popular-badge {
        position: absolute;
        top: -14px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--orange);
        color: #fff;
        font-size: .75rem;
        font-weight: 700;
        letter-spacing: .05em;
        text-transform: uppercase;
        padding: 5px 16px;
        border-radius: var(--r-pill);
    }

    .pricing-plan {
        font-size: .75rem;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--orange);
        margin-bottom: .5rem;
    }

    .pricing-price {
        font-family: var(--font-display);
        font-size: 3rem;
        font-weight: 800;
        color: var(--navy);
        line-height: 1;
        margin-bottom: .25rem;
    }

    .pricing-price sup {
        font-size: 1.25rem;
        vertical-align: super;
    }

    .pricing-price .per {
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-muted);
    }

    .pricing-emp-fee {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: var(--orange-light);
        color: var(--orange-dark);
        font-size: .8125rem;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: var(--r-pill);
        margin-bottom: 1.25rem;
    }

    .pricing-desc {
        font-size: .875rem;
        color: var(--text-muted);
        line-height: 1.6;
        margin-bottom: 1.75rem;
    }

    .pricing-features {
        display: flex;
        flex-direction: column;
        gap: .625rem;
        /* margin-bottom: 2rem; */
    }

    .pricing-feat {
        display: flex;
        align-items: flex-start;
        gap: .625rem;
        font-size: .875rem;
        color: var(--text-muted);
    }

    .pricing-feat svg {
        width: 16px;
        height: 16px;
        stroke: var(--orange);
        flex-shrink: 0;
        margin-top: 2px;
    }

    .pricing-cta {
        width: 100%;
        justify-content: center;
    }

    /* ─── TESTIMONIALS ─── */
    #testimonials {
        padding: 5rem 0;
        background: var(--white);
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.125rem;
    }

    .testimonial-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--r-lg);
        padding: 1.75rem;
        box-shadow: var(--shadow-xs);
        transition: box-shadow .2s, transform .2s;
    }

    .testimonial-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-2px);
    }

    .stars {
        display: flex;
        gap: 2px;
        margin-bottom: .875rem;
    }

    .star {
        color: var(--amber);
        font-size: 14px;
    }

    .testimonial-text {
        font-size: .9375rem;
        color: var(--text-muted);
        line-height: 1.7;
        margin-bottom: 1.25rem;
        font-style: italic;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: .75rem;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--navy);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-display);
        font-size: .875rem;
        font-weight: 700;
        color: #fff;
    }

    .author-name {
        font-size: .875rem;
        font-weight: 600;
        color: var(--navy);
    }

    .author-role {
        font-size: .75rem;
        color: var(--text-muted);
    }

    /* ─── FAQ ─── */
    #faq {
        padding: 5rem 0;
        background: var(--surface-2);
    }

    .faq-wrap {
        max-width: 740px;
        margin: 0 auto;
    }

    .faq-item {
        border-bottom: 1px solid var(--border);
    }

    .faq-item:first-child {
        border-top: 1px solid var(--border);
    }

    .faq-q {
        width: 100%;
        text-align: left;
        background: none;
        border: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 1.25rem 0;
        cursor: pointer;
        font-family: var(--font-body);
        font-size: .9375rem;
        font-weight: 600;
        color: var(--navy);
        line-height: 1.4;
        transition: color .15s;
    }

    .faq-q:hover {
        color: var(--orange);
    }

    .faq-q:focus-visible {
        outline: 2px solid var(--orange);
        outline-offset: 2px;
        border-radius: 2px;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--surface-3);
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: background .15s, transform .25s;
    }

    .faq-icon svg {
        width: 13px;
        height: 13px;
        stroke: var(--text-muted);
        transition: stroke .15s;
    }

    .faq-q[aria-expanded="true"] .faq-icon {
        background: var(--orange);
        border-color: var(--orange);
        transform: rotate(45deg);
    }

    .faq-q[aria-expanded="true"] .faq-icon svg {
        stroke: #fff;
    }

    .faq-q[aria-expanded="true"] {
        color: var(--orange);
    }

    .faq-a {
        font-size: .9375rem;
        color: var(--text-muted);
        line-height: 1.7;
        overflow: hidden;
        max-height: 0;
        transition: max-height .3s ease, padding .3s;
    }

    .faq-a.open {
        max-height: 520px;
        padding-bottom: 1.25rem;
    }

    .faq-a p {
        margin: 0 0 .5rem;
    }

    .faq-a p:last-child {
        margin-bottom: 0;
    }

    .faq-a ul {
        margin: .25rem 0 .5rem 1.5rem;
        padding-left: 1rem;
        list-style: disc;
    }

    .faq-a li {
        margin: .25rem 0;
        padding-left: .25rem;
    }

    /* ─── CTA ─── */
    #cta-section {
        padding: 4rem 0;
        background: var(--navy);
        position: relative;
        overflow: hidden;
    }

    .cta-glow {
        display: none;
    }

    .cta-inner {
        position: relative;
        z-index: 1;
        text-align: center;
    }

    .cta-title {
        font-family: var(--font-display);
        font-size: clamp(1.75rem, 4vw, 2.75rem);
        font-weight: 800;
        color: #fff;
        margin-bottom: 1rem;
        line-height: 1.15;
        letter-spacing: -.02em;
    }

    .cta-sub {
        font-size: 1.0625rem;
        color: rgba(255, 255, 255, .65);
        margin-bottom: 2.25rem;
    }

    .cta-actions {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Override secondary btn inside dark CTA */
    #cta-section .btn-secondary {
        background: rgba(255, 255, 255, .1);
        color: #fff;
        border-color: rgba(255, 255, 255, .25);
    }

    #cta-section .btn-secondary:hover {
        background: rgba(255, 255, 255, .18);
    }

    .cta-note {
        margin-top: 1.25rem;
        font-size: .8125rem;
        color: rgba(255, 255, 255, .4);
    }

    .cta-note a {
        color: rgba(255, 255, 255, .6);
        text-decoration: underline;
    }

.hiw-card { width: 268px; flex-shrink: 0; background: #ffffff; border-radius: 16px; padding: 1.375rem 1.25rem 1.125rem; position: relative; z-index: 1; box-shadow: 0 16px 48px rgba(0,0,0,0.28); }

.hiw-card-label { font-size: 10px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: #94A3B8; margin: 0 0 1rem 2px; }

/* Individual step row */
.hiw-step { display: flex; align-items: flex-start; gap: 10px; background: #F8FAFB; border: 1px solid #E2E8F0; border-radius: 10px; padding: 10px 11px; margin-bottom: 7px; /* Entrance animation initial state */ opacity: 0; transform: translateY(7px); transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease, border-color 0.3s ease; }
    .hiw-step.hiw-visible { opacity: 1; transform: translateY(0); }
    .hiw-step.hiw-complete { background: #F0FDF9; border-color: #9FE1CB; }

/* Step icon bubble */
.hiw-icon { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1.5px solid #E2E8F0; background: #ffffff; transition: background 0.3s ease, border-color 0.3s ease; }
    .hiw-icon.hiw-active { background: #F36A20; border-color: #F59E0B; }
    .hiw-icon.hiw-done { background: #00B896; border-color: #00B896; }

/* Animated dot (idle / active state) */
.hiw-dot { width: 9px; height: 9px; border-radius: 50%; background: #CBD5E1; }
.hiw-icon.hiw-active .hiw-dot { background: #ffffff; animation: hiw-pulse 1s ease-in-out infinite; }

@keyframes hiw-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.7; }
}

/* Check mark SVG inside done icon */
.hiw-check { display: none; width: 14px; height: 14px; stroke: #ffffff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.hiw-icon.hiw-done .hiw-dot { display: none; }
.hiw-icon.hiw-done .hiw-check { display: block; }

/* Step text */
.hiw-step-body { flex: 1; }
.hiw-step-name { font-size: 13px; font-weight: 600; color: #1E293B; margin: 0 0 2px; line-height: 1.3; }
.hiw-step-sub { font-size: 11px; color: #64748B; margin: 0; }

/* "Done in X min" completion badge */
.hiw-done-badge { margin-top: 10px; background: #E6F9F5; border-radius: 9px; padding: 9px 13px; display: flex; align-items: center; gap: 8px; opacity: 0; transition: opacity 0.5s ease; }
    .hiw-done-badge.hiw-visible { opacity: 1; }
    .hiw-done-badge svg { width: 16px; height: 16px; flex-shrink: 0; stroke: #00B896; stroke-width: 2; fill: none; }
    .hiw-done-badge span { font-size: 12px; font-weight: 600; color: #085041; }

    /* ─── FOOTER ─── */
    footer {
        background: var(--navy);
        border-top: 1px solid rgba(255, 255, 255, .07);
        padding: 3rem 0 2rem;
    }

    .footer-inner {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-brand .nav-logo {
        margin-bottom: 1rem;
        color: #fff;
    }

    .footer-desc {
        font-size: .875rem;
        color: rgba(255, 255, 255, .45);
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: .75rem;
        color: rgba(255, 255, 255, .28);
        line-height: 1.6;
    }

    .footer-col h4 {
        font-size: 16px;
        font-weight: 600;
        color: rgba(255, 255, 255, .8);
        margin-bottom: .875rem;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        gap: .5rem;
    }

    .footer-col a {
        font-size: .8125rem;
        color: rgba(255, 255, 255, .45);
        transition: color .15s;
    }

    .footer-col a:hover {
        color: rgba(255, 255, 255, .85);
    }

    .footer-col a:focus-visible {
        outline: 2px solid var(--orange);
        border-radius: 2px;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, .07);
        padding-top: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        text-align: center;
    }

    .footer-copy {
        font-size: .8125rem;
        color: rgba(255, 255, 255, .35);
    }

    .footer-links-bottom {
        display: flex;
        gap: 1.5rem;
    }

    .footer-links-bottom a {
        font-size: .8125rem;
        color: rgba(255, 255, 255, .35);
        transition: color .15s;
    }

    .footer-links-bottom a:hover {
        color: rgba(255, 255, 255, .7);
    }

    /* ─── GIF PLACEHOLDER ─── */
    .gif-embed {
        border-radius: var(--r-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
    }

    .gif-placeholder {
        background: var(--surface-2);
        border: 1px solid var(--border);
        border-radius: var(--r-lg);
        overflow: hidden;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 240px;
    }

    .gif-placeholder-inner {
        text-align: center;
        padding: 2rem;
    }

    .gif-placeholder .play-icon {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: var(--orange);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        box-shadow: 0 8px 24px rgba(243, 106, 32, .4);
    }

    .gif-placeholder .play-icon svg {
        width: 28px;
        height: 28px;
        fill: white;
        margin-left: 4px;
    }

    .gif-placeholder h4 {
        font-family: var(--font-display);
        font-size: 1rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: .25rem;
    }

    .gif-placeholder p {
        font-size: .875rem;
        color: var(--text-muted);
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
        .features-grid,
        .industries-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .footer-inner {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 768px) {
        .pv-text { text-align: center; }
        .hero-content { text-align: center; }
        #hero { padding: 106px 0 30px; }
        .hero-actions { justify-content: center; }
        .process-visual { padding: 1.5rem; }
        #after-payroll,
        #run-payroll,
        #before-payroll,
        #features,
        #industries,
        #pricing,
        #testimonials,
        #faq { padding: 3rem 0; }

        .hero-inner { grid-template-columns: 1fr; }

        .hero-visual {
            display: none;
        }

        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .process-grid {
            grid-template-columns: 1fr;
        }

        .compliance-grid {
            grid-template-columns: 1fr;
        }

        .features-grid,
        .industries-grid {
            grid-template-columns: 1fr;
        }

        .pricing-grid {
            grid-template-columns: 1fr;
            max-width: 420px;
        }

        .testimonials-grid {
            grid-template-columns: 1fr;
        }

        .footer-inner {
            grid-template-columns: 1fr 1fr;
        }

        .nav-inner {
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .nav-links {
            display: none;
            order: 3;
            width: 100%;
            align-items: stretch;
            flex-direction: column;
            gap: 0;
            margin-top: .875rem;
            padding: .75rem 0 0;
            border-top: 1px solid var(--border);
        }

        .nav-links.open {
            display: flex;
        }

        .nav-links a {
            display: block;
            width: 100%;
            padding: .75rem 0;
            text-align: left;
            border-radius: 0;
            border-bottom: 1px solid var(--border);
        }

        .nav-links li:last-child a {
            border-bottom: 0;
        }

        .nav-cta {
            display: none;
            order: 4;
            width: 100%;
            justify-content: flex-start;
            margin: .875rem 0 0;
        }

        .nav-cta.open {
            display: inline-flex;
            width: auto;
        }

        .nav-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pv-stat-row {
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            text-align: center;
        }

        .tax-timeline { flex-direction: column; gap: 1.25rem; }

        .tax-timeline::before {
            display: none;
        }

        .process-visual {
            flex-direction: column;
        }

        .hiw-card { width: 100%; }
    }

    @media (max-width: 480px) {
        .stats-grid {
            grid-template-columns: 1fr 1fr;
        }

        .footer-inner {
            grid-template-columns: 1fr;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }

        .hero-trust {
            flex-direction: column;
            align-items: flex-start;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .hero-floating-badge {
            animation: none;
        }

        * {
            transition-duration: .01ms !important;
            scroll-behavior: auto !important;
        }
    }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.industry-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid #ddd;
  border-radius: 12px;
}

.industry-card p {
  flex-grow: 1;
}

.industry-card a {
  margin-top: auto;
}
  .content-actions {
    display: flex;
    justify-content: center;
    margin-top: 28px;
  }

  .partner-grid,
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
  }

  .partner-card,
  .testimonial-card,
  .integrations-panel {
    background: var(--white, #ffffff);
    border: 1px solid var(--border, #e6e9f2);
    border-radius: 16px;
    box-shadow: var(--shadow-sm, 0 12px 30px rgba(20, 33, 61, 0.08));
  }

  .partner-card {
    display: flex;
    gap: 16px;
    padding: 24px;
  }

  .partner-icon,
  .integration-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--purple-light, #f1eafd);
    color: var(--purple, #5e17eb);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
  }

  .partner-card h3,
  .testimonial-card h3 {
    color: var(--dark-blue, #14213d);
    font-size: 18px;
    margin-bottom: 8px;
  }

  .partner-card p,
  .testimonial-text,
  .testimonial-role {
    color: var(--mid-gray, #5f6878);
    line-height: 1.65;
  }

  .integrations-panel {
    margin-top: 26px;
    padding: 24px;
    text-align: center;
  }

  .integration-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
  }

  .integration-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 72px;
    padding: 14px;
    border: 1px solid var(--border, #e6e9f2);
    border-radius: 14px;
    color: var(--dark-blue, #14213d);
    font-weight: 700;
    background: var(--light-bg, #f7f8fc);
  }

  .testimonial-card {
    padding: 26px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonial-text {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .testimonial-author {
    color: var(--dark-blue, #14213d);
    font-weight: 800;
    margin-bottom: 4px;
  }

  @media (max-width: 900px) {
    .partner-grid,
    .testimonials-grid,
    .integration-list {
      grid-template-columns: 1fr;
    }
  }

#how-its-work { padding: 5rem 0; }
.footer-inner a { color: #fff; text-decoration: underline; }
    .footer-inner a:hover { text-decoration: underline; color: #F36A20; }
.footer-inner ul a{text-decoration:none;}
.footer-copy a { color: #fff; text-decoration: underline; }
    .footer-copy a:hover { text-decoration: underline; color: #F36A20; }