/*--font-family: 'Roboto', sans-serif;--*/


@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Public+Sans:wght@400;500;600;700&family=Source+Serif+4:ital,opsz,wght@1,8..60,500;1,8..60,600&family=JetBrains+Mono:wght@500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Public+Sans:wght@400;500;600;700&family=Source+Serif+4:ital,opsz,wght@1,8..60,500;1,8..60,600&family=JetBrains+Mono:wght@500;700&display=swap');




/* =====================================================
   DESIGN TOKENS - SimpleForm2290 actual brand identity
   Navy + Coral Red + White (sampled from live brand)
   ===================================================== */
:root {
    /* Surfaces */
    --paper: #FFFFFF;
    --canvas: #F5F6F9;
    /* clean light bg */
    --canvas-2: #EBEDF2;
    --ink: #0E1116;
    /* near-black text */
    --ink-soft: #2A2E36;
    --steel: #5A6271;
    --steel-2: #8B92A1;
    --line: #E2E5EB;
    /* clean cool divider */
    --line-2: #CDD2DB;

    /* Brand navy (top bar, structure, trust) */
    --navy: #1B3D7A;
    /* primary brand navy */
    --navy-deep: #142E5C;
    --navy-darker: #0E2348;
    --navy-soft: #E6EBF5;
    --navy-tint: rgba(27, 61, 122, .08);

    /* Brand red (logo, CTAs, accents, active states) */
    --red: #EE3F45;
    /* coral red from logo */
    --red-deep: #D62B31;
    --red-darker: #A81E24;
    --red-soft: #FCE5E6;
    --red-soft-2: #FACFD1;
    --red-glow: rgba(238, 63, 69, .22);

    /* Supporting */
    --green: #1F7A3A;
    /* trust ticks only */
    --shadow-1: 0 1px 0 rgba(14, 17, 22, .04), 0 1px 2px rgba(14, 17, 22, .06);
    --shadow-2: 0 6px 18px rgba(14, 17, 22, .07), 0 2px 6px rgba(14, 17, 22, .05);
    --shadow-3: 0 24px 60px rgba(14, 17, 22, .12), 0 6px 14px rgba(14, 17, 22, .06);

    /* Type - Professional financial services pairing */
    --display: 'Archivo', ui-sans-serif, system-ui, sans-serif;
    --serif: 'Source Serif 4', ui-serif, Georgia, serif;
    --body: 'Public Sans', ui-sans-serif, system-ui, sans-serif;
    --mono: 'JetBrains Mono', ui-monospace, monospace;

    /* Layout */
    --container: 1240px;
    --radius-sm: 6px;
    --radius: 14px;
    --radius-lg: 24px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink);
    background: var(--canvas);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

button {
    font-family: inherit;
    cursor: pointer
}

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

.skip {
    position: absolute;
    left: -9999px;
    top: auto
}

.skip:focus {
    left: 16px;
    top: 16px;
    background: var(--ink);
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    z-index: 9999
}

/* =====================================================
   TOP UTILITY BAR
   ===================================================== */
.topbar {
    background: var(--navy);
    color: #FFFFFF;
    font-size: 13px
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 42px;
    gap: 18px
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #E2E8F4
}

.topbar-item svg {
    width: 14px;
    height: 14px;
    color: var(--red);
    opacity: 1
}

.topbar-item strong {
    color: #fff;
    font-weight: 600
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 14px
}

.lang-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 99px;
    color: #E2E8F4;
    white-space: nowrap;
}

.lang-pill .dot {
    width: 5px;
    height: 5px;
    border-radius: 99px;
    background: var(--red);
    box-shadow: 0 0 0 3px rgba(238, 63, 69, .25)
}

.topbar-register {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #fff;
    color: #fff;
    padding: 7px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    transition: all .15s ease;
}

.topbar-register:hover {
    background: #fff;
    color: var(--navy)
}

/* =====================================================
   PRE-FILE STRIP
   ===================================================== */
.prefile {
    background: linear-gradient(90deg, var(--red) 0%, var(--red-deep) 100%);
    color: #fff;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.prefile::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, .07) 0 6px, transparent 6px 12px);
    pointer-events: none;
}

.prefile .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 10px 24px;
    flex-wrap: wrap;
    text-align: center;
    position: relative
}

.prefile-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: var(--red-deep);
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.prefile a {
    color: #fff;
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 255, 255, .5);
    padding-bottom: 1px;
}

/* =====================================================
   HEADER / NAV
   ===================================================== */
.site-header {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, .92);
}

.site-header .container {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 78px
}

.brand {
    display: flex;
    align-items: center;
    /* gap: 14px; */
    text-decoration: none
}

.logo-truck {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-truck img {
    width: 140px;
    height: auto;
    display: block;
    object-fit: contain;
}

.logo-truck svg {
    width: 64px;
    height: 48px
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 3px
}

.logo-text .name-top {
    font-family: var(--display);
    font-weight: 800;
    font-size: 22px;
    color: var(--red);
    letter-spacing: .04em;
    line-height: 1;
}

.logo-text .name-bot {
    font-family: var(--display);
    font-weight: 800;
    font-size: 18px;
    color: var(--red);
    letter-spacing: .02em;
    line-height: 1;
}

.logo-text .name-bot .num {
    color: var(--red)
}

.irs-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    background:#eef2fb;
    border:1px solid #cfd7ea;
    border-radius:999px;

    padding:10px 22px;

    font-size:15px;
    font-weight:700;
    color:#1b3d7a;

    line-height:1;
    white-space:nowrap;
}



.irs-pill .check{
    width:24px;
    height:24px;
    min-width:24px;

    border-radius:50%;
    background:#1B3D7A;

    position:relative;
    flex-shrink:0;
}

.irs-pill .check::after{
    content:"";
    position:absolute;

    left:8px;
    top:5px;

    width:6px;
    height:11px;

    border:solid #fff;
    border-width:0 2px 2px 0;

    transform:rotate(45deg);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto
}

.main-nav a,
.main-nav .has-menu>button {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink);
    padding: 12px 14px 14px;
    border-radius: 0;
    background: transparent;
    border: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .15s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 13.5px;
}

.main-nav a::after,
.main-nav .has-menu>button::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav .has-menu>button:hover::after,
.main-nav a.active::after,
.main-nav .has-menu:hover>button::after {
    transform: scaleX(1)
}

.main-nav a:hover,
.main-nav .has-menu>button:hover {
    color: var(--red);
    background: transparent
}

.main-nav a.active {
    color: var(--red)
}

.main-nav a.active::after {
    transform: scaleX(1)
}

.has-menu {
    position: relative
}

.has-menu .caret {
    width: 10px;
    height: 10px;
    opacity: .6
}

.mega {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-3);
    padding: 22px;
    width: 680px;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease;
    z-index: 60;
}

.has-menu:hover .mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0)
}

.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
}

.mega-item {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    transition: background .15s
}

.mega-item:hover {
    background: var(--canvas)
}

.mega-item .t {
    font-weight: 600;
    color: var(--ink);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px
}

.mega-item .d {
    font-size: 12.5px;
    color: var(--steel);
    margin-top: 2px
}

.mega-item .t .ico {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: var(--red-soft);
    color: var(--red);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.mega-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: var(--steel);
}

.mega-foot a {
    color: var(--red);
    font-weight: 600
}

.nav-cta {
    background: var(--red);
    color: #fff;
    padding: 11px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
    box-shadow: 0 4px 12px rgba(238, 63, 69, .28);
}

.nav-cta:hover {
    background: var(--red-deep);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(238, 63, 69, .40)
}

.nav-login {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    padding: 10px 12px
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 42px;
    height: 42px;
    border-radius: 8px
}

.menu-toggle:hover {
    background: var(--canvas)
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
    position: relative;
    padding: 64px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(1100px 500px at 80% -10%, rgba(238, 63, 69, .12), transparent 60%),
        radial-gradient(900px 500px at -10% 110%, rgba(16, 19, 23, .05), transparent 60%),
        var(--canvas);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(to right, rgba(14, 17, 22, .035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(14, 17, 22, .035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
}

.hero .container {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 56px;
    align-items: center
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 99px;
    padding: 7px 14px;
    font-size: 12.5px;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: .04em;
    box-shadow: var(--shadow-1);
}

.eyebrow .live {
    width: 7px;
    height: 7px;
    border-radius: 99px;
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(238, 63, 69, .18);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    50% {
        box-shadow: 0 0 0 8px rgba(238, 63, 69, 0)
    }
}

.hero h1 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(40px, 5.4vw, 68px);
    line-height: 1.02;
    letter-spacing: -.025em;
    color: var(--ink);
    margin: 22px 0 18px;
}

.hero h1 .pop {
    color: var(--red);
    position: relative;
    display: inline-block
}

.hero h1 .pop::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: .06em;
    height: .18em;
    background: rgba(238, 63, 69, .16);
    border-radius: 4px;
    z-index: -1;
}

.hero h1 .ital {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    color: var(--navy)
}

.hero p.lead {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 560px;
    margin: 0 0 28px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid transparent;
    transition: all .18s ease;
    font-family: var(--body);
}

.btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 8px 22px rgba(238, 63, 69, .28)
}

.btn-primary:hover {
    background: var(--red-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(238, 63, 69, .36)
}

.btn-secondary {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--line-2)
}

.btn-secondary:hover {
    border-color: var(--ink);
    background: var(--canvas)
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    font-weight: 600
}

.hero-trust {
    display: flex;
    gap: 26px;
    margin-top: 36px;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

.hero-trust .num {
    font-family: var(--display);
    font-weight: 700;
    font-size: 26px;
    color: var(--ink);
    letter-spacing: -.02em;
    line-height: 1
}

.hero-trust .lbl {
    font-size: 12px;
    color: var(--steel);
    margin-top: 4px;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-weight: 600
}

.hero-trust .stat {
    display: flex;
    flex-direction: column
}

.hero-trust .vline {
    width: 1px;
    height: 36px;
    background: var(--line)
}

/* Hero right: filing card */
.file-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 26px;
    box-shadow: var(--shadow-3);
    position: relative;
}

.file-card::before {
    content: "";
    position: absolute;
    inset: auto -14px -14px auto;
    width: 120px;
    height: 120px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--red-soft), transparent);
    z-index: -1;
}

.file-card::after {
    content: "";
    position: absolute;
    inset: -12px auto auto -12px;
    width: 80px;
    height: 80px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--navy-soft), transparent);
    z-index: -1;
}

.file-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px
}

.file-card-title {
    font-family: var(--display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -.01em
}

.file-card-sub {
    font-size: 12.5px;
    color: var(--steel);
    margin-top: 2px
}

.price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    background: var(--navy);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
}

.price-tag .num {
    font-family: var(--display);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -.02em
}

.price-tag .unit {
    font-size: 11px;
    opacity: .7;
    font-weight: 500
}

.tab-row {
    display: flex;
    gap: 6px;
    background: var(--canvas);
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 18px
}

.tab {
    flex: 1;
    text-align: center;
    padding: 9px 10px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--steel);
    cursor: pointer;
    border: 0;
    background: transparent;
    transition: all .15s;
}

.tab.active {
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow-1)
}

.field {
    margin-bottom: 14px
}

.field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 6px;
    letter-spacing: .02em
}

.field select,
.field input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line-2);
    border-radius: 10px;
    background: var(--paper);
    font-family: var(--body);
    font-size: 14px;
    color: var(--ink);
    transition: border-color .15s;
}

.field select:focus,
.field input:focus {
    outline: 0;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(238, 63, 69, .12)
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.calc-result {
    background: linear-gradient(135deg, var(--canvas-2), var(--canvas));
    border: 1px dashed var(--line-2);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.calc-result .lbl {
    font-size: 12px;
    color: var(--steel);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase
}

.calc-result .val {
    font-family: var(--mono);
    font-weight: 700;
    font-size: 24px;
    color: var(--ink)
}

.btn-block {
    width: 100%;
    justify-content: center
}

.file-card-foot {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--steel)
}

.file-card-foot svg {
    width: 14px;
    height: 14px;
    color: var(--green);
    flex-shrink: 0
}

/* =====================================================
   SECTION GENERIC
   ===================================================== */
.section {
    padding: 96px 0;
    position: relative
}

.section-head {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(30px, 3.6vw, 46px);
    letter-spacing: -.02em;
    line-height: 1.08;
    color: var(--ink);
    margin: 0 0 16px;
}

.section-title .ital {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    color: var(--red)
}

.section-sub {
    font-size: 17px;
    color: var(--ink-soft);
    margin: 0
}

/* =====================================================
   WHAT IS FORM 2290 (AEO friendly Q + A)
   ===================================================== */
.aeo-block {
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.aeo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start
}

.aeo-question {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(28px, 3.2vw, 40px);
    letter-spacing: -.02em;
    line-height: 1.1;
    color: var(--ink);
    margin: 0 0 8px;
}

.aeo-meta {
    font-size: 13px;
    color: var(--steel);
    margin-bottom: 24px;
    display: flex;
    gap: 16px;
    align-items: center
}

.aeo-meta .pill {
    background: var(--canvas);
    border: 1px solid var(--line);
    padding: 4px 10px;
    border-radius: 99px;
    font-weight: 600;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-soft);
}

.aeo-answer p {
    font-size: 16px;
    color: var(--ink-soft);
    margin: 0 0 14px;
    line-height: 1.7
}

.aeo-answer p strong {
    color: var(--ink);
    font-weight: 600
}

.fact-card {
    background: var(--canvas);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px;
}

.fact-card h3 {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 14px;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
}

.fact-card h3::before {
    content: "";
    width: 18px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}

.fact-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.fact-list li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14.5px;
    color: var(--ink-soft);
}

.fact-list li:last-child {
    border-bottom: 0
}

.fact-list .k {
    font-weight: 600;
    color: var(--ink);
    min-width: 140px
}

/* =====================================================
   WHY CHOOSE
   ===================================================== */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feat {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    transition: all .25s ease;
    position: relative;
    overflow: hidden;
}

.feat::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--red-deep));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.feat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2);
    border-color: var(--line-2)
}

.feat:hover::before {
    transform: scaleX(1)
}

.feat-num {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--steel);
    font-weight: 700;
    letter-spacing: .1em;
    margin-bottom: 14px;
}

.feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--red-soft), #FACFD1);
    display: grid;
    place-items: center;
    color: var(--red);
    margin-bottom: 18px;
}

.feat-icon svg {
    width: 24px;
    height: 24px
}

.feat h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -.01em;
    margin: 0 0 10px;
    color: var(--ink);
}

.feat p {
    font-size: 14.5px;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.6
}

/* Variations */
.feat.dark {
    background: linear-gradient(135deg, var(--navy), var(--navy-deep));
    color: #C8D2E4;
    border-color: var(--navy-deep)
}

.feat.dark h3 {
    color: #fff
}

.feat.dark p {
    color: #C8D2E4
}

.feat.dark .feat-num {
    color: #FACFD1
}

.feat.dark .feat-icon {
    background: rgba(255, 255, 255, .08);
    color: #fff
}

.feat.dark::before {
    background: linear-gradient(90deg, var(--red), var(--red-deep))
}

.feat.accent {
    background: linear-gradient(135deg, var(--red-soft), var(--red-soft-2));
    border-color: #F2A4A8
}

.feat.accent .feat-icon {
    background: #fff;
    color: var(--red)
}

.feat.accent h3 {
    color: var(--red-darker)
}

/* =====================================================
   SERVICES GRID
   ===================================================== */
.section.muted {
    background: var(--paper)
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

.svc {
    background: var(--canvas);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    transition: all .2s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.svc:hover {
    background: var(--paper);
    transform: translateY(-3px);
    box-shadow: var(--shadow-2)
}

.svc-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--navy);
    color: #fff;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    box-shadow: 0 4px 10px rgba(27, 61, 122, .22);
}

.svc:hover .svc-icon {
    background: var(--red);
    box-shadow: 0 4px 12px rgba(238, 63, 69, .28)
}

.svc-icon svg {
    width: 20px;
    height: 20px
}

.svc h4 {
    font-family: var(--display);
    font-size: 16.5px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--ink);
    letter-spacing: -.01em
}

.svc p {
    font-size: 13.5px;
    color: var(--steel);
    margin: 0 0 14px;
    line-height: 1.55;
    flex: 1
}

.svc-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    display: inline-flex;
    gap: 6px;
    align-items: center
}

/* =====================================================
   STEPS
   ===================================================== */
.section.dark-bg {
    background: linear-gradient(135deg, var(--navy-darker) 0%, var(--navy) 60%, var(--navy-deep) 100%);
    color: #E2E8F4;
    position: relative;
    overflow: hidden;
}

.section.dark-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 0%, rgba(238, 63, 69, .20), transparent 50%),
        radial-gradient(circle at 80% 100%, rgba(255, 255, 255, .06), transparent 50%);
    pointer-events: none;
}

.section.dark-bg .section-title {
    color: #fff
}

.section.dark-bg .section-sub {
    color: #C8D2E4
}

.section.dark-bg .section-eyebrow {
    color: #FACFD1
}

.steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px
}

.steps::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: repeating-linear-gradient(to right, rgba(255, 255, 255, .18) 0 6px, transparent 6px 12px);
    z-index: 0;
}

.step {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 24px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(4px);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    color: #fff;
    font-family: var(--display);
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 18px;
    box-shadow: 0 6px 16px rgba(238, 63, 69, .4);
}

.step-label {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .16em;
    color: #8B95B0;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

.step h4 {
    font-family: var(--display);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    letter-spacing: -.01em
}

.step p {
    font-size: 13.5px;
    color: #C8D2E4;
    margin: 0;
    line-height: 1.55
}

/* =====================================================
   PRICING
   ===================================================== */
.promo-banner {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
    color: #fff;
    padding: 16px 22px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 32px;
    font-size: 14.5px;
    flex-wrap: wrap;
    text-align: center;
    box-shadow: 0 8px 22px rgba(238, 63, 69, .22);
}

.promo-banner strong {
    color: #fff;
    font-weight: 800
}

.promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: var(--red-deep);
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pricing-table-wrap {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: start
}

.pricing-table {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-1)
}

.pricing-table-head {
    padding: 24px 26px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: #fff;
}

.pricing-table-head h3 {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -.01em;
    color: #fff
}

.pricing-table-head p {
    margin: 4px 0 0;
    color: #C8D2E4;
    font-size: 13.5px
}

.pricing-rows {
    display: flex;
    flex-direction: column
}

.pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 26px;
    border-bottom: 1px solid var(--line);
    transition: background .15s;
    gap: 16px;
}

.pricing-row:last-child {
    border-bottom: 0
}

.pricing-row:hover {
    background: var(--canvas)
}

.pricing-row.featured {
    background: linear-gradient(90deg, rgba(238, 63, 69, .06), transparent)
}

.pricing-row.featured::before {
    content: "";
    display: none
}

.prow-label {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0
}

.prow-label strong {
    font-family: var(--display);
    font-size: 15.5px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.01em
}

.prow-label span {
    font-size: 12.5px;
    color: var(--steel)
}

.prow-price {
    font-family: var(--display);
    font-weight: 800;
    font-size: 24px;
    color: var(--red);
    letter-spacing: -.02em;
    flex-shrink: 0;
}

.pricing-extras {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 26px;
    box-shadow: var(--shadow-1)
}

.pricing-extras h3 {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 18px;
    color: var(--ink);
    letter-spacing: -.01em
}

.extras-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.extras-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    gap: 14px;
}

.extras-list li:last-child {
    border-bottom: 0
}

.extras-list li.note {
    padding-top: 14px;
    font-size: 12px;
    color: var(--steel);
    font-style: italic
}

.extras-list .x-name {
    font-size: 13.5px;
    color: var(--ink);
    font-weight: 600;
    flex: 1
}

.extras-list .x-name em {
    color: var(--steel);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    display: block;
    margin-top: 2px
}

.extras-list .x-price {
    font-family: var(--mono);
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    flex-shrink: 0;
}

.extras-list .x-price.free {
    color: var(--green);
    font-family: var(--display);
    font-weight: 800;
    font-size: 14px
}

/* =====================================================
   POST FILING SOLUTIONS
   ===================================================== */
.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.post-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px;
    transition: all .2s;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.post-card:hover {
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-2)
}

.post-card .ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--navy-soft);
    display: grid;
    place-items: center;
    color: var(--navy);
    flex-shrink: 0;
    border: 1px solid #C7D2EC;
    transition: all .2s;
}

.post-card:hover .ico {
    background: var(--red);
    color: #fff;
    border-color: var(--red)
}

.post-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0
}

.post-card h4 {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--ink);
    letter-spacing: -.01em
}

.post-card p {
    font-size: 13.5px;
    color: var(--steel);
    margin: 0 0 12px;
    line-height: 1.55;
    flex: 1
}

.post-link {
    font-size: 13px;
    color: var(--red);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    align-self: flex-start;
    transition: gap .2s
}

.post-link:hover {
    gap: 8px
}

/* =====================================================
   STATS
   ===================================================== */
.stats-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 60%, var(--navy-darker) 100%);
    color: #C8D2E4;
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.stats-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, .04) 0 2px, transparent 2px 16px),
        radial-gradient(800px 400px at 80% 50%, rgba(238, 63, 69, .20), transparent 60%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
    position: relative
}

.stat-num {
    font-family: var(--display);
    font-weight: 800;
    font-size: 54px;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1
}

.stat-num small {
    font-size: 30px;
    color: var(--red);
    font-family: var(--display);
    font-weight: 700
}

.stat-lbl {
    font-size: 13px;
    color: #C8D2E4;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 8px;
    font-weight: 600
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.testi {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 30px;
    position: relative;
}

.testi .stars {
    color: var(--red);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 14px
}

.testi .quote {
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.5;
    color: var(--ink);
    font-style: italic;
    margin: 0 0 22px;
    font-weight: 500
}

.testi .who {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--line)
}

.testi .avatar {
    width: 42px;
    height: 42px;
    border-radius: 99px;
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--display);
    font-weight: 700;
    font-size: 16px;
}

.testi:nth-child(2) .avatar {
    background: linear-gradient(135deg, var(--navy), var(--navy-deep))
}

.testi:nth-child(3) .avatar {
    background: linear-gradient(135deg, var(--red), var(--navy-deep))
}

.testi .name {
    font-weight: 700;
    font-size: 14px;
    color: var(--ink)
}

.testi .role {
    font-size: 12px;
    color: var(--steel)
}

.testi .source {
    margin-left: auto;
    font-size: 11px;
    color: var(--steel);
    font-family: var(--mono);
    letter-spacing: .06em;
    text-transform: uppercase
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.faq-item {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .2s;
}

.faq-item[open] {
    border-color: var(--navy);
    box-shadow: var(--shadow-2)
}

.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-weight: 600;
    font-size: 15.5px;
    color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
    display: none
}

.faq-item .q-num {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--steel);
    letter-spacing: .06em;
    flex-shrink: 0;
}

.faq-item .plus {
    width: 28px;
    height: 28px;
    border-radius: 99px;
    background: var(--canvas);
    display: grid;
    place-items: center;
    color: var(--ink);
    font-size: 14px;
    flex-shrink: 0;
    transition: all .2s;
}

.faq-item[open] .plus {
    background: var(--red);
    color: #fff;
    transform: rotate(45deg)
}

.faq-item .answer {
    padding: 0 24px 22px 24px;
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.65
}

/* =====================================================
   BLOG
   ===================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.blog-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    transition: all .25s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2)
}

.blog-img {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--canvas-2), var(--canvas));
    display: grid;
    place-items: center;
    color: var(--steel);
    position: relative;
    overflow: hidden;
}

.blog-img.b1 {
    background: linear-gradient(135deg, #142E5C, #0E1116)
}

.blog-img.b2 {
    background: linear-gradient(135deg, #EE3F45, #D62B31)
}

.blog-img.b3 {
    background: linear-gradient(135deg, #0E1116, #2A2E36)
}

.blog-img-overlay {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, .05) 0 2px, transparent 2px 10px);
}

.blog-img .t {
    font-family: var(--display);
    font-weight: 700;
    font-size: 22px;
    color: rgba(255, 255, 255, .92);
    padding: 24px;
    letter-spacing: -.01em;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.blog-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.blog-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 11.5px;
    color: var(--steel);
    font-family: var(--mono);
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px
}

.blog-meta .cat {
    color: var(--red)
}

.blog-card h4 {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: -.01em;
    line-height: 1.25;
    color: var(--ink)
}

.blog-card p {
    font-size: 14px;
    color: var(--ink-soft);
    margin: 0 0 18px;
    flex: 1;
    line-height: 1.55
}

.blog-card .more {
    font-size: 13px;
    color: var(--red);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto
}

/* =====================================================
   CTA STRIP
   ===================================================== */
.cta-strip {
    background: linear-gradient(135deg, var(--navy-darker) 0%, var(--navy) 60%, var(--navy-deep) 100%);
    color: #fff;
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px 300px at 0% 100%, rgba(238, 63, 69, .32), transparent 60%),
        radial-gradient(600px 300px at 100% 0%, rgba(255, 255, 255, .08), transparent 60%);
}

.cta-strip .container {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center
}

.cta-strip h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(32px, 4.2vw, 52px);
    letter-spacing: -.025em;
    line-height: 1.05;
    margin: 0 0 18px;
    color: #fff;
}

.cta-strip h2 .ital {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    color: var(--red)
}

.cta-strip p {
    font-size: 17px;
    color: #C8D2E4;
    margin: 0 0 26px;
    max-width: 520px
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn-light {
    background: #fff;
    color: var(--ink)
}

.btn-light:hover {
    background: var(--canvas);
    transform: translateY(-2px)
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25)
}

.btn-outline-light:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .05)
}

.cta-side {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;
    padding: 28px;
    backdrop-filter: blur(4px);
}

.cta-side h4 {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 14px;
    color: #fff;
    letter-spacing: -.01em
}

.cta-side .deadline-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: 14px
}

.cta-side .deadline-row:last-child {
    border-bottom: 0
}

.cta-side .deadline-row .m {
    color: #C8D2E4
}

.cta-side .deadline-row .d {
    color: #fff;
    font-weight: 700;
    font-family: var(--mono)
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--navy-darker);
    color: #C8D2E4;
    padding: 64px 0 28px;
    border-top: 3px solid var(--red)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px
}

.footer-brand p {
    font-size: 14px;
    color: #C8D2E4;
    margin: 18px 0;
    max-width: 340px;
    line-height: 1.6
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13.5px
}

.footer-contact .row {
    display: flex;
    gap: 10px;
    align-items: center
}

.footer-contact .row svg {
    width: 14px;
    height: 14px;
    color: var(--red)
}

.footer h5 {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 16px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer li {
    margin-bottom: 10px
}

.footer li a {
    font-size: 13.5px;
    color: #C8D2E4;
    transition: color .15s
}

.footer li a:hover {
    color: var(--red)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .10);
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 13px;
    color: #8B95B0;
}

.footer-creds {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap
}

.footer-cred {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-family: var(--mono);
    letter-spacing: .08em;
    color: #C8D2E4;
}

.footer-social {
    display: flex;
    gap: 8px
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    display: grid;
    place-items: center;
    color: #C8D2E4;
    transition: all .15s;
}

.footer-social a:hover {
    background: var(--red);
    color: #fff
}

/* =====================================================
   FLOAT HELP BUTTON
   ===================================================== */
.float-help {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 80;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: #fff;
    padding: 13px 18px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 14px;
    font-family: var(--body);
    border: 0;
    box-shadow: 0 12px 30px rgba(238, 63, 69, .4);
    transition: transform .2s, box-shadow .2s;
}

.float-help:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(238, 63, 69, .5)
}

.float-help svg {
    width: 18px;
    height: 18px
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1080px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .feat-grid,
    .post-grid,
    .testi-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .svc-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px
    }

    .steps::before {
        display: none
    }

    .pricing-table-wrap {
        grid-template-columns: 1fr
    }

    .promo-banner {
        font-size: 13.5px
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
    }

    .aeo-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .cta-strip .container {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }

    .serve-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .smart-grid,
    .due-grid {
        grid-template-columns: 1fr !important;
        gap: 36px;
    }

    .smart-display {
        position: static;
        min-height: 380px;
    }

    .trust-strip-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px
    }

    .ts-item:nth-child(4),
    .ts-item:nth-child(5) {
        grid-column: span 1
    }
}

@media (max-width: 768px) {
    .topbar-left .topbar-item:nth-child(3) {
        display: none
    }

    .main-nav {
        display: none
    }

    .menu-toggle {
        display: grid;
        place-items: center
    }

    .section {
        padding: 64px 0
    }

    .feat-grid,
    .post-grid,
    .testi-grid,
    .blog-grid,
    .svc-grid {
        grid-template-columns: 1fr
    }

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

    .stat-num {
        font-size: 38px
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .field-row {
        grid-template-columns: 1fr
    }

    .hero {
        padding: 48px 0 56px
    }

    .serve-grid,
    .tools-grid {
        grid-template-columns: 1fr !important;
    }

    .trust-strip-grid {
        grid-template-columns: 1fr !important;
        gap: 6px
    }

    .ts-item {
        padding: 10px 12px
    }

    .pricing-row {
        padding: 14px 18px
    }

    .prow-price {
        font-size: 20px
    }

    .promo-banner {
        padding: 12px 16px;
        border-radius: 10px
    }

    body {
        padding-bottom: 80px
    }
}

/* =====================================================
   UTILS / ANIMATION
   ===================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(18px);
    transition: all .7s ease
}

.fade-up.in {
    opacity: 1;
    transform: translateY(0)
}

/* =====================================================
   TRUST SIGNALS STRIP
   ===================================================== */
.trust-strip {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 32px 0
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px
}

.ts-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    transition: background .2s;
}

.ts-item:hover {
    background: var(--canvas)
}

.ts-ico {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--navy-soft);
    color: var(--navy);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border: 1px solid #C7D2EC;
}

.ts-ico svg {
    width: 20px;
    height: 20px
}

.ts-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0
}

.ts-t {
    font-family: var(--display);
    font-weight: 700;
    font-size: 14.5px;
    color: var(--ink);
    letter-spacing: -.01em;
    line-height: 1.2
}

.ts-d {
    font-size: 12px;
    color: var(--steel);
    line-height: 1.3
}

/* =====================================================
   WHO WE SERVE
   ===================================================== */
.serve-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.serve-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px 24px;
    transition: all .25s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.serve-card::before {
    content: "";
    position: absolute;
    inset: auto -20px -20px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--navy-soft) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .3s
}

.serve-card:hover {
    border-color: var(--navy);
    transform: translateY(-4px);
    box-shadow: var(--shadow-2)
}

.serve-card:hover::before {
    opacity: 1
}

.serve-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: var(--navy-soft);
    color: var(--navy);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    border: 1px solid #C7D2EC;
    transition: all .25s
}

.serve-card:hover .serve-icon {
    background: var(--red);
    color: #fff;
    border-color: var(--red)
}

.serve-card .tag {
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 8px;
    position: relative;
    z-index: 1
}

.serve-card h3 {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--ink);
    letter-spacing: -.01em;
    position: relative;
    z-index: 1
}

.serve-card p {
    font-size: 13.5px;
    color: var(--ink-soft);
    margin: 0 0 16px;
    line-height: 1.55;
    position: relative;
    z-index: 1
}

.serve-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
    position: relative;
    z-index: 1
}

.serve-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 5px 0;
    font-size: 13px;
    color: var(--ink-soft)
}

.serve-list li::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 99px;
    background: var(--navy-soft);
    flex-shrink: 0;
    margin-top: 3px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 7l3 3 5-5' fill='none' stroke='%231B3D7A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-position: center;
    background-repeat: no-repeat
}

.serve-card .serve-cta {
    font-family: var(--body);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    position: relative;
    z-index: 1;
    transition: all .2s
}

.serve-card:hover .serve-cta {
    color: var(--red);
    gap: 10px
}

/* =====================================================
   SMART FILING FEATURES
   ===================================================== */
.smart-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: start
}

.smart-tabs {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.smart-tab {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px 20px;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    gap: 14px;
    align-items: center;
    text-align: left;
    font-family: var(--body);
    width: 100%
}

.smart-tab:hover {
    border-color: var(--line-2);
    background: var(--canvas)
}

.smart-tab.active {
    border-color: var(--navy);
    background: var(--navy-soft);
    box-shadow: var(--shadow-2)
}

.smart-tab-ico {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--canvas);
    color: var(--ink);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: all .2s
}

.smart-tab.active .smart-tab-ico {
    background: var(--red);
    color: #fff
}

.smart-tab-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1
}

.smart-tab-text .t {
    font-family: var(--display);
    font-weight: 700;
    font-size: 15.5px;
    color: var(--ink);
    letter-spacing: -.01em
}

.smart-tab-text .d {
    font-size: 12.5px;
    color: var(--steel)
}

.smart-tab .arrow {
    color: var(--steel);
    transition: all .2s;
    flex-shrink: 0
}

.smart-tab.active .arrow {
    color: var(--red);
    transform: translateX(3px)
}

.smart-display {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: 22px;
    padding: 34px;
    color: #fff;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden
}

.smart-display::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 100% 0%, rgba(238, 63, 69, .20), transparent 50%), repeating-linear-gradient(45deg, rgba(255, 255, 255, .025) 0 2px, transparent 2px 16px);
    pointer-events: none
}

.smart-display-head {
    position: relative;
    z-index: 1;
    margin-bottom: 24px
}

.smart-display-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--mono);
    font-size: 10.5px;
    color: #FACFD1;
    letter-spacing: .14em;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(238, 63, 69, .16);
    border: 1px solid rgba(238, 63, 69, .3);
    padding: 5px 10px;
    border-radius: 99px;
    margin-bottom: 14px
}

.smart-display h3 {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -.02em
}

.smart-display p {
    font-size: 14.5px;
    color: #C8D2E4;
    margin: 0;
    line-height: 1.6;
    max-width: 380px
}

.smart-mock {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    padding: 18px 20px;
    margin-top: auto;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(4px)
}

.smart-mock-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: 13px
}

.smart-mock-row:last-child {
    border-bottom: 0
}

.smart-mock-row .check {
    width: 20px;
    height: 20px;
    border-radius: 99px;
    background: rgba(31, 122, 58, .30);
    display: grid;
    place-items: center;
    color: #7CD994;
    flex-shrink: 0
}

.smart-mock-row .label {
    color: #C8D2E4;
    flex: 1
}

.smart-mock-row .val {
    color: #fff;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 700
}

/* =====================================================
   QUICK TOOLS
   ===================================================== */
.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.tool-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px;
    transition: all .25s;
    position: relative;
    overflow: hidden
}

.tool-card:hover {
    border-color: var(--navy);
    box-shadow: var(--shadow-2)
}

.tool-card .ico {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    color: #fff;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 16px rgba(238, 63, 69, .28)
}

.tool-card.alt .ico {
    background: linear-gradient(135deg, var(--navy), var(--navy-deep));
    box-shadow: 0 6px 16px rgba(27, 61, 122, .28)
}

.tool-card h3 {
    font-family: var(--display);
    font-size: 21px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--ink);
    letter-spacing: -.01em
}

.tool-card p {
    font-size: 14px;
    color: var(--ink-soft);
    margin: 0 0 22px;
    line-height: 1.55
}

.tool-form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.tool-form input {
    flex: 1;
    min-width: 180px;
    padding: 12px 14px;
    border: 1px solid var(--line-2);
    border-radius: 10px;
    background: var(--paper);
    font-family: var(--body);
    font-size: 14px;
    transition: border-color .15s
}

.tool-form input:focus {
    outline: 0;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(238, 63, 69, .12)
}

.tool-card.alt .tool-form input:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27, 61, 122, .12)
}

.tool-form button {
    padding: 12px 20px;
    border-radius: 10px;
    border: 0;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background .15s;
    font-family: var(--body)
}

.tool-form button:hover {
    background: var(--red-deep)
}

.tool-card.alt .tool-form button {
    background: var(--navy)
}

.tool-card.alt .tool-form button:hover {
    background: var(--navy-deep)
}

.tool-help {
    font-size: 12px;
    color: var(--steel);
    margin-top: 14px;
    display: flex;
    gap: 6px;
    align-items: center
}

.tool-help svg {
    width: 13px;
    height: 13px;
    color: var(--steel);
    flex-shrink: 0
}

/* =====================================================
   DUE DATES TABLE
   ===================================================== */
.due-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start
}

.due-table {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-1)
}

.due-table table {
    width: 100%;
    border-collapse: collapse
}

.due-table th,
.due-table td {
    padding: 13px 18px;
    text-align: left;
    font-size: 13.5px
}

.due-table th {
    background: var(--navy-soft);
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--navy-darker);
    letter-spacing: .1em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--line)
}

.due-table tbody tr {
    border-bottom: 1px solid var(--line);
    transition: background .15s
}

.due-table tbody tr:last-child {
    border-bottom: 0
}

.due-table tbody tr:hover {
    background: var(--canvas)
}

.due-table td:first-child {
    font-weight: 600;
    color: var(--ink)
}

.due-table td.deadline {
    font-family: var(--mono);
    font-weight: 700;
    color: var(--red)
}

.due-table tr.upcoming {
    background: linear-gradient(90deg, rgba(238, 63, 69, .06), transparent)
}

.due-table tr.upcoming td:first-child::before {
    content: "●";
    color: var(--red);
    margin-right: 6px;
    font-size: 8px;
    vertical-align: middle
}

.penalty-card {
    background: linear-gradient(135deg, var(--navy), var(--navy-deep));
    color: #fff;
    border-radius: 18px;
    padding: 32px;
    position: relative;
    overflow: hidden
}

.penalty-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 100%, rgba(238, 63, 69, .25), transparent 60%);
    pointer-events: none
}

.penalty-card .tag {
    font-family: var(--mono);
    font-size: 10.5px;
    color: #FACFD1;
    letter-spacing: .14em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
    position: relative
}

.penalty-card h3 {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: -.02em;
    line-height: 1.15;
    position: relative
}

.penalty-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative
}

.penalty-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: 13.5px;
    color: #C8D2E4
}

.penalty-list li:last-child {
    border-bottom: 0
}

.penalty-list .pct {
    font-family: var(--mono);
    font-weight: 700;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
    background: rgba(238, 63, 69, .20);
    padding: 3px 8px;
    border-radius: 6px
}

/* =====================================================
   FAQ SEARCH
   ===================================================== */
.faq-search {
    position: relative;
    margin: 18px 0 26px
}

.faq-search input {
    width: 100%;
    padding: 13px 16px 13px 44px;
    border: 1px solid var(--line-2);
    border-radius: 12px;
    background: var(--paper);
    font-family: var(--body);
    font-size: 14px;
    color: var(--ink);
    transition: all .15s
}

.faq-search input:focus {
    outline: 0;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(238, 63, 69, .12)
}

.faq-search svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--steel);
    pointer-events: none
}

.faq-item.hidden {
    display: none
}

.faq-empty {
    padding: 24px;
    text-align: center;
    color: var(--steel);
    font-size: 14px;
    background: var(--canvas);
    border-radius: 12px;
    display: none
}

.faq-empty.show {
    display: block
}

/* =====================================================
   STICKY MOBILE CTA BAR
   ===================================================== */
.mobile-cta-bar {
    display: none
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: flex;
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 90;
        background: var(--paper);
        border: 1px solid var(--line);
        border-radius: 16px;
        box-shadow: 0 18px 40px rgba(14, 46, 92, .18);
        padding: 8px;
        gap: 6px;
    }

    .mobile-cta-bar a {
        flex: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px 8px;
        border-radius: 10px;
        font-weight: 700;
        font-size: 13px;
        text-decoration: none;
    }

    .mobile-cta-bar a.call {
        background: var(--navy);
        color: #fff
    }

    .mobile-cta-bar a.file {
        background: var(--red);
        color: #fff
    }

    .mobile-cta-bar a svg {
        width: 14px;
        height: 14px
    }

    .float-help {
        display: none
    }

    .topbar .container {
        height: auto !important;
    }

    .topbar-left {
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .topbar .container {
        flex-direction: column;
    }
}

@media (max-width: 859px) {
    .topbar .container {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .irs-pill {
        display: none;
    }
}

/* =========================
   HEADER RESPONSIVE FIXES ONLY
   ========================= */
@media (max-width: 1199px) {
    .site-header .container {
        gap: 16px;
    }

    .main-nav {
        gap: 18px;
    }

    .mega {
        left: 50%;
        transform: translateX(-50%);
        width: min(92vw, 850px) !important;
    }

    .mega-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {

    .site-header {
        position: relative;
        z-index: 999;
    }

    .site-header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        min-height: 76px;
        flex-wrap: nowrap;
    }

    .brand {
        flex-shrink: 1;
        min-width: 0;
    }

    .logo-text {
        line-height: 1;
    }

    .irs-pill {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 14px);
        left: 16px;
        right: 16px;
        background: #fff;
        border-radius: 22px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.08),
            0 2px 10px rgba(0, 0, 0, 0.04);

        max-height: calc(100vh - 120px);
        overflow-y: auto;

        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        pointer-events: none;

        transition: all 0.3s ease;
    }

    /* add .active with JS */
    .main-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .main-nav>a,
    .main-nav .has-menu>button {
        width: 100%;
        justify-content: space-between;
        padding: 14px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .main-nav>a:last-child {
        border-bottom: 0;
    }

    .has-menu {
        width: 100%;
    }

    .has-menu>button {
        width: 100%;
        background: transparent;
    }

    .mega {
        position: static;
        transform: none !important;
        width: 100% !important;
        margin-top: 10px;
        border-radius: 18px;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .mega-grid {
        grid-template-columns: 1fr;
    }

    .mega-item {
        padding: 14px;
    }

    .mega-foot {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .nav-login,
    .nav-cta {
        margin-top: 10px;
    }

    .nav-cta {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 767px) {

    .site-header .container {
        min-height: 70px;
        gap: 10px;
    }

    .brand {
        gap: 10px;
    }

    /* .logo-truck {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
    } */

    .logo-text .name-top,
    .logo-text .name-bot {
        white-space: nowrap;
    }

    .main-nav {
        left: 12px;
        right: 12px;
        top: calc(100% + 10px);
        padding: 16px;
        border-radius: 18px;
    }

    .mega {
        padding: 10px;
    }

    .mega-item {
        border-radius: 14px;
    }

    .nav-cta {
        min-height: 50px;
    }
}

@media (max-width: 575px) {

    .site-header .container {
        min-height: 64px;
    }

    /* .logo-truck {
        width: 38px;
        height: 38px;
    } */

    .logo-text {
        display: flex;
        flex-direction: column;
    }

    .main-nav {
        left: 10px;
        right: 10px;
        padding: 14px;
    }

    .main-nav>a,
    .main-nav .has-menu>button {
        padding: 12px 0;
    }

    .mega-item .t {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mega-foot a {
        width: 100%;
    }

    .nav-cta {
        width: 100%;
    }
}

@media (max-width: 420px) {

    .site-header .container {
        gap: 8px;
    }

    .brand {
        max-width: calc(100% - 52px);
    }

    .logo-text {
        overflow: hidden;
    }

    .logo-text .name-top,
    .logo-text .name-bot {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .main-nav {
        border-radius: 16px;
    }

    .mega-item {
        padding: 12px;
    }
}



/* WHO WE SERVE - FINAL */
.who-we-serve-section {
    padding: 96px 0 !important;
    position: relative;
    background: var(--canvas) !important;
    overflow: visible !important;
}

.who-we-serve-section .section-head {
    max-width: 760px !important;
    margin: 0 auto 52px !important;
    text-align: center !important;
}

.who-we-serve-section .serve-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
    width: 100% !important;
    margin: 0 !important;
}

.who-we-serve-section .serve-card {
    min-width: 0 !important;
    width: 100% !important;
}




/* WHAT 2290 FINAL FIX */
.what-2290-section {
    padding: 70px 0 80px !important;
    background: #fff !important;
}

.what-2290-section .container {
    max-width: 1240px !important;
    padding: 0 24px !important;
}

.what2290-grid {
    display: grid !important;
    grid-template-columns: 1.1fr 0.9fr !important;
    gap: 64px !important;
    align-items: start !important;
}

.what2290-left .section-eyebrow {
    display: block !important;
    font-size: 12px !important;
    letter-spacing: 5px !important;
    color: #ef4444 !important;
    font-weight: 700 !important;
    margin-bottom: 22px !important;
}

.what2290-title {
    font-size: 46px !important;
    line-height: 1.16 !important;
    font-weight: 800 !important;
    letter-spacing: -1px !important;
    color: #0f172a !important;
    max-width: 680px !important;
    margin: 0 0 18px !important;
}

.what2290-meta {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    margin-bottom: 34px !important;
}

.updated-pill {
    border: 1px solid #d9dde4 !important;
    border-radius: 30px !important;
    background: #fff !important;
    padding: 8px 14px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.read-time {
    font-size: 15px !important;
    color: #475569 !important;
}

.what2290-left p {
    font-size: 17px !important;
    line-height: 1.75 !important;
    color: #111827 !important;
    margin-bottom: 24px !important;
    max-width: 700px !important;
}

.quick-facts-card {
    background: #f8fafc !important;
    border: 1px solid #dfe3ea !important;
    border-radius: 22px !important;
    padding: 30px 32px !important;
    max-width: 540px !important;
    width: 100% !important;
}

.quick-facts-card h3 {
    font-size: 22px !important;
    font-weight: 800 !important;
    margin: 0 0 26px !important;
    padding-left: 30px !important;
}

.quick-facts-card h3:before {
    top: 14px !important;
    width: 18px !important;
    height: 3px !important;
}

.fact-row {
    padding: 16px 0 !important;
}

.fact-row span,
.fact-row strong {
    font-size: 16px !important;
}


/* =====================================================
   WHY CHOOSE
===================================================== */

.feat-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.feat{
    background:#fff;
    border:1px solid #E2E5EB;
    border-radius:18px;
    padding:28px;
    transition:all .25s ease;
    position:relative;
    overflow:hidden;
}

.feat::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:3px;
    background:linear-gradient(90deg,#EE3F45,#D62B31);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .3s ease;
}

.feat:hover{
    transform:translateY(-4px);
    box-shadow:0 6px 18px rgba(14,17,22,.07);
}

.feat:hover::before{
    transform:scaleX(1);
}

.feat-num{
    font-size:11px;
    color:#5A6271;
    font-weight:700;
    letter-spacing:.1em;
    margin-bottom:14px;
}

.feat-icon{
    width:48px;
    height:48px;
    border-radius:12px;
    background:#FCE5E6;
    display:grid;
    place-items:center;
    color:#EE3F45;
    margin-bottom:18px;
}

.feat h3{
    font-size:19px;
    font-weight:700;
    margin:0 0 10px;
    color:#0E1116;
}

.feat p{
    font-size:14.5px;
    color:#2A2E36;
    line-height:1.6;
}

/* =====================================================
   SERVICES GRID
===================================================== */

.svc-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}

.svc{
    background:#F5F6F9;
    border:1px solid #E2E5EB;
    border-radius:16px;
    padding:24px;
    transition:all .2s;
    display:flex;
    flex-direction:column;
}

.svc:hover{
    background:#fff;
    transform:translateY(-3px);
    box-shadow:0 6px 18px rgba(14,17,22,.07);
}

.svc-icon{
    width:42px;
    height:42px;
    border-radius:10px;
    background:#1B3D7A;
    color:#fff;
    display:grid;
    place-items:center;
    margin-bottom:18px;
}

.svc h4{
    font-size:16px;
    font-weight:700;
    margin:0 0 6px;
}

.svc p{
    font-size:13.5px;
    color:#5A6271;
    line-height:1.55;
    flex:1;
}

.svc-link{
    font-size:13px;
    font-weight:700;
    color:#EE3F45;
}

/* =====================================================
   STEPS
===================================================== */

.section.dark-bg{
    background:linear-gradient(135deg,#0E2348 0%,#1B3D7A 60%,#142E5C 100%);
    color:#fff;
}

.steps{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:14px;
}

.step{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:24px;
}

.step-num{
    width:40px;
    height:40px;
    border-radius:10px;
    background:#EE3F45;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    margin-bottom:18px;
}

.step-label{
    font-size:10px;
    letter-spacing:.16em;
    color:#8B95B0;
    text-transform:uppercase;
    margin-bottom:10px;
}

.step h4{
    font-size:17px;
    font-weight:700;
    color:#fff;
    margin-bottom:6px;
}

.step p{
    font-size:13.5px;
    color:#C8D2E4;
    line-height:1.55;
}

/* =====================================================
   STATS
===================================================== */

.stats-band{
    background:linear-gradient(135deg,#1B3D7A 0%,#142E5C 60%,#0E2348 100%);
    padding:72px 0;
    color:#fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:32px;
    text-align:center;
}

.stat-num{
    font-size:54px;
    font-weight:800;
    line-height:1;
}

.stat-lbl{
    font-size:13px;
    color:#C8D2E4;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-top:8px;
}

/* =====================================================
   PRICING
===================================================== */

.promo-banner{
    background:linear-gradient(135deg,#EE3F45 0%,#D62B31 100%);
    color:#fff;
    padding:16px 22px;
    border-radius:14px;
    margin-bottom:32px;
}

.pricing-table-wrap{
    display:grid;
    grid-template-columns:1.4fr 1fr;
    gap:24px;
}

.pricing-table{
    background:#fff;
    border:1px solid #E2E5EB;
    border-radius:20px;
    overflow:hidden;
}

.pricing-row{
    display:flex;
    justify-content:space-between;
    padding:18px 26px;
    border-bottom:1px solid #E2E5EB;
}

.pricing-extras{
    background:#fff;
    border:1px solid #E2E5EB;
    border-radius:20px;
    padding:26px;
}

.extras-list{
    list-style:none;
    padding:0;
    margin:0;
}

/* =====================================================
   POST FILING
===================================================== */

.post-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.post-card{
    background:#fff;
    border:1px solid #E2E5EB;
    border-radius:18px;
    padding:26px;
    transition:all .2s;
    display:flex;
    gap:18px;
    align-items:flex-start;
}

.post-card:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 18px rgba(14,17,22,.07);
}

.post-card .ico{
    width:46px;
    height:46px;
    border-radius:12px;
    background:#E6EBF5;
    color:#1B3D7A;
    display:grid;
    place-items:center;
    flex-shrink:0;
}

.post-body{
    display:flex;
    flex-direction:column;
    flex:1;
}

.post-card h4{
    font-size:16px;
    font-weight:700;
    margin-bottom:6px;
}

.post-card p{
    font-size:13.5px;
    color:#5A6271;
    line-height:1.55;
    margin-bottom:12px;
}

.post-link{
    font-size:13px;
    color:#EE3F45;
    font-weight:700;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1080px){

    .feat-grid,
    .post-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .svc-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .steps{
        grid-template-columns:repeat(3,1fr);
    }

    .pricing-table-wrap{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .feat-grid,
    .post-grid,
    .svc-grid,
    .steps{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .stat-num{
        font-size:38px;
    }





    /* =========================
   SMART FEATURE PANEL FIX
========================= */

.smart-display{
    position:relative;
    overflow:hidden;
    min-height:650px !important;
}

.smart-panel{
    display:none;
    animation:fadeSmart .25s ease;
}

.smart-panel.active{
    display:block;
}

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

.smart-display h3{
    color:#ffffff !important;
    font-size:28px !important;
    font-weight:700 !important;
    line-height:1.2 !important;
    margin-bottom:18px !important;
}

.smart-display p{
    color:#d7e0f1 !important;
    font-size:16px !important;
    line-height:1.8 !important;
    margin-bottom:30px !important;
}

.smart-mock{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;
    padding:20px;
    margin-top:25px;
}

.smart-mock-row{
    display:flex !important;
    align-items:center !important;
    gap:14px !important;
    padding:14px 0 !important;
    border-bottom:1px solid rgba(255,255,255,0.08) !important;
}

.smart-mock-row:last-child{
    border-bottom:none !important;
}

.smart-mock-row .check{
    width:26px !important;
    height:26px !important;
    border-radius:50% !important;
    background:#1f7a3a !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    color:#fff !important;
    flex-shrink:0 !important;
}

.smart-row-label{
    color:#c9d5ea !important;
    font-size:14px !important;
    font-weight:600 !important;
}

.smart-row-value{
    margin-left:auto !important;
    color:#ffffff !important;
    font-size:14px !important;
    font-weight:800 !important;
}
}


/* ==============================
   2290 DUE DATES SECTION
============================== */

.due-dates-section{
    background:var(--paper);
}

.due-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.due-card{
    background:var(--canvas);
    border:1px solid var(--line);
    border-radius:22px;
    padding:32px;
}

.due-card h3{
    font-family:var(--display);
    font-size:24px;
    font-weight:700;
    margin:0 0 22px;
    color:var(--ink);
}

.due-row,
.penalty-line{
    display:flex;
    justify-content:space-between;
    gap:18px;
    padding:16px 0;
    border-bottom:1px solid var(--line);
    font-size:15px;
}

.due-row:last-child,
.penalty-line:last-of-type{
    border-bottom:0;
}

.due-row span,
.penalty-line span{
    color:var(--steel);
}

.due-row strong,
.penalty-line strong{
    color:var(--ink);
    font-weight:800;
    text-align:right;
}

.penalty-card{
    background:linear-gradient(135deg,var(--navy),var(--navy-deep));
    color:#fff;
}

.penalty-card h3,
.penalty-card strong{
    color:#fff;
}

.penalty-card span,
.penalty-card p{
    color:#C8D2E4;
}

.penalty-card p{
    font-size:14.5px;
    line-height:1.7;
    margin:22px 0 0;
}

@media(max-width:768px){
    .due-grid{
        grid-template-columns:1fr;
    }
}



/* FAQ size fix */
.faq-modern-section{
    padding:80px 0;
    background:#fff;
}

.faq-modern-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:56px;
    align-items:start;
}

.faq-modern-left .section-title{
    font-size:44px;
    line-height:1.15;
}

.faq-modern-left .section-sub{
    font-size:17px;
    line-height:1.6;
}

.faq-modern-item{
    background:#fff;
    border:1px solid #dfe5ef;
    border-radius:18px;
    margin-bottom:14px;
    overflow:hidden;
}

.faq-modern-question{
    width:100%;
    border:0;
    background:transparent;
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px 26px;
    text-align:left;
}

.faq-no{
    min-width:32px;
    font-size:13px;
    font-weight:700;
    color:#5a6271;
}

.faq-q-text{
    flex:1;
    font-size:17px !important;
    line-height:1.35;
    font-weight:700;
    color:#0e1116;
}

.faq-icon{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#f3f4f6;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:700;
}

.faq-modern-answer-inner{
    padding:0 26px 24px 76px;
    font-size:15px;
    line-height:1.7;
    color:#5a6271;
}

.faq-modern-item:has(.collapse.show){
    border-color:#1B3D7A;
    box-shadow:0 8px 24px rgba(14,17,22,.08);
}

@media(max-width:991px){
    .faq-modern-grid{
        grid-template-columns:1fr;
    }

    .faq-modern-left .section-title{
        font-size:36px;
    }
}

/* FAQ search box fix */
.faq-search-box{
    width:100%;
    max-width:390px;
    height:54px;
    border:1px solid #d8dee8;
    border-radius:14px;
    background:#fff;
    display:flex;
    align-items:center;
    gap:12px;
    padding:0 18px;
    margin:26px 0 24px;
}

.faq-search-box span{
    font-size:18px;
    color:#5a6271;
    line-height:1;
}

.faq-search-box input{
    width:100%;
    border:0 !important;
    outline:0 !important;
    box-shadow:none !important;
    background:transparent;
    font-size:15px;
    color:#0e1116;
    padding:0 !important;
    height:auto !important;
}

.faq-search-box input:focus{
    border:0 !important;
    outline:0 !important;
    box-shadow:none !important;
}



/* ===============================
   BLOG + FINAL CTA FIX
================================ */

.blog-modern-section{
    background:#fff;
}

.blog-modern-section .section-head{
    margin-bottom:42px;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.blog-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(14,17,22,.05);
}

.blog-img{
    height:210px;
    position:relative;
    display:flex;
    align-items:flex-end;
    padding:24px;
    overflow:hidden;
}

.blog-img.b1{
    background:linear-gradient(135deg,#142E5C,#1B3D7A);
}

.blog-img.b2{
    background:linear-gradient(135deg,#EE3F45,#D62B31);
}

.blog-img.b3{
    background:linear-gradient(135deg,#0E1116,#2A2E36);
}

.blog-img-overlay{
    position:absolute;
    inset:0;
    background-image:repeating-linear-gradient(45deg,rgba(255,255,255,.08) 0 2px,transparent 2px 12px);
}

.blog-img .t{
    position:relative;
    z-index:1;
    color:#fff;
    font-family:var(--display);
    font-size:28px;
    font-weight:800;
    line-height:1.1;
}

.blog-content{
    padding:24px;
}

.blog-meta{
    display:flex;
    gap:12px;
    font-family:var(--mono);
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:var(--steel);
    font-weight:700;
    margin-bottom:12px;
}

.blog-meta .cat{
    color:var(--red);
}

.blog-card h4{
    font-family:var(--display);
    font-size:20px;
    line-height:1.25;
    font-weight:800;
    margin:0 0 10px;
    color:var(--ink);
}

.blog-card p{
    font-size:15px;
    line-height:1.6;
    color:var(--steel);
    margin:0 0 18px;
}

.blog-card .more{
    color:var(--red);
    font-weight:800;
    font-size:14px;
}

/* Final CTA */
.cta-strip{
    background:linear-gradient(135deg,var(--navy-darker),var(--navy));
    color:#fff;
    padding:76px 0;
    position:relative;
    overflow:hidden;
}

.cta-strip .container{
    display:grid;
    grid-template-columns:1.3fr .8fr;
    gap:48px;
    align-items:center;
}

.cta-strip h2{
    font-family:var(--display);
    font-size:48px;
    line-height:1.1;
    font-weight:800;
    margin:0 0 18px;
    color:#fff;
}

.cta-strip h2 .ital{
    font-family:var(--serif);
    font-style:italic;
    font-weight:500;
    color:var(--red);
}

.cta-strip p{
    color:#C8D2E4;
    font-size:18px;
    line-height:1.7;
    max-width:640px;
    margin:0 0 28px;
}

.cta-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.cta-side{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.14);
    border-radius:22px;
    padding:30px;
}

.cta-side h4{
    font-family:var(--display);
    font-size:22px;
    font-weight:800;
    color:#fff;
    margin:0 0 18px;
}

.deadline-row{
    display:flex;
    justify-content:space-between;
    gap:18px;
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,.12);
}

.deadline-row:last-child{
    border-bottom:0;
}

.deadline-row .m{
    color:#C8D2E4;
}

.deadline-row .d{
    color:#fff;
    font-weight:800;
}

@media(max-width:991px){
    .blog-grid,
    .cta-strip .container{
        grid-template-columns:1fr;
    }

    .cta-strip h2{
        font-size:36px;
    }
}


/* ===============================
   MODERN FOOTER - COMPLETE
================================ */

.modern-footer{
    background:
        radial-gradient(700px 260px at 100% 100%, rgba(238,63,69,.20), transparent 60%),
        linear-gradient(135deg,#0E2348 0%, #142E5C 100%);
    color:#C8D2E4;
    padding:82px 0 28px;
    border-top:4px solid var(--red);
}

.modern-footer .footer-grid{
    display:grid;
    grid-template-columns:1.45fr 1fr 1.05fr 1.05fr 1.15fr;
    gap:54px;
    margin-bottom:58px;
}

.footer-brand-logo{
    display:flex;
    align-items:center;
    gap:14px;
    color:#fff;
    font-family:var(--display);
    font-size:28px;
    line-height:1.05;
    font-weight:900;
    letter-spacing:.02em;
    margin-bottom:24px;
}

.footer-brand-logo:hover{
    color:#fff;
}

.footer-truck-icon{
    width:64px;
    flex:0 0 64px;
}

.modern-footer .footer-brand p{
    color:#D4DCEC;
    font-size:16px;
    line-height:1.65;
    margin:0 0 24px;
    max-width:360px;
}

.footer-contact-list{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-contact-list li{
    display:flex;
    align-items:center;
    gap:12px;
    color:#E2E8F4;
    font-size:15px;
    margin-bottom:12px;
}

.footer-contact-list li span{
    color:var(--red);
    width:18px;
    text-align:center;
}

.modern-footer h5{
    color:#fff;
    font-family:var(--mono);
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.20em;
    margin:0 0 24px;
}

.modern-footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

.modern-footer li{
    margin-bottom:14px;
    color:#C8D2E4;
    font-size:15.5px;
}

.modern-footer a{
    color:#C8D2E4;
    text-decoration:none;
    transition:.2s ease;
}

.modern-footer a:hover{
    color:#fff;
}

.modern-footer .footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    padding-top:28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:22px;
    flex-wrap:wrap;
    color:#9BA8C1;
    font-size:14px;
}

.footer-creds{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.footer-cred{
    border:1px solid rgba(255,255,255,.18);
    background:rgba(255,255,255,.06);
    color:#E2E8F4;
    padding:8px 16px;
    border-radius:7px;
    font-family:var(--mono);
    font-size:11px;
    font-weight:800;
    letter-spacing:.12em;
}

.footer-social{
    display:flex;
    gap:10px;
}

.footer-social a{
    width:44px;
    height:44px;
    border-radius:10px;
    background:rgba(255,255,255,.07);
    color:#E2E8F4;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    font-size:16px;
}

.footer-social a:hover{
    background:var(--red);
    color:#fff;
}

@media(max-width:1100px){
    .modern-footer .footer-grid{
        grid-template-columns:1fr 1fr 1fr;
        gap:34px;
    }

    .footer-brand{
        grid-column:1 / -1;
    }
}

@media(max-width:768px){
    .modern-footer .footer-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:575px){
    .modern-footer .footer-grid{
        grid-template-columns:1fr;
    }

    .modern-footer .footer-bottom{
        align-items:flex-start;
        flex-direction:column;
    }
}


/* FINAL CTA BEFORE FOOTER */
.final-file-cta{
    background:
        radial-gradient(700px 360px at 0% 100%, rgba(238,63,69,.28), transparent 60%),
        linear-gradient(135deg,#142E5C 0%, #1B3D7A 100%);
    padding:90px 0;
    border-bottom:4px solid var(--red);
    color:#fff;
}

.final-cta-grid{
    display:grid;
    grid-template-columns:1.25fr .9fr;
    gap:70px;
    align-items:center;
}

.final-cta-left h2{
    font-family:var(--display);
    font-size:58px;
    line-height:1.08;
    font-weight:900;
    color:#fff;
    margin:0 0 26px;
    letter-spacing:-.03em;
}

.final-cta-left h2 span{
    font-family:var(--serif);
    font-style:italic;
    font-weight:500;
    color:var(--red);
}

.final-cta-left p{
    color:#D9E3F5;
    font-size:20px;
    line-height:1.55;
    margin:0 0 34px;
}

.final-cta-actions{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.final-btn-red,
.final-btn-outline{
    height:64px;
    padding:0 30px;
    border-radius:14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    font-weight:800;
    font-size:17px;
    text-decoration:none;
}

.final-btn-red{
    background:var(--red);
    color:#fff;
    box-shadow:0 20px 45px rgba(238,63,69,.28);
}

.final-btn-outline{
    border:1px solid rgba(255,255,255,.22);
    color:#fff;
    background:rgba(255,255,255,.03);
}

.final-cta-card{
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.12);
    border-radius:24px;
    padding:34px 36px;
}

.final-cta-card h3{
    color:#fff;
    font-family:var(--display);
    font-size:24px;
    font-weight:900;
    margin:0 0 24px;
}

.final-date-row{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:16px 0;
    border-bottom:1px solid rgba(255,255,255,.11);
    color:#C8D2E4;
    font-size:16px;
}

.final-date-row:last-child{
    border-bottom:0;
}

.final-date-row strong{
    color:#fff;
    font-family:var(--mono);
    font-weight:900;
    white-space:nowrap;
}

@media(max-width:991px){
    .final-cta-grid{
        grid-template-columns:1fr;
    }

    .final-cta-left h2{
        font-size:40px;
    }
}


.blog-view-all{
    text-align:center !important;
    margin-top:36px !important;
}




/* FIX OLD BLOG CTA OVERLAP */
#blog-section .content{
    margin-top:40px !important;
    position:relative !important;
    z-index:1 !important;
}

#blog-section .efile-btn{
    position:relative !important;
    bottom:auto !important;
    top:auto !important;
    transform:none !important;
}

/* FIX GAP BETWEEN CTA + BLOG */
.blog-modern-section{
    margin-top:0 !important;
    padding-top:90px !important;
    background:#f5f5f5 !important;
    clear:both !important;
}

/* REMOVE OVERFLOW ISSUE */
.cta-strip{
    margin-bottom:0 !important;
    padding-bottom:70px !important;
}

.content.text-center{
    margin:40px 0 60px !important;
}

.topbar .container{
    height:42px;
}

.prefile .container{
    padding:10px 24px;
}

.footer .logo-truck img{
    width:130px;
}



.footer .footer-brand .brand img {
    width: 140px;
    height: auto;
    display: block;
    object-fit: contain;
}




/* =====================================================
   LOGIN CARD
   ===================================================== */
.login-card .price-tag-navy {
    background: var(--navy);
    color: #fff;
    padding: 7px 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.login-card .price-tag-navy::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 99px;
    background: #7CD994;
    box-shadow: 0 0 0 3px rgba(124, 217, 148, .2);
}

.login-card .unit-lg {
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .14em;
    color: #fff;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 16px;
}

.login-form .field {
    margin-bottom: 0;
}

.login-form .field label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
    display: block;
}

.login-input-wrap {
    position: relative;
}

.login-input-ico {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--steel);
    pointer-events: none;
    display: flex;
    align-items: center;
}

.login-input-ico svg {
    width: 16px;
    height: 16px;
    display: block;
}

.login-form input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid var(--line-2);
    border-radius: 10px;
    background: var(--paper);
    font-family: var(--body);
    font-size: 14px;
    color: var(--ink);
    transition: border-color .15s;
}

.login-form input:focus {
    outline: 0;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(238, 63, 69, .12);
}

.hero-show-pass {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    padding: 0;
    color: var(--steel);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.hero-show-pass svg {
    width: 16px;
    height: 16px;
    display: block;
}

.login-helper-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.login-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ink);
    cursor: pointer;
    white-space: nowrap;
    margin: 0;
}

.login-checkbox input {
    width: 16px !important;
    height: 16px !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0;
}

.login-checkbox span {
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
}

.login-form input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    padding: 0 !important;
}

.login-forgot {
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    font-size: 12px;
    color: var(--steel);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.login-divider::before,
.login-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}

.hero-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-top-color: #fff;
    border-radius: 99px;
    animation: spin .7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.irs-pill{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#E6EBF5;
    border:1px solid #C7D2EC;
    border-radius:999px;
    padding:8px 18px;
    font-size:13px;
    color:#0E2348;
    font-weight:700;
    white-space:nowrap;
    line-height:1;
}

/* WHO WE SERVE - MOBILE FIX ONLY */
@media (max-width: 1080px) {
    .who-we-serve-section .serve-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px !important;
    }
}

@media (max-width: 768px) {
    .who-we-serve-section {
        padding: 64px 0 !important;
    }

    .who-we-serve-section .section-head {
        margin-bottom: 32px !important;
        padding: 0 16px !important;
    }

    .who-we-serve-section .serve-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        padding: 0 18px !important;
    }

    .who-we-serve-section .serve-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 34px 30px !important;
        border-radius: 18px !important;
    }
}

/* MOBILE MENU GAP FIX ONLY */
@media (max-width: 991px) {

    .main-nav .has-menu .mega {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        box-shadow: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        overflow: hidden !important;
        position: static !important;
        transform: none !important;
    }

    .main-nav .has-menu:hover .mega {
        display: none !important;
    }

    .main-nav .has-menu.open .mega {
        display: block !important;
        height: auto !important;
        max-height: none !important;
        margin: 10px 0 14px !important;
        padding: 16px 14px !important;
        border: 1px solid #edf0f4 !important;
        border-radius: 16px !important;
        background: #ffffff !important;
        opacity: 1 !important;
        visibility: visible !important;
        overflow: visible !important;
    }
}


@media (max-width:360px){
	.irs-pill {
	display:none;}
}



/* =====================================================
   MOBILE HEADER LOGO + IRS BADGE OVERLAP FIX
   Add this at END of CSS file
===================================================== */

@media (max-width: 767px) {

    .site-header .container {
        height: 78px !important;
        min-height: 78px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 8px !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
        flex-wrap: nowrap !important;
        overflow: hidden !important;
    }

    .brand {
        flex: 0 0 auto !important;
        min-width: 0 !important;
        max-width: 128px !important;
        overflow: visible !important;
        z-index: 2 !important;
    }

    .logo-truck {
        flex: 0 0 auto !important;
        min-width: 0 !important;
        overflow: visible !important;
    }

    .logo-truck img {
        width: 125px !important;
        max-width: 125px !important;
        height: auto !important;
    }

    .irs-pill {
        flex: 0 1 auto !important;
        min-width: 0 !important;
        max-width: 185px !important;
        padding: 8px 12px !important;
        gap: 8px !important;
        font-size: 12px !important;
        line-height: 1 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        position: static !important;
        transform: none !important;
        z-index: 1 !important;
    }

    .irs-pill .check {
        width: 22px !important;
        height: 22px !important;
        min-width: 22px !important;
    }

    .irs-pill .check::after {
        left: 7px !important;
        top: 4px !important;
        width: 6px !important;
        height: 10px !important;
    }

    .menu-toggle {
        flex: 0 0 38px !important;
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        z-index: 3 !important;
    }
}

/* Very small mobile: hide IRS badge to protect logo */
@media (max-width: 390px) {
    .irs-pill {
        display: none !important;
    }

    .brand {
        max-width: 150px !important;
    }

    .logo-truck img {
        width: 145px !important;
        max-width: 145px !important;
    }
}
