:root {
  --ink: #06153a;
  --ink-soft: #26375f;
  --muted: #61708a;
  --blue: #075fe8;
  --blue-dark: #0347b7;
  --blue-soft: #eaf2ff;
  --yellow: #ffc800;
  --yellow-dark: #e5ad00;
  --green: #199568;
  --green-soft: #e9f7ef;
  --gold-soft: #fff4c7;
  --star: #f5b400;
  --map-pin: #f05a37;
  --line: #dbe4f1;
  --surface: #ffffff;
  --wash: #f5f8fc;
  --navy: #061b42;
  --shadow: 0 18px 45px rgba(6, 21, 58, 0.1);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
}

.logo span {
  color: var(--blue);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 650;
}

.main-nav a {
  position: relative;
  padding: 22px 0 20px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 0;
  height: 3px;
  background: var(--blue);
  border-radius: 999px;
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 99px;
  content: "";
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.1;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(7, 95, 232, 0.24);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-yellow {
  background: var(--yellow);
  color: #171100;
  box-shadow: 0 10px 24px rgba(255, 200, 0, 0.24);
}

.button-yellow:hover {
  background: var(--yellow-dark);
}

.button-outline {
  border-color: #99aed3;
  background: #fff;
  color: var(--ink);
}

.button-full {
  width: 100%;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
}

.icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex: 0 0 auto;
}

.icon-sm {
  width: 18px;
  height: 18px;
}

.hero {
  padding: clamp(44px, 6vw, 72px) 0 30px;
  background:
    linear-gradient(180deg, #f7faff 0%, #fff 55%),
    #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: start;
  gap: clamp(28px, 4vw, 58px);
  margin-bottom: clamp(36px, 4vw, 54px);
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.15rem, 2.75vw, 3.25rem);
  font-weight: 850;
  line-height: 1.06;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(2.05rem, 2.45vw, 2.85rem);
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-devices {
  width: min(100%, 660px);
}

.hero-devices img {
  width: 100%;
  aspect-ratio: 1.48;
  object-fit: contain;
}

.device-frame,
.photo-frame,
.media-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.device-frame {
  padding: 8px;
}

.device-frame img {
  width: 100%;
  aspect-ratio: 1.38;
  object-fit: cover;
  border-radius: 6px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(6, 21, 58, 0.07);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 82px;
  padding: 16px 22px;
  border-right: 1px solid var(--line);
  font-weight: 800;
  line-height: 1.35;
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item .icon {
  width: 38px;
  height: 38px;
  color: var(--blue);
}

.asset-icon {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 auto;
}

.proof-item .asset-icon {
  width: 56px;
  height: 56px;
}

.section {
  padding: clamp(48px, 6.5vw, 72px) 0;
}

.section-tight {
  padding: clamp(36px, 5vw, 56px) 0;
}

.section-wash {
  background: var(--wash);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head h2,
.split-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2.6vw, 2.55rem);
  font-weight: 850;
  line-height: 1.06;
  letter-spacing: 0;
}

.section-head p,
.split-copy p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.audience-grid,
.service-grid,
.pricing-grid,
.care-grid,
.project-grid,
.benefit-grid,
.testimonial-grid,
.faq-grid,
.suitability-grid {
  display: grid;
  gap: 24px;
}

.audience-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-grid,
.pricing-grid,
.care-grid,
.project-grid,
.testimonial-grid,
.faq-grid,
.suitability-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-grid-main {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
  margin: 0 auto;
}

.benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.mini-card,
.price-card,
.project-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(6, 21, 58, 0.05);
}

.mini-card {
  display: grid;
  min-height: 116px;
  place-items: center;
  padding: 18px 16px;
  font-weight: 850;
  text-align: center;
}

.mini-card .icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: var(--blue);
}

.mini-card .asset-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
}

.card {
  padding: 28px;
}

.card-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
}

.card-icon-success {
  background: var(--green-soft);
  color: var(--green);
}

.card-icon-warning {
  background: var(--gold-soft);
  color: var(--yellow-dark);
}

.text-blue {
  color: var(--blue);
}

.text-green {
  color: var(--green);
}

.card > .asset-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
}

.card h3,
.project-card h3,
.price-card h3 {
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.2;
}

.card p,
.project-card p,
.price-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.card .link-arrow {
  margin-top: 18px;
}

.process-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
}

.process-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
}

.step-number {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  font-weight: 850;
}

.process-step h3 {
  margin: 2px 0 6px;
  font-size: 1rem;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.split-cta {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.8fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(90deg, #fff 0%, #f2f7ff 100%);
}

.split-copy {
  padding: clamp(30px, 5vw, 46px);
}

.split-copy .button {
  margin-top: 24px;
}

.photo-frame {
  min-height: 330px;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.photo-frame-standalone {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-card {
  position: relative;
  padding: 30px;
}

.price-card.featured {
  border-color: var(--blue);
  box-shadow: 0 20px 42px rgba(7, 95, 232, 0.15);
}

.popular {
  position: absolute;
  top: 0;
  right: -1px;
  left: -1px;
  display: grid;
  height: 28px;
  place-items: center;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--blue);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
}

.price-card.featured h3 {
  margin-top: 14px;
}

.addon-card {
  max-width: 860px;
  margin: 24px auto 0;
  border-color: rgba(7, 95, 232, 0.32);
  background: linear-gradient(90deg, #fff 0%, #f5f9ff 100%);
}

.addon-card .price {
  margin-bottom: 16px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 18px 0 20px;
}

.price small {
  color: var(--ink-soft);
  font-size: 1rem;
}

.price strong {
  font-size: clamp(2.25rem, 3.4vw, 3.15rem);
  line-height: 1;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  color: var(--ink-soft);
}

.check-list .icon {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

.note-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--ink);
  font-weight: 800;
  text-align: center;
}

.page-hero {
  padding: clamp(44px, 5vw, 66px) 0 clamp(30px, 4vw, 46px);
  background: linear-gradient(180deg, #f7faff 0%, #fff 70%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(34px, 7vw, 86px);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.hero-point {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  font-weight: 800;
}

.hero-point small {
  display: block;
  color: var(--muted);
  font-weight: 650;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 66px);
  min-height: 360px;
  padding: clamp(28px, 3.6vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.service-detail + .service-detail {
  margin-top: 18px;
}

.service-detail:nth-child(even) {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.76fr);
}

.service-detail:nth-child(even) .service-copy {
  order: 2;
}

.service-copy h2 {
  margin: 0;
  font-size: clamp(1.65rem, 1.95vw, 2.15rem);
  line-height: 1.08;
}

.service-copy p {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.service-visual {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--wash);
}

.service-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.45;
  object-fit: contain;
}

.service-visual.flush {
  background: transparent;
}

.service-visual.flush img {
  aspect-ratio: 1.45;
}

.services-page .section {
  padding-top: 28px;
}

.services-page .benefit-panel {
  box-shadow: 0 12px 28px rgba(6, 21, 58, 0.04);
}

.mock-google {
  padding: 28px;
}

.search-card {
  max-width: 420px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.search-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 1.15rem;
  font-weight: 750;
}

.local-result {
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 18px;
  padding: 22px;
}

.map-tile {
  min-height: 132px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(25, 149, 104, 0.14), rgba(7, 95, 232, 0.12)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(6, 21, 58, 0.08) 18px 20px);
  position: relative;
}

.map-tile::after {
  position: absolute;
  top: 42%;
  left: 52%;
  width: 22px;
  height: 22px;
  border: 4px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: var(--map-pin);
  content: "";
  transform: rotate(-45deg);
  box-shadow: 0 8px 16px rgba(240, 90, 55, 0.24);
}

.rating {
  color: var(--star);
  font-weight: 850;
}

.benefit-panel {
  padding: 42px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.benefit {
  padding: 10px 22px;
  text-align: center;
}

.benefit .icon {
  width: 42px;
  height: 42px;
  color: var(--blue);
}

.benefit h3 {
  margin: 18px 0 8px;
  font-size: 1.05rem;
}

.benefit p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.suitability {
  padding: 28px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
}

.suitability .card-icon {
  margin: 0;
}

.faq-item {
  overflow: hidden;
}

.faq-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border: 0;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
  text-align: left;
}

.faq-button .icon {
  transition: transform 160ms ease;
}

.faq-item.open .faq-button .icon {
  transform: rotate(90deg);
}

.faq-content {
  display: none;
  padding: 0 24px 24px;
  color: var(--ink-soft);
}

.faq-item.open .faq-content {
  display: block;
}

.project-preview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.project-preview img {
  width: 100%;
  object-fit: cover;
}

.project-card {
  overflow: hidden;
}

.project-thumb {
  min-height: 178px;
  background:
    linear-gradient(rgba(6, 21, 58, 0.28), rgba(6, 21, 58, 0.28)),
    var(--thumb, linear-gradient(135deg, #dbe8f9, #f8fbff));
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  font-size: 1.28rem;
  font-weight: 850;
  line-height: 1.15;
}

.project-thumb-painter {
  --thumb: linear-gradient(135deg, #577a50, #d7e4d0);
}

.project-thumb-dental {
  --thumb: linear-gradient(135deg, #7fa6bf, #f0f7fb);
}

.project-thumb-florist {
  --thumb: linear-gradient(135deg, #b4666d, #f2c65a);
}

.project-thumb-electric {
  --thumb: linear-gradient(135deg, #4d5b6e, #b9c3cf);
}

.project-thumb-driving {
  --thumb: linear-gradient(135deg, #1a4f9c, #8a97a8);
}

.project-thumb-physio {
  --thumb: linear-gradient(135deg, #b9cfe2, #f8fbff);
}

.project-body {
  padding: 26px;
}

.testimonial-card {
  padding: 28px;
}

.quote-mark {
  color: var(--blue);
  font-size: 3rem;
  line-height: 0.8;
  font-weight: 850;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--ink-soft);
}

.person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 850;
}

.stars {
  color: var(--star);
  letter-spacing: 0;
}

.legal-copy {
  max-width: 900px;
}

.legal-copy-narrow {
  max-width: 850px;
}

.legal-copy h1 {
  margin: 0 0 24px;
  font-size: clamp(2.05rem, 2.45vw, 2.85rem);
  line-height: 1.08;
}

.legal-copy h2 {
  margin: 32px 0 10px;
  font-size: clamp(1.35rem, 1.65vw, 1.75rem);
}

.legal-copy p {
  color: var(--ink-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
}

.contact-form,
.contact-info {
  padding: clamp(28px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(6, 21, 58, 0.05);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field-full {
  grid-column: 1 / -1;
}

label,
.field-label {
  display: block;
  margin: 0 0 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cdd8ea;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 14px 16px;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.radio-row,
.check-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.choice {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-weight: 650;
}

.choice input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--blue);
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--green);
  font-weight: 800;
}

.privacy-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.contact-list {
  display: grid;
  gap: 28px;
  margin-top: 28px;
}

.contact-entry {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
}

.contact-entry .card-icon {
  margin: 0;
}

.contact-entry h3 {
  margin: 0 0 6px;
}

.contact-entry p {
  margin: 0;
  color: var(--ink-soft);
}

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

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.6fr 0.8fr 1fr;
  gap: 34px;
  padding: 42px 0;
}

.footer .logo {
  color: #fff;
}

.footer .button-yellow {
  width: min(100%, 320px);
  min-height: 48px;
  padding-inline: 28px;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: none;
}

.footer .button-yellow:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.14);
}

.footer p,
.footer a,
.footer li {
  color: rgba(255, 255, 255, 0.78);
}

.footer a.button-yellow {
  color: #fff;
}

.footer h2,
.footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1rem;
}

.footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer .button-yellow + .footer-contact {
  margin-top: 18px;
}

.footer-contact span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.footer-bottom nav {
  display: flex;
  gap: 28px;
}

@media (max-width: 780px) {
  .hero-grid,
  .page-hero-grid,
  .service-detail,
  .service-detail:nth-child(even),
  .split-cta,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) .service-copy {
    order: 0;
  }

  .proof-strip,
  .audience-grid,
  .benefit-grid,
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-frame {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero-grid {
    margin-bottom: 0;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .nav-row {
    min-height: 70px;
  }

  .main-nav {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 26px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 18px 34px rgba(6, 21, 58, 0.12);
  }

  .nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 15px 0;
  }

  .main-nav a::after {
    bottom: 7px;
    right: auto;
    width: 44px;
  }

  .nav-actions .button {
    display: none;
  }

  .menu-button {
    display: inline-block;
  }

  .hero,
  .page-hero {
    padding-top: 42px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.05rem, 9.8vw, 3.2rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .proof-strip,
  .process-band,
  .hero-points,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 44px 0;
  }

  .audience-grid,
  .service-grid,
  .pricing-grid,
  .pricing-grid-main,
  .care-grid,
  .project-grid,
  .benefit-grid,
  .testimonial-grid,
  .faq-grid,
  .suitability-grid,
  .form-grid,
  .radio-row,
  .check-row {
    grid-template-columns: 1fr;
  }

  .card,
  .price-card,
  .project-body,
  .testimonial-card,
  .contact-form,
  .contact-info {
    padding: 24px;
  }

  .process-band {
    padding: 24px;
  }

  .local-result {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
