* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.hero-sec {
    background: var(--bg);
    background-image: url(../images/feture_hero_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: var(--space-64) 0;

}

.hero-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 92%);
    pointer-events: none;
}

.hero {

    width: 100%;
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 20px;
    /* align-items: center; */
    position: relative;
    padding: 0;
}

.hero::before {
    content: '';
    position: absolute;
    left: -120px;
    top: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 86, 255, .10) 0%, transparent 70%);
    pointer-events: none;
}

.hero-left {
    animation: fadeUp .7s ease both;
}

.hero-span {
    border-bottom: 2px splid blue;
}

.hero-left h1 {
    font-family: var(--heading-bold-font-family);
    font-size: clamp(2.5rem, 4.5vw, 2.9rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 22px;
}

.hero-left p {
    font-size: var(--p-size-18);
    line-height: 1.7;
    color: var(--text-primary);
    max-width: 600px;
    margin-bottom: 18px;
}

.hero-left .tagline {
    font-size: var(--p-size-16);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 36px;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 10px;
    font-family: inherit;
    font-size: var(--p-size-14);
    font-weight: 600;
    cursor: pointer;
    transition: transform .18s, box-shadow .18s, background .18s;
    text-decoration: none;
    letter-spacing: 5%;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    border: 2px solid var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--bg-dark);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--bg-dark);
    color: #fff;
    transform: translateY(-2px);
    border: 2px solid var(--bg-dark);
}

.btn svg {
    flex-shrink: 0;
}

.hero-left .trust {
    font-size: 14px;
    color: var(--text-primary);
}

.hero-card {
    animation: fadeUp .7s .18s ease both;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(26, 86, 255, .08) 0%, transparent 70%);
    pointer-events: none;
}



@media (max-width: 1280px) {
    .hero-sec {
        padding: 35px 0;
    }

    .feature-item {
        padding: 12px 0;
    }
}

@media (max-width: 1160px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left {
        text-align: center;
    }

    .hero-left p {
        margin: 0 auto 18px;
    }

    .hero .btn-group {
        justify-content: center;
    }

    .hero-card {
        margin: 0 auto;
    }

}

@media (max-width:480px) {

    .hero-left p {
        font-size: var(--p-size-16);
    }

}




/* ── SECTION ── */
.gst-section {
    padding: var(--space-85) 0;
    background: var(--bg-main);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .25
    }
}


/* ── BODY GRID ── */
.body-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-32);
    align-items: start;
}

/* ── LEFT: PAIN LIST ── */
.pain-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-16);
    padding: var(--space-16) 0;
    border-bottom: 1px solid var(--color-border);
    transition: background .18s;
}

.pain-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.p-icon {
    flex-shrink: 0;
    font-size: 20px;
    transition: transform .22s var(--ease);
}

.pain-item:hover .p-icon {
    transform: scale(1.08) rotate(4deg);
}

.p-title {
    font-family: var(--heading-font);
    font-size: var(--p-size-18);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.p-desc {
    font-family: var(--para-font);
    font-size: var(--p-size-13);
    line-height: 1.7;
    color: var(--text-primary);
}

/* ── RIGHT: CHART PANEL ── */
.chart-panel {
    background: var(--bg-main);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-20);
    padding: var(--space-24);
    box-shadow: var(--shadow-panel);
    position: sticky;
    top: 24px;
}

.chart-heading {
    font-family: var(--heading-font);
    font-size: var(--p-size-15);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.chart-sub {
    font-family: var(--para-font);
    font-size: var(--p-size-12);
    color: var(--text-grey);
    line-height: 1.5;
    margin-bottom: var(--space-16);
}

.legend {
    display: flex;
    gap: var(--space-16);
    margin-bottom: var(--space-12);
    flex-wrap: wrap;
}

.leg {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--para-font);
    font-size: var(--p-size-12);
    color: var(--text-grey);
}

.leg-sq {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    flex-shrink: 0;
}

.chart-wrap {
    position: relative;
    width: 100%;
    height: 250px;
}

/* ── BOTTOM STRIP ── */
.bottom-strip {
    margin-top: var(--space-32);
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius-16);
    padding: var(--space-20) var(--space-24);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-20);
    flex-wrap: wrap;
}

.strip-text {
    font-family: var(--heading-font);
    font-size: var(--p-size-15);
    font-weight: 700;
    color: var(--accent-text);
    margin-bottom: 4px;
}

.strip-sub {
    font-family: var(--para-font);
    font-size: var(--p-size-13);
    color: var(--text-grey);
    line-height: 1.5;
}

.strip-btn {
    padding: 12px var(--space-24);
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-10);
    font-family: var(--heading-font);
    font-size: var(--p-size-14);
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(224, 123, 0, .28);
    transition: all .2s var(--ease);
}

.strip-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* ── REVEAL ── */

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-64);
    gap: var(--space-48);
}

.section-header-left {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    font-family: var(--para-font-family);
    font-size: var(--p-size-14);
    font-weight: var(--font-600);
    color: var(--primary-color);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-eyebrow .dash {
    width: 18px;
    height: 2px;
    background: var(--primary-color);
    border-radius: var(--radius-6);
    display: inline-block;
}

.section-title {
    font-family: var(--heading-bold-font-family);
    font-size: clamp(var(--h2-size-28), 5vw, var(--h2-size-40));
    font-weight: var(--font-700);
    color: var(--text-primary);
    line-height: var(--leading-tight);
}

.section-header span {
    color: var(--primary-color);
}

.section-desc {
    font-family: var(--para-font-family);
    font-size: var(--p-size-18);
    font-weight: var(--font-400);
    color: var(--text-primary);
    line-height: var(--leading-normal);
    margin-top: 2px;
}

.sec-rght {
    font-family: var(--para-font-family);
    font-size: var(--p-size-18);
    font-weight: var(--font-400);
    color: var(--text-primary);
    line-height: var(--leading-normal);
    margin-top: 2px;
    max-width: 450px;
    margin: auto 0;
}


.d1 {
    transition-delay: .1s;
}

.d2 {
    transition-delay: .2s;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */

/* Tablet: 768px – 1024px */
@media (max-width: 1024px) {
    .gst-section {
        padding: var(--space-64) 0;
    }

    .headline {
        font-size: 34px;
    }

    .body-grid {
        gap: var(--space-24);
    }

    .chart-panel {
        position: static;
    }
}



@media (max-width: 860px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        gap: var(--space-16);
    }

}


/* Mobile landscape + tablet portrait: stack grid */
@media (max-width: 768px) {
    .gst-section {
        padding: var(--space-48) 0;
    }

    .headline {
        font-size: 28px;
    }

    .sub-line {
        font-size: var(--p-size-15);
        margin-bottom: var(--space-32);
    }

    /* Stack columns */
    .body-grid {
        grid-template-columns: 1fr;
        gap: var(--space-32);
    }

    /* Chart comes first on mobile */
    .chart-panel {
        order: -1;
        position: static;
    }

    .chart-wrap {
        height: 220px;
    }

    .bottom-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .strip-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .headline {
        font-size: 24px;
    }

    .sub-line {
        font-size: var(--p-size-14);
    }

    .section-desc {
        font-size: var(--p-size-16);
    }

    .p-icon {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }

    .p-title {
        font-size: var(--p-size-14);
    }

    .p-desc {
        font-size: var(--p-size-12);
    }

    .chart-wrap {
        height: 200px;
    }

    .strip-text {
        font-size: var(--p-size-14);
    }

    .strip-sub {
        font-size: var(--p-size-12);
    }
}




.complete-business {
    padding: var(--space-85) 0;
    background: var(--bg-light);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 12px;
}

.card {
    background: #ffffff;
    border: 0.5px solid var(--color-border);
    border-radius: var(--radius-12);
    padding: var(--space-32);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--space-24);
}

.card-header svg {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}

.card-title {
    font-size: var(--p-size-18);
    font-weight: 600;
    color: var(--text-primary);
}

.card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-20);
}

.card-features li {
    font-size: var(--p-size-14);
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    gap: 9px;
    line-height: 1.5;
}

.card-features li svg {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    color: var(--success-color);
}

.why-choose {
    padding: var(--space-85) 0;
}

.section-tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}


.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: var(--space-32);
    border-bottom: 0.5px solid var(--color-border);
}

.feature-item.border-right {
    border-right: 0.5px solid var(--color-border);
    padding-left: 0;
}

.feature-item.no-border-bottom {
    border-bottom: none;
}

.feature-num {
    color: #E7F1F6;
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    flex-shrink: 0;
    min-width: 40px;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.feature-header svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.feature-title {
    font-size: var(--p-size-18);
    font-weight: 600;
    color: var(--text-primary);
}

.feature-desc {
    font-size: var(--p-size-16);
    color: var(--text-primary);
    line-height: 1.65;
}

@media (max-width: 540px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item.border-right {
        border-right: none;
        padding-left: 20px;
    }
}


/* ─── SECTION ─── */
.achieve-section {
    padding: var(--space-85) 0;
    background: var(--bg-main);
}

/* .container { max-width: 1100px; margin: 0 auto; } */

/* ─── HEADER ─── */
.section-top {
    text-align: center;
    margin-bottom: var(--space-48);
}


/* ── HEADLINE ── */
.headline {
    font-family: var(--heading-bold-font-family);
    font-size: var(--h2-size-40);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--space-12);
}

.headline span {
    color: var(--accent);
}

.sub-line {
    font-family: var(--para-font);
    font-size: var(--p-size-16);
    line-height: 1.75;
    color: var(--text-grey);
    margin-bottom: var(--space-48);
    max-width: 540px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-8);
    font-family: var(--para-font);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #0C447C;
    background: #E6F1FB;
    border: 1px solid var(--border-blue);
    border-radius: var(--radius-9999);
    padding: 5px var(--space-16);
    margin-bottom: var(--space-16);
}

.pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-color);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .25
    }
}


.headline span {
    color: var(--primary-color);
}

.top-sub {
    font-family: var(--para-font);
    font-size: var(--p-size-18);
    line-height: 1.75;
    color: var(--text-primary);
    max-width: 500px;
    margin: 0 auto;
}

/* ─── BLOCK ─── */
.achieve-block {
    display: grid;
    /* both columns EQUAL, no shrink/overflow */
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    /* border: 1px solid var(--color-border); */
    /* border-radius: var(--radius-20); */
    overflow: hidden;
    margin-bottom: var(--space-24);

}

.achieve-block:last-child {
    margin-bottom: 0;
}

/* flip: image comes first on desktop */
.achieve-block.flip .content-side {
    order: 2;
}

.achieve-block.flip .image-side {
    order: 1;
}

/* ─── CONTENT SIDE ─── */
.content-side {
    padding: var(--space-32, ) var(--space-32);
    background: var(--bg-main);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-24);
}

.block-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--para-font);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-radius: var(--radius-9999);
    padding: 4px 12px;
    width: fit-content;
}

.block-tag.blue {
    background: #E6F1FB;
    color: #0C447C;
    border: 1px solid var(--border-blue);
}

.block-tag.teal {
    background: #E1F5EE;
    color: #085041;
    border: 1px solid var(--border-teal);
}

.block-title {
    font-family: var(--heading-font-family);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.25;
    margin: var(--space-12) 0 var(--space-8);
}

.block-sub {
    font-family: var(--para-font);
    font-size: var(--p-size-18);
    color: var(--text-primary);
    line-height: 1.65;
    margin-bottom: var(--space-20);
}

.feat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feat-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-12);
}

.feat-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    margin-top: 1px;
}

.feat-icon.blue {
    background: #E6F1FB;
    color: var(--primary-color);
}

.feat-icon.teal {
    background: #E1F5EE;
    color: #0F6E56;
}

.feat-text {
    font-family: var(--para-font);
    font-size: var(--p-size-16);
    line-height: 1.65;
    color: var(--text-primary);
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-12);
    padding-top: var(--space-20);
    border-top: 1px solid var(--color-border);
}

.stat-pill {
    background: var(--bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-12);
    padding: var(--space-12) var(--space-16);
    text-align: center;
}

.stat-val {
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-val.blue {
    color: var(--primary-color);
}

.stat-val.teal {
    color: #0F6E56;
}

.stat-lbl {
    font-family: var(--para-font);
    font-size: 11px;
    color: var(--text-grey);
}

/* ─── IMAGE SIDE ─── */
.image-side {
    position: relative;
    /* stretches to match content height automatically */
    min-height: 400px;
    overflow: hidden;
}

.image-side img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* placeholder */
.img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-32);
}

.img-placeholder.blue-pl {
    background: #EAF2FC;
}

.img-placeholder.teal-pl {
    background: #E3F4EE;
}

/* ─── MOCK CARDS ─── */
/* prevent overflow on narrow screens */
.invoice-mock,
.dash-mock {
    width: 100%;
    max-width: 340px;
    background: var(--bg-main);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-16);
    padding: var(--space-20);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .1);
}

/* invoice */
.inv-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-16);
    padding-bottom: var(--space-12);
    border-bottom: 1px solid var(--color-border);
}

.inv-label {
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.inv-company {
    font-family: var(--para-font);
    font-size: 12px;
    color: var(--text-grey);
}

.inv-status {
    font-size: 11px;
    font-weight: 700;
    background: #ECF3EC;
    color: #1A691A;
    border-radius: var(--radius-9999);
    padding: 3px 10px;
    white-space: nowrap;
}

.inv-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--para-font);
    font-size: 13px;
    color: var(--text-grey);
    padding: 7px 0;
    border-bottom: 1px solid var(--color-border);
}

.inv-row:last-child {
    border-bottom: none;
    color: var(--text-primary);
    font-weight: 600;
}

.inv-row .val {
    font-weight: 600;
}

.inv-total {
    color: var(--primary-color) !important;
}

/* dashboard */
.dash-head {
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--sp-16);
}

.dash-bars {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
    margin-bottom: var(--space-16);
}

.bar-label {
    font-family: var(--para-font);
    font-size: 12px;
    color: var(--text-grey);
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
}

.bar-bg {
    height: 7px;
    background: var(--bg-light);
    border-radius: var(--radius-9999);
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: var(--radius-9999);
}

.bar-fill.teal {
    background: #1D9E75;
}

.bar-fill.blue {
    background: var(--primary-color);
}

.bar-fill.amber {
    background: #D97706;
}

.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.mini-stat {
    background: var(--bg-light);
    border-radius: var(--radius-8);
    padding: var(--space-8) var(--space-12);
    text-align: center;
}

.mini-val {
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 2px;
}

.mini-lbl {
    font-family: var(--para-font);
    font-size: 10px;
    color: var(--text-grey);
}

/* floating badge */
.img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    background: var(--bg-main);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-12);
    padding: 10px var(--space-16);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
}

.img-badge-icon {
    font-size: 20px;
    line-height: 1;
}

.img-badge-title {
    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.img-badge-sub {
    font-family: var(--para-font);
    font-size: 11px;
    color: var(--text-grey);
}

/* ─── REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s var(--ease), transform .55s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    margin-bottom: var(--space-60);
}

.d1 {
    transition-delay: .1s;
}

.d2 {
    transition-delay: .2s;
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */

/* Tablet 768–1024 */
@media (max-width: 1024px) {
    .headline {
        font-size: 34px;
    }

    .content-side {
        padding: var(--space-32) var(--space-24);
    }
}

/* Stack at 768 */
@media (max-width: 768px) {
    .achieve-section {
        padding: var(--space-48) var(--space-20);
    }

    .headline {
        font-size: 28px;
    }

    .top-sub {
        font-size: 14px;
    }

    /* single column — always content first then image */
    .achieve-block,
    .achieve-block.flip {
        grid-template-columns: 1fr;
    }

    .achieve-block.flip .content-side {
        order: 1;
    }

    .achieve-block.flip .image-side {
        order: 2;
    }

    .content-side {
        padding: var(--space-24) var(--space-20);
    }

    /* image area fixed height when stacked */
    .image-side {
        min-height: 300px;
    }

    .img-placeholder {
        padding: var(--space-24);
    }

    .invoice-mock,
    .dash-mock {
        max-width: 100%;
    }

    .stat-row {
        grid-template-columns: 1fr 1fr;
    }

    .stat-row .stat-pill:last-child {
        grid-column: 1 / -1;
    }
}

/* Mobile 480 */
@media (max-width: 480px) {
    .achieve-section {
        padding: var(--space-32) var(--space-16);
    }

    .section-top {
        margin-bottom: var(--space-32);
    }

    .headline {
        font-size: 24px;
    }

    .image-side {
        min-height: 260px;
    }

    .img-badge {
        bottom: 12px;
        left: 12px;
        padding: 8px 12px;
    }

    .img-badge-title {
        font-size: 12px;
    }

    .block-title {
        font-size: 18px;
    }

    /* inv mock tighter */
    .invoice-mock,
    .dash-mock {
        padding: var(--space-16);
    }

    .inv-row {
        font-size: 12px;
    }

    .stat-row {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }

    .stat-val {
        font-size: 17px;
    }
}

/* Very small 360 */
@media (max-width: 360px) {
    .headline {
        font-size: 21px;
    }

    .stat-row {
        grid-template-columns: 1fr;
    }

    .stat-row .stat-pill:last-child {
        grid-column: auto;
    }

    .dash-stats {
        grid-template-columns: 1fr 1fr;
    }

    .dash-stats .mini-stat:last-child {
        grid-column: 1 / -1;
    }
}