:root {
  color-scheme: light;
  --ink: #1a2742;
  --ink-soft: #4f5d70;
  --muted: #748091;
  --paper: #f2f1ed;
  --panel: #ffffff;
  --line: rgba(26, 39, 66, 0.12);
  --navy: #1e325a;
  --green: #2f6f62;
  --clay: #b66143;
  --gold: #c79a4b;
  --header-bg: rgba(255, 255, 255, 0.78);
  --header-border: rgba(255, 255, 255, 0.58);
  --nav-link: #26344d;
  --hero-title: #4d5562;
  --hero-text: #475261;
  --hero-soft: rgba(255, 255, 255, 0.72);
  --split-bg: #e8ece8;
  --contact-bg: #1a2742;
  --input-bg: rgba(255, 255, 255, 0.94);
  --input-text: #1a2742;
  --shadow: 0 24px 70px rgba(26, 39, 66, 0.12);
}

body[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f6f0e6;
  --ink-soft: #d5cfc4;
  --muted: #aaa396;
  --paper: #121826;
  --panel: #1c2535;
  --line: rgba(246, 240, 230, 0.16);
  --navy: #9fb9ff;
  --green: #82d8bc;
  --clay: #ffb08c;
  --gold: #f5cc74;
  --header-bg: rgba(24, 32, 47, 0.86);
  --header-border: rgba(255, 255, 255, 0.14);
  --nav-link: #f0eadf;
  --hero-title: #fbf4e8;
  --hero-text: #eee5d7;
  --hero-soft: rgba(28, 37, 53, 0.82);
  --split-bg: #172234;
  --contact-bg: #090e18;
  --input-bg: #f7f2e9;
  --input-text: #101827;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  transition: background 0.25s ease, color 0.25s ease;
}

body.menu-open {
  overflow: hidden;
}

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

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  left: 0;
  padding: 18px 24px 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

.nav-shell {
  align-items: center;
  background: var(--header-bg);
  border: 1px solid var(--header-border);
  border-radius: 8px;
  box-shadow: 0 12px 42px rgba(26, 39, 66, 0.11);
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  margin: 0 auto;
  max-width: 1240px;
  min-height: 64px;
  padding: 10px 12px 10px 18px;
  backdrop-filter: blur(18px);
}

.brand,
.nav-cta,
.nav-links,
.hero-actions,
.eyebrow,
.hero-consult,
.text-link,
.footer-links {
  align-items: center;
  display: flex;
}

.brand {
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  width: clamp(160px, 16vw, 230px);
}

.brand .logo-dark,
.site-footer .logo-dark {
  display: none;
}

body[data-theme="dark"] .logo-light {
  display: none;
}

body[data-theme="dark"] .logo-dark {
  display: block;
}

.nav-links {
  gap: 22px;
  justify-content: center;
  color: var(--nav-link);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  opacity: 0.84;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  color: var(--green);
  opacity: 1;
}

.nav-cta,
.button,
.theme-toggle {
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  justify-content: center;
}

.nav-cta {
  background: var(--navy);
  color: var(--paper);
  gap: 9px;
  min-height: 42px;
  padding: 0 15px;
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.theme-toggle {
  align-items: center;
  background: rgba(47, 111, 98, 0.1);
  border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
}

.theme-toggle:hover {
  background: rgba(47, 111, 98, 0.16);
}

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

.theme-icon-sun {
  display: none;
}

body[data-theme="dark"] .theme-icon-moon {
  display: none;
}

body[data-theme="dark"] .theme-icon-sun {
  display: block;
}

.nav-cta svg,
.button svg {
  height: 18px;
  width: 18px;
}

.icon-button {
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: none;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.icon-button svg {
  height: 24px;
  width: 24px;
}

.hero {
  align-items: center;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  padding: 104px 24px 24px;
  position: relative;
}

.hero-video,
.hero-tint {
  inset: 0;
  position: absolute;
}

.hero-video {
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  width: 100%;
  z-index: 0;
}

.hero-tint {
  background:
    linear-gradient(180deg, rgba(242, 241, 237, 0.28), rgba(242, 241, 237, 0.9)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.1) 48%, rgba(30, 50, 90, 0.32));
  z-index: 1;
}

body[data-theme="dark"] .hero-tint {
  background:
    linear-gradient(180deg, rgba(18, 24, 38, 0.34), rgba(18, 24, 38, 0.92)),
    linear-gradient(120deg, rgba(18, 24, 38, 0.76), rgba(18, 24, 38, 0.24) 48%, rgba(0, 0, 0, 0.34));
}

.hero-content {
  margin: 0 auto;
  max-width: 920px;
  position: relative;
  text-align: center;
  z-index: 3;
}

.eyebrow {
  background: var(--hero-soft);
  border: 1px solid var(--header-border);
  border-radius: 8px;
  color: var(--navy);
  gap: 8px;
  justify-content: center;
  margin: 0 auto 18px;
  max-width: max-content;
  padding: 9px 14px;
  backdrop-filter: blur(12px);
}

.eyebrow svg {
  height: 18px;
  width: 18px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.hero h1 {
  color: var(--hero-title);
  font-size: clamp(44px, 8vw, 94px);
  font-weight: 650;
  line-height: 0.98;
}

.hero p {
  color: var(--hero-text);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  margin: 22px auto 0;
  max-width: 690px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.button {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button.primary {
  background: var(--navy);
  color: var(--paper);
}

.button.ghost {
  background: var(--hero-soft);
  color: var(--navy);
}

.hero-proof {
  background: var(--hero-soft);
  border: 1px solid var(--header-border);
  border-radius: 8px;
  bottom: 34px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  left: 34px;
  padding: 18px;
  position: absolute;
  width: min(280px, calc(100% - 48px));
  z-index: 3;
  backdrop-filter: blur(18px);
}

.hero-proof strong {
  color: var(--navy);
  display: block;
  font-size: 42px;
  line-height: 1;
}

.hero-proof span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.proof-tags span {
  background: rgba(47, 111, 98, 0.1);
  border-radius: 8px;
  color: var(--green);
  padding: 6px 9px;
}

.hero-consult {
  background: var(--paper);
  border-radius: 8px 0 0 0;
  bottom: 0;
  gap: 13px;
  padding: 22px 24px;
  position: absolute;
  right: 0;
  z-index: 3;
}

.consult-icon {
  align-items: center;
  background: rgba(47, 111, 98, 0.12);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.consult-icon svg {
  height: 22px;
  width: 22px;
}

.hero-consult strong,
.hero-consult em {
  display: block;
  font-style: normal;
}

.hero-consult strong {
  font-size: 18px;
}

.hero-consult em {
  color: var(--muted);
  font-size: 14px;
  margin-top: 3px;
}

.section {
  margin: 0 auto;
  max-width: 1240px;
  padding: 96px 24px;
}

.section-kicker {
  color: var(--clay);
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.intro-grid {
  align-items: start;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.intro-grid h2,
.section-heading h2,
.split-copy h2,
.survey-panel h2,
.faq-intro h2,
.contact-copy h2 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 650;
  line-height: 1.06;
}

.intro-grid p,
.split-copy p,
.contact-copy p,
.section-heading p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.section-heading p {
  margin-top: 18px;
}

.section-heading {
  max-width: 760px;
}

.service-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
}

.service-card,
.planning-card,
.project-grid article,
.approval-flow > div,
.faq-list details,
.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card {
  min-height: 270px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-icon {
  align-items: center;
  background: rgba(47, 111, 98, 0.1);
  border-radius: 8px;
  color: var(--green);
  display: flex;
  height: 46px;
  justify-content: center;
  margin-bottom: 34px;
  width: 46px;
}

.service-icon svg {
  height: 23px;
  width: 23px;
}

.service-card h3,
.project-grid h3 {
  font-size: 23px;
  font-weight: 650;
  line-height: 1.18;
}

.service-card p,
.planning-card p,
.planning-card li,
.project-grid p,
.approval-flow p,
.faq-list p,
.survey-list p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin-top: 12px;
}

.planning-section {
  padding-top: 0;
}

.planning-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 38px;
}

.planning-card {
  min-height: 430px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.planning-card::after {
  background: linear-gradient(135deg, rgba(47, 111, 98, 0.12), transparent 60%);
  content: "";
  height: 160px;
  position: absolute;
  right: -80px;
  top: -80px;
  transform: rotate(18deg);
  width: 160px;
}

.planning-card h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  margin-top: 22px;
}

.planning-card ul {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.planning-card li {
  margin: 0;
  padding-left: 20px;
  position: relative;
}

.planning-card li::before {
  background: var(--green);
  border-radius: 999px;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 0.68em;
  width: 7px;
}

.plan-level {
  background: rgba(199, 154, 75, 0.16);
  border-radius: 8px;
  color: var(--clay);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 9px;
  text-transform: uppercase;
}

.plan-visual {
  background: rgba(47, 111, 98, 0.1);
  border: 1px solid rgba(47, 111, 98, 0.2);
  border-radius: 8px;
  height: 118px;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}

.soil-visual {
  background: linear-gradient(#f0d9b4 0 28%, #b87550 28% 54%, #6e4f41 54% 100%);
}

.soil-visual i {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  bottom: 14px;
  display: block;
  left: 22%;
  position: absolute;
  top: 12px;
  width: 8px;
}

.soil-visual i:nth-child(2) {
  left: 49%;
  top: 34px;
}

.soil-visual i:nth-child(3) {
  left: 74%;
  top: 22px;
}

.plan2d-visual {
  display: grid;
  gap: 7px;
  grid-template-columns: 1fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  padding: 13px;
}

.plan2d-visual i {
  border: 2px solid var(--green);
  border-radius: 5px;
}

.plan3d-visual {
  background: linear-gradient(140deg, rgba(159, 185, 255, 0.2), rgba(47, 111, 98, 0.16));
}

.plan3d-visual i {
  background: linear-gradient(135deg, var(--green), var(--navy));
  clip-path: polygon(28% 24%, 70% 12%, 86% 62%, 48% 86%, 16% 64%);
  display: block;
  height: 82px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
}

.model-visual {
  align-items: end;
  display: flex;
  gap: 8px;
  padding: 16px;
}

.model-visual i {
  background: var(--green);
  border-radius: 5px 5px 0 0;
  display: block;
  flex: 1;
  height: 46px;
}

.model-visual i:nth-child(2) {
  background: var(--gold);
  height: 78px;
}

.model-visual i:nth-child(3) {
  background: var(--clay);
  height: 60px;
}

.elevation-visual {
  background: linear-gradient(180deg, rgba(199, 154, 75, 0.16), rgba(47, 111, 98, 0.12));
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(4, 1fr);
  padding: 16px;
}

.elevation-visual i {
  align-self: end;
  background: var(--panel);
  border: 2px solid var(--green);
  border-radius: 5px 5px 0 0;
  height: 58px;
}

.elevation-visual i:nth-child(2),
.elevation-visual i:nth-child(3) {
  height: 84px;
}

.featured-plan {
  border-color: rgba(199, 154, 75, 0.5);
  box-shadow: var(--shadow);
}

.offer-section {
  padding: 0 max(24px, calc((100vw - 1240px) / 2 + 24px)) 96px;
}

.offer-card {
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(199, 154, 75, 0.22), rgba(47, 111, 98, 0.08)),
    var(--panel);
  border: 1px solid rgba(199, 154, 75, 0.42);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) 320px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 46px);
}

.offer-copy h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  margin: 0;
}

.offer-copy p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
  margin-top: 18px;
  max-width: 680px;
}

.offer-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.offer-actions span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.offer-terms {
  border-top: 1px solid var(--line);
  color: var(--muted) !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  margin-top: 24px !important;
  padding-top: 14px;
}

.offer-model {
  align-content: center;
  background: var(--contact-bg);
  border-radius: 8px;
  color: white;
  display: grid;
  justify-items: center;
  min-height: 300px;
  padding: 24px;
  position: relative;
  text-align: center;
}

.offer-ribbon {
  background: var(--gold);
  border-radius: 8px;
  color: #1f1606;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 12px;
  position: absolute;
  right: 18px;
  text-transform: uppercase;
  top: 18px;
}

.offer-model strong {
  color: #fff3d6;
  font-size: 92px;
  line-height: 0.9;
}

.offer-model em {
  color: #f5cc74;
  font-size: 34px;
  font-style: normal;
  font-weight: 900;
}

.offer-model p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  margin-top: 18px;
}

.split-section {
  background: var(--split-bg);
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  padding: 96px max(24px, calc((100vw - 1240px) / 2 + 24px));
}

.split-copy {
  align-self: center;
  max-width: 540px;
}

.split-copy p {
  margin-top: 22px;
}

.text-link {
  color: var(--green);
  font-weight: 800;
  gap: 8px;
  margin-top: 30px;
}

.text-link svg {
  height: 18px;
  width: 18px;
}

.approval-flow {
  display: grid;
  gap: 12px;
}

.approval-flow > div {
  display: grid;
  gap: 5px;
  grid-template-columns: 62px 1fr;
  padding: 22px;
}

.approval-flow span {
  color: var(--gold);
  font-weight: 900;
  grid-row: span 2;
}

.approval-flow strong {
  font-size: 20px;
}

.approval-flow p {
  margin-top: 0;
}

.survey-section {
  padding-bottom: 0;
}

.survey-panel {
  background:
    linear-gradient(120deg, rgba(26, 39, 66, 0.92), rgba(47, 111, 98, 0.74)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 80px);
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  color: white;
  min-height: 540px;
  padding: clamp(28px, 6vw, 70px);
}

.survey-panel .section-kicker {
  color: #f7d892;
}

.survey-panel h2 {
  max-width: 780px;
}

.survey-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 56px;
}

.survey-list p {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
  min-height: 150px;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.survey-list strong {
  color: white;
}

.project-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
}

.project-grid article {
  min-height: 250px;
  padding: 26px;
}

.project-grid span {
  color: var(--clay);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 54px;
  text-transform: uppercase;
}

.faq-section {
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  padding-top: 40px;
}

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

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 750;
  list-style: none;
  padding: 22px 24px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 18px 24px 24px;
}

.contact-section {
  background: var(--contact-bg);
  color: white;
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  padding: 96px max(24px, calc((100vw - 1240px) / 2 + 24px));
}

.contact-copy {
  align-self: center;
}

.contact-copy .section-kicker {
  color: #f2ca78;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 22px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--input-bg);
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--input-text);
  min-height: 48px;
  outline: none;
  padding: 12px 14px;
  width: 100%;
}

.contact-form textarea {
  min-height: 118px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #f2ca78;
  box-shadow: 0 0 0 3px rgba(242, 202, 120, 0.24);
}

.contact-form .button {
  margin-top: 6px;
}

.site-footer {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1240px;
  padding: 34px 24px;
}

.footer-logo {
  display: block;
  height: auto;
  margin-bottom: 10px;
  max-height: 64px;
  object-fit: contain;
  width: min(280px, 80vw);
}

.site-footer p {
  color: var(--ink-soft);
  line-height: 1.5;
}

body[data-theme="dark"] .nav-shell,
body[data-theme="dark"] .hero-proof,
body[data-theme="dark"] .eyebrow {
  box-shadow: var(--shadow);
}

body[data-theme="dark"] .hero-consult {
  background: var(--paper);
}

body[data-theme="dark"] .contact-form input,
body[data-theme="dark"] .contact-form select,
body[data-theme="dark"] .contact-form textarea {
  background: var(--input-bg);
}

.footer-links {
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  color: var(--navy);
  font-weight: 750;
}

@media (max-width: 980px) {
  .site-header {
    padding: 12px 12px 0;
  }

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

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .brand-logo {
    width: clamp(138px, 28vw, 180px);
  }

  .icon-button {
    display: flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .nav-links {
    background: var(--header-bg);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 14px;
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-cta {
    display: none;
  }

  .nav-actions {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
  }

  .hero {
    min-height: 920px;
    padding: 96px 16px 250px;
  }

  .hero-content {
    align-self: flex-start;
    margin-top: 54px;
  }

  .hero-proof {
    bottom: 126px;
    left: 16px;
  }

  .hero-consult {
    border-radius: 8px 0 0 0;
    bottom: 0;
    left: 16px;
    right: 0;
  }

  .intro-grid,
  .split-section,
  .faq-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .planning-grid,
  .project-grid,
  .survey-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 860px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

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

  .hero-proof {
    left: 12px;
    width: calc(100% - 24px);
  }

  .hero-consult {
    left: 12px;
    padding: 18px;
  }

  .section,
  .split-section,
  .contact-section {
    padding: 68px 18px;
  }

  .intro-grid {
    gap: 22px;
  }

  .service-grid,
  .planning-grid,
  .project-grid,
  .survey-list {
    grid-template-columns: 1fr;
  }

  .planning-card {
    min-height: auto;
  }

  .offer-section {
    padding: 0 18px 68px;
  }

  .offer-model {
    min-height: 240px;
  }

  .offer-model strong {
    font-size: 74px;
  }

  .survey-panel {
    min-height: auto;
  }

  .approval-flow > div {
    grid-template-columns: 1fr;
  }

  .approval-flow span {
    grid-row: auto;
  }

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

  .footer-logo {
    width: min(240px, 78vw);
  }

  .footer-links {
    justify-content: flex-start;
  }
}
