@keyframes panel-in {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
:root {
  --navy-deep: #071f3a;
  --navy: #0f3562;
  --blue: #185eb9;
  --blue-strong: #0e4e9f;
  --blue-light: #eaf3ff;
  --blue-soft: #f5f9ff;
  --ink: #17283a;
  --muted: #617186;
  --line: #d9e3ee;
  --white: #ffffff;
  --header-height: 72px;
  --page-width: 1560px;
  --shadow: 0 24px 65px rgba(15, 53, 98, 0.16);
  --shadow-soft: 0 12px 32px rgba(15, 53, 98, 0.09);
}
* {
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--ink);
  background: #f7faff;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.drawer-open {
  overflow: hidden;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
button,
input,
select,
textarea {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
[hidden] {
  display: none !important;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: relative;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(217, 227, 238, 0.95);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(15px);
}
.header-inner {
  width: min(94vw, var(--page-width));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}
.brand {
  width: 260px;
  display: block;
  text-decoration: none;
}
.brand img {
  width: 100%;
  height: auto;
}
.main-menu,
.nav-item {
  justify-content: center;
}
.main-menu {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 2px;
}
.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 0;
  padding: 0 13px;
  border: 0;
  background: 0 0;
  color: #415268;
  text-decoration: none;
  font-size: 13px;
  font-weight: 760;
  white-space: nowrap;
  cursor: pointer;
}
.nav-item-highlight {
  color: var(--blue);
  font-weight: 800;
}
.nav-item::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.18s ease;
}
.nav-item.active,
.nav-item:hover {
  color: var(--navy);
}
.nav-item.active::after,
.nav-item:hover::after {
  transform: scaleX(1);
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(15, 53, 98, 0.17);
}
.header-phone svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  border-radius: 10px;
  background: 0 0;
  cursor: pointer;
}
.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--navy);
  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
}
.home-shell {
  width: min(94vw, var(--page-width));
  min-height: calc(100dvh - var(--header-height));
  margin: 0 auto;
  display: grid;
  gap: 14px;
  padding: 20px 0 10px;
}
.home-growth {
  display: grid;
  grid-template-columns: 1.15fr 2fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}
.home-growth h2,
.interim-hook h2,
.local-presence h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.12;
}
.interim-hook h2,
.local-presence h2 {
  font-size: clamp(23px, 2.5vw, 36px);
  letter-spacing: -0.03em;
}
.growth-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.growth-steps article {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 12px;
  background: var(--blue-soft);
}
.growth-steps span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
}
.growth-steps strong {
  color: var(--navy);
  font-size: 12px;
}
.growth-steps small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}
.interim-hook,
.local-presence {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}
.interim-hook {
  border-color: #b9d1ec;
  background: linear-gradient(125deg, #fff, #eaf3ff);
}
.interim-hook p:not(.eyebrow),
.local-presence p:not(.eyebrow) {
  max-width: 980px;
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.6;
}
.local-presence a:not(.button) {
  color: var(--blue);
  font-weight: 750;
}
.city-selector {
  display: grid;
  min-width: min(100%, 330px);
  gap: 7px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--blue-soft);
}
.city-selector label {
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
}
.city-selector select {
  width: 100%;
  min-height: 44px;
  padding: 0 40px 0 12px;
  border: 1px solid #b9cbe0;
  border-radius: 10px;
  color: var(--navy);
  background: var(--white);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.city-selector select:focus-visible {
  outline: 3px solid rgba(27, 103, 200, 0.24);
  outline-offset: 2px;
}
.city-selector small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .home-growth,
  .interim-hook,
  .local-presence {
    grid-template-columns: 1fr;
  }
  .growth-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .growth-steps {
    grid-template-columns: 1fr;
  }
}
.hero-stage {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(520px, 0.93fr) minmax(560px, 1.07fr);
  align-items: center;
  gap: clamp(36px, 4vw, 74px);
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 6% 12%, rgba(24, 94, 185, 0.12), transparent 33%),
    linear-gradient(125deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.96));
}
.hero-copy {
  min-width: 0;
  padding: clamp(20px, 2.9vw, 44px) 0 clamp(20px, 2.5vw, 38px) clamp(24px, 3.8vw, 60px);
}
.eyebrow,
.hero-proof span {
  color: var(--blue);
  font-weight: 900;
}
.eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(44px, 4.4vw, 70px);
  line-height: 1.01;
  letter-spacing: -0.052em;
  text-wrap: balance;
}
.hero-lead {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.button,
.service-dock button {
  align-items: center;
  cursor: pointer;
}
.button {
  min-height: 46px;
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 0;
  border-radius: 11px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 26px rgba(24, 94, 185, 0.21);
}
.button-primary:hover {
  background: var(--blue-strong);
}
.button-ghost,
.button-secondary {
  border: 1px solid #b7c9dd;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
}
.button-ghost:hover,
.button-secondary:hover {
  box-shadow: var(--shadow-soft);
}
.hero-proof {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 24px 0 0;
  color: #526378;
  font-size: 12.5px;
  font-weight: 720;
}
.hero-proof li {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-proof span {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-light);
  font-size: 10px;
}
.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 0;
  overflow: hidden;
  border-radius: 25px;
  background: #dfeaf5;
  box-shadow: var(--shadow);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(7, 31, 58, 0.2));
  pointer-events: none;
}
.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-badge {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(7, 31, 58, 0.15);
  backdrop-filter: blur(12px);
}
.badge-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #2aa36b;
  box-shadow: 0 0 0 5px rgba(42, 163, 107, 0.14);
}
.hero-badge div {
  display: grid;
}
.hero-badge strong {
  color: var(--navy);
  font-size: 13px;
}
.hero-badge small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}
.service-dock {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.service-dock button {
  min-width: 0;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 8px 22px rgba(15, 53, 98, 0.05);
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease;
}
.service-dock button:focus-visible,
.service-dock button:hover {
  transform: translateY(-2px);
  border-color: #9ab9dc;
  box-shadow: var(--shadow-soft);
}
.dock-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
}
.dock-copy {
  display: grid;
  min-width: 0;
}
.dock-copy small,
.dock-copy strong {
  white-space: nowrap;
}
.dock-copy small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10.5px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dock-arrow {
  color: var(--blue);
  font-size: 18px;
  transition: transform 0.16s ease;
}
.method-choice-grid > button:hover b,
.service-dock button:hover .dock-arrow {
  transform: translateX(3px);
}
.home-footer {
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #7a899b;
  font-size: 10.5px;
}
.home-footer nav {
  display: flex;
  gap: 14px;
}
.home-footer a {
  color: #68798c;
  text-decoration: none;
}
.home-footer a:hover {
  color: var(--blue);
}
.drawer-layer {
  position: fixed;
  z-index: 300;
  inset: var(--header-height) 0 0;
  visibility: hidden;
  pointer-events: none;
}
.drawer-layer.open {
  visibility: visible;
  pointer-events: auto;
}
.drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 31, 58, 0.32);
  opacity: 0;
  cursor: default;
  backdrop-filter: blur(2px);
  transition: opacity 0.22s ease;
}
.drawer-layer.open .drawer-backdrop {
  opacity: 1;
}
.info-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(650px, 47vw);
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border-left: 1px solid rgba(217, 227, 238, 0.95);
  background: #fff;
  box-shadow: -26px 0 70px rgba(7, 31, 58, 0.19);
  transform: translateX(102%);
  transition: transform 0.24s cubic-bezier(0.22, 0.75, 0.25, 1);
}
.drawer-layer.open .info-drawer {
  transform: translateX(0);
}
.drawer-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(130deg, #fff, var(--blue-soft));
}
.drawer-eyebrow {
  margin: 0 0 4px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.drawer-header h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.drawer-close {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}
.drawer-close:hover {
  background: var(--blue-light);
}
.drawer-close svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.drawer-content {
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 26px 28px 30px;
}
.drawer-panel {
  animation: panel-in 0.22s ease both;
}
.panel-intro {
  max-width: 560px;
  margin: 0 0 22px;
  color: #3f5064;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 680;
}
.panel-grid,
.training-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.panel-grid article,
.training-grid article {
  min-height: 148px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #f8fbff);
  box-shadow: 0 8px 22px rgba(15, 53, 98, 0.045);
}
.panel-grid article > span,
.training-icon {
  place-items: center;
  font-size: 9px;
  font-weight: 900;
}
.panel-grid article > span {
  min-width: 32px;
  height: 27px;
  display: inline-grid;
  padding: 0 7px;
  border-radius: 8px;
  background: var(--blue-light);
  color: var(--blue);
}
.panel-grid h3,
.process-list h3,
.training-grid h3 {
  margin: 13px 0 0;
  color: var(--navy);
  font-size: 15px;
}
.human-note p,
.panel-grid p,
.process-list p,
.training-grid p {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.48;
}
.panel-grid p,
.process-list p,
.training-grid p {
  margin: 6px 0 0;
}
.training-icon {
  width: max-content;
  min-width: 42px;
  height: 31px;
  display: grid;
  padding: 0 9px;
  border-radius: 9px;
  background: var(--navy);
  color: #fff;
  letter-spacing: 0.04em;
}
.human-note {
  margin-top: 14px;
  padding: 17px 18px;
  border: 1px solid #c9dcf2;
  border-radius: 15px;
  background: var(--blue-soft);
}
.contact-cards strong,
.dock-copy strong,
.human-note strong {
  color: var(--navy);
  font-size: 13px;
}
.human-note p {
  margin: 5px 0 0;
}
.method-choice-grid {
  display: grid;
  gap: 12px;
}
.method-choice-grid > button {
  width: 100%;
  min-height: 104px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 14px;
  padding: 17px 18px;
  border: 1px solid #c8d9ec;
  border-radius: 17px;
  color: var(--ink);
  background: linear-gradient(145deg, #fff, #f8fbff);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}
.method-choice-grid > button:focus-visible,
.method-choice-grid > button:hover {
  border-color: #79a7d9;
  box-shadow: 0 12px 28px rgba(15, 53, 98, 0.1);
  transform: translateY(-1px);
}
.method-choice-grid > button > span:first-child {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--blue);
  background: var(--blue-light);
  font-size: 11px;
  font-weight: 900;
}
.method-choice-copy,
.method-choice-grid strong {
  display: block;
  min-width: 0;
}
.method-choice-grid strong,
.panel-back {
  margin: 0;
  color: var(--navy);
  font-size: 16px;
}
.panel-back {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 8px 13px;
  border: 1px solid #c8d9ec;
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.method-choice-grid small {
  display: block;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.method-choice-grid b {
  color: var(--blue);
  font-size: 20px;
  transition: transform 0.18s ease;
}
.panel-back:focus-visible,
.panel-back:hover {
  background: var(--blue-light);
}
.panel-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  margin-top: 20px;
}
.panel-footer > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}
.process-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0;
  margin: 0;
}
.contact-cards > a,
.contact-cards > div,
.process-list li {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}
.process-list li {
  min-height: 120px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 17px;
}
.process-list li > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}
.process-list h3 {
  margin-top: 2px;
}
.contact-cards {
  display: grid;
  gap: 10px;
}
.contact-cards > a,
.contact-cards > div {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  color: var(--ink);
  text-decoration: none;
}
.contact-cards > a:hover {
  border-color: #9ab9dc;
  box-shadow: var(--shadow-soft);
}
.contact-cards svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-cards span {
  display: grid;
  gap: 2px;
}
.contact-cards small {
  color: var(--muted);
  font-size: 10px;
}
:focus-visible {
  outline: 3px solid rgba(47, 125, 225, 0.46);
  outline-offset: 3px;
}
@media (max-width: 1250px) {
  .header-inner {
    grid-template-columns: 250px minmax(0, 1fr) auto;
    gap: 14px;
  }
  .brand {
    width: 225px;
  }
  .nav-item {
    padding-inline: 9px;
    font-size: 12px;
  }
  .nav-item::after {
    left: 9px;
    right: 9px;
  }
  .hero-stage {
    grid-template-columns: minmax(440px, 0.98fr) minmax(430px, 1.02fr);
    gap: 34px;
  }
  .hero-copy {
    padding-left: 36px;
  }
  .hero-copy h1 {
    font-size: clamp(43px, 4.4vw, 59px);
  }
  .dock-copy small {
    display: none;
  }
}
@media (max-width: 960px) {
  :root {
    --header-height: 66px;
  }
  .header-inner {
    grid-template-columns: 1fr auto auto;
  }
  .brand {
    width: 215px;
  }
  .menu-toggle {
    display: block;
  }
  .header-phone span,
  .nav-item::after {
    display: none;
  }
  .header-phone {
    padding: 11px;
  }
  .main-menu {
    position: fixed;
    z-index: 150;
    top: var(--header-height);
    left: 3vw;
    right: 3vw;
    height: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 0 0 17px 17px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .main-menu.open {
    display: flex;
  }
  .nav-item {
    min-height: 43px;
    justify-content: flex-start;
    padding: 0 13px;
    border-radius: 10px;
    font-size: 13px;
  }
  .nav-item.active,
  .nav-item:hover {
    background: var(--blue-light);
  }
  .home-shell {
    width: min(95vw, var(--page-width));
    padding-top: 14px;
  }
  .hero-stage {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: 24px;
  }
  .hero-copy {
    padding-left: 28px;
  }
  .hero-copy h1 {
    font-size: clamp(40px, 5.8vw, 54px);
  }
  .hero-lead {
    font-size: 15px;
  }
  .hero-visual {
    border-radius: 20px;
  }
  .service-dock {
    gap: 8px;
  }
  .service-dock button {
    padding: 10px;
  }
  .dock-number {
    width: 30px;
    height: 30px;
  }
  .dock-arrow {
    display: none;
  }
  .info-drawer {
    width: min(690px, 78vw);
  }
}
@media (max-width: 700px) {
  body {
    background: #fff;
  }
  .header-inner {
    width: calc(100% - 24px);
    grid-template-columns: 1fr auto;
  }
  .brand {
    width: 190px;
  }
  .header-phone {
    display: none;
  }
  .home-shell {
    width: calc(100% - 24px);
    height: auto;
    min-height: calc(100dvh - var(--header-height));
    display: block;
    padding: 12px 0 28px;
  }
  .hero-stage {
    grid-template-columns: 1fr;
    border-radius: 21px;
    overflow: hidden;
  }
  .hero-copy {
    align-self: center;
    padding: 22px 18px;
  }
  .eyebrow {
    margin-bottom: 10px;
    font-size: 9px;
  }
  .hero-copy h1 {
    max-width: 560px;
    font-size: clamp(34px, 9vw, 45px);
    line-height: 1.03;
  }
  .hero-lead {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.5;
  }
  .hero-actions {
    margin-top: 18px;
    gap: 8px;
  }
  .button {
    min-height: 43px;
    padding: 10px 13px;
    font-size: 12px;
  }
  .hero-proof {
    margin-top: 17px;
    gap: 7px 13px;
    font-size: 11px;
  }
  .hero-visual {
    display: block;
    min-height: 0;
    margin: 0 12px 12px;
    border-radius: 17px;
  }
  .hero-visual > img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
  }
  .hero-badge {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    max-width: none;
    margin: -58px 10px 10px;
    padding: 10px 12px;
  }
  .service-dock {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
  }
  .service-dock button:first-child {
    grid-column: 1 / -1;
  }
  .service-dock button {
    min-height: 58px;
    gap: 8px;
    padding: 8px 9px;
    border-radius: 12px;
  }
  .dock-number {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }
  .dock-copy strong {
    font-size: 11.5px;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .home-growth {
    margin-top: 14px;
  }
  .interim-hook,
  .local-presence {
    margin-top: 14px;
    padding: 22px 18px;
    border-radius: 18px;
  }
  .city-selector {
    width: 100%;
    min-width: 0;
  }
  .interim-hook h2,
  .local-presence h2 {
    font-size: 25px;
  }
  .home-footer {
    min-height: 20px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 18px;
    padding: 0 4px;
    font-size: 11px;
  }
  .home-footer nav {
    gap: 11px;
  }
  .drawer-layer {
    inset: 0;
  }
  .drawer-backdrop {
    background: rgba(9, 29, 51, 0.58);
  }
  .info-drawer {
    width: 100%;
    max-width: none;
    border-left: 0;
    border-radius: 0;
    transform: translateY(104%);
  }
  .drawer-layer.open .info-drawer {
    transform: translateY(0);
  }
  .drawer-header {
    min-height: 76px;
    padding: max(15px, env(safe-area-inset-top)) 18px 15px;
  }
  .drawer-header h2 {
    font-size: 22px;
  }
  .drawer-content {
    padding: 20px 18px 28px;
  }
  .drawer-panel {
    animation: none;
  }
  .panel-intro {
    margin-bottom: 16px;
    font-size: 15px;
  }
  .method-choice-grid > button {
    min-height: 0;
    grid-template-columns: 36px minmax(0, 1fr) 18px;
    gap: 11px;
    padding: 15px;
  }
  .method-choice-grid > button > span:first-child,
  .process-list li > span {
    width: 34px;
    height: 34px;
  }
  .method-choice-grid strong {
    font-size: 14px;
  }
  .method-choice-grid small {
    font-size: 12.5px;
  }
  .panel-grid,
  .process-list,
  .training-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .panel-grid article,
  .process-list li,
  .training-grid article {
    min-height: 0;
    padding: 15px;
  }
  .panel-grid h3,
  .training-grid h3 {
    margin-top: 8px;
    font-size: 13px;
  }
  .panel-grid p,
  .process-list p,
  .training-grid p {
    font-size: 13px;
    line-height: 1.5;
  }
  .training-icon {
    min-width: 36px;
    height: 27px;
    padding-inline: 7px;
    font-size: 8px;
  }
  .process-list li {
    grid-template-columns: 34px 1fr;
    gap: 11px;
  }
  .process-list li > span {
    border-radius: 9px;
  }
  .process-list h3 {
    font-size: 14px;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .panel-footer {
    margin-top: 16px;
  }
  .panel-footer .button {
    width: 100%;
  }
}
@media (max-width: 360px) {
  .panel-grid,
  .process-list,
  .training-grid {
    grid-template-columns: 1fr;
  }
  .panel-grid article,
  .process-list li,
  .training-grid article {
    min-height: 0;
  }
}
@media (max-width: 420px) {
  .brand {
    width: 170px;
  }
  .hero-copy {
    padding: 18px 14px;
  }
  .hero-copy h1 {
    font-size: clamp(31px, 9.5vw, 38px);
  }
  .hero-lead {
    font-size: 13.5px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .button {
    width: 100%;
  }
  .button-ghost span,
  .dock-copy small {
    display: none;
  }
  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }
  .service-dock button {
    min-height: 55px;
  }
  .service-dock {
    grid-template-columns: 1fr;
  }
  .service-dock button:first-child {
    grid-column: auto;
  }
}
@media (max-height: 760px) and (min-width: 701px) {
  .home-shell {
    padding-top: 12px;
    gap: 9px;
  }
  .hero-copy {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .hero-copy h1 {
    font-size: clamp(39px, 4.1vw, 54px);
  }
  .hero-lead {
    margin-top: 13px;
    line-height: 1.45;
  }
  .hero-actions {
    margin-top: 16px;
  }
  .hero-proof {
    margin-top: 13px;
  }
  .service-dock button {
    min-height: 61px;
  }
  .home-footer {
    display: none;
  }
}
@media (max-height: 650px) and (min-width: 961px) {
  .hero-proof {
    display: none;
  }
  .hero-actions {
    margin-top: 13px;
  }
  .hero-copy h1 {
    font-size: clamp(34px, 4vw, 47px);
  }
  .hero-lead {
    font-size: 13.5px;
  }
  .home-footer {
    display: none;
  }
}
@media (orientation: landscape) and (max-height: 560px) and (max-width: 960px) {
  .hero-stage {
    grid-template-columns: 1.15fr 0.85fr;
  }
  .hero-visual {
    display: block;
    min-height: 230px;
    margin: 10px 10px 10px 0;
  }
  .hero-visual > img {
    height: 230px;
  }
  .hero-copy {
    padding: 12px 22px;
  }
  .eyebrow {
    margin-bottom: 6px;
  }
  .hero-copy h1 {
    max-width: 760px;
    font-size: 34px;
  }
  .hero-lead {
    max-width: 760px;
    margin-top: 8px;
  }
  .hero-actions {
    margin-top: 10px;
  }
  .service-dock {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  ::after,
  ::before {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
