:root {
    --bg: #f5f7fb;
    --surface: #ffffff;
    --surface-soft: #f9fafb;
    --primary: #172446;
    --primary-2: #22386f;
    --text: #121826;
    --muted: #667085;
    --border: #e2e7ef;
    --border-strong: #cbd5e1;
    --accent: #80cc9f;
    --accent-dark: #11936b;
    --blue: #2563eb;
    --orange: #f97316;
    --red: #dc2626;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
    --radius: 8px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: var(--bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

main,
.site-header,
.hero {
    max-width: 100vw;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

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

h1,
h2,
h3 {
    color: var(--primary);
    line-height: 1.08;
    overflow-wrap: anywhere;
}

h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 850;
}

h2 {
    font-size: clamp(30px, 3.8vw, 48px);
    font-weight: 850;
}

h3 {
    font-size: 21px;
    font-weight: 800;
}

p {
    color: var(--muted);
}

.site-container {
    width: calc(100% - 40px);
    max-width: var(--container);
    margin: 0 auto;
}

.narrow {
    max-width: 830px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(226, 231, 239, 0.86);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
}

.site-nav {
    display: flex;
    min-height: 78px;
    align-items: center;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand img {
    display: block;
    height: 42px;
    width: auto;
}

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

.main-nav a {
    display: inline-flex;
    height: 42px;
    align-items: center;
    padding: 0 12px;
    border-radius: var(--radius);
    color: #344054;
    font-weight: 750;
    text-decoration: none;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--primary);
    background: #eef4ff;
}

.nav-cta,
.button-primary,
.button-secondary {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: var(--radius);
    font-weight: 850;
    text-decoration: none;
    text-align: center;
    white-space: normal;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.nav-cta,
.button-primary {
    border: 1px solid var(--accent);
    color: #fff;
    background: var(--accent);
    box-shadow: 0 10px 24px rgba(17, 147, 107, 0.16);
}

.nav-cta:hover,
.button-primary:hover {
    transform: translateY(-1px);
    background: #6fbf92;
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: #fff;
    background: rgba(255, 255, 255, 0.11);
}

.section .button-secondary,
.pricing-card .button-secondary {
    border-color: var(--border-strong);
    color: var(--primary);
    background: var(--surface);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
}

.hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background: var(--primary);
}

.hero-home {
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: 0.82;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(23, 36, 70, 0.98) 0%, rgba(23, 36, 70, 0.88) 44%, rgba(23, 36, 70, 0.42) 100%),
        linear-gradient(0deg, rgba(23, 36, 70, 0.40), rgba(23, 36, 70, 0.10));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 116px 0 94px;
}

.hero-content h1 {
    max-width: 760px;
    margin-bottom: 22px;
    color: #fff;
}

.hero-lead {
    max-width: 660px;
    margin-bottom: 30px;
    color: #dbe4f2;
    font-size: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-strip span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: #eef4ff;
    background: rgba(255, 255, 255, 0.10);
    font-size: 14px;
    font-weight: 750;
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero .eyebrow,
.section-dark .eyebrow {
    color: #9ce0ba;
}

.section {
    padding: 82px 0;
}

.section-tight {
    padding: 28px 0;
}

.section-muted {
    background: #eef2f7;
}

.section-dark {
    color: #fff;
    background: var(--primary);
}

.section-dark h2,
.section-dark p {
    color: #fff;
}

.page-hero {
    padding: 78px 0 70px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, #fff 0%, #f4f7fb 100%);
}

.page-hero h1 {
    margin-bottom: 18px;
}

.page-hero p:not(.eyebrow) {
    font-size: 19px;
}

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

.metric-row div {
    min-height: 106px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.metric-row strong {
    display: block;
    color: var(--primary);
    font-size: 24px;
    line-height: 1.2;
}

.metric-row span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 650;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 50px;
    align-items: center;
}

.split-section p {
    font-size: 17px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: #344054;
    font-weight: 650;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #dcfae6;
}

.check-list li::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 10px;
    width: 7px;
    height: 4px;
    border-left: 2px solid #039855;
    border-bottom: 2px solid #039855;
    transform: rotate(-45deg);
}

.product-panel {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.product-bar {
    display: flex;
    gap: 8px;
    height: 48px;
    align-items: center;
    padding-left: 18px;
    border-bottom: 1px solid var(--border);
}

.product-bar span {
    width: 12px;
    height: 12px;
    border-radius: 999px;
}

.product-bar span:nth-child(1) { background: #ef4444; }
.product-bar span:nth-child(2) { background: #f59e0b; }
.product-bar span:nth-child(3) { background: #22c55e; }

.product-sidebar {
    position: absolute;
    left: 0;
    top: 48px;
    bottom: 0;
    width: 126px;
    background: var(--primary);
}

.product-screen {
    padding: 34px 34px 34px 160px;
}

.mini-header,
.mini-table div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.mini-header strong {
    color: var(--primary);
    font-size: 26px;
}

.mini-header span,
.mini-table span {
    color: var(--muted);
}

.mini-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.mini-cards div {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface-soft);
}

.mini-cards strong {
    display: block;
    color: var(--primary);
    font-size: 25px;
}

.mini-cards span {
    color: var(--muted);
    font-weight: 650;
}

.mini-chart {
    display: flex;
    height: 160px;
    align-items: flex-end;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #fff 0%, #eef4ff 100%);
}

.mini-chart span {
    width: 100%;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, var(--accent) 0%, #1fb6a4 100%);
}

.mini-table {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.mini-table div {
    padding: 11px 13px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.mini-table b {
    color: var(--accent-dark);
}

.impression-frame {
    position: relative;
    margin: 0;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
    box-shadow: var(--shadow);
}

.impression-frame::before {
    content: "";
    position: absolute;
    inset: -16px;
    z-index: -1;
    border-radius: 24px;
    background:
        radial-gradient(circle at 20% 15%, rgba(128, 204, 159, .26), transparent 32%),
        radial-gradient(circle at 88% 30%, rgba(37, 99, 235, .16), transparent 34%);
}

.impression-frame img {
    display: block;
    width: 100%;
    border-radius: 10px;
}

.impression-frame figcaption {
    padding: 12px 8px 3px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.impression-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.visual-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.visual-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: left top;
    border-bottom: 1px solid var(--border);
    background: #eef2f7;
}

.visual-card div {
    padding: 22px;
}

.visual-card h3 {
    margin-bottom: 8px;
}

.visual-card p {
    margin-bottom: 0;
}

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

.section-heading.align-left {
    margin-left: 0;
    text-align: left;
}

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

.feature-grid.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
    min-height: 228px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.06);
}

.feature-card img {
    width: 38px;
    height: 38px;
    margin-bottom: 20px;
    padding: 8px;
    border-radius: var(--radius);
    background: #eef4ff;
}

.feature-card h3 {
    margin-bottom: 10px;
}

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

.advantage-grid article,
.feature-stack div,
.seo-panel {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.06);
}

.advantage-grid article {
    min-height: 220px;
    padding: 24px;
}

.advantage-grid span {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: var(--radius);
    color: #fff;
    background: var(--primary);
    font-weight: 900;
}

.advantage-grid p {
    margin-bottom: 0;
}

.feature-stack {
    display: grid;
    gap: 12px;
}

.feature-stack div {
    display: grid;
    grid-template-columns: minmax(140px, 0.42fr) minmax(0, 1fr);
    gap: 16px;
    padding: 18px 20px;
}

.feature-stack strong {
    color: var(--primary);
    font-size: 18px;
}

.feature-stack span {
    color: var(--muted);
    font-weight: 650;
}

.seo-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 30px;
    align-items: center;
    padding: 32px;
}

.seo-panel h2 {
    font-size: clamp(28px, 3vw, 40px);
}

.keyword-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.keyword-pill-row span {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 0 13px;
    border: 1px solid #b7e7cc;
    border-radius: 999px;
    color: var(--accent-dark);
    background: #ecfdf3;
    font-weight: 800;
}

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

.workflow-grid div {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
}

.workflow-grid span {
    color: var(--orange);
    font-weight: 900;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta-band div {
    max-width: 760px;
}

.feature-detail-grid {
    display: grid;
    gap: 18px;
}

.detail-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
    gap: 28px;
    align-items: center;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.detail-card img {
    width: 100%;
    max-height: 340px;
    border: 1px solid var(--border);
    border-radius: 10px;
    object-fit: cover;
    object-position: left top;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.pricing-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 18px;
}

.pricing-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.pricing-card.is-featured {
    border-color: #b7e7cc;
}

.pricing-card h2 {
    margin-bottom: 6px;
}

.price-note {
    margin-bottom: 24px;
    color: var(--muted);
    font-weight: 750;
}

.pricing-card .check-list {
    margin-bottom: 28px;
}

.pricing-card > .button-primary,
.pricing-card > .button-secondary {
    width: fit-content;
    margin-top: 6px;
}

.faq-grid,
.form-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    gap: 24px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 12px;
}

details {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
}

summary {
    cursor: pointer;
    padding: 18px 20px;
    color: var(--primary);
    font-weight: 850;
}

details p {
    padding: 0 20px 18px;
}

.value-list {
    display: grid;
    gap: 12px;
}

.value-list div,
.contact-card,
.demo-benefits,
.text-band,
.lead-form {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.value-list strong {
    display: block;
    color: var(--primary);
    font-size: 22px;
}

.value-list span {
    color: var(--muted);
}

.text-band {
    text-align: center;
}

.text-band p {
    max-width: 760px;
    margin: 0 auto 22px;
}

.contact-card {
    display: grid;
    gap: 10px;
}

.company-facts {
    display: grid;
    gap: 8px;
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.company-facts span {
    display: grid;
    gap: 2px;
    color: var(--muted);
    font-weight: 650;
}

.company-facts strong {
    color: var(--primary);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0;
}

.company-facts a {
    color: var(--primary);
}

.company-facts-card {
    margin: 0;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.trust-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
    gap: 28px;
    align-items: start;
}

.contact-card a,
.contact-card span,
.site-footer a,
.site-footer span {
    color: #dbe4f2;
    text-decoration: none;
}

.contact-card a,
.contact-card span {
    color: var(--primary);
    font-weight: 750;
}

.contact-card .company-facts span {
    color: var(--muted);
    font-weight: 650;
}

.lead-form {
    display: grid;
    gap: 18px;
}

.lead-form h2 {
    margin-bottom: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.lead-form label {
    display: grid;
    gap: 7px;
    color: #344054;
    font-weight: 800;
}

.lead-form input,
.lead-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    color: var(--text);
    background: #fff;
    font: inherit;
}

.lead-form textarea {
    resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
    outline: 0;
    border-color: #9db7f6;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.form-alert {
    padding: 12px 14px;
    border-radius: var(--radius);
    font-weight: 750;
}

.form-alert.is-success {
    color: #047857;
    background: #ecfdf3;
}

.form-alert.is-error {
    color: #b42318;
    background: #fff1f3;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px !important;
    height: 1px !important;
    opacity: 0;
}

.site-footer {
    padding: 54px 0 24px;
    background: var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(150px, 1fr));
    gap: 34px;
}

.footer-brand img {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 390px;
    margin-top: 16px;
    color: #dbe4f2;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 16px;
}

.site-footer a,
.site-footer span {
    display: block;
    margin-bottom: 9px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom span {
    color: #cbd5e1;
    font-size: 14px;
}

@media (max-width: 1100px) {
    .site-header {
        overflow: visible;
    }

    .site-nav {
        position: relative;
        flex-wrap: nowrap;
        gap: 14px;
        padding-right: 70px;
    }

    .nav-toggle {
        display: flex !important;
        position: fixed;
        top: 14px;
        right: 14px;
        left: auto;
        z-index: 200;
        flex: 0 0 46px;
        width: 46px;
        height: 46px;
        margin-left: 0;
        opacity: 1;
        visibility: visible;
        box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
        transform: none;
    }

    .main-nav {
        display: none;
        position: fixed;
        top: 74px;
        right: 14px;
        left: 14px;
        z-index: 80;
        width: auto;
        max-width: 520px;
        margin: 0 auto;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 10px;
        border: 1px solid var(--border);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        min-height: 46px;
        height: auto;
        justify-content: flex-start;
        padding: 0 14px;
        font-size: 15px;
    }

    .nav-cta {
        display: none;
    }

    .page-hero h1 {
        font-size: clamp(38px, 5.2vw, 52px);
    }

    .hero {
        min-height: 700px;
    }

    .hero-overlay {
        background: rgba(23, 36, 70, 0.88);
    }

    .metric-row,
    .feature-grid,
    .feature-grid.compact,
    .advantage-grid,
    .impression-grid,
    .workflow-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split-section,
    .seo-panel,
    .trust-panel,
    .pricing-layout,
    .faq-grid,
    .form-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
    }

    .site-container,
    .site-container.narrow {
        width: calc(100vw - 28px);
        max-width: calc(100vw - 28px);
        min-width: 0;
    }

    .site-header .site-container {
        width: 100vw !important;
        max-width: 100vw !important;
        padding-right: 14px;
        padding-left: 14px;
    }

    .site-nav {
        position: relative;
        min-height: 70px;
        gap: 12px;
        padding-right: 62px;
    }

    .brand img {
        height: 34px;
        max-width: 250px;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex !important;
        flex: 0 0 44px;
        position: fixed;
        top: 13px;
        right: 14px;
        left: auto;
        z-index: 200;
        width: 44px;
        height: 44px;
        margin-left: 0;
        transform: none;
    }

    .main-nav {
        top: 68px;
        right: 14px;
        left: 14px;
        max-width: none;
        max-height: calc(100vh - 82px);
        overflow-y: auto;
    }

    .hero {
        min-height: auto;
    }

    .hero-bg {
        opacity: 0.26;
        object-position: 68% center;
    }

    .hero-overlay {
        background: rgba(23, 36, 70, 0.94);
    }

    .hero-content {
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 58px 24px 56px;
    }

    .hero-content,
    .hero-content > *,
    .hero-actions,
    .trust-strip {
        min-width: 0;
    }

    h1,
    h2,
    h3,
    p,
    li,
    span {
        overflow-wrap: anywhere;
    }

    .hero-content h1 {
        width: 100%;
        max-width: min(340px, calc(100vw - 48px));
        margin-bottom: 18px;
        font-size: 30px;
        line-height: 1.15;
        overflow-wrap: break-word;
    }

    .hero-lead {
        width: 100%;
        max-width: min(340px, calc(100vw - 48px));
        margin-bottom: 24px;
        font-size: 15.5px;
        line-height: 1.5;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        max-width: min(340px, calc(100vw - 48px));
        margin-bottom: 0;
    }

    .hero-actions .button-primary,
    .hero-actions .button-secondary {
        width: 100%;
        min-height: 50px;
        min-width: 0;
    }

    .trust-strip {
        display: none;
    }

    .section {
        padding: 58px 0;
    }

    .page-hero {
        padding: 54px 0 48px;
    }

    .page-hero h1 {
        font-size: 34px;
        line-height: 1.12;
    }

    .page-hero p:not(.eyebrow) {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.5;
    }

    .pricing-layout.site-container {
        width: calc(100% - 28px);
        max-width: calc(100vw - 28px);
    }

    .pricing-layout,
    .pricing-card,
    .metric-row,
    .feature-card,
    .metric-row div {
        min-width: 0;
    }

    .pricing-card {
        width: auto;
        padding: 24px 20px;
    }

    .pricing-card .check-list li,
    .metric-row span,
    .feature-card p,
    .feature-card span {
        overflow-wrap: anywhere;
    }

    .pricing-card > .button-primary,
    .pricing-card > .button-secondary {
        max-width: 100%;
    }

    .metric-row,
    .feature-grid,
    .feature-grid.compact,
    .advantage-grid,
    .impression-grid,
    .workflow-grid,
    .mini-cards,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .product-panel {
        min-height: auto;
    }

    .product-sidebar {
        display: none;
    }

    .product-screen {
        padding: 22px;
    }

    .detail-card {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .cta-band,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .feature-stack div,
    .seo-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    body .site-header {
        overflow: visible !important;
    }

    body .site-nav {
        position: relative !important;
        min-height: 72px !important;
        padding-right: 0 !important;
    }

    body .nav-toggle {
        display: flex !important;
        position: static !important;
        z-index: 9999 !important;
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        min-height: 46px !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 5px !important;
        margin: 0 0 0 auto !important;
        padding: 0 !important;
        border: 1px solid #d7deea !important;
        border-radius: 14px !important;
        background: #fff !important;
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14) !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    body .nav-toggle span {
        display: block !important;
        width: 20px !important;
        height: 2px !important;
        border-radius: 999px !important;
        background: var(--primary) !important;
    }

    body .nav-cta {
        display: none !important;
    }

    body .main-nav {
        display: none !important;
        position: absolute !important;
        top: calc(100% + 8px) !important;
        right: 0 !important;
        left: 0 !important;
        z-index: 9990 !important;
        width: auto !important;
        max-width: none !important;
        max-height: calc(100vh - 94px) !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 6px !important;
        margin: 0 auto !important;
        padding: 10px !important;
        overflow-y: auto !important;
        border: 1px solid var(--border) !important;
        border-radius: 16px !important;
        background: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16) !important;
    }

    body .main-nav.is-open {
        display: flex !important;
    }

    body .main-nav a {
        width: 100% !important;
        min-height: 46px !important;
        justify-content: flex-start !important;
        padding: 0 14px !important;
        border-radius: 12px !important;
        font-size: 15px !important;
    }
}

@media (max-width: 720px) {
    body .site-header .site-container {
        width: calc(100vw - 28px) !important;
        max-width: calc(100vw - 28px) !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}
