:root {
    --bg: #ffffff;
    --bg-soft: #f6f8fb;
    --bg-muted: #eef2f7;
    --text: #0b1220;
    --muted: #5f6b7a;
    --line: #dfe5ee;
    --primary: #155eef;
    --primary-dark: #0f3f9e;
    --accent: #0f766e;
    --success: #15803d;
    --warning: #b45309;
    --card: #ffffff;
    --shadow-sm: 0 4px 14px rgba(15, 23, 42, .06);
    --shadow: 0 18px 40px rgba(15, 23, 42, .10);
    --radius: 18px;
    --radius-sm: 12px;
    --container: 1180px;
    --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip-link:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    background: #fff;
    color: var(--text);
    padding: 10px 14px;
    border-radius: 8px;
    z-index: 100;
}
.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}
.section { padding: 88px 0; }
.section-soft { background: var(--bg-soft); }
.section-header {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .01em;
}
h1, h2, h3, h4 { line-height: 1.1; margin: 0 0 16px; letter-spacing: -.03em; }
h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { font-size: clamp(30px, 4vw, 46px); }
h3 { font-size: 22px; }
p { margin: 0 0 18px; color: var(--muted); }
.lead { font-size: 19px; color: #3b4654; }
.text-center { text-align: center; }
.muted { color: var(--muted); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(223, 229, 238, .9);
    backdrop-filter: blur(14px);
}
.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 28px;
}
.brand img { width: 184px; height: auto; }
.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}
.site-nav a {
    color: #334155;
    font-weight: 700;
    font-size: 14px;
    transition: color .2s ease;
}
.site-nav a:hover,
.site-nav a.active { color: var(--primary); }
.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 24px rgba(21, 94, 239, .18);
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary {
    background: #fff;
    color: var(--text);
    border-color: var(--line);
}
.btn-secondary:hover { box-shadow: var(--shadow-sm); }
.btn-dark {
    background: #0b1220;
    color: #fff;
}
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    margin: 4px auto;
    border-radius: 99px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0 70px;
    background:
        radial-gradient(circle at 85% 12%, rgba(21, 94, 239, .12), transparent 31%),
        linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 56px;
    align-items: center;
}
.hero-copy { max-width: 640px; }
.hero-copy h1 span { color: var(--primary); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 18px; }
.variant-pills { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0 10px; }
.pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: #334155;
    font-weight: 800;
    font-size: 14px;
}
.pill.primary { color: #0f3f9e; border-color: #bfd2ff; background: #f4f7ff; }
.hero-note {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}
.trust-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
}
.trust-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
    box-shadow: var(--shadow-sm);
}
.trust-card strong { display: block; font-size: 18px; }
.trust-card span { color: var(--muted); font-size: 13px; }
.hero-media {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: #e8edf4;
}
.hero-media img { width: 100%; height: 540px; object-fit: cover; }
.floating-panel {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(223,229,238,.8);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}
.metric-line { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.metric-line strong { color: var(--text); }
.metric-line span { color: var(--success); font-weight: 800; }
.progress { height: 8px; background: var(--bg-muted); border-radius: 99px; overflow: hidden; margin-top: 10px; }
.progress i { display: block; height: 100%; width: 76%; background: var(--primary); }

.logo-strip {
    border-block: 1px solid var(--line);
    background: #fff;
}
.logo-strip .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 30px;
    padding: 20px 0;
    color: #475569;
    font-size: 14px;
    font-weight: 700;
}

.product-showcase {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 44px;
    align-items: center;
}
.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: #334155; }
.check-list li::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex: 0 0 20px;
    margin-top: 2px;
    background: var(--success);
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.ui-stack { display: grid; gap: 18px; }
.mock-window {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.mock-header {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    border-bottom: 1px solid var(--line);
    background: #fbfcfe;
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: #cbd5e1; }
.mock-body { padding: 18px; }
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}
.stat-card {
    background: #0b1220;
    color: #fff;
    border-radius: 14px;
    padding: 14px;
}
.stat-card small { display: block; color: #a8b3c3; }
.stat-card strong { font-size: 19px; }
.chart {
    height: 180px;
    display: flex;
    align-items: end;
    gap: 12px;
    padding: 16px;
    border-radius: 14px;
    background: var(--bg-soft);
}
.chart span { flex: 1; background: #c7d2fe; border-radius: 8px 8px 0 0; min-height: 24px; }
.chart span:nth-child(2n) { background: #93c5fd; }
.billing-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.billing-table th,
.billing-table td { padding: 12px 8px; text-align: left; border-bottom: 1px solid var(--line); }
.billing-table th { color: #64748b; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.billing-table tfoot td { font-weight: 900; color: var(--text); }
.mock-actions { display: flex; gap: 10px; justify-content: flex-end; padding-top: 14px; }
.small-btn { border: 1px solid var(--line); border-radius: 10px; padding: 9px 12px; font-size: 13px; font-weight: 800; }
.small-btn.primary { background: var(--primary); color: #fff; border-color: var(--primary); }

.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card, .industry-card, .price-card, .variant-card, .plain-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}
.feature-card:hover, .industry-card:hover, .variant-card:hover, .price-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.feature-card, .industry-card, .variant-card, .price-card { transition: transform .2s ease, box-shadow .2s ease; }
.icon-box {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: #eef4ff;
    color: var(--primary);
    display: grid;
    place-items: center;
    font-weight: 900;
    margin-bottom: 18px;
}
.icon-box svg { width: 24px; height: 24px; }
.feature-card p, .industry-card p { font-size: 15px; }
.industry-grid { grid-template-columns: repeat(3, 1fr); }
.industry-card .link { color: var(--primary); font-weight: 900; font-size: 14px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag { padding: 7px 10px; background: var(--bg-soft); border-radius: 99px; color: #475569; font-size: 13px; font-weight: 700; }

.variants-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.variant-card.recommended { border-color: #bcd0ff; background: linear-gradient(180deg, #ffffff 0%, #f6f8ff 100%); }
.variant-top { display: flex; align-items: start; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.badge { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: #ecfdf5; color: #047857; font-weight: 900; font-size: 12px; }
.variant-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.variant-list li { color: #334155; font-size: 14px; padding-left: 20px; position: relative; }
.variant-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }
.variant-card.basic .variant-list li::before { background: var(--warning); }
.note-box {
    padding: 16px 18px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 14px;
    color: #7c2d12;
    font-size: 14px;
    margin-top: 18px;
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.compare-table th,
.compare-table td { padding: 18px 20px; border-bottom: 1px solid var(--line); text-align: left; }
.compare-table th { background: var(--bg-soft); color: #334155; }
.compare-table tr:last-child td { border-bottom: 0; }
.yes { color: var(--success); font-weight: 900; }
.limited { color: var(--warning); font-weight: 900; }

.cta-band {
    background: #0b1220;
    color: #fff;
    border-radius: 28px;
    padding: 42px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    box-shadow: var(--shadow);
}
.cta-band p { color: #cbd5e1; margin: 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-band .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.25); }

.form-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 32px;
    align-items: start;
}
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
label { font-weight: 800; color: #334155; font-size: 14px; }
input, select, textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--text);
    background: #fff;
    outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(21, 94, 239, .10); }
.alert { padding: 14px 16px; border-radius: 12px; margin-bottom: 18px; font-weight: 700; }
.alert.success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.alert.error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

.page-hero { padding: 74px 0 50px; background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%); }
.page-hero .container { max-width: 920px; }
.breadcrumb { color: var(--muted); font-size: 14px; font-weight: 700; margin-bottom: 18px; }
.breadcrumb a { color: var(--primary); }

.site-footer { background: #0b1220; color: #e2e8f0; padding: 58px 0 0; }
.site-footer p { color: #a8b3c3; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 28px; }
.footer-logo { width: 170px; margin-bottom: 18px; }
.site-footer h3 { font-size: 14px; color: #fff; letter-spacing: 0; margin-bottom: 14px; }
.site-footer a, .site-footer span { display: block; color: #a8b3c3; font-size: 14px; margin-bottom: 9px; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); margin-top: 36px; min-height: 62px; display: flex; justify-content: space-between; align-items: center; gap: 18px; color: #94a3b8; font-size: 13px; }

@media (max-width: 1024px) {
    .hero-grid, .product-showcase, .form-layout { grid-template-columns: 1fr; }
    .hero-media img { height: 460px; }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .header-actions { display: none; }
}
@media (max-width: 860px) {
    .nav-toggle { display: block; }
    .site-nav {
        position: absolute;
        top: 78px;
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: #fff;
        box-shadow: var(--shadow);
    }
    .site-nav.open { display: flex; }
    .site-nav a { padding: 12px; border-radius: 10px; }
    .site-nav a:hover, .site-nav a.active { background: var(--bg-soft); }
    .trust-row { grid-template-columns: repeat(2, 1fr); }
    .variants-grid { grid-template-columns: 1fr; }
    .variant-list { grid-template-columns: 1fr; }
    .cta-band { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .container { width: min(100% - 28px, var(--container)); }
    .section { padding: 62px 0; }
    .hero { padding: 58px 0; }
    .hero-media img { height: 360px; }
    .floating-panel { left: 14px; right: 14px; bottom: 14px; }
    .trust-row, .card-grid, .industry-grid, .dashboard-grid { grid-template-columns: 1fr; }
    .mock-actions, .cta-actions, .hero-actions { flex-direction: column; align-items: stretch; }
    .btn { width: 100%; }
    .compare-table { display: block; overflow-x: auto; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; padding: 18px 0; }
}

/* ------------------------------------------------------------------
   SEO components: FAQ accordion, city links, breadcrumb, footer extras
   ------------------------------------------------------------------ */

.container.narrow { width: min(820px, calc(100% - 40px)); }

.breadcrumb { color: var(--muted); font-size: 14px; font-weight: 700; margin-bottom: 18px; }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: #b6c0cf; margin: 0 2px; }
.breadcrumb [aria-current="page"] { color: var(--muted); }

.faq-list { display: grid; gap: 12px; }
.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 52px 18px 20px;
    font-weight: 800;
    color: var(--text);
    position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 50%;
    width: 9px;
    height: 9px;
    margin-top: -6px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
    transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq-item summary:focus-visible { outline: 3px solid rgba(21, 94, 239, .35); outline-offset: -3px; }
.faq-item:hover { border-color: #c9d6ee; }
.faq-answer { padding: 0 20px 18px; }
.faq-answer p { margin: 0; color: #475569; font-size: 15px; }

.city-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.city-links a {
    padding: 10px 15px;
    border: 1px solid var(--line);
    border-radius: 99px;
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    transition: border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.city-links a:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow-sm); }

.tag-list-center { justify-content: center; }
.small-note { font-size: 14px; margin-top: 12px; }

.numbered-list { list-style: none; counter-reset: step; padding: 0; margin: 30px 0 0; display: grid; gap: 26px; }
.numbered-list li { counter-increment: step; padding-left: 56px; position: relative; }
.numbered-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 2px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    color: var(--primary);
    font-weight: 900;
    font-size: 15px;
}
.numbered-list h3 { margin: 0 0 6px; font-size: 18px; }
.numbered-list p { margin: 0; color: #475569; }

.link { color: var(--primary); font-weight: 900; font-size: 14px; }
.link:hover { text-decoration: underline; }

.footer-legal { font-size: 13px; color: #7e8b9c; margin-top: 12px; }
.site-footer address { font-style: normal; }
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    align-items: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,.10);
    font-size: 13px;
    color: #7e8b9c;
}
.footer-links a { display: inline; color: #a8b3c3; margin: 0; }
.footer-links a:hover { color: #fff; }
.footer-meta { display: flex; gap: 18px; }
.footer-meta a { display: inline; margin: 0; }

@media (max-width: 640px) {
    .container.narrow { width: min(100% - 28px, 820px); }
    .city-links { justify-content: flex-start; }
    .footer-meta { gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

.scan-strip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    margin-bottom: 14px;
    border: 1px dashed #bfd2ff;
    border-radius: var(--radius-sm);
    background: #f4f7ff;
    color: #0f3f9e;
    font-weight: 800;
    font-size: 14px;
}
.scan-strip svg { width: 22px; height: 22px; flex: none; }
.billing-table .discount-row td { color: var(--success); font-weight: 800; }
.sub-heading { font-size: 15px; margin: 26px 0 4px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.region-group { margin-bottom: 34px; }
.region-group h3 { font-size: 17px; margin: 0 0 14px; }

.nap-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 28px;
    box-shadow: var(--shadow-sm);
}
.nap-card address { font-style: normal; color: #475569; margin: 12px 0; line-height: 1.8; }
.nap-name { margin: 0; }
