:root {
  --black: #060606;
  --ink: #1d1d1d;
  --muted: #5e5e5e;
  --orange: #f47b20;
  --orange-dark: #d96512;
  --orange-soft: #fff1e6;
  --line: #dedede;
  --soft: #f6f6f6;
  --surface: #ffffff;
  --focus: rgba(244, 123, 32, 0.18);
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.topbar {
  width: min(1180px, calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 176px;
  height: auto;
}

.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--black);
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.primary-nav a {
  padding: 10px 0;
}

.primary-nav a:hover {
  color: var(--orange-dark);
}

.phone-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  color: var(--black);
  border: 1px solid var(--orange);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 740;
}

.phone-link:hover {
  background: var(--orange-soft);
}

.phone-link svg {
  width: 18px;
  height: 18px;
  fill: var(--orange);
}

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

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--black);
}

.home-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 46px;
  align-items: start;
  padding: 54px 0 42px;
}

.hero-copy {
  max-width: 740px;
  align-self: center;
}

.home-hero h1,
.page-hero h1,
.legal-shell h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.04;
  font-weight: 790;
  letter-spacing: 0;
}

.home-hero p,
.page-hero p {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.54;
}

.hero-actions,
.page-actions,
.final-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-proof span {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: var(--black);
  font-size: 12px;
  font-weight: 720;
}

.hero-proof span + span {
  border-left: 1px solid var(--line);
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 760;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--black);
  border-color: var(--black);
}

.btn-primary:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.btn-secondary {
  color: var(--black);
  background: #fff;
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 760;
}

.callback-form {
  display: grid;
  gap: 12px;
  align-content: start;
  align-self: start;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-form {
  border-top: 4px solid var(--orange);
  box-shadow: var(--shadow);
}

.home-hero .hero-form {
  gap: 9px;
  padding: 18px;
}

.home-hero .hero-form h2 {
  font-size: 20px;
  margin-bottom: 0;
}

.home-hero .hero-form label {
  gap: 4px;
  font-size: 12px;
}

.home-hero .hero-form input,
.home-hero .hero-form select {
  min-height: 36px;
  font-size: 13px;
}

.home-hero .hero-form .consent {
  align-items: center;
  line-height: 1.25;
}

.home-hero .hero-form .form-submit {
  min-height: 40px;
}

.callback-form h2 {
  margin: 0 0 2px;
  color: var(--black);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 760;
}

.callback-form label {
  display: grid;
  gap: 6px;
  color: var(--black);
  font-size: 13px;
  font-weight: 680;
}

.callback-form input,
.callback-form select,
.callback-form textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 0 12px;
  outline: none;
  font-size: 13px;
}

.callback-form textarea {
  min-height: 96px;
  padding-top: 10px;
  resize: vertical;
}

.callback-form input:focus,
.callback-form select:focus,
.callback-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--focus);
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 430;
}

.consent input {
  width: 17px;
  height: 17px;
  min-height: 0;
  margin: 2px 0 0;
  accent-color: var(--orange);
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-submit[disabled] {
  opacity: 0.78;
  cursor: default;
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.form-status {
  min-height: 18px;
  margin: -2px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.form-status:empty,
.home-hero .form-note {
  display: none;
}

.form-status.is-error {
  color: #a43116;
}

.form-status.is-success {
  color: #216b32;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.quick-services {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-services a {
  flex: 1 1 150px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--black);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 760;
  text-align: center;
}

.quick-services a + a {
  border-left: 1px solid var(--line);
}

.quick-services a:hover {
  color: var(--orange-dark);
  background: var(--orange-soft);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 62px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 780px;
  margin: 0 0 30px;
}

.section-heading h2,
.faq-intro h2,
.final-cta h2,
.content-block h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.1;
  font-weight: 780;
  letter-spacing: 0;
}

.section-heading p,
.faq-intro p,
.final-cta p,
.content-block p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.compact-heading {
  max-width: 640px;
}

.statement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.statement-grid article {
  min-height: 208px;
  padding: 22px;
  background: #fff;
}

.statement-grid article + article {
  border-left: 1px solid var(--line);
}

.statement-grid span,
.service-mark,
.micro-label {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.statement-grid h3,
.service-card h3,
.work-list h3,
.detail-card h3,
.site-summary h3,
.faq-card h3 {
  margin: 10px 0 8px;
  color: var(--black);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 760;
}

.statement-grid p,
.service-card p,
.work-list p,
.detail-card p,
.site-summary p,
.faq-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.service-card,
.detail-card,
.site-summary,
.faq-card,
.legal-card,
.content-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card {
  min-height: 230px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--orange);
}

.service-card a,
.detail-card a,
.site-summary a {
  margin-top: auto;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 780;
}

.simulator {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  align-items: stretch;
}

.simulator-menu {
  display: grid;
  gap: 8px;
}

.sim-option {
  min-height: 48px;
  padding: 0 14px;
  color: var(--black);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-align: left;
  font-weight: 720;
  cursor: pointer;
}

.sim-option.is-active,
.sim-option:hover {
  color: #fff;
  background: var(--black);
  border-color: var(--black);
}

.simulator-result {
  min-height: 280px;
  padding: 28px;
  color: #fff;
  background: var(--black);
  border-radius: 8px;
}

.simulator-result h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
}

.simulator-result p {
  max-width: 660px;
  color: #d8d8d8;
  margin: 12px 0 18px;
}

.simulator-result ul {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding-left: 20px;
}

.split-section {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 46px;
  align-items: start;
}

.work-list {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.work-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 20px 22px;
  background: #fff;
}

.work-list article + article {
  border-top: 1px solid var(--line);
}

.work-list span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 780;
}

.faq-preview {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 44px;
  align-items: start;
}

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

.faq-list details,
.legal-card details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-list summary,
.legal-card summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: var(--black);
  font-weight: 760;
  cursor: pointer;
}

.faq-list p,
.legal-card details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 0 70px;
}

.final-actions {
  margin-top: 0;
  flex: 0 0 auto;
}

.site-footer {
  color: #fff;
  background: var(--black);
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-inner img {
  width: 180px;
  height: auto;
}

.footer-inner p {
  margin: 0;
  color: #d7d7d7;
  font-size: 14px;
}

.footer-inner a {
  color: #fff;
  font-weight: 700;
}

.legal {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 15px 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
}

.legal a:hover {
  color: #fff;
}

.page-hero,
.legal-shell,
.contact-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 62px 0 40px;
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero p {
  max-width: 780px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.detail-layout {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 76px;
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 24px;
}

.detail-content {
  display: grid;
  gap: 16px;
}

.content-block {
  padding: 24px;
}

.content-block h2 {
  font-size: clamp(24px, 2.4vw, 34px);
}

.content-block ul,
.content-block ol {
  margin: 16px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.content-block li + li {
  margin-top: 8px;
}

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

.detail-card {
  min-height: 168px;
  padding: 22px;
}

.detail-aside {
  position: sticky;
  top: 96px;
  align-self: start;
}

.notice-block {
  border-left: 4px solid var(--orange);
  background: var(--orange-soft);
}

.site-directory {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 76px;
  display: grid;
  gap: 16px;
}

.site-summary {
  display: grid;
  grid-template-columns: 230px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px;
}

.site-summary strong {
  color: var(--black);
  font-size: 21px;
  line-height: 1.2;
}

.site-summary .external-link {
  min-width: 160px;
  text-align: right;
}

.comparison-table {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 76px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 230px 1fr 1fr;
}

.comparison-row > * {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
}

.comparison-row:first-child > * {
  border-top: 0;
  color: #fff;
  background: var(--black);
  font-weight: 760;
}

.comparison-row > * + * {
  border-left: 1px solid var(--line);
}

.sites-hero,
.faq-hero {
  padding-bottom: 34px;
}

.choice-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.choice-strip article {
  min-height: 162px;
  padding: 20px;
  display: grid;
  align-content: space-between;
  gap: 14px;
}

.choice-strip article + article {
  border-left: 1px solid var(--line);
}

.choice-strip span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.choice-strip strong {
  color: var(--black);
  font-size: 20px;
  line-height: 1.15;
}

.choice-strip a {
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 780;
}

.site-system {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.site-card-large {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.site-card-large.is-featured {
  border-top: 4px solid var(--orange);
  box-shadow: var(--shadow);
}

.site-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.site-card-head h2,
.answer-card h2,
.page-cta-band h2 {
  margin: 6px 0 8px;
  color: var(--black);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
  font-weight: 780;
}

.site-card-head p,
.answer-card p,
.page-cta-band p {
  margin: 0;
  color: var(--muted);
}

.site-card-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
}

.site-card-copy p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-card-copy a {
  color: var(--orange-dark);
  font-weight: 760;
  white-space: nowrap;
}

.handoff-band {
  width: min(1180px, calc(100% - 40px));
  margin: 24px auto 76px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.handoff-band div {
  padding: 22px;
  background: var(--black);
  color: #fff;
}

.handoff-band div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.handoff-band span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-weight: 780;
}

.handoff-band strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.handoff-band p {
  margin: 9px 0 0;
  color: #d8d8d8;
  font-size: 14px;
}

.question-shortcuts {
  max-width: 880px;
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.question-shortcuts span {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: var(--black);
  font-size: 13px;
  font-weight: 760;
}

.question-shortcuts span + span {
  border-left: 1px solid var(--line);
}

.answer-layout {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: start;
}

.answer-nav {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.answer-nav strong {
  margin-bottom: 6px;
  color: var(--black);
  font-size: 14px;
}

.answer-nav a {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: var(--muted);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 680;
}

.answer-nav a:hover {
  color: var(--black);
  background: var(--orange-soft);
}

.answer-stack {
  display: grid;
  gap: 16px;
}

.answer-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.answer-card .faq-list {
  margin-top: 18px;
}

.page-cta-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 76px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.faq-page-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 76px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.faq-card {
  padding: 22px;
}

.faq-card .faq-list {
  margin-top: 14px;
}

.contact-layout {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 76px;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 28px;
  align-items: start;
}

.contact-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.contact-panel h2 {
  margin: 0 0 12px;
  color: var(--black);
  font-size: 28px;
}

.contact-panel p,
.contact-panel li {
  color: var(--muted);
}

.contact-panel ul {
  margin: 16px 0 0;
  padding-left: 22px;
}

.partner-layout {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 76px;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 28px;
  align-items: start;
}

.partner-content {
  display: grid;
  gap: 18px;
}

.partner-block {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.partner-block h2 {
  margin: 0 0 18px;
  color: var(--black);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}

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

.partner-grid article {
  min-height: 178px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.partner-grid span {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 820;
}

.partner-grid h3 {
  margin: 10px 0 8px;
  color: var(--black);
  font-size: 20px;
  line-height: 1.2;
}

.partner-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.partner-block-dark {
  color: #fff;
  background: var(--black);
  border-color: var(--black);
}

.partner-block-dark h2 {
  color: #fff;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: #f2f2f2;
  font-size: 13px;
  font-weight: 720;
}

.partner-aside {
  position: sticky;
  top: 96px;
  align-self: start;
}

.legal-page {
  background: var(--soft);
}

.legal-shell {
  max-width: 980px;
  padding-bottom: 76px;
}

.legal-shell h1 {
  margin-bottom: 24px;
}

.legal-grid {
  display: grid;
  gap: 14px;
}

.legal-card {
  padding: 24px;
}

.legal-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

@media (max-width: 1080px) {
  .topbar {
    width: min(1180px, calc(100% - 32px));
    gap: 18px;
  }

  .primary-nav {
    gap: 16px;
    font-size: 13px;
  }

  .phone-link {
    display: none;
  }

  .home-hero {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 24px;
    align-items: start;
    min-height: 0;
    padding: 42px 0 34px;
  }

  .hero-copy {
    max-width: none;
  }

  .home-hero h1,
  .page-hero h1,
  .legal-shell h1 {
    font-size: clamp(34px, 3.7vw, 44px);
    line-height: 1.06;
  }

  .home-hero p,
  .page-hero p {
    font-size: 16px;
    line-height: 1.52;
  }

  .callback-form {
    max-width: none;
    padding: 18px;
  }

  .callback-form h2 {
    font-size: 20px;
  }

  .callback-form input,
  .callback-form select,
  .callback-form textarea {
    min-height: 38px;
  }

  .detail-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
    gap: 20px;
  }

  .contact-layout,
  .partner-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 20px;
  }

  .detail-aside,
  .partner-aside {
    top: 90px;
  }

  .quick-services {
    grid-template-columns: repeat(3, 1fr);
  }

  .quick-services a {
    min-height: 44px;
  }

  .service-grid,
  .detail-grid,
  .faq-page-grid,
  .choice-strip,
  .question-shortcuts,
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .statement-grid,
  .simulator,
  .split-section,
  .faq-preview {
    grid-template-columns: 1fr;
  }

  .statement-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .statement-grid article + article {
    border-left: 0;
    border-top: 0;
  }

  .statement-grid article:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .statement-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .site-summary {
    grid-template-columns: 1fr;
  }

  .site-summary .external-link {
    text-align: left;
  }

  .choice-strip article:nth-child(odd) {
    border-left: 0;
  }

  .choice-strip article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .question-shortcuts span:nth-child(odd) {
    border-left: 0;
  }

  .question-shortcuts span:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .answer-nav {
    top: 90px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    padding: 10px 20px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .primary-nav a {
    padding: 11px 0;
  }
}

@media (max-width: 760px) {
  .topbar {
    width: min(100% - 28px, 1180px);
    min-height: 64px;
  }

  .brand img {
    width: 154px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    top: 64px;
  }

  .home-hero,
  .section,
  .footer-inner,
  .legal,
  .quick-services,
  .page-hero,
  .detail-layout,
  .site-directory,
  .site-system,
  .choice-strip,
  .handoff-band,
  .answer-layout,
  .page-cta-band,
  .comparison-table,
  .faq-page-grid,
  .contact-layout,
  .partner-layout,
  .contact-shell,
  .legal-shell {
    width: min(100% - 28px, 1180px);
  }

  .home-hero {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 38px 0 42px;
  }

  .home-hero h1,
  .page-hero h1,
  .legal-shell h1 {
    font-size: clamp(32px, 9vw, 36px);
    line-height: 1.07;
  }

  .home-hero p,
  .section-heading p,
  .page-hero p,
  .faq-intro p,
  .final-cta p {
    font-size: 16px;
  }

  .hero-actions,
  .page-actions,
  .final-actions,
  .btn {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .callback-form {
    padding: 18px;
  }

  .home-hero,
  .detail-layout,
  .contact-layout,
  .partner-layout,
  .service-grid,
  .detail-grid,
  .statement-grid,
  .faq-page-grid,
  .choice-strip,
  .answer-layout,
  .handoff-band,
  .question-shortcuts,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .quick-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .detail-aside,
  .partner-aside,
  .answer-nav {
    position: static;
  }

  .statement-grid article:nth-child(even) {
    border-left: 0;
  }

  .statement-grid article + article {
    border-top: 1px solid var(--line);
  }

  .quick-services a + a {
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .final-cta {
    display: grid;
  }

  .site-card-head,
  .site-card-copy,
  .page-cta-band {
    display: grid;
  }

  .site-card-head .btn {
    width: 100%;
  }

  .choice-strip article + article,
  .choice-strip article:nth-child(n + 3),
  .handoff-band div + div,
  .question-shortcuts span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .handoff-band div + div {
    border-top-color: rgba(255, 255, 255, 0.18);
  }

  .answer-nav {
    grid-template-columns: 1fr;
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-row > * + * {
    border-left: 0;
  }
}
