:root {
  --red: #ed1b2f;
  --red-dark: #c91025;
  --ink: #181a20;
  --text: #3e424c;
  --muted: #686e7b;
  --line: #e4e6eb;
  --soft: #f5f6f8;
  --white: #fff;
  --success: #14804a;
  --container: 1160px;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 16px 45px rgba(24, 26, 32, .08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body { margin: 0; color: var(--text); background: var(--white); font: 400 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; text-rendering: optimizeLegibility; }
.home, .article-page { min-height: 100vh; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
h1, h2, h3 { margin: 0; color: var(--ink); line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(42px, 7vw, 78px); }
h2 { font-size: clamp(30px, 4.5vw, 48px); }
h3 { font-size: 21px; }
p { margin: 0; }
ul, ol { padding-left: 1.2em; }
strong { color: var(--ink); }
:focus-visible { outline: 3px solid rgba(237, 27, 47, .28); outline-offset: 3px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 88px 0; }
.section--soft { background: var(--soft); }
.section--dark { color: #fff; background: var(--ink); }
.section--dark h2, .section--dark h3, .section--dark strong { color: #fff; }
.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 14px; color: var(--muted); font-size: 18px; }
.section--dark .section-head p { color: rgba(255,255,255,.65); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; color: var(--red); font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { width: 20px; height: 2px; content: ""; background: currentColor; }
.muted { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.skip-link { position: fixed; z-index: 200; top: 8px; left: 8px; padding: 10px 14px; color: #fff; background: var(--ink); border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.site-header { position: sticky; z-index: 100; top: 0; border-top: 4px solid var(--ink); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(16px); }
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand-link { color: inherit; text-decoration: none; }
.brand-lockup { flex: 0 0 auto; display: inline-flex; align-items: center; color: var(--ink); text-decoration: none; }
.brand-lockup img { width: 180px; height: 72px; object-fit: contain; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: #fff; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--ink); transition: transform .2s, opacity .2s; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a { padding: 10px 12px; color: #454a54; border-radius: 9px; font-size: 14px; font-weight: 750; text-decoration: none; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--red); background: #fff1f3; }
.site-nav .nav-cta { margin-left: 8px; padding-inline: 16px; color: #fff; background: var(--red); }
.site-nav .nav-cta:hover { color: #fff; background: var(--red-dark); }

.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 11px 20px; border: 1px solid transparent; border-radius: 12px; font-size: 14px; font-weight: 850; line-height: 1.2; text-decoration: none; cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: #fff; background: var(--red); }
.btn--primary:hover { background: var(--red-dark); }
.btn--secondary { color: var(--ink); border-color: var(--line); background: #fff; }
.btn--dark { color: #fff; background: var(--ink); }
.btn--block { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::after { position: absolute; right: -140px; bottom: -230px; width: 600px; height: 600px; content: ""; border: 110px solid #fff1f3; border-radius: 50%; pointer-events: none; }
.hero-grid { position: relative; z-index: 1; min-height: 630px; display: grid; grid-template-columns: 1.18fr .82fr; align-items: center; gap: 76px; padding: 76px 0; }
.hero-copy { max-width: 720px; }
.hero-copy h1 span { color: var(--red); }
.hero-copy > p { max-width: 650px; margin: 22px 0 28px; color: var(--muted); font-size: clamp(18px, 2vw, 21px); }
.hero-note { margin-top: 18px; color: var(--muted); font-size: 13px; }
.hero-panel { position: relative; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.hero-panel::before { position: absolute; inset: 0 0 auto; height: 7px; content: ""; border-radius: var(--radius-lg) var(--radius-lg) 0 0; background: var(--red); }
.hero-panel-label { color: var(--muted); font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.hero-panel h2 { margin-top: 8px; font-size: 34px; }
.hero-panel > p { margin-top: 14px; color: var(--muted); }
.hero-checks { display: grid; gap: 12px; margin: 25px 0; padding: 0; list-style: none; }
.hero-checks li { display: flex; align-items: flex-start; gap: 11px; color: var(--text); }
.hero-checks li::before { flex: 0 0 23px; width: 23px; height: 23px; display: grid; place-items: center; content: "✓"; color: #fff; border-radius: 50%; background: var(--success); font-size: 12px; font-weight: 900; }

.trust-bar { border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.trust-item { min-width: 0; min-height: 106px; display: grid; grid-template-columns: 44px minmax(0, 1fr); align-items: center; gap: 16px; padding: 22px 24px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-icon { width: 44px; height: 44px; display: grid; place-items: center; margin: 0; color: var(--red); border-radius: 13px; background: #fff1f3; font-size: 13px; font-weight: 900; line-height: 1; }
.trust-copy { min-width: 0; }
.trust-copy strong { display: block; font-size: 15px; line-height: 1.3; }
.trust-copy span { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; line-height: 1.4; }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.info-card, .area-card, .article-card { min-width: 0; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.info-card h3, .area-card h3, .article-card h3 { margin-bottom: 10px; }
.info-card p, .area-card p, .article-card p { color: var(--muted); }
.info-card-number { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 20px; color: var(--red); border-radius: 13px; background: #fff1f3; font-size: 18px; font-weight: 900; }
.area-card { display: flex; flex-direction: column; }
.area-card .area-meta { margin: auto 0 18px; padding-top: 18px; color: var(--muted); font-size: 13px; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--red); font-size: 14px; font-weight: 850; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

.package-toolbar { display: grid; grid-template-columns: 1fr 220px auto; gap: 12px; margin-bottom: 22px; }
.field { min-width: 0; }
.field label { display: block; margin-bottom: 7px; color: var(--ink); font-size: 13px; font-weight: 800; }
.input, .select, .textarea { width: 100%; min-height: 48px; padding: 11px 13px; color: var(--ink); border: 1px solid var(--line); border-radius: 11px; background: #fff; outline: 0; }
.textarea { min-height: 120px; resize: vertical; }
.input:focus, .select:focus, .textarea:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(237,27,47,.1); }
.package-status { padding: 18px; color: var(--muted); border: 1px dashed #cfd2d9; border-radius: var(--radius-sm); background: #fff; text-align: center; }
.package-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.package-card { min-width: 0; display: flex; flex-direction: column; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .18s ease, box-shadow .18s ease; }
.package-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.package-group { width: fit-content; margin-bottom: 18px; padding: 6px 9px; color: var(--red); border-radius: 999px; background: #fff1f3; font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.package-speed { margin-top: 16px; color: var(--ink); font-size: 40px; font-weight: 900; letter-spacing: -.05em; }
.package-speed small { color: var(--muted); font-size: 13px; letter-spacing: 0; }
.package-price { margin: 12px 0 18px; color: var(--red); font-size: 26px; font-weight: 900; }
.package-price small { color: var(--muted); font-size: 12px; font-weight: 650; }
.package-benefits { display: grid; gap: 8px; margin: 0 0 24px; padding: 0; list-style: none; }
.package-benefits li { display: flex; gap: 9px; color: var(--muted); font-size: 14px; }
.package-benefits li::before { content: "✓"; color: var(--success); font-weight: 900; }
.package-card .btn { margin-top: auto; }
.package-note { margin-top: 22px; color: var(--muted); font-size: 12px; text-align: center; }

.page-hero { padding: 74px 0 62px; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, #fff 0%, #fff 58%, #fff3f5 100%); }
.page-hero-inner { max-width: 800px; }
.page-hero h1 { font-size: clamp(40px, 6vw, 64px); }
.page-hero p { margin-top: 18px; color: var(--muted); font-size: 19px; }
.breadcrumbs { margin-bottom: 20px; color: var(--muted); font-size: 13px; }
.breadcrumbs a { color: var(--red); text-decoration: none; }

.area-layout { display: grid; grid-template-columns: 1fr 380px; align-items: start; gap: 42px; }
.content-stack { display: grid; gap: 18px; }
.content-card { padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.content-card h2 { margin-bottom: 15px; font-size: 28px; }
.content-card h3 { margin: 22px 0 8px; }
.content-card p + p { margin-top: 13px; }
.content-card li + li { margin-top: 7px; }
.district-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 8px; padding: 0; list-style: none; }
.district-grid li { padding: 9px 11px; color: var(--text); border-radius: 9px; background: var(--soft); font-size: 13px; }
.sticky-card { position: sticky; top: 116px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.sticky-card h2 { margin-bottom: 9px; font-size: 26px; }
.sticky-card > p { margin-bottom: 20px; color: var(--muted); font-size: 14px; }
.form-stack { display: grid; gap: 14px; }
.form-feedback { min-height: 22px; color: var(--success); font-size: 13px; }

.notice { padding: 21px 23px; color: #3e4149; border-left: 4px solid var(--red); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: #fff3f5; }
.notice strong { display: block; margin-bottom: 4px; }
.scope-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.scope-card { padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.scope-card h2 { margin-bottom: 12px; font-size: 28px; }
.scope-card ul { margin-bottom: 0; }

.article-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.article-card { display: flex; flex-direction: column; text-decoration: none; transition: transform .18s, box-shadow .18s; }
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.article-card time, .article-category { color: var(--red); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.article-card h3 { margin-top: 13px; }
.article-card p { margin: 0 0 20px; }
.article-card .text-link { margin-top: auto; }
.article-shell { width: min(calc(100% - 40px), 850px); margin: 0 auto; padding: 58px 0 90px; }
.article-head { padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.article-head h1 { margin-top: 14px; font-size: clamp(38px, 6vw, 62px); }
.article-head .lead { margin-top: 18px; color: var(--muted); font-size: 20px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 20px; color: var(--muted); font-size: 12px; }
.prose { padding-top: 34px; }
.prose h2 { margin: 42px 0 15px; font-size: 30px; }
.prose h3 { margin: 28px 0 11px; }
.prose p + p { margin-top: 17px; }
.prose ul, .prose ol { margin: 15px 0; }
.prose li + li { margin-top: 8px; }
.prose blockquote { margin: 26px 0; padding: 20px 22px; color: var(--ink); border-left: 4px solid var(--red); background: var(--soft); font-size: 18px; font-weight: 700; }

.legal-layout { display: grid; grid-template-columns: 250px 1fr; align-items: start; gap: 34px; }
.legal-nav { position: sticky; top: 116px; display: grid; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.legal-nav strong { margin-bottom: 8px; }
.legal-nav a { padding: 8px 0; color: var(--muted); border-bottom: 1px solid var(--line); font-size: 13px; text-decoration: none; }
.legal-nav a:last-child { border-bottom: 0; }
.legal-nav a:hover { color: var(--red); }
.legal-content { display: grid; gap: 15px; }
.legal-card { padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); }
.legal-card h2 { margin-bottom: 14px; font-size: 27px; }
.legal-card p + p { margin-top: 13px; }

.faq-list { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.faq-item summary { padding: 17px 20px; color: var(--ink); font-weight: 800; cursor: pointer; }
.faq-item p { padding: 0 20px 18px; color: var(--muted); }

.cta-panel { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; padding: 38px; border-radius: var(--radius-lg); background: var(--red); }
.cta-panel h2 { color: #fff; }
.cta-panel p { margin-top: 9px; color: rgba(255,255,255,.78); }
.cta-panel .btn { color: var(--ink); background: #fff; }

.site-footer { color: rgba(255,255,255,.7); background: #17191f; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.15fr; gap: 38px; padding: 58px 0 38px; }
.footer-brand { display: inline-flex; align-items: center; margin-bottom: 15px; }
.footer-brand img { width: 150px; height: 60px; object-fit: contain; filter: brightness(0) invert(1); }
.site-footer h2 { margin-bottom: 13px; color: #fff; font-size: 14px; letter-spacing: 0; }
.site-footer p { font-size: 13px; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li + li { margin-top: 7px; }
.site-footer a { color: rgba(255,255,255,.7); font-size: 13px; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-badge { width: fit-content; margin-top: 14px; padding: 6px 9px; color: #fff; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; font-size: 10px; font-weight: 850; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding: 22px 0 27px; }
.footer-bottom p { color: rgba(255,255,255,.54); font-size: 11px; }
.wa-float { position: fixed; z-index: 80; right: 18px; bottom: 18px; min-height: 48px; display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; color: #fff; border-radius: 999px; background: #168c4c; box-shadow: 0 14px 34px rgba(16,105,58,.28); font-size: 13px; font-weight: 850; text-decoration: none; }

@media (max-width: 1040px) {
  .brand-lockup img { width: 150px; height: 60px; }
  .site-nav a { padding-inline: 8px; font-size: 13px; }
  .hero-grid { gap: 42px; }
  .package-grid, .card-grid, .article-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 90px; }
  .header-inner { min-height: 76px; }
  .brand-lockup img { width: 132px; height: 52px; }
  .nav-toggle { display: block; }
  .site-nav { position: fixed; inset: 80px 14px auto; max-height: calc(100vh - 94px); display: none; overflow: auto; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 12px; }
  .site-nav .nav-cta { margin: 5px 0 0; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding: 62px 0; }
  .hero-panel { max-width: 600px; }
  .hero::after { opacity: .45; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .area-layout, .legal-layout { grid-template-columns: 1fr; }
  .sticky-card, .legal-nav { position: static; }
  .legal-nav { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 16px; }
  .scope-grid { grid-template-columns: 1fr; }
  .package-toolbar { grid-template-columns: 1fr 1fr; }
  .package-toolbar .btn { grid-column: 1 / -1; }
  .cta-panel { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container, .article-shell { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 66px 0; }
  .brand-lockup img { width: 118px; height: 48px; }
  .hero-grid { padding: 48px 0; }
  .hero-panel { padding: 25px 21px; }
  .hero-panel h2 { font-size: 28px; }
  .button-row .btn { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .package-grid, .card-grid, .article-grid, .footer-grid { grid-template-columns: 1fr; }
  .package-toolbar { grid-template-columns: 1fr; }
  .package-toolbar .btn { grid-column: auto; }
  .district-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .legal-nav { grid-template-columns: 1fr; }
  .cta-panel { padding: 28px 22px; }
  .footer-bottom-inner { grid-template-columns: 1fr; gap: 12px; }
  .wa-float { width: 49px; height: 49px; right: 13px; bottom: 13px; justify-content: center; padding: 0; }
  .wa-float span { display: none; }
}

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

@media print {
  .site-header, .site-footer, .wa-float, .button-row, .sticky-card { display: none !important; }
  .section, .article-shell { padding: 20px 0; }
}
