:root {
  --navy: #0b1f3a;
  --blue: #123a63;
  --orange: #f97316;
  --line: #06c755;
  --line-dark: #05a847;
  --mist: #f4f7fb;
  --ink: #1f2937;
  --muted: #64748b;
  --border: #e2e8f0;
  --shadow: 0 16px 45px rgba(11, 31, 58, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body.admin-bar .site-header { top: 32px; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.9; }
ul, ol { padding: 0; margin: 0; }
li { list-style: none; }
img, svg { max-width: 100%; }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(860px, calc(100% - 32px)); }
.section { padding: 72px 0; }
.section-tight { padding-top: 24px; }
.section-muted { background: var(--mist); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy p { color: #dbeafe; }
.page-hero { padding: 56px 0; background: #fff; }
.page-hero h1, main h1 { margin: 0; color: var(--navy); font-size: clamp(2rem, 4.5vw, 3.5rem); line-height: 1.15; font-weight: 900; }
.page-hero p, .lead-text { max-width: 760px; color: #5f6f85; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.header-inner { height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 800; min-width: 156px; }
.brand-mark { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 8px; background: var(--navy); color: #fff; font-size: 13px; }
.brand-mark-image { display: block; object-fit: cover; background: transparent; }
.brand-logo-wide { display: block; width: clamp(150px, 14vw, 190px); height: auto; flex: 0 0 auto; }
.brand-text { min-width: 0; }
.brand-text small { display: block; margin-top: 2px; color: var(--muted); font-size: 12px; font-weight: 500; }
.global-nav { display: flex; align-items: center; gap: 22px; color: #334155; font-size: 14px; font-weight: 700; }
.global-nav a:hover { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.menu-toggle { display: none; width: 44px; height: 44px; overflow: hidden; border: 1px solid var(--border); border-radius: 8px; background: #fff; color: transparent; position: relative; }
.menu-toggle::before, .menu-toggle::after { content: ""; position: absolute; left: 12px; right: 12px; height: 2px; background: var(--navy); }
.menu-toggle::before { top: 16px; box-shadow: 0 6px 0 var(--navy); }
.menu-toggle::after { top: 28px; }
.mobile-nav { border-top: 1px solid var(--border); background: #fff; padding: 8px 16px 18px; }
.mobile-nav a { display: block; max-width: 1120px; margin: 0 auto; padding: 14px 0; border-bottom: 1px solid #eef2f7; font-weight: 700; color: #334155; }
.mobile-nav a[data-cta*="line"] { color: var(--line-dark); font-weight: 900; }
.mobile-nav .mobile-form-link { color: #64748b; font-size: 14px; text-decoration: underline; text-underline-offset: 4px; }
.site-proof-bar {
  position: sticky;
  top: 66px;
  z-index: 39;
  background: #fff7ed;
  border-bottom: 1px solid #fed7aa;
  box-shadow: 0 8px 22px rgba(154,52,18,.08);
}
body.admin-bar .site-proof-bar { top: 98px; }
.site-proof-inner {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding-top: 7px;
  padding-bottom: 7px;
}
.site-proof-inner span,
.site-proof-inner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 8px;
  color: #9a3412;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  white-space: nowrap;
}
.site-proof-inner span {
  border: 1px solid #fed7aa;
  background: #fff;
}
.site-proof-inner a {
  background: var(--line);
  color: #fff;
  box-shadow: 0 8px 18px rgba(6,199,85,.16);
}
.site-proof-inner a:hover { background: var(--line-dark); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}
.button-small { min-height: 40px; padding: 10px 16px; font-size: 14px; }
.button-orange { background: var(--orange); color: #fff; }
.button-orange:hover { background: #ea580c; }
.button-line { background: var(--line); color: #fff; box-shadow: 0 12px 24px rgba(6,199,85,.18); }
.button-line:hover { background: var(--line-dark); }
.button-navy { background: var(--navy); color: #fff; }
.button-white { background: #fff; color: var(--navy); }
.button-outline { background: #fff; color: var(--navy); border-color: var(--navy); }
.button-subtle { background: #f8fafc; color: #475569; border-color: #dbe3ee; }
.button-subtle:hover { background: #eef2f7; color: var(--navy); }
.text-link { display: inline-flex; margin-top: 24px; color: var(--blue); font-weight: 800; }
.text-link:hover { color: var(--orange); }
.form-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  color: #64748b;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.form-text-link:hover { color: var(--blue); }
.section-navy .form-text-link,
.hero .form-text-link,
.cta-section .form-text-link { color: #dbeafe; }
.section-navy .form-text-link:hover,
.hero .form-text-link:hover,
.cta-section .form-text-link:hover { color: #fff; }
.header-form-link { padding: 6px 2px; white-space: nowrap; }

.hero { padding: clamp(70px, 9vw, 116px) 0; background: linear-gradient(135deg, #07172b 0%, #0b1f3a 58%, #123a63 100%); color: #fff; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .82fr); gap: clamp(36px, 6vw, 72px); align-items: center; }
.hero-kicker { display: inline-flex; margin: 0 0 18px; padding: 9px 12px; border: 1px solid rgba(249,115,22,.42); border-radius: 8px; background: rgba(249,115,22,.14); color: #fed7aa; font-size: 13px; font-weight: 900; line-height: 1.4; }
.hero h1 { margin: 0; font-size: clamp(2.3rem, 5vw, 4.1rem); line-height: 1.08; font-weight: 900; color: #fff; }
.hero-lead { margin: 28px 0 0; font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.82; font-weight: 900; color: #fff7ed; }
.hero-copy { max-width: 660px; color: #dbeafe; }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-badges li { padding: 9px 13px; border: 1px solid rgba(255,255,255,.2); border-radius: 7px; background: rgba(255,255,255,.1); color: #eff6ff; font-size: 14px; font-weight: 800; }
.proof-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 150px)); gap: 10px; max-width: 420px; margin-top: 22px; }
.proof-stats div { padding: 14px; border: 1px solid var(--border); border-radius: 8px; background: #fff; }
.proof-stats strong { display: block; color: var(--orange); font-size: 2rem; line-height: 1; }
.proof-stats span { display: block; margin-top: 7px; color: var(--navy); font-size: 13px; font-weight: 900; }
.proof-stats small { grid-column: 1 / -1; color: #5f6f85; font-size: 12px; line-height: 1.6; }
.proof-stats-dark div { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.1); }
.proof-stats-dark span { color: #eff6ff; }
.proof-stats-dark small { color: #bfdbfe; }
.hero-proof-card { position: relative; padding: clamp(24px, 4vw, 36px); border: 1px solid rgba(255,255,255,.18); border-radius: 8px; background: #fff; color: var(--navy); box-shadow: 0 30px 70px rgba(0,0,0,.28); }
.hero-proof-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 7px; background: linear-gradient(90deg, var(--orange), var(--line)); border-radius: 8px 8px 0 0; }
.section-visual-image { display: block; width: 100%; height: auto; border-radius: 8px; object-fit: cover; }
.hero-success-image { aspect-ratio: 4 / 3; margin-bottom: 18px; border: 1px solid #e2e8f0; box-shadow: 0 12px 28px rgba(11,31,58,.12); }
.hero-proof-label { margin: 0 0 18px; color: var(--orange); font-size: 13px; font-weight: 900; letter-spacing: .08em; }
.hero-proof-main { display: grid; gap: 8px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.hero-proof-main strong { color: var(--navy); font-size: clamp(2.7rem, 6vw, 4.7rem); line-height: .95; letter-spacing: 0; }
.hero-proof-main span { color: #334155; font-size: 1.2rem; font-weight: 900; }
.proof-stats-panel { max-width: none; grid-template-columns: repeat(2, 1fr); margin-top: 22px; }
.proof-stats-panel div { border-color: #fed7aa; background: #fff7ed; }
.proof-stats-panel strong { font-size: clamp(2.25rem, 5vw, 3.5rem); }
.hero-proof-list { display: grid; gap: 10px; margin-top: 22px; }
.hero-proof-list li { padding: 12px 14px; border-radius: 8px; background: #f8fafc; color: #334155; font-weight: 900; line-height: 1.55; }

.aio-definition { background: #fff; border-bottom: 1px solid var(--border); }
.aio-definition .container { padding-top: 26px; padding-bottom: 26px; }
.aio-definition p { max-width: 980px; margin: 0; color: #243244; line-height: 1.9; font-size: 15px; }
.aio-definition p + p { margin-top: 10px; color: #475569; }

.network-card { background: #fff; color: var(--navy); border-radius: 8px; padding: 24px; box-shadow: var(--shadow); }
.network-head { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.network-head p { margin: 0 0 4px; color: var(--orange); font-size: 13px; font-weight: 800; }
.network-head h2 { margin: 0; font-size: 1.25rem; }
.network-head span { color: var(--orange); font-weight: 900; }
.device-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 18px; }
.device-grid div { min-height: 92px; padding: 16px; border: 1px solid var(--border); border-radius: 8px; background: var(--mist); }
.device-grid small { display: block; margin-top: 8px; color: #64748b; line-height: 1.5; }
.network-message { margin: 18px 0 0; padding: 16px; border-radius: 8px; background: var(--navy); color: #fff; font-weight: 800; }

.section-heading { max-width: 760px; margin-bottom: 32px; }
.section-label { margin: 0 0 12px; color: var(--orange); font-size: 14px; font-weight: 900; }
.section-heading h2, .section h2 { margin: 0; color: var(--navy); font-size: clamp(1.7rem, 3vw, 2.35rem); line-height: 1.25; font-weight: 900; }
.section-navy h2 { color: #fff; }
.section-heading p { color: #5f6f85; }

.trouble-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.trouble-grid li { display: flex; gap: 12px; min-height: 76px; padding: 16px; border: 1px solid var(--border); border-radius: 8px; background: #fff; box-shadow: 0 8px 20px rgba(11,31,58,.04); font-weight: 700; line-height: 1.7; }
.trouble-grid span { display: grid; place-items: center; flex: 0 0 28px; height: 28px; border-radius: 8px; background: #fff7ed; color: var(--orange); font-weight: 900; }
.visual-story-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 28px; }
.visual-story-card { overflow: hidden; margin: 0; border: 1px solid var(--border); border-radius: 8px; background: #fff; box-shadow: 0 10px 24px rgba(11,31,58,.05); }
.visual-story-card img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.visual-story-card figcaption { display: grid; gap: 8px; padding: 18px; }
.visual-story-card strong { color: var(--navy); font-size: 1.05rem; }
.visual-story-card span { color: #5f6f85; line-height: 1.75; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card, .reason-grid article { padding: 24px; border: 1px solid var(--border); border-radius: 8px; background: #fff; box-shadow: 0 8px 20px rgba(11,31,58,.04); }
.info-card h2, .info-card h3, .reason-grid h3 { margin: 0 0 16px; color: var(--navy); font-size: 1.16rem; }
.info-card li { position: relative; padding-left: 18px; margin-top: 10px; color: #4b5563; line-height: 1.7; }
.info-card li::before { content: ""; position: absolute; left: 0; top: .72em; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.reason-grid b { color: var(--orange); font-size: 13px; }
.reason-grid p { color: #5f6f85; }
.split-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.work-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.work-list li { padding: 16px; border-radius: 8px; background: rgba(255,255,255,.1); color: #eff6ff; font-weight: 800; line-height: 1.7; }
.work-list-light li { background: #fff; color: var(--navy); border: 1px solid var(--border); box-shadow: 0 8px 20px rgba(11,31,58,.04); }
.dark-visual-card { overflow: hidden; margin: 22px 0 0; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; background: rgba(255,255,255,.08); }
.dark-visual-card img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.dark-visual-card figcaption { padding: 14px 16px; color: #dbeafe; font-size: 14px; line-height: 1.7; }
.maintenance-visual-card { overflow: hidden; margin: 0; border: 1px solid var(--border); border-radius: 8px; background: #fff; box-shadow: 0 10px 24px rgba(11,31,58,.05); }
.maintenance-visual-card img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.maintenance-visual-card figcaption { padding: 14px 16px; color: #5f6f85; font-size: 14px; font-weight: 800; line-height: 1.7; }

.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.area-card { padding: 24px; border: 1px solid var(--border); border-radius: 8px; background: #fff; }
.area-priority { border-color: #fed7aa; background: #fff7ed; }
.area-card h3 { margin: 0 0 14px; color: var(--navy); }
.area-card p { margin: 0 0 14px; color: var(--line-dark); font-size: 14px; font-weight: 900; line-height: 1.7; }
.area-card ul { display: flex; flex-wrap: wrap; gap: 9px; }
.area-card li { padding: 8px 11px; border-radius: 7px; background: var(--mist); font-size: 14px; font-weight: 800; }
.area-priority li { background: #fff; }
.area-card small { display: block; margin-top: 14px; color: #5f6f85; font-size: 13px; line-height: 1.8; }
.area-table-wrap { margin-top: 28px; overflow: hidden; border: 1px solid var(--border); border-radius: 8px; background: #fff; box-shadow: var(--shadow); }
.area-table { width: 100%; border-collapse: collapse; text-align: left; }
.area-table thead { background: var(--navy); color: #fff; }
.area-table th, .area-table td { padding: 18px 22px; border-bottom: 1px solid #eef2f7; vertical-align: top; line-height: 1.75; }
.area-table tbody th { width: 150px; color: var(--navy); font-weight: 900; }
.area-table td:nth-child(2) { color: #405066; font-weight: 700; }
.area-table td:last-child { width: 140px; text-align: right; color: var(--navy); font-weight: 900; white-space: nowrap; }
.area-table-wrap p { margin: 0; padding: 14px 22px; background: #f8fafc; color: #5f6f85; font-size: 13px; line-height: 1.8; }
.area-visual-layout { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr); gap: 20px; align-items: start; margin-top: 24px; }
.area-visual-card, .remote-visual-card, .page-hero-visual { overflow: hidden; margin: 0; border: 1px solid var(--border); border-radius: 8px; background: #fff; box-shadow: 0 10px 24px rgba(11,31,58,.05); }
.area-visual-card img, .remote-visual-card img, .page-hero-visual img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.area-visual-card figcaption, .remote-visual-card figcaption { padding: 14px 16px; color: #5f6f85; font-size: 14px; line-height: 1.7; }
.page-hero-visual { margin-top: 24px; max-width: 620px; }
.page-hero-visual img { aspect-ratio: 16 / 9; }

.seo-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.seo-card {
  display: block;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(11,31,58,.04);
}
.seo-card:hover { border-color: #fed7aa; box-shadow: var(--shadow); }
.seo-card h3 { margin: 0 0 12px; color: var(--navy); font-size: 1.08rem; line-height: 1.55; }
.seo-card p { margin: 0; color: #5f6f85; font-size: 14px; line-height: 1.8; }
.link-chip-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.link-chip-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}
.link-chip-list a:hover { border-color: #fed7aa; background: #fff7ed; color: #9a3412; }
.plain-list { display: grid; gap: 10px; margin-top: 16px; }
.plain-list li { position: relative; padding: 14px 16px 14px 36px; border: 1px solid var(--border); border-radius: 8px; background: #fff; color: #405066; line-height: 1.75; }
.plain-list li::before { content: ""; position: absolute; left: 17px; top: 1.48em; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.internal-link-block { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); }
.internal-link-block h2 { font-size: 1.35rem; }
.seo-spacing { margin-top: 28px; }
.keyword-note { display: inline-block; margin-top: 12px; padding: 10px 13px; border-radius: 8px; background: #fff7ed; color: #9a3412; font-size: 14px; font-weight: 800; }
.article-body h2 { margin-top: 34px; color: var(--navy); }
.article-body h2:first-child { margin-top: 0; }

.price-table-wrap { overflow: hidden; border: 1px solid var(--border); border-radius: 8px; background: #fff; box-shadow: var(--shadow); }
.price-table { width: 100%; border-collapse: collapse; text-align: left; }
.price-table thead { background: var(--navy); color: #fff; }
.price-table th, .price-table td { padding: 16px 22px; border-bottom: 1px solid #eef2f7; font-size: 15px; }
.price-table td { text-align: right; white-space: nowrap; color: var(--navy); font-weight: 900; }
.price-table .is-free { background: #fff7ed; }
.price-note { padding: 16px 22px; background: #f8fafc; color: #5f6f85; font-size: 14px; }
.price-note p { margin: 0; }
.price-highlight, .note-box { margin-top: 24px; padding: 22px; border: 1px solid #fed7aa; border-radius: 8px; background: #fff7ed; }
.price-highlight span { display: block; color: var(--orange); font-weight: 900; }
.price-highlight strong { display: block; margin-top: 8px; color: var(--navy); font-size: 1.6rem; }
.note-box { border-color: var(--border); background: #f8fafc; }
.note-box p { margin: 0; color: #526176; }
.price-hero-copy strong { color: var(--navy); font-size: 1.2rem; }
.price-summary-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.price-summary-card { display: grid; gap: 12px; min-height: 230px; padding: 24px; border: 1px solid var(--border); border-radius: 8px; background: #fff; box-shadow: 0 8px 20px rgba(11,31,58,.04); }
.price-summary-card.is-line { border-color: rgba(6,199,85,.34); background: #f0fdf4; box-shadow: 0 14px 36px rgba(6,199,85,.12); }
.price-summary-card p { margin: 0; color: var(--blue); font-size: 14px; font-weight: 900; }
.price-summary-card strong { display: block; color: var(--navy); font-size: 1.55rem; line-height: 1.25; }
.price-summary-card span { color: #5f6f85; line-height: 1.8; }
.price-summary-card .button { align-self: end; width: 100%; }
.mini-price-grid { display: grid; gap: 10px; margin-top: 20px; }
.mini-price-grid div { padding: 14px 16px; border: 1px solid var(--border); border-radius: 8px; background: #fff; }
.mini-price-grid span { display: block; color: #64748b; font-size: 13px; font-weight: 800; }
.mini-price-grid strong { display: block; margin-top: 4px; color: var(--navy); font-size: 1.1rem; }
.estimate-calculator { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr); gap: 24px; align-items: start; }
.remote-visual-card { display: grid; grid-template-columns: minmax(240px, .55fr) 1fr; align-items: center; margin: 0 0 24px; }
.remote-visual-card img { aspect-ratio: 16 / 10; }
.remote-visual-card figcaption { font-weight: 800; color: var(--navy); }
.estimate-form, .estimate-result { padding: 24px; border: 1px solid var(--border); border-radius: 8px; background: #fff; box-shadow: 0 8px 20px rgba(11,31,58,.04); }
.estimate-form fieldset { margin: 0 0 18px; padding: 0; border: 0; }
.estimate-form legend, .estimate-field, .estimate-check { display: block; color: var(--navy); font-size: 14px; font-weight: 900; }
.estimate-choice-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 10px; }
.estimate-choice-row label, .estimate-check { display: flex; gap: 10px; align-items: center; min-height: 50px; padding: 14px; border: 1px solid var(--border); border-radius: 8px; background: #f8fafc; color: #334155; cursor: pointer; }
.estimate-field { margin-top: 16px; }
.estimate-field select { display: block; width: 100%; min-height: 50px; margin-top: 8px; padding: 12px 14px; border: 1px solid #cbd5e1; border-radius: 8px; background: #fff; color: #0f172a; font: inherit; }
.estimate-area-hint { display: block; margin-top: 10px; padding: 11px 12px; border-radius: 8px; background: #f8fafc; color: #475569; font-size: 13px; font-weight: 700; line-height: 1.8; }
.estimate-check { display: grid; grid-template-columns: auto 1fr; align-items: start; margin-top: 18px; line-height: 1.6; }
.estimate-check span { grid-column: 2; color: #64748b; font-size: 13px; font-weight: 600; }
.estimate-result { position: sticky; top: 86px; border-color: rgba(6,199,85,.32); box-shadow: 0 16px 45px rgba(6,199,85,.12); }
.estimate-result-label { margin: 0 0 6px; color: var(--line-dark); font-size: 13px; font-weight: 900; }
.estimate-result h3 { margin: 0; color: var(--navy); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; }
.estimate-result ul { display: grid; gap: 10px; margin: 20px 0 0; }
.estimate-result li { position: relative; padding: 12px 14px 12px 30px; border-radius: 8px; background: #f8fafc; color: #334155; line-height: 1.6; }
.estimate-result li::before { content: ""; position: absolute; left: 14px; top: 1.25em; width: 7px; height: 7px; border-radius: 50%; background: var(--line); }
.estimate-result-note, .estimate-disclaimer { color: #5f6f85; font-size: 14px; line-height: 1.8; }
.estimate-actions { display: grid; gap: 12px; margin-top: 20px; text-align: center; }
.estimate-copy-box { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border); }
.estimate-copy-box h4 { margin: 0 0 8px; color: var(--navy); }
.estimate-copy-box p { margin: 0 0 10px; color: #64748b; font-size: 13px; line-height: 1.7; }
.estimate-copy-box textarea { display: block; width: 100%; min-height: 190px; padding: 14px; border: 1px solid #cbd5e1; border-radius: 8px; background: #f8fafc; color: #0f172a; font: inherit; font-size: 13px; line-height: 1.65; resize: vertical; }
.estimate-copy-box button { margin-top: 10px; }
.estimate-copy-box span { display: inline-block; margin-left: 10px; color: var(--line-dark); font-size: 13px; font-weight: 800; }
.estimate-disclaimer { margin: 18px 0 0; }
.estimate-benefit { margin-top: 16px; padding: 18px; border: 1px solid #fed7aa; border-radius: 8px; background: #fff7ed; box-shadow: 0 10px 24px rgba(234,88,12,.08); }
.estimate-benefit span { display: block; color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: .04em; }
.estimate-benefit strong { display: block; margin-top: 8px; color: var(--navy); line-height: 1.8; }
.area-price-grid, .price-example-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.area-price-card, .price-example-card { padding: 22px; border: 1px solid var(--border); border-radius: 8px; background: #fff; box-shadow: 0 8px 20px rgba(11,31,58,.04); }
.area-price-card p { margin: 0 0 8px; color: var(--line-dark); font-size: 13px; font-weight: 900; }
.area-price-card h3, .price-example-card h3 { margin: 0 0 12px; color: var(--navy); font-size: 1.05rem; line-height: 1.5; }
.area-price-card strong, .price-example-card strong { display: block; margin-top: 12px; color: var(--navy); font-size: 1.35rem; }
.area-price-card em { display: block; margin-top: 10px; color: #0f766e; font-size: 13px; font-style: normal; font-weight: 900; line-height: 1.7; }
.area-price-card span, .area-price-card small, .price-example-card p { display: block; color: #5f6f85; line-height: 1.75; }
.area-price-card small { margin-top: 10px; font-size: 13px; }
.price-example-card ul { display: grid; gap: 8px; margin-top: 12px; }
.price-example-card li { color: #405066; line-height: 1.7; }

.flow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.flow-grid li { min-height: 118px; padding: 18px; border: 1px solid var(--border); border-radius: 8px; background: #fff; font-weight: 800; line-height: 1.7; }
.flow-grid span { display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 14px; border-radius: 8px; background: var(--navy); color: #fff; }
.chart-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.chart-list li { padding: 15px; border: 1px solid var(--border); border-radius: 8px; background: #fff; color: var(--navy); font-weight: 800; }
.chart-list.compact { margin-top: 18px; }
.heading-row { display: flex; justify-content: space-between; gap: 24px; align-items: end; }
.faq-list { display: grid; gap: 14px; margin-top: 28px; }
.faq-item { border: 1px solid var(--border); border-radius: 8px; background: #fff; padding: 20px; }
.faq-item summary { display: flex; justify-content: space-between; gap: 18px; cursor: pointer; color: var(--navy); font-weight: 900; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary b { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--mist); color: var(--blue); }
.faq-item[open] summary b { transform: rotate(45deg); }
.faq-item p { margin: 16px 0 0; padding-top: 16px; border-top: 1px solid #eef2f7; color: #5f6f85; }

.contact-route-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 16px; margin: 32px 0; }
.line-first-box { margin-top: 28px; padding: 28px; border: 1px solid rgba(6,199,85,.28); border-radius: 8px; background: #f0fdf4; box-shadow: 0 8px 20px rgba(11,31,58,.04); }
.line-first-box h2 { margin: 0 0 12px; color: var(--navy); }
.line-first-box p { color: #4b5563; }
.line-first-box .button { margin-top: 12px; }
.contact-route { display: block; min-height: 150px; padding: 24px; border: 1px solid var(--border); border-radius: 8px; background: #fff; box-shadow: 0 8px 20px rgba(11,31,58,.04); }
.contact-route.is-line { border-color: rgba(6,199,85,.36); background: #f0fdf4; box-shadow: 0 14px 36px rgba(6,199,85,.12); }
.contact-route.is-form { background: #f8fafc; color: #64748b; box-shadow: none; }
.contact-route strong { display: block; color: var(--navy); font-size: 1.1rem; }
.contact-route.is-line strong { font-size: 1.22rem; }
.contact-route.is-form strong { color: #475569; font-size: 1rem; }
.contact-route span { display: block; margin-top: 12px; color: #5f6f85; line-height: 1.7; }
.contact-form { padding: 28px; border: 1px solid var(--border); border-radius: 8px; background: #fff; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.contact-form label { display: block; margin-top: 18px; color: var(--navy); font-size: 14px; font-weight: 900; }
.contact-form input[type="text"], .contact-form input[type="tel"], .contact-form input[type="email"], .contact-form select, .contact-form textarea {
  display: block; width: 100%; margin-top: 8px; padding: 14px 16px; border: 1px solid #cbd5e1; border-radius: 8px; font: inherit; color: #0f172a;
}
.contact-form textarea { min-height: 150px; }
.contact-form fieldset { margin: 24px 0 0; padding: 0; border: 0; }
.contact-form legend { color: var(--navy); font-size: 14px; font-weight: 900; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 12px; }
.check-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.check-grid label { display: flex; gap: 10px; align-items: center; margin: 0; padding: 13px; border: 1px solid var(--border); border-radius: 8px; background: #f8fafc; color: #334155; }
.agree { display: flex !important; gap: 10px; align-items: flex-start; }
.form-submit { width: 100%; margin-top: 22px; border: 0; }
.thanks-box { margin-top: 32px; padding: 32px; border: 1px solid #bbf7d0; border-radius: 8px; background: #f0fdf4; }
.thanks-box h2 { margin: 0; color: var(--navy); }

.policy-list { display: grid; gap: 18px; margin-top: 32px; }
.law-list { margin-top: 32px; overflow: hidden; border: 1px solid var(--border); border-radius: 8px; background: #fff; box-shadow: var(--shadow); }
.law-list div { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding: 22px; border-bottom: 1px solid var(--border); }
.law-list div:last-child { border-bottom: 0; }
.law-list dt { color: var(--navy); font-weight: 900; }
.law-list dd { margin: 0; color: #5f6f85; line-height: 1.8; }
.disclaimer-box { margin-top: 32px; padding: 24px; border: 1px solid #fde68a; border-radius: 8px; background: #fffbeb; }
.disclaimer-box h2 { margin: 0 0 12px; font-size: 1.15rem; }
.disclaimer-box p { margin: 8px 0 0; color: #475569; font-size: 14px; }

.cta-section { padding: 64px 0; background: var(--navy); color: #fff; }
.cta-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; }
.cta-section h2 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.55; }
.cta-section p { color: #dbeafe; }
.cta-actions { display: grid; gap: 12px; }
.cta-actions .button-line { min-height: 56px; font-size: 1.05rem; }
.cta-actions .form-text-link { justify-self: center; }
.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 55;
  width: min(330px, calc(100vw - 44px));
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(11,31,58,.18);
}
.floating-cta-head {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  padding-right: 28px;
}
.floating-cta-head img {
  display: block;
  width: 58px;
  height: 58px;
  border: 2px solid #bbf7d0;
  border-radius: 50%;
  object-fit: cover;
  background: #f0fdf4;
}
.floating-cta-title { margin: 0; color: var(--navy); font-size: 1.03rem; font-weight: 900; line-height: 1.35; }
.floating-cta p { margin: 0; color: #526176; font-size: 14px; line-height: 1.7; }
.floating-cta-note { margin-top: 4px !important; color: #9a3412 !important; font-size: 12px !important; font-weight: 900; line-height: 1.45 !important; }
.floating-cta-points {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff7ed;
}
.floating-cta-points li {
  position: relative;
  padding-left: 14px;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
}
.floating-cta-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.floating-cta-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; align-items: center; margin-top: 12px; }
.floating-cta .button { width: 100%; }
.floating-cta .button-subtle { border-color: #dbe3ee; background: #f8fafc; color: var(--navy); box-shadow: none; }
.floating-cta .form-text-link { justify-self: center; min-width: 64px; color: #64748b; }
.floating-cta .form-text-link:hover { color: var(--blue); }
.floating-cta small { display: block; margin-top: 8px; color: var(--muted); }
.floating-cta-close { position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; border: 1px solid var(--border); border-radius: 8px; background: #fff; color: var(--navy); cursor: pointer; }
.line-qr { display: block; width: 160px; max-width: 100%; margin-top: 18px; padding: 8px; border-radius: 8px; background: #fff; }
.site-footer { padding: 56px 0 96px; background: #030712; color: #cbd5e1; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 48px; }
.footer-grid-wide { grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 34px; }
.footer-brand, .footer-heading { margin: 0 0 18px; color: #fff; font-weight: 900; }
.footer-formal { margin: -8px 0 14px; color: #cbd5e1; font-size: 13px; line-height: 1.7; }
.footer-copy { color: #cbd5e1; font-size: 14px; }
.footer-disclaimer { margin-top: 20px; padding: 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 8px; background: rgba(255,255,255,.05); }
.footer-disclaimer p { margin: 8px 0 0; font-size: 12px; color: #cbd5e1; }
.footer-links li { margin-top: 12px; font-size: 14px; }
.footer-links a:hover { color: #fff; }
.copyright { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: #64748b; font-size: 12px; }
.free-consult-price {
  display: inline-grid;
  gap: 4px;
  margin: 18px 0;
  padding: 18px 22px;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  background: #fff7ed;
}
.free-consult-price span { color: #ea580c; font-size: 13px; font-weight: 900; }
.free-consult-price strong { color: var(--navy); font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1; }
.free-consult-price em { color: #475569; font-size: 13px; font-style: normal; font-weight: 800; }
.fixed-mobile-cta { display: none; }

@media (max-width: 1024px) {
  .global-nav, .header-actions { display: none; }
  .menu-toggle { display: block; }
  .site-proof-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid, .split-grid, .cta-grid { grid-template-columns: 1fr; }
  .card-grid, .reason-grid, .trouble-grid, .seo-card-grid, .price-summary-grid, .area-price-grid, .price-example-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-grid { grid-template-columns: repeat(2, 1fr); }
  .estimate-calculator { grid-template-columns: 1fr; }
  .area-visual-layout, .remote-visual-card { grid-template-columns: 1fr; }
  .estimate-result { position: static; }
}

@media (max-width: 700px) {
  body { padding-bottom: 92px; }
  body.admin-bar .site-header { top: 46px; }
  body.admin-bar .site-proof-bar { top: 112px; }
  .container, .narrow { width: min(100% - 32px, 1120px); }
  .section, .hero { padding: 56px 0; }
  .header-inner { height: 66px; }
  .site-proof-inner {
    gap: 6px;
    min-height: 0;
    padding: 7px 0;
  }
  .site-proof-inner span,
  .site-proof-inner a {
    min-height: 30px;
    padding: 6px 7px;
    font-size: 11px;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
  }
  .brand-text span { font-size: 17px; }
  .hero h1 { font-size: 2.25rem; }
  .hero-lead { font-size: 1.25rem; }
  .hero-actions, .cta-actions { display: grid; }
  .button { width: 100%; }
  .network-card { display: none; }
  .trouble-grid, .visual-story-grid, .card-grid, .reason-grid, .area-grid, .seo-card-grid, .flow-grid, .chart-list, .contact-route-grid, .form-grid, .check-grid, .check-grid.cols-4, .footer-grid, .price-summary-grid, .area-price-grid, .price-example-grid, .estimate-choice-row { grid-template-columns: 1fr; }
  .price-table th, .price-table td, .area-table th, .area-table td { padding: 14px 12px; font-size: 13px; }
  .price-table-wrap, .area-table-wrap { overflow-x: auto; }
  .price-table, .area-table { min-width: 560px; }
  .price-summary-card, .estimate-form, .estimate-result, .area-price-card, .price-example-card { padding: 20px; }
  .estimate-result h3 { font-size: 2rem; }
  .heading-row { display: block; }
  .contact-form, .line-first-box { padding: 20px; }
  .law-list div { grid-template-columns: 1fr; gap: 8px; }
  .floating-cta { display: none; }
  .fixed-mobile-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.96); border-top: 1px solid var(--border); box-shadow: 0 -10px 30px rgba(11,31,58,.14);
  }
  .fixed-mobile-cta img {
    display: block;
    width: 42px;
    height: 42px;
    border: 2px solid #bbf7d0;
    border-radius: 50%;
    object-fit: cover;
  }
  .fixed-mobile-cta p { margin: 0; color: var(--navy); font-size: 12px; font-weight: 900; text-align: left; line-height: 1.3; }
  .fixed-mobile-cta div { display: block; min-width: 0; }
  .fixed-mobile-cta-actions {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 6px;
    align-items: center;
  }
  .fixed-mobile-cta .button {
    width: auto;
    min-height: 40px;
    padding: 9px 10px;
    font-size: 12px;
    white-space: nowrap;
  }
  .fixed-mobile-cta .button-subtle {
    border-color: #dbe3ee;
    background: #f8fafc;
    color: var(--navy);
    box-shadow: none;
  }
  .fixed-mobile-cta .form-text-link { min-width: 58px; font-size: 13px; }
  .fixed-mobile-cta small { display: block; margin-top: 2px; color: #64748b; font-size: 10px; font-weight: 800; line-height: 1.25; text-align: left; }
}
