:root {
  --navy: #102a43;
  --navy-deep: #071a2d;
  --blue: #1b4e7a;
  --gold: #d8a13d;
  --orange: #ef7f2d;
  --green: #2f7d58;
  --green-soft: #e8f4ed;
  --ink: #152033;
  --muted: #5c6675;
  --line: #dbe2ea;
  --surface: #ffffff;
  --soft: #f4f7fa;
  --soft-warm: #fff8ec;
  --shadow: 0 18px 45px rgba(7, 26, 45, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

section {
  scroll-margin-top: 90px;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--surface);
  color: var(--navy);
  transform: translateY(-160%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 226, 234, 0.85);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark,
.brand-logo {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
}

.brand-mark {
  background: linear-gradient(145deg, var(--navy), var(--blue));
  color: #fff;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(16, 42, 67, 0.2);
}

.brand-logo {
  background: #fff;
  border: 1px solid rgba(216, 161, 61, 0.28);
  box-shadow: 0 10px 24px rgba(16, 42, 67, 0.12);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.brand-copy {
  display: grid;
  gap: 0;
  min-width: 0;
}

.brand-copy strong {
  font-size: 14px;
  line-height: 1.2;
  color: var(--navy);
  white-space: nowrap;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy);
  background: var(--soft);
}

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

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 99px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
  overflow-wrap: anywhere;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 14px 28px rgba(16, 42, 67, 0.18);
}

.btn-wa {
  color: #fff;
  background: linear-gradient(135deg, var(--green), #1f9d63);
  box-shadow: 0 14px 28px rgba(47, 125, 88, 0.22);
}

.btn-light {
  background: #fff;
  color: var(--navy);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost {
  color: var(--navy);
  background: var(--soft-warm);
  border-color: rgba(216, 161, 61, 0.32);
}

.header-cta {
  min-height: 42px;
  padding-inline: 16px;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100svh - 42px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy-deep);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("../../public/images/hero-rumah-1.jpg");
  background-size: cover;
  background-position: center right;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 26, 45, 0.9) 0%, rgba(7, 26, 45, 0.75) 34%, rgba(7, 26, 45, 0.24) 68%, rgba(7, 26, 45, 0.08) 100%),
    linear-gradient(0deg, rgba(7, 26, 45, 0.52), rgba(7, 26, 45, 0.06));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  padding-block: 90px 74px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd27a;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Poppins", "Inter", sans-serif;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(36px, 6vw, 70px);
}

.hero-subtitle {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2.1vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badges span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
}

.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-grid div {
  min-height: 112px;
  padding: 24px;
  background: var(--surface);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--navy);
  font-weight: 800;
}

.trust-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(70px, 8vw, 110px) 0;
}

.section-muted {
  background: var(--soft);
}

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

.section-heading h2,
.copy-block h2,
.final-cta h2 {
  font-size: clamp(28px, 4vw, 46px);
}

.section-heading p,
.copy-block p,
.final-cta p {
  color: var(--muted);
  font-size: 16px;
}

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

.feature-card,
.commitment-card,
.poster-frame,
.promo-card,
.about-visual,
.document-preview,
.siteplan-preview,
.price-card,
.calculator,
.gallery-card,
.legal-grid article,
.process-list li,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.06);
}

.project-highlight {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.poster-frame {
  overflow: hidden;
  background: #fff;
}

.poster-frame img {
  width: 100%;
  max-height: 760px;
  object-fit: contain;
  background: #fff;
}

.promo-card {
  padding: 18px;
  border-left: 4px solid var(--orange);
  background: var(--soft-warm);
}

.promo-card strong,
.promo-card span {
  display: block;
}

.promo-card strong {
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
}

.promo-card span {
  margin-top: 5px;
  color: var(--muted);
}

.project-spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.project-spec-list div {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.project-spec-list strong,
.project-spec-list span {
  display: block;
}

.project-spec-list strong {
  color: var(--navy);
  font-weight: 900;
}

.project-spec-list span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.feature-card {
  padding: 24px;
}

.feature-icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(216, 161, 61, 0.22), rgba(239, 127, 45, 0.12)),
    var(--soft-warm);
  border: 1px solid rgba(216, 161, 61, 0.24);
  position: relative;
}

.feature-icon::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-right: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(45deg) translate(-1px, -2px);
}

.feature-card h3,
.legal-grid h3,
.process-list h3,
.calculator h3,
.price-card h3,
.commitment-card h3 {
  font-size: 21px;
}

.feature-card p,
.legal-grid p,
.process-list p,
.price-card p,
.fine-print {
  color: var(--muted);
  margin-bottom: 0;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.split-large {
  grid-template-columns: minmax(320px, 1.04fr) minmax(300px, 0.96fr);
}

.copy-block > * + * {
  margin-top: 18px;
}

.commitment-card {
  padding: 28px;
}

.clean-list,
.check-list,
.site-footer ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.clean-list li,
.check-list li {
  position: relative;
  padding-left: 28px;
  margin-top: 12px;
  color: var(--muted);
}

.clean-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--blue);
  font-weight: 800;
}

.about-visual {
  overflow: hidden;
  margin: 0;
  background: #fff;
}

.about-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-visual figcaption {
  padding: 14px 16px;
  color: var(--navy);
  font-weight: 900;
  border-top: 1px solid var(--line);
}

.house-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.house-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.document-preview,
.siteplan-preview {
  display: block;
  overflow: hidden;
  background: #fff;
}

.document-preview img,
.siteplan-preview img {
  width: 100%;
  max-height: 780px;
  object-fit: contain;
  background: #fff;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.spec-grid div {
  padding: 18px 14px;
  border-radius: var(--radius);
  background: var(--soft);
  border: 1px solid var(--line);
}

.spec-grid strong,
.spec-grid span {
  display: block;
}

.spec-grid strong {
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.spec-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 22px;
  align-items: stretch;
}

.price-card,
.calculator {
  padding: clamp(24px, 4vw, 34px);
}

.label {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-card h3 {
  font-size: clamp(32px, 5vw, 54px);
  color: var(--navy);
}

.price-list {
  margin: 24px 0;
  display: grid;
  gap: 12px;
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.price-list dt {
  color: var(--muted);
}

.price-list dd {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  text-align: right;
}

.price-card small,
.fine-print {
  display: block;
  font-size: 13px;
}

.calculator {
  display: grid;
  gap: 14px;
}

.calculator label,
.lead-form label {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.calculator input,
.lead-form input,
.lead-form select {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid #cbd5df;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: none;
}

.calculator input:focus,
.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(27, 78, 122, 0.12);
}

.range-row label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.calc-output {
  display: block;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green);
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 900;
}

.requirement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.requirement-grid .check-list {
  margin: 0;
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.form-section {
  background:
    linear-gradient(135deg, rgba(16, 42, 67, 0.96), rgba(27, 78, 122, 0.92)),
    var(--navy);
  color: #fff;
}

.form-section h2,
.form-section .eyebrow {
  color: #fff;
}

.form-section .copy-block p {
  color: rgba(255, 255, 255, 0.76);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.contact-mini {
  display: grid;
  gap: 3px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.contact-mini span {
  color: rgba(255, 255, 255, 0.76);
}

.lead-form {
  padding: clamp(22px, 4vw, 32px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0;
  color: var(--muted);
  font-weight: 600;
}

.consent input {
  width: auto;
  margin: 4px 0 0;
}

.form-submit {
  width: 100%;
}

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

.location-list {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.location-list div {
  padding: 16px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fff;
}

.location-list strong,
.location-list span {
  display: block;
}

.location-list span {
  margin-top: 4px;
  color: var(--muted);
}

.map-panel {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #dce7ef;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

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

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.contain-card img {
  object-fit: contain;
  padding: 10px;
  background: #fff;
}

.siteplan-layout .section-heading {
  max-width: 850px;
}

.siteplan-preview {
  max-width: 760px;
  margin-inline: auto;
}

.gallery-card figcaption {
  padding: 15px 16px;
  color: var(--navy);
  font-weight: 900;
  border-top: 1px solid var(--line);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  padding: 20px;
}

.process-list span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange);
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 900;
}

.process-list h3 {
  font-size: 18px;
}

.process-list p {
  font-size: 14px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.legal-grid article {
  padding: 24px;
  border-top: 4px solid var(--gold);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(320px, 1.24fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.final-cta {
  padding: clamp(70px, 8vw, 110px) 0;
  background:
    linear-gradient(135deg, rgba(7, 26, 45, 0.94), rgba(16, 42, 67, 0.88)),
    url("../../public/images/galeri-rumah-1.jpg") center / cover;
  color: #fff;
}

.final-cta h2,
.final-cta p {
  color: #fff;
}

.final-cta-inner {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.76);
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.75fr 0.75fr;
  gap: 28px;
}

.footer-brand .brand-copy strong,
.site-footer h2 {
  color: #fff;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 16px;
}

.site-footer p {
  max-width: 380px;
}

.site-footer li {
  margin-bottom: 9px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #1f9d63);
  box-shadow: 0 16px 38px rgba(47, 125, 88, 0.32);
}

.floating-wa span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 900;
}

.floating-wa strong {
  font-size: 14px;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    padding-inline: 8px;
  }

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

  .gallery-card img {
    height: 240px;
  }

  .process-list,
  .legal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 880px) {
  .header-inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: grid;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    transform-origin: top;
    transform: scaleY(0.92);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-bg {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 26, 45, 0.92), rgba(7, 26, 45, 0.76) 52%, rgba(7, 26, 45, 0.5)),
      linear-gradient(90deg, rgba(7, 26, 45, 0.62), rgba(7, 26, 45, 0.12));
  }

  .trust-grid,
  .project-highlight,
  .split,
  .split-large,
  .pricing-layout,
  .form-layout,
  .faq-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    gap: 0;
  }

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

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

  .map-panel,
  .map-panel iframe {
    min-height: 340px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  .brand-copy strong {
    max-width: 190px;
    white-space: normal;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-block: 74px 54px;
  }

  .hero h1 {
    font-size: clamp(32px, 12vw, 48px);
  }

  .hero-actions,
  .section-cta {
    flex-direction: column;
  }

  .hero-actions .btn,
  .section-cta .btn {
    width: 100%;
  }

  .feature-grid,
  .gallery-grid,
  .project-spec-list,
  .spec-grid,
  .requirement-grid,
  .form-grid,
  .process-list,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card img {
    height: 230px;
  }

  .trust-grid div {
    min-height: auto;
    padding: 18px;
  }

  .section {
    padding: 64px 0;
  }

  .form-layout {
    gap: 22px;
  }

  .lead-form {
    padding: 18px;
  }

  .floating-wa {
    right: 12px;
    bottom: 12px;
  }
}
