:root {
    --page: #f5f8fc;
    --surface: #ffffff;
    --ink: #062d65;
    --copy: #243d52;
    --muted: #63788a;
    --line: #d9e5ed;
    --blue: #073b82;
    --blue-hover: #052f6b;
    --cyan: #00aebe;
    --cyan-hover: #0099a8;
    --lime: #92c900;
    --soft: #e9f6f8;
    --dark: #052857;
    --white: #ffffff;
    --danger: #9d2634;
    --success: #226b42;
    --shadow: 0 18px 44px rgba(5, 45, 87, .12);
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 24px;
    --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--page);
    color: var(--copy);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--container), calc(100% - 52px)); margin-inline: auto; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; padding: .75rem 1rem; background: var(--white); color: var(--dark); border-radius: 8px; }
.skip-link:focus { top: 1rem; }

.topbar { background: var(--dark); color: var(--white); font-size: .8125rem; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .98); border-bottom: 1px solid var(--line); }
.site-header__inner { min-height: 82px; display: flex; align-items: center; gap: 1.5rem; }
.brand { display: block; flex: 0 0 auto; width: 236px; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: 1.2rem; margin-left: auto; }
.main-nav a { position: relative; color: var(--copy); text-decoration: none; font-size: .875rem; font-weight: 600; white-space: nowrap; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--blue); }
.main-nav a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -.55rem; height: 3px; border-radius: 4px; background: var(--lime); }
.menu-toggle { display: none; align-items: center; gap: .5rem; min-height: 44px; padding: 0 .8rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); color: var(--ink); }
.menu-toggle__bars, .menu-toggle__bars::before, .menu-toggle__bars::after { display: block; width: 20px; height: 2px; background: currentColor; content: ""; transition: transform .2s ease; }
.menu-toggle__bars { position: relative; }
.menu-toggle__bars::before { position: absolute; top: -6px; }
.menu-toggle__bars::after { position: absolute; top: 6px; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars::after { top: 0; transform: rotate(-45deg); }

h1, h2, h3 { color: var(--ink); line-height: 1.14; margin-top: 0; font-weight: 700; }
h1 { margin-bottom: 1.3rem; font-size: clamp(2.5rem, 5vw, 3.8rem); letter-spacing: -.045em; }
h2 { margin-bottom: .8rem; font-size: clamp(1.9rem, 3.5vw, 2.6rem); letter-spacing: -.035em; }
h3 { margin-bottom: .6rem; font-size: 1.3rem; }
p { margin-top: 0; }
.lead { max-width: 670px; color: var(--muted); font-size: 1.125rem; }
.eyebrow { margin-bottom: .8rem; color: var(--cyan); font-size: .8125rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.section { padding: 5rem 0; }
.section--white { background: var(--surface); }
.compact-section { padding-block: 3.5rem; }
.section-heading { max-width: 730px; margin-bottom: 2.2rem; }
.section-heading > p:last-child { color: var(--muted); }
.section-heading--compact { margin-bottom: 0; }

.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: .7rem 1.25rem; border: 0; border-radius: var(--radius-sm); text-decoration: none; font-weight: 700; line-height: 1.25; transition: background .2s ease, color .2s ease, transform .2s ease; }
.button:hover { transform: translateY(-1px); }
.button:focus-visible, .menu-toggle:focus-visible, .footer-contact:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid rgba(0, 174, 190, .35); outline-offset: 3px; }
.button--primary { background: var(--cyan); color: #032d37; box-shadow: 0 9px 22px rgba(5, 45, 87, .14); }
.button--primary:hover, .button--accent:hover { background: var(--cyan-hover); }
.button--accent { background: var(--lime); color: #173000; }
.button--outline { border: 2px solid var(--blue); background: transparent; color: var(--blue); }
.button--outline:hover { background: var(--blue); color: var(--white); }
.button--light { background: var(--white); color: var(--dark); }
.button--block { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: .45rem; min-height: 44px; padding: 0 .4rem; color: var(--blue); text-decoration: none; font-weight: 700; }
.text-link:hover { color: var(--cyan-hover); }
.text-link--light { color: var(--white); }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; }

.hero { overflow: hidden; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 90% 14%, rgba(0, 174, 190, .18), transparent 33%), linear-gradient(135deg, var(--surface), var(--soft)); }
.hero__grid { min-height: 520px; display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(330px, .82fr); align-items: center; gap: 4.2rem; padding-block: 4.3rem; }
.hero__content { min-width: 0; }
.quick-benefits { display: flex; flex-wrap: wrap; gap: .7rem 1.5rem; margin: 1.5rem 0 0; padding: 0; list-style: none; color: var(--muted); font-size: .875rem; }
.quick-benefits li { position: relative; padding-left: 1.25rem; }
.quick-benefits li::before { content: ""; position: absolute; left: 0; top: .48rem; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }
.urgent-card { padding: 2.15rem; border-radius: var(--radius-lg); background: var(--dark); color: var(--white); box-shadow: var(--shadow); }
.urgent-card h2 { color: var(--white); font-size: 1.8rem; }
.urgent-card > p { color: #cfdeea; }
.card-label { display: inline-block; margin-bottom: 1rem; color: var(--lime); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.check-list { display: grid; gap: .6rem; margin: 0 0 1.4rem; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.5rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--lime); font-weight: 800; }
.check-list--light { color: #ecf5fb; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.service-card { min-height: 290px; display: flex; flex-direction: column; padding: 1.8rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.service-card--cyan { border-top: 4px solid var(--cyan); }
.service-card--blue { border-top: 4px solid var(--blue); }
.service-card--lime { border-top: 4px solid var(--lime); }
.service-number { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 1.25rem; border-radius: 13px; background: var(--soft); color: var(--blue); font-size: .85rem; font-weight: 800; }
.service-card p { color: var(--muted); }
.service-card a { margin-top: auto; color: var(--cyan-hover); text-decoration: none; font-weight: 700; }

.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.audience-card { padding: 2.2rem; border-radius: 21px; background: var(--soft); }
.audience-card > p { color: var(--muted); }
.audience-card--dark { background: var(--dark); color: var(--white); }
.audience-card--dark h3 { color: var(--white); }
.audience-card--dark > p { color: #cfdeea; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.steps li { position: relative; padding: 3.8rem .5rem 0 0; counter-increment: steps; }
.steps li::before { content: counter(steps); position: absolute; top: 0; left: 0; width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; background: var(--cyan); color: #032d37; font-weight: 800; }
.steps p { color: var(--muted); }
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: 4rem; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 2rem; }
.feature-list article { padding-top: 1rem; border-top: 3px solid var(--lime); }
.feature-list p { margin-bottom: 0; color: var(--muted); }
.split-banner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.split-banner h2 { font-size: clamp(1.65rem, 3vw, 2.2rem); }
.split-banner p:last-child { margin-bottom: 0; color: var(--muted); }
.final-cta { padding: 4.2rem 0; background: linear-gradient(120deg, var(--dark), #07458f); color: var(--white); }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.final-cta h2 { color: var(--white); }
.final-cta p { margin-bottom: 0; color: #d6e3ed; }

.page-hero { padding: 4.6rem 0 3.6rem; background: linear-gradient(135deg, var(--surface), var(--soft)); border-bottom: 1px solid var(--line); }
.page-hero__inner { max-width: 820px; }
.page-hero h1 { font-size: clamp(2.35rem, 5vw, 3.55rem); }
.page-hero .actions { margin-top: 1.7rem; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 4rem; align-items: start; }
.prose { max-width: 790px; }
.prose h2 { margin-top: 2.3rem; font-size: 1.8rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.7rem; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li + li { margin-top: .45rem; }
.side-card { position: sticky; top: 112px; padding: 1.75rem; border-radius: var(--radius); background: var(--dark); color: var(--white); }
.side-card h2, .side-card h3 { color: var(--white); }
.side-card p { color: #cfdeea; }
.side-card .button + .button { margin-top: .7rem; }

.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.detail-card { padding: 1.6rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.detail-card p:last-child { margin-bottom: 0; color: var(--muted); }
.notice { margin: 1.5rem 0; padding: 1.2rem 1.35rem; border-left: 4px solid var(--lime); background: var(--soft); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.notice p:last-child { margin-bottom: 0; }

.price-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.price-table { width: 100%; border-collapse: collapse; min-width: 660px; }
.price-table th, .price-table td { padding: 1rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.price-table th { background: var(--soft); color: var(--ink); font-size: .85rem; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table td:last-child { white-space: nowrap; font-weight: 700; color: var(--ink); }
.price-notes { display: grid; gap: .8rem; margin-top: 1.5rem; padding: 0; list-style: none; }
.price-notes li { position: relative; padding-left: 1.4rem; }
.price-notes li::before { content: "•"; position: absolute; left: 0; color: var(--lime); font-size: 1.35rem; line-height: 1.1; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 2rem; align-items: start; }
.contact-panel, .form-panel { padding: 2rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.contact-actions { display: grid; gap: .75rem; margin: 1.3rem 0 2rem; }
.contact-actions button { width: 100%; }
.business-details { padding-top: 1.5rem; border-top: 1px solid var(--line); }
.business-details h3 { font-size: 1.05rem; }
.business-details address { font-style: normal; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--ink); font-weight: 700; font-size: .9rem; }
.field input, .field textarea { width: 100%; padding: .8rem .9rem; border: 1px solid #bccdd9; border-radius: 9px; background: var(--surface); color: var(--copy); }
.field textarea { min-height: 150px; resize: vertical; }
.field--check { display: flex; align-items: flex-start; gap: .65rem; }
.field--check input { flex: 0 0 auto; margin-top: .35rem; }
.field--check label { font-weight: 400; }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-bottom: 1.25rem; padding: 1rem 1.15rem; border-radius: var(--radius-sm); }
.form-status--success { background: #e7f5ec; color: var(--success); border: 1px solid #b8ddc6; }
.form-status--error { background: #fdecee; color: var(--danger); border: 1px solid #edc1c7; }
.field-error { color: var(--danger); font-size: .85rem; }

.site-footer { padding: 3.6rem 0 0; background: #031f43; color: #cadbe8; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.15fr 1fr; gap: 2.2rem; }
.footer-grid h2 { color: var(--white); font-size: 1rem; }
.footer-grid ul { display: grid; gap: .45rem; margin: 0; padding: 0; list-style: none; }
.footer-grid a { color: #d9e9f3; text-decoration: none; }
.footer-grid a:hover { color: var(--lime); }
.footer-brand a { display: block; width: 235px; }
.footer-brand img { width: 100%; height: auto; }
.footer-brand p { max-width: 330px; margin-top: 1rem; }
.footer-contact { display: block; min-height: 42px; margin: .3rem 0; padding: 0; border: 0; background: transparent; color: var(--lime); text-align: left; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; border-top: 1px solid rgba(255, 255, 255, .16); font-size: .8rem; }
.mobile-callbar { display: none; }

@media (max-width: 1080px) {
    .main-nav { display: none; }
    .main-nav.is-open { position: absolute; top: 82px; left: 0; right: 0; display: grid; gap: 0; padding: 1rem 26px 1.4rem; background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
    .main-nav.is-open a { min-height: 46px; display: flex; align-items: center; border-bottom: 1px solid var(--line); }
    .main-nav a[aria-current="page"]::after { display: none; }
    .menu-toggle { display: inline-flex; margin-left: auto; }
    .header-call { margin-left: 0; }
    .hero__grid { grid-template-columns: 1fr; gap: 2.2rem; }
    .urgent-card { max-width: 680px; }
    .service-grid { grid-template-columns: 1fr 1fr; }
    .service-card:last-child { grid-column: 1 / -1; min-height: auto; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 760px) {
    body { padding-bottom: 66px; }
    .container { width: min(var(--container), calc(100% - 36px)); }
    .topbar__inner { min-height: 44px; justify-content: center; text-align: center; }
    .topbar__region { display: none; }
    .site-header { top: 0; }
    .site-header__inner { min-height: 70px; gap: .65rem; }
    .brand { width: 176px; }
    .menu-toggle__label { display: none; }
    .header-call { display: none; }
    .main-nav.is-open { top: 70px; padding-inline: 18px; }
    h1 { font-size: 2.5rem; }
    .hero__grid { min-height: auto; padding-block: 3.2rem; }
    .lead { font-size: 1.05rem; }
    .actions .button { width: 100%; }
    .actions .text-link { width: 100%; justify-content: center; }
    .urgent-card { padding: 1.7rem; }
    .section { padding: 3.6rem 0; }
    .service-grid, .audience-grid, .steps, .detail-grid, .feature-list, .contact-grid, .form-grid { grid-template-columns: 1fr; }
    .service-card:last-child { grid-column: auto; }
    .service-card { min-height: auto; }
    .why-grid, .content-grid { grid-template-columns: 1fr; gap: 2.3rem; }
    .side-card { position: static; }
    .field--full { grid-column: auto; }
    .split-banner, .final-cta__inner, .footer-bottom { align-items: flex-start; flex-direction: column; }
    .split-banner .button, .final-cta .button { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid > div:last-child { grid-column: auto; }
    .mobile-callbar { position: fixed; z-index: 60; left: 0; right: 0; bottom: 0; display: block; padding: .65rem max(1rem, env(safe-area-inset-left)); background: rgba(3, 31, 67, .97); border-top: 1px solid rgba(255, 255, 255, .18); }
    .mobile-callbar button { width: 100%; min-height: 46px; border: 0; border-radius: 9px; background: var(--lime); color: #173000; font-weight: 800; }
}

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