:root {
  --royal: #123e8a;
  --gold: #f5b400;
  --navy: #061327;
  --ink: #101828;
  --muted: #667085;
  --line: rgba(16, 24, 40, 0.1);
  --surface: #ffffff;
  --soft: #f5f7fb;
  --shadow: 0 24px 70px rgba(6, 19, 39, 0.14);
  --radius: 28px;
}

[data-theme="dark"] {
  --ink: #f8fafc;
  --muted: #bdc7d7;
  --surface: #0b1b34;
  --soft: #07172d;
  --line: rgba(255, 255, 255, 0.12);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, Manrope, Arial, sans-serif;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 19, 39, 0.32);
  backdrop-filter: blur(20px);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
}

.nav {
  width: min(1200px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  border-radius: 18px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.96);
}

.brand img {
  width: 148px;
  height: 48px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
}

.site-header.scrolled .nav-links {
  color: var(--ink);
}

.nav-links a:not(.nav-cta):hover {
  color: var(--gold);
}

.nav-cta,
.button.primary {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 18px 38px rgba(245, 180, 0, 0.26);
}

.nav-cta {
  border-radius: 999px;
  padding: 12px 18px;
}

.theme-toggle,
.menu-toggle {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  width: 42px;
  height: 42px;
  color: inherit;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.site-header.scrolled .theme-toggle,
.site-header.scrolled .menu-toggle {
  border-color: var(--line);
}

.menu-toggle {
  display: none;
  color: #fff;
}

.site-header.scrolled .menu-toggle {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 19, 39, 0.94), rgba(6, 19, 39, 0.72) 42%, rgba(6, 19, 39, 0.18)),
    linear-gradient(180deg, rgba(6, 19, 39, 0.25), rgba(6, 19, 39, 0.86));
}

.motion-map {
  z-index: 1;
  pointer-events: none;
  opacity: 0.72;
}

.route {
  position: absolute;
  width: min(520px, 42vw);
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(245, 180, 0, 0.95), transparent);
  filter: drop-shadow(0 0 12px rgba(245, 180, 0, 0.35));
  animation: routeSweep 5.8s ease-in-out infinite;
}

.route-one {
  left: 6%;
  top: 36%;
  transform: rotate(-12deg);
}

.route-two {
  right: 4%;
  bottom: 28%;
  transform: rotate(9deg);
  animation-delay: 1.6s;
}

.route-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 10px rgba(245, 180, 0, 0.13), 0 0 30px rgba(245, 180, 0, 0.55);
  animation: pulseDot 2.6s ease-in-out infinite;
}

.dot-one {
  left: 20%;
  top: 32%;
}

.dot-two {
  right: 26%;
  top: 44%;
  animation-delay: 0.8s;
}

.dot-three {
  right: 14%;
  bottom: 24%;
  animation-delay: 1.4s;
}

.hero-inner,
.section,
.trust-strip,
.footer-grid,
.copyright {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.72fr;
  align-items: center;
  gap: 48px;
  padding: 128px 0 84px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  margin: 0 0 18px;
  padding: 9px 14px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.11);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
}

.eyebrow.blue {
  color: var(--royal);
  background: rgba(245, 180, 0, 0.17);
}

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

h1,
h2 {
  font-family: Poppins, Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(4rem, 9vw, 7.8rem);
  line-height: 0.92;
}

h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.05;
}

h3 {
  letter-spacing: 0;
}

.hero-subtitle {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  font-weight: 800;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.nav-cta:hover,
.bundle-link:hover {
  transform: translateY(-2px);
}

.button.secondary {
  color: #fff;
  background: var(--royal);
  box-shadow: 0 18px 38px rgba(18, 62, 138, 0.34);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin-top: 28px;
}

.quick-stats span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.floating-chip {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 10px 14px;
  color: #fff;
  background: rgba(18, 62, 138, 0.72);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  font-size: 0.82rem;
  font-weight: 900;
  animation: floatChip 4.8s ease-in-out infinite;
}

.chip-one {
  top: -18px;
  right: 26px;
}

.chip-two {
  left: -18px;
  bottom: 32px;
  color: var(--navy);
  background: rgba(245, 180, 0, 0.86);
  animation-delay: 1.1s;
}

.hero-card > img {
  width: 190px;
  height: 72px;
  object-fit: contain;
  border-radius: 18px;
  padding: 8px;
  background: #fff;
}

.dispatch-card {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 32px;
  border-radius: 24px;
  padding: 18px;
  color: var(--navy);
  background: #fff;
}

.dispatch-card p {
  margin: 5px 0 0;
  color: #667085;
  line-height: 1.5;
}

.live-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #12b76a;
  box-shadow: 0 0 0 9px rgba(18, 183, 106, 0.14);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.hero-metrics div {
  border-radius: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: var(--gold);
  font-size: 1.35rem;
}

.hero-metrics span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 700;
}

.trust-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: -44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-strip div {
  padding: 26px;
  background: var(--surface);
  transition: transform 0.2s ease, background 0.2s ease;
}

.trust-strip div:hover {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--surface) 92%, var(--gold));
}

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

.trust-strip strong {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: 96px 0;
}

.section-head {
  margin-bottom: 42px;
}

.section-head.compact {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.lead {
  max-width: 680px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.band {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100vw - 1200px) / 2));
  padding-left: max(16px, calc((100vw - 1200px) / 2));
  background:
    radial-gradient(circle at 12% 15%, rgba(245, 180, 0, 0.12), transparent 28%),
    var(--soft);
}

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

.service-grid article,
.why-grid article,
.bundle-grid article,
.calculator,
.business-panel,
.contact-form,
.qr-card,
.testimonial,
.faq details,
.contact-list a,
.contact-list div,
.formula-grid div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-grid article,
.why-grid article,
.bundle-grid article {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 26px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-grid article:hover,
.why-grid article:hover,
.bundle-grid article:hover,
.calculator:hover,
.business-panel:hover,
.contact-form:hover {
  transform: translateY(-5px);
  border-color: rgba(18, 62, 138, 0.22);
  box-shadow: 0 30px 80px rgba(6, 19, 39, 0.18);
}

.service-grid article::after,
.why-grid article::after,
.bundle-grid article::after {
  content: "";
  position: absolute;
  right: -32px;
  top: -32px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: rgba(245, 180, 0, 0.13);
}

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

.bundle-grid article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.bundle-grid article > span {
  align-self: flex-start;
  border-radius: 999px;
  margin-bottom: 20px;
  padding: 8px 12px;
  color: var(--royal);
  background: rgba(18, 62, 138, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
}

.bundle-grid h3 {
  margin-bottom: 14px;
}

.bundle-grid p,
.bundle-grid small {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

.bundle-grid strong {
  display: block;
  margin-top: auto;
  color: var(--royal);
  font-size: 1.45rem;
}

.bundle-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  border-radius: 999px;
  margin-top: 18px;
  padding: 12px 16px;
  color: var(--navy);
  background: var(--gold);
  font-size: 0.9rem;
  font-weight: 900;
}

.bundle-grid .featured {
  color: #fff;
  background: var(--navy);
  border-color: rgba(245, 180, 0, 0.55);
}

.bundle-grid .featured > span {
  color: var(--navy);
  background: var(--gold);
}

.bundle-grid .featured p,
.bundle-grid .featured small {
  color: rgba(255, 255, 255, 0.68);
}

.bundle-grid .featured strong {
  color: var(--gold);
}

.service-grid span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  margin-bottom: 22px;
  color: #fff;
  background: var(--royal);
  font-weight: 900;
  box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.14);
}

.service-grid h3,
.why-grid h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.service-grid p,
.why-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.pricing-layout,
.business,
.booking-section,
.contact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: start;
}

.formula-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

.formula-grid div {
  padding: 18px;
  box-shadow: none;
}

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

.formula-grid span {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.5;
}

.calculator {
  display: grid;
  gap: 16px;
  padding: 30px;
}

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

label {
  position: relative;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
}

label small {
  position: absolute;
  right: 16px;
  bottom: 15px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px 16px;
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 94%, var(--soft));
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(18, 62, 138, 0.5);
  box-shadow: 0 0 0 4px rgba(18, 62, 138, 0.12);
}

.estimate-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.16);
}

.estimate-card div {
  padding: 22px;
  color: #fff;
  background: var(--navy);
}

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

.estimate-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
}

.estimate-card strong {
  margin-top: 8px;
  color: var(--gold);
  font-size: 1.35rem;
}

.business-copy p:not(.eyebrow) {
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.business-panel {
  overflow: hidden;
}

.business-panel img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  object-position: 72% center;
  background: linear-gradient(145deg, #e9f3ff, #fff7db);
  transition: transform 0.7s ease;
}

.business-panel:hover img {
  transform: scale(1.04);
}

.solution-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 20px;
}

.solution-list p {
  margin: 0;
  border-radius: 16px;
  padding: 14px;
  color: var(--royal);
  background: rgba(18, 62, 138, 0.08);
  font-weight: 900;
}

.testimonials {
  text-align: center;
}

.carousel {
  position: relative;
  max-width: 720px;
  min-height: 210px;
  margin: 34px auto 0;
}

.testimonial {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 36px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.testimonial.active {
  opacity: 1;
  transform: translateY(0);
}

.testimonial strong {
  color: var(--gold);
}

.testimonial p {
  margin: 10px 0;
  font-size: 1.7rem;
  font-weight: 900;
}

.testimonial span {
  color: var(--muted);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.carousel-controls button {
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
  font-size: 1.45rem;
}

.booking-copy p:not(.eyebrow) {
  margin: 22px 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
}

.hidden {
  display: none;
}

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

.button.submit {
  color: #fff;
  background: var(--royal);
}

.button.whatsapp {
  color: var(--navy);
  background: var(--gold);
}

.qr-card {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 440px;
  padding: 18px;
}

.qr-card img {
  width: 112px;
  height: 112px;
  border-radius: 16px;
}

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

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

.faq {
  max-width: 900px;
}

.faq details {
  padding: 23px 26px;
}

.faq details + details {
  margin-top: 14px;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 900;
}

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

.faq p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.contact-list a,
.contact-list div {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.contact-list span {
  color: var(--muted);
}

.contact iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.footer {
  padding: 58px 0 28px;
  color: #fff;
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 42px;
}

.footer img {
  width: 174px;
  height: 66px;
  object-fit: contain;
  border-radius: 18px;
  padding: 8px;
  background: #fff;
}

.footer p,
.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.8;
}

.footer h3 {
  color: var(--gold);
}

.copyright {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  font-size: 0.92rem;
}

.float-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 18px 44px rgba(245, 180, 0, 0.4);
  font-weight: 900;
  animation: whatsappPulse 2.6s ease-in-out infinite;
}

.reveal {
  animation: rise 0.75s ease both;
}

.delay {
  animation-delay: 0.16s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes routeSweep {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  18%,
  72% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@keyframes floatChip {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 18px 44px rgba(245, 180, 0, 0.4);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 24px 54px rgba(245, 180, 0, 0.5);
  }
}

.animate-in {
  opacity: 0;
  transform: translateY(22px);
}

.animate-in.visible {
  animation: rise 0.7s ease both;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1060px) {
  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    top: 84px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 18px;
    color: var(--ink);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

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

  .nav-links a,
  .nav-links button {
    justify-content: center;
    border-radius: 16px;
    padding: 14px;
    background: var(--soft);
  }

  .theme-toggle {
    width: 100%;
  }

  .hero-inner,
  .pricing-layout,
  .business,
  .booking-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .why-grid,
  .bundle-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 720px) {
  .hero-inner,
  .section,
  .trust-strip,
  .footer-grid,
  .copyright {
    width: min(100% - 24px, 1200px);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 19, 39, 0.9), rgba(6, 19, 39, 0.68) 46%, rgba(6, 19, 39, 0.92)),
      rgba(6, 19, 39, 0.42);
  }

  .hero-bg img {
    object-position: 70% center;
  }

  .motion-map {
    opacity: 0.45;
  }

  .route {
    width: 76vw;
  }

  .hero-inner {
    padding-top: 112px;
  }

  .hero-actions,
  .form-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .quick-stats {
    display: grid;
  }

  .hero-card {
    padding: 18px;
  }

  .hero-metrics,
  .trust-strip,
  .service-grid,
  .why-grid,
  .bundle-grid,
  .formula-grid,
  .form-row,
  .estimate-card,
  .solution-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .band {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .trust-strip {
    margin-top: -24px;
  }

  .qr-card {
    align-items: flex-start;
  }

  .contact iframe {
    min-height: 360px;
  }
}
