    :root {
        /* Premium SaaS palette */
        --primary: #2563EB;
        --primary-hover: #1D4ED8;
        --primary-2: #475569;
        --secondary: #0F172A;
        --accent: #2563EB;
        --accent-soft: #EFF6FF;
        --success: #10B981;
        --orange: #2563EB;
        --orange-dark: #1D4ED8;
        --text: #0F172A;
        --muted: #64748B;
        --border: #E2E8F0;
        --bg: #F8FAFC;
        --bg-alt: #F1F5F9;
        --card: #FFFFFF;
        --soft: #EFF6FF;
        --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
        --radius-xl: 20px;
        --radius-lg: 18px;
        --radius-md: 14px;
        --max: 1180px;
    }

    * {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        margin: 0;
        font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased;
        color: var(--text);
        background: var(--bg);
        line-height: 1.6;
        font-size: 16px;
        font-weight: 400;
    }

    .text-link {
        color: #2563EB !important;
        text-decoration: underline;
    }

    .text-link:hover {
        color: #052c65 !important;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    .container {
        width: min(var(--max), calc(100% - 40px));
        margin: 0 auto;
    }

    .topbar {
        background: #f3f8fe;
        color: #374151;
        font-size: 14px;
        padding: 9px 0;
        border-bottom: 1px solid #e3edf7;
    }

    .topbar .container {
        display: flex;
        justify-content: center;
        gap: 10px;
        align-items: center;
        text-align: center;
    }

    .topbar strong {
        color: #5a98cf;
        font-weight: 800;
    }

    .utility-bar {
        background: rgba(255, 255, 255, 0.92);
        border-bottom: 1px solid rgba(216, 231, 245, 0.9);
    }

    .utility-bar .container {
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 24px;
    }

    .utility-link {
        color: var(--primary);
        font-size: 14px;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .utility-link:hover {
        color: var(--primary-hover);
    }

    .utility-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    header {
        position: sticky;
        top: 0;
        z-index: 20;
        background: rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(216, 231, 245, 0.9);
    }

    .nav {
        height: 76px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 800;
        color: var(--primary);
        letter-spacing: -0.03em;
        font-size: 21px;
        white-space: nowrap;
    }

    .logo-mark {
        width: 40px;
        height: 40px;
        border-radius: 14px;
        background: #eef6fd;
        display: grid;
        place-items: center;
        color: #111827;
        box-shadow: none;
    }

    .logo-mark svg {
        width: 22px;
        height: 22px;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 24px;
        margin-left: auto;
        font-size: 15px;
        color: #4b5563;
        font-weight: 600;
    }

    .nav-links a {
        position: relative;
        padding: 28px 0 24px;
        transition: color 0.2s ease;
    }

    .nav-links a::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 12px;
        height: 4px;
        border-radius: 999px;
        background: var(--primary);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.2s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--primary);
    }

    .nav-links a.active::after {
        transform: scaleX(1);
    }

    section[id] {
        scroll-margin-top: 92px;
    }

    @media (max-width: 1120px) {
        .nav-links {
            gap: 18px;
        }
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        min-height: 48px;
        padding: 13px 24px;
        border-radius: 12px;
        font-weight: 600;
        border: 1px solid transparent;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
        font-size: 15px;
        line-height: 1;
    }

    .btn:hover {
        transform: translateY(-2px);
    }

    .btn-primary {
        background: var(--primary);
        color: #ffffff;
    }

    .btn-primary:hover {
        background: var(--primary-hover);
    }

    .utility-actions .btn {
        padding: 10px 24px !important;
        min-height: 40px !important;
    }

    .primary-outline {
        border: 2px solid #2563eb;
        color: #2563eb;
    }

    .primary-outline:hover {
        background-color: #2563eb;
        color: white;
    }

    .nav>.btn-primary {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        align-self: center;
        min-height: 44px;
        height: 44px;
        padding: 0 24px;
        line-height: 1;
    }

    .btn-secondary {
        background: #ffffff;
        color: var(--primary);
        border-color: var(--primary);
        box-shadow: none;
    }

    .btn-secondary:hover {
        background: var(--soft);
        border-color: var(--primary-hover);
        color: var(--primary-hover);
    }

    .btn-ghost {
        background: transparent;
        color: var(--primary);
        border-color: rgba(37, 99, 235, 0.25);
    }

    .hero {
        position: relative;
        overflow: hidden;
        padding: 64px 0 44px;
        background: #f9fbfe;
    }

    .hero::after {
        content: "";
        position: absolute;
        right: -140px;
        top: 100px;
        width: 380px;
        height: 380px;
        background: rgba(37, 99, 235, 0.12);
        border-radius: 50%;
        filter: blur(8px);
        pointer-events: none;
    }

    .hero-grid {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1.15fr 0.95fr;
        gap: 54px;
        align-items: center;
    }

    .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        border: 1px solid rgba(37, 99, 235, 0.32);
        background: rgba(244, 249, 255, 0.96);
        border-radius: 999px;
        color: var(--primary);
        font-size: 14px;
        font-weight: 800;
        margin-bottom: 18px;
    }

    .eyebrow-dot {
        width: 8px;
        height: 8px;
        background: var(--accent);
        border-radius: 50%;
        box-shadow: none;
    }

    h1,
    h2,
    h3 {
        margin: 0;
        letter-spacing: -0.03em;
        line-height: 1.1;
        color: var(--text);
        font-weight: 700;
    }

    h1 {
        font-size: clamp(36px, 5.2vw, 50px);
        font-weight: 800;
        max-width: 760px;
    }

    h2 {
        font-size: clamp(28px, 3.6vw, 42px);
        font-weight: 700;
    }

    h3 {
        font-size: clamp(20px, 2.2vw, 30px);
        font-weight: 600;
    }

    h4 {
        font-size: 22px;
        font-weight: 600;
        margin: 0;
        letter-spacing: -0.02em;
        color: var(--text);
    }

    .hero-copy {
        margin: 22px 0 0;
        max-width: 660px;
        font-size: 19px;
        color: #4b5563;
    }

    .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin: 34px 0 0;
    }

    .hero-points {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 30px;
    }

    .pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 12px;
        border-radius: 999px;
        background: #ffffff;
        border: 1px solid var(--border);
        color: #4b5563;
        font-size: 14px;
        font-weight: 700;
        box-shadow: none;
    }

    .check {
        display: inline-grid;
        place-items: center;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: var(--accent-soft);
        color: var(--primary);
        font-weight: 900;
        font-size: 13px;
        flex: 0 0 auto;
    }

    .hero-card {
        position: relative;
        background: rgba(255, 255, 255, 0.84);
        border: 1px solid rgba(227, 237, 247, 0.95);
        border-radius: 26px;
        box-shadow: none;
        padding: 22px;
        backdrop-filter: blur(16px);
    }

    .browser-dots {
        display: flex;
        gap: 8px;
        padding: 4px 0 18px;
    }

    .browser-dots span {
        width: 11px;
        height: 11px;
        border-radius: 50%;
        background: #d9e4e0;
    }

    .browser-dots span:nth-child(1) {
        background: #ff7a59;
    }

    .browser-dots span:nth-child(2) {
        background: #ffc857;
    }

    .browser-dots span:nth-child(3) {
        background: #c8e2f7;
    }

    .eligibility-panel {
        background: #fbfdff;
        border: 1px solid var(--border);
        border-radius: 24px;
        padding: 26px;
    }

    .panel-title {
        display: flex;
        justify-content: space-between;
        gap: 18px;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .tag {
        display: inline-flex;
        padding: 7px 10px;
        border-radius: 999px;
        background: var(--accent-soft);
        color: var(--primary);
        font-size: 12px;
        font-weight: 900;
        white-space: nowrap;
    }

    .eligibility-list {
        display: grid;
        gap: 12px;
        margin: 18px 0 24px;
        padding: 0;
        list-style: none;
    }

    .eligibility-list li {
        display: flex;
        align-items: flex-start;
        gap: 11px;
        color: #4b5563;
        font-weight: 650;
    }

    .mini-form {
        background: #f6faff;
        border: 1px solid #e3edf7;
        border-radius: 18px;
        padding: 16px;
        margin-top: 16px;
    }

    .mini-form label {
        display: block;
        font-size: 13px;
        font-weight: 800;
        color: var(--text);
        margin-bottom: 8px;
    }

    .mini-form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 12px;
    }

    input,
    select {
        width: 100%;
        height: 46px;
        border: 1px solid #d9e8f6;
        border-radius: 12px;
        padding: 0 12px;
        font: inherit;
        color: var(--text);
        background: #ffffff;
        outline: none;
    }

    input:focus,
    select:focus {
        border-color: var(--accent);
        box-shadow: none;
    }

    .result-box {
        display: none;
        margin-top: 12px;
        padding: 13px 14px;
        border-radius: 14px;
        font-size: 14px;
        font-weight: 750;
    }

    .result-box.good {
        display: block;
        background: #f3f8fe;
        color: #2b4a63;
        border: 1px solid #d7e8f8;
    }

    .result-box.warn {
        display: block;
        background: #EFF6FF;
        color: #1D4ED8;
        border: 1px solid #BFDBFE;
    }

    .result-box.error {
        display: block;
        background: #FEF2F2;
        color: #B91C1C;
        border: 1px solid #FECACA;
    }

    .trust-strip {
        margin-top: 54px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .trust-card {
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 20px;
        box-shadow: none;
    }

    .trust-card strong {
        display: block;
        color: var(--text);
        font-size: 17px;
        margin-bottom: 6px;
    }

    .trust-card span {
        color: var(--muted);
        font-size: 14px;
    }

    section {
        padding: 88px 0;
    }

    .section-head {
        max-width: 790px;
        margin-bottom: 44px;
    }

    .section-head.center {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .section-head p {
        margin: 16px 0 0;
        font-size: 18px;
        color: var(--muted);
    }

    .split {
        display: grid;
        grid-template-columns: 0.92fr 1.08fr;
        gap: 34px;
        align-items: start;
    }

    .info-card {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: var(--radius-xl);
        padding: 30px;
        box-shadow: none;
    }

    .info-card p {
        color: var(--muted);
        margin: 14px 0 0;
    }

    .feature-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .feature-card {
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 22px;
        padding: 24px;
        min-height: 210px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: none;
    }

    .icon {
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        border-radius: 14px;
        background: var(--soft);
        color: var(--primary);
        margin-bottom: 18px;
        font-weight: 900;
    }

    .feature-card p {
        color: var(--muted);
        margin: 12px 0 0;
        font-size: 15px;
    }

    .comparison {
        overflow: hidden;
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: var(--radius-xl);
        box-shadow: none;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        font-size: 15px;
    }

    th,
    td {
        text-align: left;
        padding: 18px 20px;
        border-bottom: 1px solid var(--border);
        vertical-align: top;
    }

    th {
        background: #eef7ff;
        color: var(--text);
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    tr:last-child td {
        border-bottom: 0;
    }

    td strong {
        color: var(--text);
    }

    .muted-note {
        color: var(--muted);
        font-size: 14px;
        margin-top: 14px;
    }

    .coverage {
        background: #ffffff;
    }

    .accordion {
        display: grid;
        gap: 14px;
    }

    .faq.accordion {
        --bs-accordion-border-width: 0;
        --bs-accordion-btn-icon: none;
        --bs-accordion-btn-active-icon: none;
        display: grid;
        gap: 14px;
    }

    .accordion-item {
        background: #dbeafe;
        border: 1px solid #dbeafe;
        border-radius: 18px;
        overflow: hidden;
    }

    .accordion-button {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 20px 22px;
        background: #dbeafe;
        border: 0;
        cursor: pointer;
        text-align: left;
        font: inherit;
        color: var(--text);
        font-weight: 900;
        font-size: 18px;
        box-shadow: none;
    }

    .accordion-button:not(.collapsed) {
        background: #dbeafe;
        color: var(--text);
        box-shadow: none;
    }

    .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
    }

    .accordion-button::after {
        display: none;
    }

    .accordion-button .faq-plus {
        width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--soft);
        color: var(--primary);
        flex: 0 0 auto;
        transition: transform 0.2s ease;
    }

    .accordion-button:not(.collapsed) .faq-plus {
        transform: none;
        background: var(--accent-soft);
    }

    .accordion-body {
        padding: 22px 22px 22px;
        background: #ffffff;
        color: var(--muted);
    }

    .checklist-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .checklist-card {
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 22px;
        padding: 24px;
    }

    .checklist-card h3 {
        margin-bottom: 14px;
    }

    .checklist-card ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
    }

    .checklist-card li {
        display: flex;
        gap: 10px;
        color: #4b5563;
    }

    .steps {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
        counter-reset: step;
    }

    .step-card {
        position: relative;
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 22px;
        padding: 24px;
        min-height: 255px;
    }

    .step-number {
        width: 42px;
        height: 42px;
        border-radius: 15px;
        background: var(--primary);
        color: white;
        display: grid;
        place-items: center;
        font-weight: 900;
        margin-bottom: 18px;
    }

    .step-card p {
        color: var(--muted);
        margin: 12px 0 0;
        font-size: 15px;
    }

    .deadline-card {
        display: grid;
        grid-template-columns: 1fr 0.92fr;
        gap: 26px;
        align-items: center;
        background: #ffffff;
        color: var(--text);
        border: 1px solid var(--border);
        border-radius: var(--radius-xl);
        padding: 34px;
        box-shadow: none;
    }

    .deadline-card h2 {
        color: var(--text);
    }

    .deadline-card p {
        color: var(--muted);
        font-size: 18px;
    }

    .calculator {
        background: #ffffff;
        border-radius: 24px;
        padding: 24px;
        color: var(--text);
    }

    .calculator h3 {
        margin-bottom: 14px;
    }

    .calc-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .calc-result {
        margin-top: 14px;
        padding: 15px;
        border-radius: 14px;
        background: #eef7ff;
        border: 1px solid #e3edf7;
        color: var(--text);
        font-weight: 850;
    }

    .mistakes {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .mistake-card {
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 22px;
        padding: 24px;
    }

    .mistake-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .mistake-card p {
        color: var(--muted);
        margin: 0;
    }

    .cta-band {
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 34px;
        color: var(--text);
        padding: 54px;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 30px;
        align-items: center;
        overflow: hidden;
        position: relative;
    }

    .cta-band h2 {
        color: var(--text);
    }

    .cta-band p {
        color: var(--muted);
        margin: 16px 0 0;
        font-size: 18px;
        max-width: 780px;
    }

    .faq {
        display: grid;
        gap: 14px;
        max-width: 960px;
        margin: 0 auto;
    }

    footer {
        background: #f6faff;
        color: var(--text);
        padding: 58px 0 30px;
        border-top: 1px solid var(--border);
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1.3fr repeat(3, 1fr);
        gap: 28px;
    }

    footer h3 {
        color: var(--text);
        font-size: 18px;
        margin-bottom: 14px;
    }

    footer p,
    footer a {
        color: var(--muted);
        font-size: 15px;
    }



    footer a:hover {
        color: var(--orange);
    }

    .footer-bottom {
        border-top: 1px solid var(--border);
        margin-top: 38px;
        padding-top: 22px;
        display: flex;
        justify-content: space-between;
        gap: 18px;
        flex-wrap: wrap;
        color: var(--muted);
        font-size: 14px;
    }

    .mobile-menu-button {
        display: none;
        border: 1px solid var(--border);
        background: #ffffff;
        border-radius: 12px;
        padding: 10px;
        color: var(--text);
    }


    .form-image-wrap {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 360px;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        overflow: visible;
    }

    .form-image-wrap::before {
        content: "";
        position: absolute;
        width: 78%;
        height: 54%;
        border-radius: 50%;
        background: rgba(37, 99, 235, 0.18);
        filter: blur(4px);
        z-index: 0;
    }

    .ez-form-stack {
        position: relative;
        z-index: 1;
        width: min(100%, 660px);
        height: auto;
        display: block;
        object-fit: contain;
        border: 0;
        background: transparent;
        box-shadow: none;
        filter: none;
        animation: ezFloat 4.6s ease-in-out infinite;
        transform-origin: center;
    }

    @keyframes ezFloat {

        0%,
        100% {
            transform: translateY(0) rotate(-0.3deg);
        }

        50% {
            transform: translateY(-14px) rotate(0.4deg);
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .ez-form-stack {
            animation: none;
        }
    }


    .hero-visual {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 360px;
    }

    .stats-strip .trust-card strong {
        font-size: 26px;
        letter-spacing: -0.04em;
    }

    .eligibility-section {
        background: #ffffff;
    }

    .eligibility-content {
        align-self: center;
    }

    .eligibility-content ul {
        margin: 18px 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 12px;
    }

    .eligibility-content li {
        display: flex;
        gap: 10px;
        color: var(--muted);
        font-weight: 650;
    }

    .section-kicker {
        display: inline-flex;
        align-items: center;
        padding: 7px 11px;
        border-radius: 999px;
        background: var(--accent-soft);
        color: var(--primary);
        font-size: 12px;
        font-weight: 900;
        margin-bottom: 14px;
    }

    section#benefits {
        background-color: white;
    }

    .parts-list {
        display: grid;
        gap: 14px;
    }

    .part-card {
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 22px;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 20px;
        align-items: center;
    }

    .part-card h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .part-card p {
        margin: 0;
        color: var(--muted);
        font-size: 15px;
    }

    .part-icon {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        background: var(--soft);
        border: 1px solid var(--border);
        display: grid;
        place-items: center;
        color: var(--primary);
        font-weight: 900;
        flex: 0 0 auto;
    }

    .steps.four-steps {
        grid-template-columns: repeat(4, 1fr);
    }

    .steps.four-steps .step-card {
        min-height: 230px;
    }

    .center-cta {
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }

    .feature-card.compact {
        min-height: 185px;
    }

    @media (max-width: 980px) {
        .steps.four-steps {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .mobile-nav-dropdown {
        display: none;
    }

    @media (max-width: 980px) {
        .mobile-nav-dropdown {
            position: absolute;
            top: 100%;
            left: 20px;
            right: 20px;
            display: none;
            flex-direction: column;
            gap: 4px;
            padding: 10px;
            background: #ffffff;
            border: 1px solid var(--border);
            border-radius: 14px;
            box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
        }

        .mobile-nav-dropdown.open {
            display: flex;
        }

        .mobile-nav-dropdown a {
            display: flex;
            align-items: center;
            min-height: 44px;
            padding: 10px 12px;
            border-radius: 10px;
            color: #334155;
            font-size: 15px;
            font-weight: 700;
        }

        .mobile-nav-dropdown a:hover {
            background: var(--soft);
            color: var(--primary);
        }

    }

    @media (max-width: 680px) {
        .part-card {
            grid-template-columns: 1fr;
        }

        .steps.four-steps {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 980px) {
        .utility-bar .container {
            min-height: 48px;
            gap: 14px;
        }

        .utility-actions {
            gap: 12px;
        }

        .utility-btn {
            min-width: 92px;
            min-height: 36px;
            padding: 0 16px;
        }

        .nav-links {
            display: none;
        }

        .mobile-menu-button {
            display: inline-flex;
        }

        header .nav>.btn,
        header .nav>.btn-primary {
            display: none !important;
        }

        .hero-grid,
        .split,
        .deadline-card,
        .cta-band {
            grid-template-columns: 1fr;
        }

        .trust-strip,
        .feature-grid,
        .mistakes {
            grid-template-columns: repeat(2, 1fr);
        }

        .steps {
            grid-template-columns: repeat(2, 1fr);
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 680px) {
        .container {
            width: min(100% - 28px, var(--max));
        }

        .nav {
            height: 68px;
        }

        .logo {
            font-size: 18px;
        }

        .hero-actions,
        .hero-points {
            flex-direction: column;
            align-items: stretch;
        }

        .btn {
            width: 100%;
        }

        .mini-form-grid,
        .calc-grid,
        .trust-strip,
        .feature-grid,
        .checklist-grid,
        .steps,
        .mistakes,
        .footer-grid {
            grid-template-columns: 1fr;
        }

        section {
            padding: 58px 0;
        }

        .info-card,
        .hero-card,
        .deadline-card,
        .cta-band {
            padding: 24px;
            border-radius: 22px;
        }

        th,
        td {
            padding: 14px;
        }

        table {
            font-size: 14px;
        }
    }

    /* Refined banner illustration: no background blob, separate moving elements */
    .banner-illustration-wrap {
        position: relative;
        min-height: 460px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
        background: transparent;
    }

    .banner-illustration-wrap::before {
        display: none !important;
    }

    .banner-scene {
        position: relative;
        width: min(100%, 620px);
        height: 430px;
    }

    .scene-page {
        position: absolute;
        left: 64px;
        top: 34px;
        width: 420px;
        height: 320px;
        background: #ffffff;
        border: 1px solid #e3edf7;
        border-radius: 26px;
        box-shadow: none;
    }

    .scene-page.back {
        left: 96px;
        top: 44px;
        opacity: 0.96;
        transform: rotate(1.2deg);
        animation: pageBackFloat 5.2s ease-in-out infinite;
    }

    .scene-page.front {
        z-index: 2;
        transform: rotate(-1deg);
        animation: pageFrontFloat 4.6s ease-in-out infinite;
    }

    .scene-page-inner {
        padding: 28px 30px 26px;
    }

    .scene-title {
        font-size: 28px;
        font-weight: 850;
        letter-spacing: -0.04em;
        color: var(--text);
        margin-bottom: 8px;
    }

    .scene-title .accent {
        color: #2563eb;
    }

    .scene-subtitle {
        font-size: 14px;
        line-height: 1.5;
        color: #1f2937;
        max-width: 260px;
        font-weight: 700;
        margin-bottom: 22px;
    }

    .scene-rule {
        height: 2px;
        background: #e8eff7;
        border-radius: 999px;
        margin-bottom: 18px;
    }

    .scene-section {
        margin-bottom: 20px;
    }

    .scene-label {
        display: inline-flex;
        align-items: center;
        padding: 6px 10px;
        border-radius: 10px;
        background: #2563eb;
        color: #ffffff;
        font-size: 12px;
        font-weight: 850;
        margin-bottom: 10px;
    }

    .scene-label-text {
        margin-left: 12px;
        font-size: 15px;
        font-weight: 800;
        color: #111827;
        vertical-align: middle;
    }

    .scene-lines {
        display: grid;
        grid-template-columns: 1fr 92px;
        gap: 10px 16px;
        margin-top: 6px;
    }

    .scene-lines.full {
        grid-template-columns: 1fr;
    }

    .scene-line {
        height: 8px;
        border-radius: 999px;
        background: #dbe8f6;
    }

    .scene-line.w80 {
        width: 80%;
    }

    .scene-line.w70 {
        width: 70%;
    }

    .scene-line.w60 {
        width: 60%;
    }

    .scene-line.w55 {
        width: 55%;
    }

    .scene-line.w50 {
        width: 50%;
    }

    .scene-line.w45 {
        width: 45%;
    }

    .scene-line.w40 {
        width: 40%;
    }

    .scene-line.w35 {
        width: 35%;
    }

    .scene-table {
        margin-top: 10px;
        border: 1px solid #dde8f4;
        border-radius: 10px;
        overflow: hidden;
    }

    .scene-table-row {
        display: grid;
        grid-template-columns: 1.6fr .55fr .55fr;
        border-bottom: 1px solid #e5edf7;
    }

    .scene-table-row:last-child {
        border-bottom: 0;
    }

    .scene-table-cell {
        height: 22px;
        border-right: 1px solid #e5edf7;
        position: relative;
    }

    .scene-table-cell:last-child {
        border-right: 0;
    }

    .scene-table-cell::after {
        content: "";
        position: absolute;
        left: 8px;
        right: 12px;
        top: 7px;
        height: 7px;
        border-radius: 999px;
        background: #dbe8f6;
    }

    .scene-check-row {
        display: grid;
        grid-template-columns: 24px 1fr;
        gap: 10px;
        align-items: center;
        margin-top: 10px;
    }

    .scene-check {
        width: 24px;
        height: 24px;
        border-radius: 7px;
        background: #2563eb;
        position: relative;
        box-shadow: none;
    }

    .scene-check::after {
        content: "✓";
        position: absolute;
        inset: 0;
        display: grid;
        place-items: center;
        color: #ffffff;
        font-size: 14px;
        font-weight: 900;
    }

    .scene-badge {
        position: absolute;
        right: 46px;
        top: 78px;
        z-index: 4;
        width: 140px;
        height: 140px;
        border-radius: 50%;
        background: #ffffff;
        border: 1px solid #dbe7f3;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        animation: badgeFloat 5.4s ease-in-out infinite;
    }

    .scene-badge svg {
        width: 42px;
        height: 42px;
        margin-bottom: 8px;
        color: #10B981;
    }

    .scene-badge strong {
        display: block;
        font-size: 15px;
        line-height: 1.15;
        color: #10B981;
    }

    .scene-secure {
        position: absolute;
        right: 30px;
        bottom: 54px;
        z-index: 5;
        display: grid;
        grid-template-columns: 52px 1fr;
        gap: 14px;
        align-items: center;
        width: 240px;
        padding: 18px;
        border-radius: 20px;
        background: #ffffff;
        border: 1px solid #dbe7f3;
        box-shadow: none;
        animation: secureFloat 5.8s ease-in-out infinite;
    }

    .scene-lock {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        background: #eef5ff;
        display: grid;
        place-items: center;
        color: #2563eb;
    }

    .scene-lock svg {
        width: 28px;
        height: 28px;
    }

    .scene-secure strong {
        display: block;
        font-size: 15px;
        color: var(--text);
        margin-bottom: 4px;
    }

    .scene-secure span {
        display: block;
        color: var(--muted);
        font-size: 13px;
        line-height: 1.45;
    }

    .scene-plant {
        position: absolute;
        left: 0;
        bottom: 12px;
        z-index: 1;
        width: 120px;
        height: 160px;
        animation: plantFloat 6.1s ease-in-out infinite;
        transform-origin: bottom center;
    }

    .scene-pot {
        position: absolute;
        bottom: 0;
        left: 20px;
        width: 72px;
        height: 54px;
        border-radius: 0 0 18px 18px;
        background: #eef4fb;
        box-shadow: none;
    }

    .scene-pot::before {
        content: "";
        position: absolute;
        top: -10px;
        left: -2px;
        width: 76px;
        height: 16px;
        border-radius: 999px;
        background: #f8fbff;
        border: 1px solid #e1ebf5;
    }

    .fs-16 {
        font-size: 18px !important;
    }

    .stem {
        position: absolute;
        bottom: 48px;
        left: 56px;
        width: 2px;
        height: 64px;
        background: #4b9f8f;
    }

    .stem.left {
        transform: rotate(-18deg);
        left: 42px;
        height: 58px;
    }

    .stem.right {
        transform: rotate(18deg);
        left: 70px;
        height: 62px;
    }

    .leaf {
        position: absolute;
        width: 28px;
        height: 46px;
        border-radius: 60% 60% 60% 60% / 75% 75% 25% 25%;
        background: #52c0af;
        box-shadow: none;
    }

    .leaf.l1 {
        left: 18px;
        bottom: 86px;
        transform: rotate(-38deg);
    }

    .leaf.l2 {
        left: 32px;
        bottom: 108px;
        transform: rotate(-12deg);
    }

    .leaf.l3 {
        left: 52px;
        bottom: 114px;
        transform: rotate(8deg);
    }

    .leaf.l4 {
        left: 72px;
        bottom: 92px;
        transform: rotate(34deg);
    }

    @keyframes pageFrontFloat {

        0%,
        100% {
            transform: translateY(0) rotate(-1deg);
        }

        50% {
            transform: translateY(-10px) rotate(-0.3deg);
        }
    }

    @keyframes pageBackFloat {

        0%,
        100% {
            transform: translateY(0) rotate(1.2deg);
        }

        50% {
            transform: translateY(-6px) rotate(1.8deg);
        }
    }

    @keyframes badgeFloat {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-12px);
        }
    }

    @keyframes secureFloat {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-8px);
        }
    }

    @keyframes plantFloat {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-7px);
        }
    }

    @media (prefers-reduced-motion: reduce) {

        .scene-page.back,
        .scene-page.front,
        .scene-badge,
        .scene-secure,
        .scene-plant {
            animation: none !important;
        }
    }

    @media (max-width: 980px) {
        .hero {
            padding-top: 48px !important;
        }

        .banner-illustration-wrap {
            min-height: 390px;
        }

        .banner-scene {
            width: 100%;
            height: 380px;
        }

        .scene-page {
            width: 350px;
            height: 280px;
            left: 52px;
        }

        .scene-page.back {
            left: 84px;
        }

        .scene-badge {
            width: 120px;
            height: 120px;
            right: 34px;
        }

        .scene-secure {
            width: 220px;
            right: 14px;
            bottom: 36px;
        }
    }

    @media (max-width: 680px) {
        .banner-illustration-wrap {
            min-height: 330px;
        }

        .banner-scene {
            height: 320px;
        }

        .scene-page {
            width: 260px;
            height: 218px;
            left: 24px;
            top: 26px;
            border-radius: 18px;
        }

        .scene-page.back {
            left: 44px;
            top: 34px;
        }

        .scene-page-inner {
            padding: 18px 18px 16px;
        }

        .scene-title {
            font-size: 22px;
        }

        .scene-subtitle {
            font-size: 12px;
            max-width: 180px;
            margin-bottom: 14px;
        }

        .scene-section {
            margin-bottom: 14px;
        }

        .scene-lines {
            grid-template-columns: 1fr 72px;
            gap: 8px 10px;
        }

        .scene-table-row {
            grid-template-columns: 1.4fr .5fr .5fr;
        }

        .scene-badge {
            width: 96px;
            height: 96px;
            right: 8px;
            top: 56px;
        }

        .scene-badge svg {
            width: 28px;
            height: 28px;
            margin-bottom: 4px;
        }

        .scene-badge strong {
            font-size: 12px;
        }

        .scene-secure {
            grid-template-columns: 40px 1fr;
            width: 170px;
            padding: 12px;
            right: 6px;
            bottom: 28px;
        }

        .scene-lock {
            width: 40px;
            height: 40px;
            border-radius: 12px;
        }

        .scene-lock svg {
            width: 22px;
            height: 22px;
        }

        .scene-secure strong {
            font-size: 13px;
        }

        .scene-secure span {
            font-size: 11px;
        }

        .scene-plant {
            width: 88px;
            height: 120px;
            left: -4px;
            bottom: 18px;
        }

        .scene-pot {
            width: 54px;
            height: 40px;
        }

        .scene-pot::before {
            width: 58px;
        }

        .stem {
            left: 42px;
            height: 42px;
            bottom: 36px;
        }

        .stem.left {
            left: 32px;
            height: 40px;
        }

        .stem.right {
            left: 51px;
            height: 44px;
        }

        .leaf {
            width: 20px;
            height: 34px;
        }

        .leaf.l1 {
            left: 12px;
            bottom: 66px;
        }

        .leaf.l2 {
            left: 24px;
            bottom: 82px;
        }

        .leaf.l3 {
            left: 40px;
            bottom: 86px;
        }

        .leaf.l4 {
            left: 56px;
            bottom: 70px;
        }
    }


    /* Updated banner image */
    .banner-illustration-wrap {
        position: relative;
        min-height: 430px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
        background: transparent;
    }

    .banner-illustration-wrap::before {
        display: none !important;
        content: none !important;
    }

    .banner-hero-image {
        width: min(100%, 560px);
        height: auto;
        display: block;
        border-radius: 0;
        box-shadow: none;
        animation: heroFloat 5.2s ease-in-out infinite;
        transform-origin: center;
    }

    @keyframes heroFloat {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-12px);
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .banner-hero-image {
            animation: none !important;
        }
    }

    @media (max-width: 980px) {
        .banner-illustration-wrap {
            min-height: 360px;
        }

        .banner-hero-image {
            width: min(100%, 500px);
        }
    }

    @media (max-width: 680px) {
        .banner-illustration-wrap {
            min-height: 280px;
        }

        .banner-hero-image {
            width: min(100%, 360px);
        }
    }


    /* Trust stats section styled like the reference */
    .trust-strip.stats-strip {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
        margin-top: 28px;
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 8px 0 0;
        border-radius: 0;
        align-items: stretch;
    }

    .trust-strip.stats-strip .trust-card {
        position: relative;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 0 24px;
        min-height: 150px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
    }

    .trust-strip.stats-strip .trust-card:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 18px;
        right: 0;
        width: 1px;
        height: 108px;
        background: #dbe7f3;
    }

    .trust-icon {
        width: 74px;
        height: 74px;
        border-radius: 50%;
        background: #eef5ff;
        display: grid;
        place-items: center;
        color: #2563eb;
        margin-bottom: 18px;
        box-shadow: none;
    }

    .trust-icon svg {
        width: 36px;
        height: 36px;
        display: block;
    }

    .trust-strip.stats-strip .trust-card strong {
        font-size: 28px;
        line-height: 1.05;
        margin: 0 0 8px;
        color: #0f172a;
        letter-spacing: -0.04em;
    }

    .trust-strip.stats-strip .trust-card span {
        display: block;
        max-width: 170px;
        margin: 0 auto;
        color: #1f2937;
        font-size: 16px;
        line-height: 1.45;
        font-weight: 560;
    }

    @media (max-width: 980px) {
        .trust-strip.stats-strip {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            row-gap: 26px;
        }

        .trust-strip.stats-strip .trust-card:nth-child(2)::after {
            display: none;
        }

        .trust-strip.stats-strip .trust-card:nth-child(1)::after,
        .trust-strip.stats-strip .trust-card:nth-child(3)::after {
            display: block;
        }
    }

    @media (max-width: 680px) {
        .trust-strip.stats-strip {
            grid-template-columns: 1fr;
            gap: 18px;
        }

        .trust-strip.stats-strip .trust-card {
            min-height: auto;
            padding: 0 10px 14px;
        }

        .trust-strip.stats-strip .trust-card::after {
            display: none !important;
        }

        .trust-icon {
            width: 66px;
            height: 66px;
            margin-bottom: 14px;
        }

        .trust-strip.stats-strip .trust-card strong {
            font-size: 24px;
        }

        .trust-strip.stats-strip .trust-card span {
            font-size: 15px;
        }
    }


    /* Uploaded final correction overrides */
    .banner-illustration-wrap::before {
        display: none !important;
        content: none !important;
    }

    .banner-hero-image {
        width: min(100%, 560px);
        height: auto;
        display: block;
        border-radius: 0;
        box-shadow: none;
        animation: heroFloat 5.2s ease-in-out infinite;
        transform-origin: center;
    }

    @keyframes heroFloat {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-12px);
        }
    }

    .trust-strip.stats-strip {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
        margin-top: 28px;
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 8px 0 0;
        border-radius: 0;
        align-items: stretch;
    }

    .trust-strip.stats-strip .trust-card {
        position: relative;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 0 24px;
        min-height: 150px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
    }

    .trust-strip.stats-strip .trust-card:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 18px;
        right: 0;
        width: 1px;
        height: 108px;
        background: #dbe7f3;
    }

    .trust-icon {
        width: 74px;
        height: 74px;
        border-radius: 50%;
        background: #eef5ff;
        display: grid;
        place-items: center;
        color: #2563eb;
        margin-bottom: 18px;
        box-shadow: none;
    }

    .trust-icon svg {
        width: 36px;
        height: 36px;
        display: block;
    }

    .trust-strip.stats-strip .trust-card strong {
        font-size: 28px;
        line-height: 1.05;
        margin: 0 0 8px;
        color: #0f172a;
        letter-spacing: -0.04em;
    }

    .trust-strip.stats-strip .trust-card span {
        display: block;
        max-width: 170px;
        margin: 0 auto;
        color: #1f2937;
        font-size: 16px;
        line-height: 1.45;
        font-weight: 560;
    }

    @media (prefers-reduced-motion: reduce) {
        .banner-hero-image {
            animation: none !important;
        }
    }

    @media (max-width: 980px) {
        .trust-strip.stats-strip {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            row-gap: 26px;
        }

        .trust-strip.stats-strip .trust-card:nth-child(2)::after {
            display: none;
        }
    }

    @media (max-width: 680px) {
        .trust-strip.stats-strip {
            grid-template-columns: 1fr;
            gap: 18px;
        }

        .trust-strip.stats-strip .trust-card::after {
            display: none !important;
        }
    }


    /* Corrected interactive checklist tabs */
    .details-tabs-wrap {
        background: #fbfdff;
        border: 1px solid var(--border);
        border-radius: var(--radius-xl);
        box-shadow: none;
        overflow: hidden;
    }

    .details-tabs-header {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 20px;
        align-items: center;
        padding: 24px 26px;
        background: #f6faff;
        border-bottom: 1px solid var(--border);
    }

    .details-tabs-header h3 {
        margin: 0;
        font-size: 24px;
    }

    .details-tabs-header p {
        margin: 8px 0 0;
        color: var(--muted);
        font-size: 15px;
    }

    .details-progress-pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 118px;
        padding: 10px 14px;
        border-radius: 999px;
        background: #ffffff;
        color: var(--primary);
        border: 1px solid var(--border);
        font-weight: 900;
        box-shadow: none;
        white-space: nowrap;
    }

    .details-tab-nav {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        padding: 18px 20px 0;
    }

    .details-tab-btn {
        border: 1px solid var(--border);
        background: #ffffff;
        color: var(--text);
        border-radius: 18px;
        padding: 16px 14px;
        text-align: left;
        cursor: pointer;
        font: inherit;
        transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }

    .details-tab-btn:hover,
    .details-tab-btn.active {
        transform: translateY(-2px);
        border-color: rgba(37, 99, 235, 0.75);
        box-shadow: none;
        background: #fafdff;
    }

    .details-tab-btn strong {
        display: block;
        font-size: 15px;
        line-height: 1.25;
        color: var(--text);
    }

    .details-tab-btn span {
        display: block;
        margin-top: 6px;
        color: var(--muted);
        font-size: 12px;
        font-weight: 750;
    }

    .details-tab-content {
        display: none;
        padding: 28px;
        animation: detailsFadeUp 0.25s ease;
    }

    .details-tab-content.active {
        display: block;
    }

    @keyframes detailsFadeUp {
        from {
            opacity: 0;
            transform: translateY(8px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .details-content-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 18px;
    }

    .details-content-head h3 {
        margin: 0;
        font-size: 24px;
    }

    .details-content-head p {
        margin: 8px 0 0;
        color: var(--muted);
        font-size: 15px;
    }

    .details-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .details-badge {
        display: inline-flex;
        align-items: center;
        padding: 7px 10px;
        border-radius: 999px;
        background: var(--soft);
        border: 1px solid var(--border);
        color: var(--primary-2);
        font-size: 12px;
        font-weight: 850;
        white-space: nowrap;
    }

    .details-check-grid {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .details-check-grid li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 13px 14px;
        border-radius: 16px;
        background: #ffffff;
        border: 1px solid var(--border);
        color: #4b5563;
        font-size: 14px;
        font-weight: 650;
    }

    .details-tip {
        margin-top: 18px;
        padding: 15px 17px;
        border-radius: 18px;
        background: #EFF6FF;
        border: 1px solid #BFDBFE;
        color: #1D4ED8;
        font-size: 14px;
        font-weight: 750;
    }

    @media (max-width: 980px) {
        .details-tab-nav {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 680px) {

        .details-tabs-header,
        .details-content-head {
            grid-template-columns: 1fr;
            flex-direction: column;
        }

        .details-tab-nav,
        .details-check-grid {
            grid-template-columns: 1fr;
        }

        .details-badges {
            justify-content: flex-start;
        }
    }


    /* Auto-moving horizontal carousel for how-to-file steps */
    .steps-carousel-wrap {
        position: relative;
        max-width: 980px;
        margin: 0 auto;
    }

    .steps-carousel {
        position: relative;
        overflow: hidden;
        border-radius: 28px;
    }

    .steps-track {
        display: flex;
        transition: transform 0.55s ease;
        will-change: transform;
    }

    .step-slide {
        min-width: 100%;
        box-sizing: border-box;
        padding: 10px;
    }

    .step-slide-card {
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 24px;
        padding: 34px;
        box-shadow: none;
        min-height: 250px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .step-slide-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(37, 99, 235, 0.08);
        pointer-events: none;
    }

    .step-slide-head {
        display: flex;
        align-items: center;
        gap: 18px;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

    .step-slide-number {
        width: 62px;
        height: 62px;
        border-radius: 18px;
        display: grid;
        place-items: center;
        background: var(--primary);
        color: #ffffff;
        font-size: 26px;
        font-weight: 900;
        box-shadow: none;
        flex: 0 0 auto;
    }

    .step-slide-title {
        margin: 0;
        font-size: 28px;
        line-height: 1.2;
    }

    .step-slide-copy {
        position: relative;
        z-index: 1;
        margin: 0;
        color: var(--muted);
        font-size: 17px;
        line-height: 1.7;
        max-width: 760px;
    }

    .step-slide-meta {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
        padding: 8px 12px;
        border-radius: 999px;
        background: var(--soft);
        color: var(--primary-2);
        font-size: 13px;
        font-weight: 850;
        width: fit-content;
    }

    .steps-carousel-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 22px;
    }

    .steps-dot {
        width: 11px;
        height: 11px;
        border-radius: 999px;
        border: 0;
        background: #d4e3f3;
        cursor: pointer;
        transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
        padding: 0;
    }

    .steps-dot.active {
        width: 28px;
        background: var(--orange);
    }

    .steps-carousel-status {
        margin-top: 14px;
        text-align: center;
        color: var(--muted);
        font-size: 14px;
        font-weight: 700;
    }

    @media (max-width: 680px) {
        .step-slide-card {
            padding: 24px;
            min-height: 220px;
        }

        .step-slide-head {
            align-items: flex-start;
        }

        .step-slide-number {
            width: 52px;
            height: 52px;
            font-size: 22px;
            border-radius: 15px;
        }

        .step-slide-title {
            font-size: 22px;
        }

        .step-slide-copy {
            font-size: 15px;
        }
    }


    /* Eligibility checker label correction */
    .eligibility-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        border-radius: 999px;
        background: var(--accent-soft);
        color: var(--primary);
        border: 1px solid var(--border);
        font-size: 12px;
        font-weight: 900;
        margin-bottom: 16px;
        width: fit-content;
    }

    .eligibility-tag::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: none;
    }

    .eligibility-helper-text {
        display: block;
        margin-top: 8px;
        color: var(--muted);
        font-size: 15px;
        line-height: 1.5;
    }


    /* Multi-card looping steps carousel */
    .steps-inline-carousel {
        position: relative;
        max-width: 1120px;
        margin: 0 auto;
    }

    .steps-inline-viewport {
        overflow: hidden;
        padding: 10px 0;
    }

    .steps-inline-track {
        display: flex;
        gap: 18px;
        will-change: transform;
        transition: transform 0.65s ease;
    }

    .steps-inline-card {
        flex: 0 0 calc((100% - 54px) / 4);
        min-width: calc((100% - 54px) / 4);
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 24px;
        padding: 24px 20px;
        box-shadow: none;
        min-height: 250px;
        position: relative;
        overflow: hidden;
        transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, opacity 0.28s ease;
        opacity: 0.88;
    }

    .steps-inline-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(37, 99, 235, 0.08);
        pointer-events: none;
    }

    .steps-inline-card.active {
        transform: translateY(-8px);
        border-color: rgba(37, 99, 235, 0.32);
        box-shadow: none;
        opacity: 1;
    }

    .steps-inline-top {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 16px;
        position: relative;
        z-index: 1;
    }

    .steps-inline-number {
        width: 50px;
        height: 50px;
        border-radius: 16px;
        display: grid;
        place-items: center;
        background: var(--primary);
        color: #ffffff;
        font-size: 22px;
        font-weight: 900;
        box-shadow: none;
        flex: 0 0 auto;
    }

    .steps-inline-card.active .steps-inline-number {
        background: var(--orange);
    }

    .steps-inline-title {
        margin: 0;
        font-size: 20px;
        line-height: 1.3;
        position: relative;
        z-index: 1;
    }

    .steps-inline-copy {
        position: relative;
        z-index: 1;
        margin: 0;
        color: var(--muted);
        font-size: 15px;
        line-height: 1.65;
    }

    .steps-inline-meta {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 18px;
        padding: 7px 11px;
        border-radius: 999px;
        background: var(--soft);
        color: var(--primary-2);
        font-size: 12px;
        font-weight: 850;
        width: fit-content;
    }

    .steps-inline-status {
        margin-top: 18px;
        text-align: center;
        color: var(--muted);
        font-size: 14px;
        font-weight: 750;
    }

    @media (max-width: 1024px) {
        .steps-inline-card {
            flex: 0 0 calc((100% - 36px) / 3);
            min-width: calc((100% - 36px) / 3);
        }
    }

    @media (max-width: 820px) {
        .steps-inline-card {
            flex: 0 0 calc((100% - 18px) / 2);
            min-width: calc((100% - 18px) / 2);
        }
    }

    @media (max-width: 560px) {
        .steps-inline-card {
            flex: 0 0 100%;
            min-width: 100%;
        }

        .steps-inline-title {
            font-size: 18px;
        }

        .steps-inline-copy {
            font-size: 14px;
        }
    }


    /* Static step cards with auto-highlight only */
    .steps-inline-viewport {
        overflow: visible !important;
        padding: 10px 0;
    }

    .steps-inline-track {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
        transform: none !important;
        transition: none !important;
        will-change: auto !important;
    }

    .steps-inline-card {
        flex: initial !important;
        min-width: 0 !important;
        width: auto !important;
        opacity: 1;
    }

    .steps-inline-card.active {
        transform: translateY(-8px);
        border-color: rgba(37, 99, 235, 0.38);
        box-shadow: none;
    }

    @media (max-width: 1024px) {
        .steps-inline-track {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 560px) {
        .steps-inline-track {
            grid-template-columns: 1fr;
        }
    }


    /* Step card tag placement correction */
    .steps-inline-top {
        margin-bottom: 10px !important;
    }

    .steps-inline-meta {
        margin-top: 0 !important;
        margin-bottom: 16px;
    }


    /* Click-to-complete checklist items */
    .checklist-toggle-item {
        cursor: pointer;
        user-select: none;
        transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    }

    .checklist-toggle-item:hover {
        transform: translateY(-2px);
        border-color: rgba(37, 99, 235, 0.75);
        box-shadow: none;
    }

    .checklist-toggle-item.completed {
        background: #eef9f4;
        border-color: #a7e3c4;
        color: #065f46;
        box-shadow: none;
    }

    .checklist-toggle-item.completed .check {
        background: #10b981;
        color: #ffffff;
    }

    .checklist-toggle-item.completed .check::after {
        content: "";
    }


    /* Due date checker tag */
    .due-date-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        border-radius: 999px;
        background: var(--accent-soft);
        color: var(--primary);
        border: 1px solid var(--border);
        font-size: 12px;
        font-weight: 900;
        margin-bottom: 16px;
        width: fit-content;
    }

    .due-date-tag::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: none;
    }


    /* Prominent Form 8868 extension callout */
    .extension-spotlight {
        display: grid;
        grid-template-columns: 64px 1fr;
        gap: 18px;
        align-items: flex-start;
        margin-top: 24px;
        padding: 24px;
        border-radius: 26px;
        background: #f3f8fe;
        border: 2px solid rgba(37, 99, 235, 0.34);
        box-shadow: none;
        position: relative;
        overflow: hidden;
    }

    .extension-spotlight::after {
        content: "";
        position: absolute;
        right: -54px;
        top: -54px;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background: rgba(37, 99, 235, 0.18);
        pointer-events: none;
    }

    .extension-spotlight-icon {
        width: 64px;
        height: 64px;
        border-radius: 20px;
        display: grid;
        place-items: center;
        background: #ffffff;
        border: 1px solid rgba(37, 99, 235, 0.26);
        box-shadow: none;
        font-size: 30px;
        position: relative;
        z-index: 1;
    }

    .extension-spotlight-body {
        position: relative;
        z-index: 1;
    }

    .extension-spotlight-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 7px 11px;
        border-radius: 999px;
        background: #ffffff;
        color: #1D4ED8;
        border: 1px solid rgba(37, 99, 235, 0.28);
        font-size: 12px;
        font-weight: 900;
        margin-bottom: 10px;
        width: fit-content;
    }

    .extension-spotlight-tag::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--orange);
        box-shadow: none;
    }

    .extension-spotlight h3 {
        margin: 0 0 8px;
        font-size: 30px;
        color: var(--text);
        letter-spacing: -0.035em;
    }

    .extension-spotlight p {
        margin: 0;
        color: #374151;
        font-size: 17px;
        line-height: 1.25;
        font-weight: 400;
        max-width: 680px;
    }

    .extension-spotlight-actions {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    @media (max-width: 680px) {
        .extension-spotlight {
            grid-template-columns: 1fr;
            padding: 22px;
        }

        .extension-spotlight h3 {
            font-size: 25px;
        }

        .extension-spotlight p {
            font-size: 15px;
        }
    }


    /* Light orange extension callout update */
    .extension-spotlight {
        background: #EFF6FF !important;
        border-color: #BFDBFE !important;
        box-shadow: none !important;
    }

    .extension-spotlight-icon {
        border-color: #BFDBFE !important;
        background: #EFF6FF !important;
    }

    .extension-spotlight-tag {
        color: #1D4ED8 !important;
        border-color: #BFDBFE !important;
        background: #EFF6FF !important;
    }

    .extension-spotlight-tag::before {
        background: #2563EB !important;
        box-shadow: none !important;
    }


    /* Pricing section */
    .pricing-section {
        background: #fbfdff;
    }

    .pricing-card {
        max-width: 980px;
        margin: 0 auto;
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 28px;
        box-shadow: none;
        padding: 34px;
        display: grid;
        grid-template-columns: 0.92fr 1.08fr;
        gap: 38px;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .pricing-card::before {
        content: "";
        position: absolute;
        right: -80px;
        top: -80px;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(37, 99, 235, 0.13);
        pointer-events: none;
    }

    .pricing-kicker {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        border-radius: 999px;
        background: var(--accent-soft);
        color: var(--primary);
        border: 1px solid var(--border);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 16px;
        width: fit-content;
    }

    .pricing-kicker::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: none;
    }

    .pricing-label {
        color: #2563eb;
        font-weight: 900;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 13px;
        margin-bottom: 14px;
    }

    .pricing-card p {
        color: var(--muted);
        margin: 0;
    }

    .price-row {
        display: flex;
        align-items: flex-end;
        gap: 10px;
        margin: 24px 0 8px;
    }

    .price {
        font-size: clamp(42px, 5vw, 56px);
        line-height: 0.95;
        font-weight: 900;
        color: var(--text);
        letter-spacing: -0.055em;
    }

    .price-unit {
        color: var(--text);
        font-weight: 850;
        font-size: 20px;
        margin-bottom: 4px;
    }

    .price-note {
        display: block;
        margin-bottom: 20px;
        color: #5b6f86;
        font-size: 14px;
        font-weight: 650;
    }

    .pricing-secure-note {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 14px;
        color: #2f5877;
        font-size: 14px;
        font-weight: 700;
    }

    .pricing-secure-note span {
        width: 20px;
        height: 20px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: #eef9f4;
        color: #10B981;
        font-size: 12px;
        font-weight: 900;
    }

    .pricing-features {
        position: relative;
        z-index: 1;
        display: grid;
        gap: 14px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .pricing-features li {
        display: grid;
        grid-template-columns: 24px 1fr;
        gap: 11px;
        align-items: flex-start;
        color: #374151;
        font-size: 15px;
        line-height: 1.5;
        font-weight: 650;
    }

    .pricing-features .feature-check {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: #eef9f4;
        color: #10B981;
        border: 1px solid #bce7cf;
        font-size: 13px;
        font-weight: 900;
        margin-top: 1px;
    }

    @media (max-width: 900px) {
        .pricing-card {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 680px) {
        .pricing-card {
            padding: 24px;
            border-radius: 22px;
        }

        .price-row {
            align-items: flex-start;
            flex-direction: column;
            gap: 6px;
        }

        .price-unit {
            margin-bottom: 0;
        }
    }


    /* Final content cleanup adjustments */
    .details-tip {
        background: #f8fbff !important;
        border-color: #dbeafe !important;
        color: #4b5563 !important;
        box-shadow: none !important;
    }

    .pricing-features-wrap {
        position: relative;
        z-index: 1;
    }

    .pricing-features-title {
        margin: 0 0 16px;
        font-size: 22px;
        line-height: 1.25;
        color: var(--text);
        letter-spacing: -0.025em;
    }

    .pricing-section .section-head.center p {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }



    /* Updated clean pricing design */
    .pricing-card-clean {
        max-width: 1040px !important;
        display: grid !important;
        grid-template-columns: 0.9fr 1.1fr !important;
        gap: 22px !important;
        padding: 24px !important;
        background: #EFF6FF !important;
        border: 1px solid #e8edf5 !important;
        border-radius: 30px !important;
        box-shadow: none !important;
        overflow: hidden;
    }

    .pricing-card-clean::before {
        display: none !important;
    }

    .pricing-main {
        border-radius: 24px;
        padding: 32px;
        background: #ffffff;
        border: 1px solid #BFDBFE;
    }

    .pricing-main-top {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 24px;
    }

    .pricing-pill {
        display: inline-flex;
        align-items: center;
        padding: 8px 11px;
        border-radius: 999px;
        background: #ffffff;
        border: 1px solid #BFDBFE;
        color: #1D4ED8;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.02em;
    }

    .pricing-pill.soft {
        color: #4b5563;
        border-color: #e5edf7;
        background: #fbfdff;
    }

    .pricing-price-line {
        display: flex;
        align-items: flex-start;
        gap: 4px;
        margin-bottom: 14px;
        color: #0f172a;
    }

    .pricing-currency {
        font-size: 30px;
        font-weight: 900;
        line-height: 1;
        margin-top: 8px;
    }

    .pricing-amount {
        font-size: clamp(54px, 7vw, 76px);
        font-weight: 900;
        letter-spacing: -0.07em;
        line-height: 0.9;
    }

    .pricing-per {
        align-self: flex-end;
        margin: 0 0 8px 8px;
        color: #4b5563;
        font-weight: 800;
        font-size: 15px;
        white-space: nowrap;
    }

    .pricing-clean-copy {
        color: #4b5563 !important;
        font-size: 15px !important;
        line-height: 1.7 !important;
        font-weight: 650;
        margin: 0 0 24px !important;
        max-width: 420px;
    }

    .pricing-includes {
        padding: 30px;
        background: #ffffff;
        border: 1px solid #e8edf5;
        border-radius: 24px;
    }

    .pricing-includes h3 {
        margin: 0 0 18px;
        font-size: 24px;
        letter-spacing: -0.035em;
    }

    .pricing-includes-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .pricing-includes-grid div {
        display: grid;
        grid-template-columns: 24px 1fr;
        gap: 10px;
        align-items: center;
        padding: 13px;
        border-radius: 16px;
        background: #fbfdff;
        border: 1px solid #e3edf7;
        color: #374151;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.35;
    }

    .pricing-includes-grid span {
        width: 22px;
        height: 22px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: #EFF6FF;
        color: #1D4ED8;
        border: 1px solid #BFDBFE;
        font-size: 13px;
        font-weight: 900;
    }

    /* Footer with site links */

    .footer-site-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 18px;
        margin-bottom: 18px;
    }

    .footer-site-links a {
        color: var(--text);
        font-size: 14px;
        font-weight: 750;
        padding: 6px 0;
    }

    .footer-site-links a:hover {
        color: var(--orange);
    }

    @media (max-width: 920px) {
        .pricing-card-clean {
            grid-template-columns: 1fr !important;
        }

        .pricing-includes-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 680px) {
        .pricing-card-clean {
            padding: 16px !important;
        }

        .pricing-main,
        .pricing-includes {
            padding: 22px;
        }

        .pricing-price-line {
            flex-wrap: wrap;
        }

        .pricing-per {
            width: 100%;
            margin: 2px 0 0;
        }

        .footer-site-links {
            gap: 8px 14px;
        }
    }




    /* Unified Poppins typography system */
    body,
    input,
    select,
    button,
    .btn {
        font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased;
    }

    h1,
    h2,
    h3,
    h4,
    .logo,
    .price,
    .pricing-amount,
    .nav-links a {
        font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased;
        letter-spacing: -0.03em;
    }

    .hero-copy,
    .section-head p,
    .pricing-clean-copy,
    .details-tab-btn,
    .steps-inline-copy,
    .feature-card p {
        letter-spacing: -0.005em;
    }

    .text-center {
        text-align: center !important;
    }

    /* Header logo image */
    .logo {
        display: inline-flex !important;
        align-items: center;
        min-width: 0;
    }

    .site-logo-img {
        display: block;
        width: auto;
        height: 56px;
        max-width: 100%;
        object-fit: contain;
    }

    @media (max-width: 820px) {
        .site-logo-img {
            height: 46px;
        }
    }

    @media (max-width: 560px) {
        .site-logo-img {
            height: 40px;
        }
    }


    /* Protection and commitment section */
    .protection-section {
        background: #f9fbfe;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
        align-items: stretch
    }

    .protection-card {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 28px;
        padding: 30px;
        box-shadow: none;
        position: relative;
        overflow: hidden
    }

    .protection-card:before {
        content: "";
        position: absolute;
        right: -70px;
        top: -70px;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(37, 99, 235, .13);
        pointer-events: none
    }

    .protection-card.orange:before {
        background: rgba(6, 182, 212, .16)
    }

    .protection-card h3,
    .protection-card p,
    .protection-list,
    .protection-highlight {
        position: relative;
        z-index: 1
    }

    .protection-card h3 {
        margin: 0 0 10px;
        font-size: 28px
    }

    .protection-card p {
        margin: 0;
        color: var(--muted);
        font-size: 16px;
        line-height: 1.65;
        font-weight: 600
    }

    .protection-list {
        display: grid;
        gap: 14px;
        margin-top: 24px
    }

    .protection-item {
        display: grid;
        grid-template-columns: 42px 1fr;
        gap: 13px;
        padding: 15px;
        border-radius: 18px;
        background: #fbfdff;
        border: 1px solid #e3edf7
    }

    .protection-icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        background: var(--accent-soft);
        color: #2563eb;
        font-weight: 900;
        font-size: 18px
    }

    .protection-card.orange .protection-icon {
        background: #EFF6FF;
        color: #1D4ED8
    }

    .protection-item strong {
        display: block;
        font-size: 15px;
        line-height: 1.35;
        margin-bottom: 4px
    }

    .protection-item span {
        display: block;
        color: var(--muted);
        font-size: 13px;
        line-height: 1.5;
        font-weight: 600
    }

    .protection-highlight {
        margin-top: 22px;
        padding: 18px;
        border-radius: 20px;
        background: #EFF6FF;
        border: 1px solid #BFDBFE
    }

    .protection-highlight strong {
        display: block;
        color: var(--primary);
        font-size: 18px;
        margin-bottom: 7px
    }

    .protection-highlight span {
        display: block;
        color: #4b5563;
        font-size: 14px;
        line-height: 1.6;
        font-weight: 650
    }

    @media(max-width:940px) {
        .protection-layout {
            grid-template-columns: 1fr
        }
    }

    @media(max-width:680px) {
        .protection-card {
            padding: 24px;
            border-radius: 22px
        }

        .protection-card h3 {
            font-size: 24px
        }

        .protection-item {
            grid-template-columns: 1fr
        }
    }


    /* Updated header logo sizing */
    .site-logo-img {
        display: block;
        width: auto;
        height: 60px !important;
        max-width: 100%;
        object-fit: contain;
    }

    @media (max-width: 820px) {
        .site-logo-img {
            height: 48px !important;
        }
    }

    @media (max-width: 560px) {
        .site-logo-img {
            height: 42px !important;
        }
    }


    /* Redesigned due date checker */
    #deadline .calculator {
        background: #fbfdff;
        border: 1px solid var(--border);
        box-shadow: none;
    }

    .due-date-checker-head h3 {
        margin: 0 0 8px;
        font-size: 24px;
        letter-spacing: -0.035em;
    }

    .due-date-checker-head p {
        margin: 0 0 18px;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.6;
        font-weight: 600;
    }

    .due-date-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 14px;
    }

    .due-date-form label {
        display: block;
        font-size: 13px;
        font-weight: 850;
        color: var(--text);
        margin-bottom: 8px;
    }

    .tax-year-end-note {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 13px;
        border-radius: 16px;
        background: #EFF6FF;
        border: 1px solid #BFDBFE;
        color: #1D4ED8;
        font-size: 13px;
        font-weight: 800;
        margin-bottom: 14px;
    }

    .tax-year-end-note::before {
        content: "✓";
        width: 20px;
        height: 20px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: #EFF6FF;
        border: 1px solid #BFDBFE;
        color: #1D4ED8;
        font-size: 12px;
        font-weight: 900;
        flex: 0 0 auto;
    }

    .due-date-button {
        width: 100%;
        margin-bottom: 16px;
    }

    .due-date-result-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .due-result-card {
        padding: 16px;
        border-radius: 18px;
        background: #eef7ff;
        border: 1px solid #dbeafe;
    }

    .due-result-card.muted {
        background: #EFF6FF;
        border-color: #BFDBFE;
    }

    .due-result-card span {
        display: block;
        color: var(--muted);
        font-size: 12px;
        font-weight: 850;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        margin-bottom: 6px;
    }

    .due-result-card strong {
        display: block;
        color: var(--text);
        font-size: 22px;
        line-height: 1.15;
        letter-spacing: -0.035em;
    }

    .due-result-card p {
        margin: 8px 0 0;
        color: var(--muted);
        font-size: 12px;
        line-height: 1.45;
        font-weight: 650;
    }

    .due-date-disclaimer {
        margin: 14px 0 0;
        color: var(--muted);
        font-size: 12px;
        line-height: 1.55;
        font-weight: 650;
    }

    @media (max-width: 680px) {

        .due-date-form,
        .due-date-result-grid {
            grid-template-columns: 1fr;
        }
    }


    /* Due date checker cleanup */
    .due-date-result-grid {
        grid-template-columns: 1fr !important;
    }

    .due-date-result-grid .due-result-card {
        text-align: left;
    }

    /* ============================================================
       Premium SaaS polish layer
       ============================================================ */

    small,
    .price-note,
    .steps-carousel-status,
    .steps-inline-status,
    .footer-bottom,
    .due-date-disclaimer {
        font-size: 14px;
    }

    /* Consistent card radius + smooth hover lift across all content blocks */
    .info-card,
    .feature-card,
    .trust-card,
    .step-card,
    .checklist-card,
    .mistake-card,
    .part-card,
    .accordion-item,
    .comparison,
    .details-tabs-wrap,
    .details-tab-btn,
    .step-slide-card,
    .steps-inline-card,
    .pricing-card,
    .pricing-card-clean,
    .pricing-main,
    .pricing-includes,
    .protection-card,
    .hero-card,
    .eligibility-panel,
    .deadline-card,
    .cta-band,
    .extension-spotlight,
    .due-result-card,
    .details-tab-content,
    .calculator {
        border-radius: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .info-card:hover,
    .feature-card:hover,
    .trust-card:hover,
    .step-card:hover,
    .checklist-card:hover,
    .mistake-card:hover,
    .part-card:hover,
    .step-slide-card:hover,
    .pricing-card:hover,
    .protection-card:hover {
        transform: translateY(-4px);
        box-shadow: none;
    }

    .icon,
    .part-icon,
    .protection-icon,
    .trust-icon {
        border-radius: 12px;
    }

    .trust-icon {
        border-radius: 50%;
    }

    /* Sticky header refinement */
    header {
        background: rgba(255, 255, 255, 0.82);
        backdrop-filter: blur(18px) saturate(160%);
        -webkit-backdrop-filter: blur(18px) saturate(160%);
    }

    /* Focus states */
    input:focus,
    select:focus,
    .btn:focus-visible,
    a:focus-visible,
    button:focus-visible {
        outline: none;
        border-color: var(--primary) !important;
        box-shadow: none !important;
    }

    /* Fade-in on scroll */
    .reveal-onscroll {
        opacity: 0;
        transform: translateY(18px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal-onscroll.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
        .reveal-onscroll {
            opacity: 1;
            transform: none;
            transition: none;
        }
    }


    /* Animated hero filing widget: Setup -> Details -> Financial -> Submit */
    .banner-illustration-wrap {
        position: relative;
        min-height: 430px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
        background: transparent;
        margin-left: 28px;
    }

    .filing-anim {
        width: min(100%, 480px);
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow);
        overflow: hidden;
    }

    .filing-anim-titlebar {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 14px 18px;
        background: #F8FAFC;
        border-bottom: 1px solid var(--border);
    }

    .filing-anim-dot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        display: inline-block;
    }

    .filing-anim-title {
        margin-left: 8px;
        font-size: 12.5px;
        font-weight: 600;
        color: var(--text);
    }

    .filing-anim-stepper {
        display: flex;
        align-items: flex-start;
        padding: 22px 22px 6px;
        gap: 0;
    }

    .fa-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        width: 60px;
    }

    .fa-step-circle {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: #F1F5F9;
        border: 1.5px solid #CBD5E1;
        display: grid;
        place-items: center;
        font-size: 11px;
        font-weight: 700;
        color: #94A3B8;
        transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
        position: relative;
    }

    .fa-step-check {
        display: none;
        color: #fff;
        font-size: 12px;
    }

    .fa-step-num {
        display: block;
    }

    .fa-step-label {
        font-size: 10.5px;
        font-weight: 600;
        color: #94A3B8;
        transition: color 0.35s ease;
        text-align: center;
    }

    .fa-step-line {
        flex: 1 1 auto;
        height: 2px;
        background: #E2E8F0;
        margin: 13px -2px 0;
        position: relative;
        overflow: hidden;
        border-radius: 2px;
    }

    .fa-step-line::after {
        content: "";
        position: absolute;
        inset: 0;
        width: 0%;
        background: var(--primary);
        transition: width 0.5s ease;
    }

    .fa-step-line.is-filled::after {
        width: 100%;
    }

    .fa-step.is-done .fa-step-circle {
        background: var(--primary);
        border-color: var(--primary);
    }

    .fa-step.is-done .fa-step-check {
        display: block;
    }

    .fa-step.is-done .fa-step-num {
        display: none;
    }

    .fa-step.is-done .fa-step-label {
        color: var(--text);
    }

    .fa-step.is-active .fa-step-circle {
        background: var(--soft);
        border-color: var(--primary);
        color: var(--primary);
        transform: scale(1.12);
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
    }

    .fa-step.is-active .fa-step-num {
        display: block;
        color: var(--primary);
    }

    .fa-step.is-active .fa-step-label {
        color: var(--primary);
    }

    .filing-anim-progress-track {
        height: 5px;
        border-radius: 3px;
        background: #E2E8F0;
        margin: 4px 22px 0;
        overflow: hidden;
    }

    .filing-anim-progress-fill {
        height: 100%;
        width: 0%;
        background: var(--primary);
        border-radius: 3px;
        transition: width 0.5s ease;
    }

    .filing-anim-body {
        position: relative;
        min-height: 236px;
        margin: 18px 22px 24px;
    }

    .fa-panel,
    .fa-success {
        position: absolute;
        inset: 0;
        opacity: 0;
        transform: translateX(24px);
        transition: opacity 0.4s ease, transform 0.4s ease;
        pointer-events: none;
    }

    .fa-panel.is-active,
    .fa-success.is-active {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
        position: relative;
    }

    .fa-panel.is-leaving {
        opacity: 0;
        transform: translateX(-24px);
    }

    .fa-panel-heading {
        margin-bottom: 16px;
    }

    .fa-panel-kicker {
        display: block;
        font-size: 10.5px;
        font-weight: 700;
        color: var(--primary);
        letter-spacing: 0.08em;
        margin-bottom: 4px;
    }

    .fa-panel-heading h4 {
        margin: 0;
        font-size: 17px;
        font-weight: 700;
        color: var(--text);
    }

    .fa-field {
        background: #F8FAFC;
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 10px 14px;
        margin-bottom: 10px;
    }

    .fa-field label {
        display: block;
        font-size: 10.5px;
        font-weight: 600;
        color: var(--muted);
        letter-spacing: 0.02em;
        margin-bottom: 3px;
    }

    .fa-field-value {
        font-size: 13.5px;
        font-weight: 500;
        color: var(--text);
    }

    .fa-check-row {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13.5px;
        font-weight: 500;
        color: var(--text);
        background: #ECFDF5;
        border: 1px solid #A7F3D0;
        border-radius: 10px;
        padding: 10px 14px;
        margin-bottom: 10px;
    }

    .fa-check-icon {
        display: grid;
        place-items: center;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: var(--success);
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        flex: 0 0 auto;
    }

    .fa-submit-btn {
        width: 100%;
        margin-top: 6px;
        padding: 11px 16px;
        border-radius: 10px;
        border: none;
        background: var(--primary);
        color: #fff;
        font-weight: 700;
        font-size: 14px;
        font-family: inherit;
        cursor: default;
    }

    .fa-success {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 6px;
    }

    .fa-success-circle {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: var(--success);
        color: #fff;
        font-size: 24px;
        font-weight: 700;
        display: grid;
        place-items: center;
        margin-bottom: 6px;
        animation: faSuccessPop 0.4s ease;
    }

    @keyframes faSuccessPop {
        0% {
            transform: scale(0.6);
            opacity: 0;
        }

        70% {
            transform: scale(1.08);
            opacity: 1;
        }

        100% {
            transform: scale(1);
        }
    }

    .fa-success-title {
        font-size: 16px;
        font-weight: 700;
        color: var(--text);
    }

    .fa-success-copy {
        font-size: 13px;
        color: var(--muted);
    }

    @media (max-width: 980px) {
        .filing-anim {
            width: min(100%, 440px);
        }
    }

    @media (max-width: 680px) {
        .banner-illustration-wrap {
            min-height: 340px;
        }

        .filing-anim {
            width: 100%;
        }

        .filing-anim-stepper {
            padding: 18px 14px 6px;
        }

        .filing-anim-progress-track {
            margin: 4px 14px 0;
        }

        .filing-anim-body {
            margin: 16px 14px 20px;
            min-height: 220px;
        }

        .fa-step-label {
            font-size: 9.5px;
        }
    }

    @media (prefers-reduced-motion: reduce) {

        .fa-step-circle,
        .fa-step-line::after,
        .filing-anim-progress-fill,
        .fa-panel,
        .fa-success,
        .fa-success-circle {
            transition: none !important;
            animation: none !important;
        }
    }

    @media (max-width: 1020px) {
        .hero-grid {
            grid-template-columns: 1fr !important;
        }

        .hero-animation-section {
            display: none !important;
        }
    }

    @media (min-width: 1367px) {
        .hero-animation-section {
            display: flex !important;
        }
    }

    @media (max-width: 680px) {
        .utility-bar .container {
            width: min(100% - 28px, var(--max));
            justify-content: center;
            flex-wrap: wrap;
            padding: 8px 0;
        }

        header .container.nav {
            width: min(100% - 28px, var(--max));
            height: 62px;
            gap: 12px;
            flex-wrap: nowrap;
        }

        .site-logo-img {
            max-width: 130px;
            height: auto;
            display: block;
        }

        .mobile-menu-button {
            flex: 0 0 auto;
            display: inline-flex;
            width: 40px;
            height: 40px;
            margin-left: auto;
            padding: 8px;
            align-items: center;
            justify-content: center;
        }

        .hero {
            padding-top: 32px !important;
        }

        .hero h1 {
            font-size: clamp(26px, 7.2vw, 30px);
            line-height: 1.2;
        }

        .eyebrow {
            font-size: 12.5px;
            padding: 7px 11px;
        }

        .mobile-nav-dropdown {
            position: absolute;
            top: 100%;
            left: 14px;
            right: 14px;
            display: none;
            flex-direction: column;
            gap: 4px;
            padding: 10px;
            background: #ffffff;
            border: 1px solid var(--border);
            border-radius: 14px;
            box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
        }

        .mobile-nav-dropdown.open {
            display: flex;
        }

        .mobile-nav-dropdown a {
            display: flex;
            align-items: center;
            min-height: 44px;
            padding: 10px 12px;
            border-radius: 10px;
            color: #334155;
            font-size: 15px;
            font-weight: 700;
        }

        .mobile-nav-dropdown a:hover {
            background: var(--soft);
            color: var(--primary);
        }

    }

    /* ==========================================================================
       MODERN UI/UX ENHANCEMENT LAYER
       Adds depth, gradients, motion and polish — blue palette only.
       Placed last so these rules take precedence over the flat styles above.
       ========================================================================== */

    :root {
        --shadow-sm: 0 4px 14px rgba(30, 64, 175, 0.08);
        --shadow-md: 0 12px 30px rgba(30, 64, 175, 0.12);
        --shadow-lg: 0 24px 54px rgba(30, 64, 175, 0.16);
        --shadow-glow: 0 10px 26px rgba(37, 99, 235, 0.32);
        --gradient-primary: linear-gradient(135deg, #3B82F6 0%, #2563EB 50%, #1D4ED8 100%);
        --gradient-deep: linear-gradient(135deg, #1E3A8A 0%, #1D4ED8 55%, #2563EB 100%);
        --gradient-soft: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 11px;
        height: 11px;
    }

    ::-webkit-scrollbar-track {
        background: #eef4fb;
    }

    ::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #60a5fa, #2563eb);
        border-radius: 999px;
        border: 3px solid #eef4fb;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #1d4ed8;
    }

    html {
        scrollbar-color: #3b82f6 #eef4fb;
        scrollbar-width: thin;
    }

    ::selection {
        background: #bfdbfe;
        color: #1e3a8a;
    }

    /* Ambient background mesh */
    body {
        background:
            radial-gradient(1100px 520px at 94% -10%, rgba(37, 99, 235, 0.09), transparent 62%),
            radial-gradient(900px 480px at -8% 6%, rgba(37, 99, 235, 0.07), transparent 55%),
            var(--bg);
    }

    /* Header gains depth once the page scrolls */
    header {
        transition: box-shadow 0.35s ease, background 0.35s ease;
    }

    header.is-scrolled {
        box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
        background: rgba(255, 255, 255, 0.95);
    }

    .logo-mark {
        background: var(--gradient-primary);
        color: #ffffff;
        box-shadow: var(--shadow-glow);
        transition: transform 0.3s ease;
    }

    .logo:hover .logo-mark {
        transform: rotate(-6deg) scale(1.05);
    }

    /* Scroll progress indicator */
    #scrollProgress {
        position: fixed;
        top: 0;
        left: 0;
        height: 3px;
        width: 0%;
        background: linear-gradient(90deg, #60a5fa, #2563eb, #1d4ed8);
        z-index: 60;
        pointer-events: none;
    }

    /* Back-to-top control */
    #backToTop {
        position: fixed;
        right: 22px;
        bottom: 22px;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: var(--gradient-primary);
        color: #fff;
        display: grid;
        place-items: center;
        box-shadow: var(--shadow-glow);
        border: none;
        cursor: pointer;
        z-index: 55;
        opacity: 0;
        transform: translateY(14px) scale(0.9);
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }

    #backToTop.visible {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    #backToTop:hover {
        transform: translateY(-3px) scale(1.06);
        box-shadow: 0 16px 32px rgba(37, 99, 235, 0.42);
    }

    #backToTop svg {
        width: 18px;
        height: 18px;
    }

    /* Buttons: gradient fill, glow, and a light shine sweep on hover */
    .btn-primary {
        background: var(--gradient-primary);
        box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .btn-primary::before {
        content: "";
        position: absolute;
        top: 0;
        left: -60%;
        width: 40%;
        height: 100%;
        background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
        transform: skewX(-20deg);
        transition: left 0.6s ease;
    }

    .btn-primary:hover::before {
        left: 130%;
    }

    .btn-primary:hover {
        background: var(--gradient-deep);
        box-shadow: 0 16px 34px rgba(37, 99, 235, 0.4);
    }

    .btn:hover {
        transform: translateY(-3px);
    }

    .btn-secondary:hover,
    .primary-outline:hover,
    .btn-ghost:hover {
        box-shadow: var(--shadow-sm);
    }

    /* Chips / badges get a touch of lift */
    .eyebrow,
    .tag,
    .section-kicker,
    .eligibility-tag,
    .due-date-tag {
        box-shadow: var(--shadow-sm);
    }

    /* Cards: soft elevation at rest, stronger lift + glow border on hover */
    .info-card,
    .feature-card,
    .trust-card,
    .step-card,
    .checklist-card,
    .mistake-card,
    .part-card,
    .hero-card,
    .eligibility-panel,
    .mini-form,
    .calculator,
    .deadline-card,
    .accordion-item,
    .comparison,
    .pricing-card,
    .protection-card,
    .due-result-card,
    .details-tab-content,
    .extension-spotlight {
        box-shadow: var(--shadow-sm);
        border-color: rgba(148, 190, 240, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .info-card:hover,
    .feature-card:hover,
    .trust-card:hover,
    .step-card:hover,
    .checklist-card:hover,
    .mistake-card:hover,
    .part-card:hover,
    .pricing-card:hover,
    .protection-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(37, 99, 235, 0.4);
    }

    /* Animated gradient accent bar across the top of key cards */
    .feature-card,
    .step-card,
    .checklist-card,
    .mistake-card {
        position: relative;
        overflow: hidden;
    }

    .feature-card::before,
    .step-card::before,
    .checklist-card::before,
    .mistake-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s ease;
    }

    .feature-card:hover::before,
    .step-card:hover::before,
    .checklist-card:hover::before,
    .mistake-card:hover::before {
        transform: scaleX(1);
    }

    /* Icon badges: gradient glow on hover */
    .icon,
    .part-icon {
        background: var(--gradient-soft);
        box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.14);
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
    }

    .feature-card:hover .icon,
    .part-card:hover .part-icon {
        background: var(--gradient-primary);
        color: #ffffff;
        transform: scale(1.08) rotate(-4deg);
        box-shadow: var(--shadow-glow);
    }

    .step-number {
        background: var(--gradient-primary);
        box-shadow: var(--shadow-glow);
        transition: transform 0.3s ease;
    }

    .step-card:hover .step-number {
        transform: scale(1.08);
    }

    .trust-icon {
        background: var(--gradient-soft) !important;
        box-shadow: var(--shadow-sm) !important;
        transition: transform 0.3s ease;
    }

    .trust-card:hover .trust-icon {
        transform: scale(1.08);
    }

    /* Table: soft gradient header + row hover */
    .comparison {
        box-shadow: var(--shadow-md);
    }

    th {
        background: var(--gradient-soft);
    }

    table tr:hover td {
        background: #f5f9ff;
    }

    /* Accordion: elevation + rotating plus-to-close icon */
    .accordion-item {
        transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    }

    .accordion-item:hover {
        box-shadow: var(--shadow-md);
    }

    .accordion-button .faq-plus {
        transition: transform 0.3s ease, background 0.3s ease;
    }

    .accordion-button:not(.collapsed) .faq-plus {
        transform: rotate(135deg);
    }

    /* CTA band: bold gradient banner with soft decorative orbs */
    .cta-band {
        background: var(--gradient-deep) !important;
        border: none !important;
        box-shadow: var(--shadow-lg);
    }

    .cta-band::before {
        content: "";
        position: absolute;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        right: -90px;
        top: -110px;
        pointer-events: none;
    }

    .cta-band::after {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
        left: -70px;
        bottom: -90px;
        pointer-events: none;
    }

    .cta-band h2,
    .cta-band p {
        color: #ffffff !important;
        position: relative;
        z-index: 1;
    }

    .cta-band p {
        color: rgba(255, 255, 255, 0.86) !important;
    }

    .cta-band .btn-primary {
        position: relative;
        z-index: 1;
        background: #ffffff;
        color: var(--primary) !important;
        box-shadow: 0 10px 26px rgba(15, 23, 42, 0.2);
    }

    .cta-band .btn-primary:hover {
        background: #eff6ff;
    }

    /* Deadline + hero surfaces */
    .deadline-card {
        box-shadow: var(--shadow-md);
    }

    .extension-spotlight {
        background: var(--gradient-soft);
    }

    .hero-card {
        box-shadow: var(--shadow-lg);
    }

    .eligibility-panel {
        box-shadow: var(--shadow-sm);
    }

    .mobile-menu-button {
        transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }

    .mobile-menu-button:hover {
        border-color: var(--primary);
        color: var(--primary);
        box-shadow: var(--shadow-sm);
    }

    /* Footer gets a gradient top border */
    footer {
        position: relative;
    }

    footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--gradient-primary);
    }

    /* Section reveal gets a subtle scale for extra polish */
    .reveal-onscroll {
        transform: translateY(22px) scale(0.985);
    }

    .reveal-onscroll.is-visible {
        transform: translateY(0) scale(1);
    }

    /* Hero illustration depth */
    .scene-page {
        box-shadow: var(--shadow-lg) !important;
    }

    .scene-badge {
        box-shadow: var(--shadow-md) !important;
    }

    @media (max-width: 680px) {
        #backToTop {
            right: 14px;
            bottom: 14px;
            width: 44px;
            height: 44px;
        }
    }

    /* Hero headline highlight: blue gradient with left-to-right shine sweep */
    .shine-text {
        color: var(--primary);
        background: linear-gradient(100deg,
                #1D4ED8 0%,
                #2563EB 30%,
                #93C5FD 48%,
                #2563EB 66%,
                #1D4ED8 100%);
        background-size: 260% 100%;
        background-position: 200% 0;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
        animation: shineSweep 3.2s ease-in-out infinite;
    }

    @keyframes shineSweep {
        0% {
            background-position: 200% 0;
        }

        100% {
            background-position: -60% 0;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .shine-text {
            animation: none;
            background-position: 0 0;
        }
    }