:root {
    --blue-950: #062a55;
    --blue-900: #0b3b75;
    --blue-800: #124f96;
    --blue-700: #1764c0;
    --blue-600: #2678e8;
    --blue-100: #dcecff;
    --blue-50: #f1f7ff;
    --cyan-500: #16c7df;
    --cyan-100: #dff9fc;
    --purple-600: #7754e8;
    --purple-100: #eee9ff;
    --green-600: #059669;
    --green-100: #dff8ee;
    --slate-950: #101d33;
    --slate-800: #27364d;
    --slate-600: #52627a;
    --slate-500: #6b7b91;
    --slate-200: #dce4ee;
    --slate-100: #edf2f7;
    --surface: #ffffff;
    --surface-soft: #f7faff;
    --shadow-sm: 0 10px 28px rgba(16, 45, 82, .08);
    --shadow-lg: 0 28px 70px rgba(15, 58, 112, .16);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 30px;
    --font-main: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--surface);
    color: var(--slate-600);
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img, svg {
    display: block;
    max-width: 100%;
}

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

p, h1, h2, h3 {
    margin-top: 0;
}

h1, h2, h3, strong {
    color: var(--slate-950);
}

button, a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid rgba(38, 120, 232, .36);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 2000;
    padding: 10px 16px;
    transform: translateY(-150%);
    border-radius: 10px;
    background: var(--slate-950);
    color: #fff;
    font-weight: 700;
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(100% - 48px, 1180px);
    margin-inline: auto;
}

.section {
    padding: 104px 0;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 54px;
    text-align: center;
}

.section-heading h2,
.workflow-copy h2,
.final-cta h2 {
    margin-bottom: 18px;
    color: var(--slate-950);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 850;
    letter-spacing: -.045em;
    line-height: 1.1;
}

.section-heading p,
.workflow-copy > p {
    margin-bottom: 0;
    font-size: 1.08rem;
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--blue-700);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 13px 25px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .98rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
    box-shadow: 0 12px 25px rgba(38, 120, 232, .24);
    color: #fff;
}

.btn-primary:hover {
    box-shadow: 0 16px 30px rgba(38, 120, 232, .32);
}

.btn-secondary {
    background: var(--cyan-500);
    box-shadow: 0 12px 24px rgba(22, 199, 223, .2);
    color: var(--blue-950);
}

.btn-soft {
    border-color: #c8daf0;
    background: rgba(255, 255, 255, .72);
    color: var(--blue-900);
}

.btn-outline {
    border-color: var(--blue-600);
    background: transparent;
    color: var(--blue-700);
}

.btn-outline:hover {
    background: var(--blue-700);
    color: #fff;
}

.btn-compact {
    min-height: 44px;
    padding: 10px 21px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(220, 228, 238, .8);
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
    color: var(--blue-800);
    font-size: 1.24rem;
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1;
}

.brand img {
    flex: 0 0 auto;
    object-fit: contain;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-link {
    color: var(--slate-600);
    font-size: .95rem;
    font-weight: 700;
}

.nav-link:hover {
    color: var(--blue-700);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 94px 0 110px;
    background:
        radial-gradient(circle at 10% 10%, rgba(22, 199, 223, .13), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(119, 84, 232, .13), transparent 31%),
        linear-gradient(145deg, #fff 5%, #f4f9ff 54%, #eef4ff 100%);
}

.hero::after {
    position: absolute;
    right: -220px;
    bottom: -310px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(38, 120, 232, .09);
    border-radius: 50%;
    box-shadow: 0 0 0 65px rgba(38, 120, 232, .025), 0 0 0 130px rgba(38, 120, 232, .02);
    content: "";
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(440px, .96fr);
    align-items: center;
    gap: clamp(52px, 7vw, 92px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: var(--blue-800);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.status-dot {
    width: 9px;
    height: 9px;
    border: 2px solid rgba(5, 150, 105, .22);
    border-radius: 50%;
    background: var(--green-600);
    box-shadow: 0 0 0 5px var(--green-100);
}

.hero h1 {
    max-width: 660px;
    margin-bottom: 25px;
    color: var(--slate-950);
    font-size: clamp(2.65rem, 5.6vw, 4.65rem);
    font-weight: 900;
    letter-spacing: -.065em;
    line-height: 1.02;
}

.accent {
    background: linear-gradient(105deg, var(--blue-700) 8%, var(--purple-600) 90%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hero-copy {
    max-width: 650px;
    margin-bottom: 0;
    color: var(--slate-600);
    font-size: clamp(1.06rem, 2vw, 1.2rem);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 33px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.hero-points li {
    position: relative;
    padding-left: 22px;
    color: var(--slate-500);
    font-size: .88rem;
    font-weight: 700;
}

.hero-points li::before {
    position: absolute;
    left: 0;
    color: var(--green-600);
    content: "✓";
    font-weight: 900;
}

.product-preview {
    position: relative;
    width: 100%;
    max-width: 510px;
    margin-left: auto;
    padding: 24px 8px 22px 22px;
}

.preview-glow {
    position: absolute;
    inset: 8% 3% 2% 8%;
    border-radius: 50%;
    background: rgba(38, 120, 232, .22);
    filter: blur(45px);
}

.preview-window {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(190, 207, 229, .75);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    transform: rotate(1.5deg);
}

.preview-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid var(--slate-100);
}

.preview-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-900);
    font-size: .82rem;
    font-weight: 850;
}

.preview-mark {
    width: 20px;
    height: 20px;
    border: 5px solid var(--blue-800);
    border-right-color: transparent;
    border-radius: 50%;
}

.preview-user {
    width: 27px;
    height: 27px;
    border: 6px solid var(--blue-100);
    border-radius: 50%;
    background: var(--blue-700);
}

.preview-body {
    padding: clamp(20px, 4vw, 30px);
    background: linear-gradient(180deg, #fbfdff, #f5f9fe);
}

.preview-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.preview-heading strong,
.preview-kicker {
    display: block;
}

.preview-heading strong {
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.preview-kicker {
    margin-bottom: 2px;
    color: var(--slate-500);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.preview-pill {
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--green-100);
    color: var(--green-600);
    font-size: .66rem;
    font-weight: 800;
}

.preview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 22px;
}

.preview-stat {
    padding: 16px;
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-sm);
    background: #fff;
}

.preview-stat span,
.preview-stat small,
.preview-stat strong {
    display: block;
}

.preview-stat span {
    color: var(--slate-500);
    font-size: .68rem;
}

.preview-stat strong {
    margin: 1px 0;
    font-size: 1.65rem;
    letter-spacing: -.04em;
}

.preview-stat small {
    color: var(--green-600);
    font-size: .62rem;
    font-weight: 700;
}

.preview-stat-blue {
    border-color: transparent;
    background: linear-gradient(145deg, var(--blue-800), var(--blue-600));
}

.preview-stat-blue span,
.preview-stat-blue small {
    color: rgba(255, 255, 255, .76);
}

.preview-stat-blue strong {
    color: #fff;
}

.invoice-card {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 12px;
    padding: 13px 14px;
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-sm);
    background: #fff;
}

.invoice-icon {
    display: grid;
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    place-items: center;
    border-radius: 10px;
    background: var(--green-100);
    color: var(--green-600);
    font-size: .8rem;
    font-weight: 900;
}

.invoice-copy {
    min-width: 0;
    flex: 1;
}

.invoice-copy strong,
.invoice-copy span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.invoice-copy strong {
    font-size: .72rem;
}

.invoice-copy span {
    color: var(--slate-500);
    font-size: .62rem;
}

.invoice-status {
    color: var(--green-600);
    font-size: .62rem;
    font-weight: 800;
}

.preview-chart {
    display: flex;
    height: 76px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    margin-top: 18px;
    padding: 8px 14px 0;
    border-bottom: 1px solid var(--slate-200);
    background: repeating-linear-gradient(to bottom, transparent 0 23px, rgba(220, 228, 238, .7) 24px);
}

.preview-chart span {
    width: 11%;
    height: var(--bar);
    border-radius: 5px 5px 0 0;
    background: linear-gradient(180deg, var(--cyan-500), var(--blue-600));
}

.preview-float {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(220, 228, 238, .9);
    border-radius: 13px;
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--shadow-sm);
    color: var(--slate-800);
    font-size: .72rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.preview-float span {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 8px;
    background: var(--green-100);
    color: var(--green-600);
}

.preview-float-top {
    top: 4px;
    right: -16px;
}

.preview-float-bottom {
    bottom: 0;
    left: 0;
}

.preview-float-bottom span {
    background: var(--purple-100);
    color: var(--purple-600);
}

.trust-strip {
    position: relative;
    z-index: 2;
    margin-top: -38px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.trust-grid > div {
    padding: 23px 27px;
}

.trust-grid > div + div {
    border-left: 1px solid var(--slate-200);
}

.trust-grid strong,
.trust-grid span {
    display: block;
}

.trust-grid strong {
    margin-bottom: 2px;
    font-size: .93rem;
}

.trust-grid span {
    color: var(--slate-500);
    font-size: .78rem;
}

.benefits {
    padding-top: 120px;
}

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

.benefit-card {
    padding: 34px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 8px 26px rgba(16, 45, 82, .04);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #c3d9f4;
    box-shadow: var(--shadow-sm);
}

.benefit-icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    place-items: center;
    border-radius: 16px;
    background: var(--blue-100);
    color: var(--blue-700);
}

.benefit-icon svg {
    width: 27px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.benefit-icon-purple {
    background: var(--purple-100);
    color: var(--purple-600);
}

.benefit-icon-green {
    background: var(--green-100);
    color: var(--green-600);
}

.benefit-card h3 {
    margin-bottom: 11px;
    font-size: 1.2rem;
    letter-spacing: -.025em;
}

.benefit-card p {
    margin-bottom: 0;
    font-size: .95rem;
}

.workflow {
    background: var(--surface-soft);
}

.workflow-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    align-items: center;
    gap: clamp(50px, 8vw, 110px);
}

.workflow-copy {
    max-width: 470px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: var(--blue-700);
    font-weight: 850;
}

.text-link span {
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.workflow-steps {
    position: relative;
    display: grid;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.workflow-steps::before {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 27px;
    width: 2px;
    background: var(--blue-100);
    content: "";
}

.workflow-steps li {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: start;
    gap: 20px;
    padding: 23px 24px 23px 0;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    background: #fff;
}

.workflow-steps li > span {
    z-index: 1;
    display: grid;
    width: 56px;
    height: 42px;
    place-items: center;
    border-radius: 0 12px 12px 0;
    background: var(--blue-700);
    color: #fff;
    font-size: .75rem;
    font-weight: 900;
}

.workflow-steps strong {
    font-size: 1rem;
}

.workflow-steps p {
    margin: 3px 0 0;
    font-size: .88rem;
}

.pricing {
    position: relative;
}

.pricing-container {
    width: min(100% - 40px, 1240px);
}

.pricing-heading {
    max-width: 760px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    align-items: stretch;
    gap: 22px;
}

.price-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 34px 28px 28px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 10px 30px rgba(16, 45, 82, .055);
}

.price-card.featured {
    border: 2px solid var(--purple-600);
    box-shadow: 0 20px 45px rgba(119, 84, 232, .15);
}

.badge-popular {
    position: absolute;
    top: 0;
    left: 50%;
    padding: 7px 16px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: var(--purple-600);
    color: #fff;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.price-card-head h3 {
    margin-bottom: 9px;
    font-size: 1.18rem;
    letter-spacing: -.025em;
}

.price-desc {
    min-height: 6.7em;
    margin-bottom: 0;
    color: var(--slate-500);
    font-size: .9rem;
    line-height: 1.58;
}

.price-amount {
    display: flex;
    min-width: 0;
    align-items: baseline;
    margin: 24px 0 25px;
    white-space: nowrap;
}

.price-number {
    color: var(--slate-950);
    font-size: clamp(2.35rem, 3.2vw, 2.9rem);
    font-weight: 900;
    letter-spacing: -.06em;
    line-height: 1;
}

.price-period {
    color: var(--slate-500);
    font-size: .95rem;
    font-weight: 750;
}

.price-consult {
    font-size: clamp(2rem, 3vw, 2.45rem);
}

.price-features {
    display: grid;
    gap: 13px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.price-features li {
    position: relative;
    padding-left: 25px;
    color: var(--slate-600);
    font-size: .86rem;
    line-height: 1.45;
}

.price-features li::before {
    position: absolute;
    left: 0;
    color: var(--green-600);
    content: "✓";
    font-weight: 900;
}

.price-features strong {
    color: var(--slate-800);
}

.price-cta {
    width: 100%;
    margin-top: auto;
    padding-inline: 16px;
    font-size: .88rem;
}

.pricing-empty {
    max-width: 700px;
    margin: 0 auto;
    padding: 45px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    background: var(--surface-soft);
    text-align: center;
}

.pricing-empty h3 {
    margin-bottom: 9px;
    font-size: 1.5rem;
}

.pricing-empty p {
    margin: 0 0 23px;
}

.final-cta {
    padding: 26px 0 84px;
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: clamp(38px, 6vw, 64px);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 90% 20%, rgba(22, 199, 223, .24), transparent 31%),
        linear-gradient(135deg, var(--blue-950), var(--blue-800));
    box-shadow: var(--shadow-lg);
}

.final-cta-inner > div {
    max-width: 680px;
}

.final-cta h2 {
    margin-bottom: 12px;
    color: #fff;
}

.final-cta p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .76);
}

.section-label-light {
    color: #79e5f2;
}

.btn-white {
    flex: 0 0 auto;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
    color: var(--blue-900);
}

.site-footer {
    padding: 34px 0;
    border-top: 1px solid var(--slate-200);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.footer-brand {
    font-size: 1rem;
}

.site-footer p {
    margin: 0;
    color: var(--slate-500);
    font-size: .82rem;
    text-align: center;
}

.site-footer > .container > a:last-child {
    color: var(--blue-700);
    font-size: .85rem;
    font-weight: 800;
}

.wa-float {
    position: fixed;
    right: max(20px, env(safe-area-inset-right));
    bottom: max(20px, env(safe-area-inset-bottom));
    z-index: 900;
    display: flex;
    min-height: 52px;
    align-items: center;
    gap: 9px;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 999px;
    background: #20c86a;
    box-shadow: 0 14px 35px rgba(5, 107, 53, .27);
    color: #fff;
    font-size: .86rem;
    font-weight: 850;
    transition: opacity .2s ease, transform .2s ease;
}

.wa-float svg {
    width: 22px;
    fill: currentColor;
}

.wa-float.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
}

@media (max-width: 1080px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, .82fr);
        gap: 45px;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 5.7vw, 4rem);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 780px;
        margin-inline: auto;
    }

    .price-desc {
        min-height: auto;
    }
}

@media (max-width: 900px) {
    .section {
        padding: 84px 0;
    }

    .hero {
        padding: 70px 0 100px;
    }

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

    .hero-content {
        max-width: 700px;
    }

    .product-preview {
        width: min(100%, 560px);
        margin: 0 auto;
    }

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

    .benefit-card:last-child {
        grid-column: 1 / -1;
    }

    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .workflow-copy {
        max-width: 650px;
    }

    .final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    html {
        scroll-padding-top: 74px;
    }

    .container,
    .pricing-container {
        width: min(100% - 36px, 1180px);
    }

    .section {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 38px;
        text-align: left;
    }

    .header-inner {
        min-height: 68px;
        gap: 14px;
    }

    .brand {
        gap: 8px;
        font-size: 1rem;
    }

    .brand img {
        width: 40px;
        height: 40px;
    }

    .nav-actions {
        gap: 12px;
    }

    .nav-link {
        display: none;
    }

    .btn-compact {
        min-height: 42px;
        padding: 9px 17px;
        font-size: .88rem;
    }

    .hero {
        padding: 58px 0 80px;
    }

    .hero-grid {
        gap: 46px;
    }

    .hero h1 {
        font-size: clamp(2.45rem, 12vw, 3.65rem);
    }

    .hero-copy {
        font-size: 1.04rem;
    }

    .trust-strip {
        margin-top: -30px;
    }

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

    .trust-grid > div {
        padding: 18px 22px;
    }

    .trust-grid > div + div {
        border-top: 1px solid var(--slate-200);
        border-left: 0;
    }

    .benefits {
        padding-top: 85px;
    }

    .benefits-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card:last-child {
        grid-column: auto;
    }

    .benefit-card {
        padding: 28px;
    }

    .price-card {
        padding: 34px 28px 28px;
    }

    .price-desc {
        min-height: 0;
    }

    .final-cta {
        padding: 8px 0 70px;
    }

    .final-cta-inner {
        width: min(100% - 24px, 1180px);
        padding: 36px 26px;
        border-radius: 24px;
    }

    .final-cta .btn {
        width: 100%;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .site-footer p {
        text-align: left;
    }
}

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

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-points {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .product-preview {
        padding: 14px 0 18px;
    }

    .preview-window {
        transform: none;
    }

    .preview-float {
        display: none;
    }

    .preview-body {
        padding: 20px 16px;
    }

    .preview-bar {
        padding: 15px 17px;
    }

    .preview-stat {
        padding: 13px;
    }

    .preview-stat strong {
        font-size: 1.35rem;
    }

    .invoice-status {
        display: none;
    }

    .workflow-steps li {
        grid-template-columns: 46px 1fr;
        gap: 14px;
        padding-right: 16px;
    }

    .workflow-steps li > span {
        width: 46px;
    }

    .pricing-empty {
        padding: 32px 22px;
    }

    .wa-float {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
