:root {
  --ink: #232326;
  --ink-soft: #4b4b55;
  --paper: #ffffff;
  --mist: #ffffff;
  --stone: #f4f4f6;
  --line: #dedee5;
  --orange: #5b35ff;
  --orange-deep: #4525dc;
  --teal: #25d366;
  --teal-deep: #128c7e;
  --blue: #2563eb;
  --coal: #111827;
  --violet-soft: #f6f6f8;
  --green: #16a37b;
  --shadow: 0 18px 48px rgba(15, 15, 20, 0.09);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: block;
  min-height: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.top-strip {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  padding: 6px clamp(18px, 4vw, 48px);
  color: #595667;
  font-size: 0.82rem;
  font-weight: 500;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.top-strip span {
  position: relative;
}

.top-strip span + span::before,
.top-strip a::before {
  position: absolute;
  width: 4px;
  height: 4px;
  margin: 0 0 0 -18px;
  content: "";
  background: var(--teal);
  border-radius: 50%;
  transform: translateY(0.6em);
}

.top-strip a {
  position: relative;
  color: var(--teal-deep);
  font-weight: 700;
}

.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 82px;
  padding: 12px clamp(18px, 4vw, 48px);
}

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

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #fff;
  font-weight: 750;
  background: var(--teal);
  border: 2px solid var(--teal);
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.24);
  overflow: hidden;
}

.brand-mark svg {
  display: block;
  width: 38px;
  height: 38px;
}

.logo-box {
  fill: #fff;
}

.logo-cab {
  fill: var(--teal-deep);
}

.logo-window {
  fill: #dbfff0;
}

.logo-line,
.logo-spark {
  fill: none;
  stroke: var(--teal-deep);
  stroke-linecap: round;
  stroke-width: 3.2;
}

.logo-spark {
  stroke: #ffffff;
  opacity: 0.72;
}

.logo-wheel {
  fill: #075e54;
  stroke: #ffffff;
  stroke-width: 2.4;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 1.15rem;
  font-weight: 700;
}

.brand small {
  color: #607089;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 1vw, 15px);
  color: #55545f;
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
}

.site-nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  border-color: var(--orange);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: #fff;
  font-weight: 700;
  background: var(--teal);
  border-radius: 12px;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.28);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: clamp(460px, 54vh, 560px);
  overflow: hidden;
  background: #fff;
}

.hero::after {
  position: absolute;
  top: clamp(42px, 5.5vw, 72px);
  right: max(18px, calc((100vw - 1280px) / 2));
  bottom: clamp(46px, 5vw, 68px);
  width: min(39vw, 560px);
  content: "";
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: clamp(42px, 5.5vw, 72px);
  right: max(18px, calc((100vw - 1280px) / 2));
  bottom: clamp(46px, 5vw, 68px);
  width: min(39vw, 560px);
  z-index: 1;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 5.5vw, 72px) 0 clamp(46px, 5vw, 68px);
  color: var(--ink);
}

.hero-content > * {
  max-width: 700px;
}

.hero-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  max-width: 760px;
}

.hero-topline .eyebrow {
  margin-bottom: 22px;
}

.company-info-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: #075e54;
  font-size: 0.82rem;
  font-weight: 750;
  background: #effff6;
  border: 1px solid rgba(37, 211, 102, 0.42);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.12);
  cursor: pointer;
}

.company-info-button::before {
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-right: 7px;
  place-items: center;
  color: #fff;
  content: "i";
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}

.company-info-panel {
  position: absolute;
  top: clamp(116px, 7.5vw, 146px);
  left: max(18px, calc((100vw - 1280px) / 2));
  z-index: 8;
  width: min(520px, calc(100vw - 36px));
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(37, 211, 102, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.company-info-panel[hidden] {
  display: none;
}

.company-info-panel .eyebrow {
  margin-bottom: 14px;
  box-shadow: none;
}

.company-info-panel h2 {
  margin: 0 44px 14px 0;
  font-size: 1.45rem;
  line-height: 1.15;
}

.company-info-panel dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.company-info-panel dl div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.company-info-panel dt {
  color: #697386;
  font-size: 0.86rem;
  font-weight: 700;
}

.company-info-panel dd {
  margin: 0;
  color: var(--ink);
  font-weight: 650;
}

.company-info-note {
  margin: 16px 0 0;
  padding: 12px;
  color: #075e54;
  background: #effff6;
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius);
  font-weight: 650;
}

.company-info-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 28px;
  padding: 8px 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(42, 34, 92, 0.07);
}

.eyebrow::before {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #fff;
  content: "✓";
  background: var(--orange);
  border-radius: 50%;
}

.hero h1 {
  margin: 0;
  color: #202024;
  font-size: clamp(2.35rem, 3.85vw, 3.85rem);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero-sub h1 {
  font-size: clamp(2.8rem, 5.8vw, 5.4rem);
}

.hero-copy {
  margin: 18px 0 0;
  color: #55545f;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  max-width: 610px;
}

.hero-stat {
  margin: 16px 0 0;
  color: #777581;
  font-weight: 600;
}

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

.hero-actions {
  gap: 10px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.hero-actions .btn {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 0.92rem;
}

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

.btn-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 18px 34px rgba(91, 53, 255, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--orange-deep);
}

.btn-light {
  color: #fff;
  background: var(--teal);
}

.hero .btn-light {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.btn-outline {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.hero-proof {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  max-width: 760px;
  margin-top: 18px;
}

.hero-proof span {
  flex: 0 0 auto;
  padding: 8px 10px;
  color: #34333b;
  font-size: 0.84rem;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero-visual {
  position: absolute;
  top: clamp(42px, 5.5vw, 72px);
  right: max(18px, calc((100vw - 1280px) / 2));
  bottom: clamp(46px, 5vw, 68px);
  width: min(39vw, 560px);
  pointer-events: none;
  border-radius: 8px;
  z-index: 2;
}

.hero-visual::before {
  display: none;
  content: none;
}

.visual-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: #1f1f26;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(221, 217, 234, 0.92);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(31, 28, 56, 0.16);
  backdrop-filter: blur(12px);
}

.visual-card strong,
.visual-card b {
  font-weight: 700;
}

.visual-card small {
  color: #605e6e;
  font-size: 0.82rem;
}

.route-card {
  top: 24px;
  right: 24px;
}

.route-card span {
  display: block;
  width: 54px;
  height: 2px;
  background: var(--orange);
}

.crew-card {
  bottom: 94px;
  left: 22px;
}

.crew-card b {
  color: var(--orange);
  font-size: 1.7rem;
  line-height: 1;
}

.delivery-card {
  right: 20px;
  bottom: 20px;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  background: rgba(20, 20, 24, 0.86);
  border-color: rgba(255, 255, 255, 0.22);
}

.delivery-card small {
  color: #e9e6ff;
}

.quote-band {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(260px, 0.64fr) minmax(320px, 1.36fr);
  gap: clamp(20px, 4vw, 44px);
  width: min(1160px, calc(100% - 28px));
  margin: -46px auto 0;
  padding: clamp(20px, 3vw, 32px);
  background: #fff;
  border: 1px solid rgba(221, 217, 234, 0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-compact {
  margin-top: -38px;
}

.quote-intro h2,
.section-head h2,
.trust-content h2,
.final-cta h2,
.detail-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.1vw, 3rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: 0;
}

.quote-intro p:not(.eyebrow),
.section-head p,
.trust-content p,
.detail-copy p {
  color: #526176;
}

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

.quote-form label {
  display: grid;
  gap: 6px;
  color: #445166;
  font-size: 0.86rem;
  font-weight: 500;
}

.quote-form select {
  width: 100%;
  min-height: 52px;
  color: var(--ink);
  font-weight: 500;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
}

.quote-submit,
.quote-whatsapp {
  width: 100%;
}

.quote-result {
  grid-column: 1 / -1;
  min-height: 44px;
  margin: 0;
  padding: 12px 14px;
  color: #243044;
  background: #f7f7f9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 500;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(1160px, calc(100% - 28px));
  margin: 18px auto 0;
}

.proof-strip span {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  color: #4e4c59;
  font-weight: 650;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(42, 34, 92, 0.06);
}

.section {
  width: min(1160px, calc(100% - 28px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 126px) 0 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-head p {
  margin: 14px 0 0;
  max-width: 720px;
}

.service-grid,
.city-grid,
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.service-card,
.city-card,
.guide-grid article,
.process-list article,
.detail-panel,
.checklist {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
}

.service-card,
.city-card,
.guide-grid article {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 24px;
}

.service-card h3,
.city-card h3,
.guide-grid h3,
.process-list h3,
.detail-panel h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 650;
  line-height: 1.18;
}

.service-card p,
.city-card p,
.guide-grid p,
.process-list p,
.detail-panel li {
  color: #526176;
}

.card-index {
  width: fit-content;
  margin-bottom: 20px;
  padding: 6px 9px;
  color: #fff;
  font-weight: 700;
  background: var(--ink);
  border-radius: var(--radius);
}

.service-card ul,
.detail-panel ul {
  padding: 0;
  margin: 6px 0 22px;
  list-style: none;
}

.service-card li,
.detail-panel li {
  position: relative;
  padding-left: 18px;
  margin: 8px 0;
}

.service-card li::before,
.detail-panel li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--teal);
  border-radius: 50%;
}

.service-card a,
.city-card a,
.text-link {
  margin-top: auto;
  color: var(--blue);
  font-weight: 700;
}

.city-section {
  width: 100%;
  padding: clamp(76px, 10vw, 126px) clamp(14px, 4vw, 56px) 0;
}

.city-section .section-head,
.city-grid {
  width: min(1160px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.city-card {
  background: #fff;
}

.route-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 22px;
}

.route-list span,
.trust-list span {
  padding: 8px 10px;
  color: #243044;
  font-size: 0.88rem;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-section {
  width: min(1280px, calc(100% - 28px));
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-list article {
  min-height: 230px;
  padding: 22px;
}

.process-list span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 30px;
  place-items: center;
  color: #fff;
  font-weight: 700;
  background: var(--orange);
  border-radius: var(--radius);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(22px, 5vw, 62px);
  align-items: center;
  width: min(1160px, calc(100% - 28px));
  margin: clamp(82px, 11vw, 138px) auto 0;
}

.trust-image {
  min-height: 520px;
  overflow: hidden;
  background-image: var(--trust-image);
  background-position: center;
  background-size: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-image span {
  display: inline-block;
  margin: 24px;
  padding: 9px 12px;
  color: #fff;
  font-weight: 700;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-list span {
  background: #fff;
  border-color: var(--line);
}

.guide-preview .text-link {
  display: inline-flex;
  margin-top: 22px;
}

.guide-card {
  overflow: hidden;
  padding: 0;
}

.guide-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.guide-card h3,
.guide-card p {
  margin-right: 24px;
  margin-left: 24px;
}

.guide-card h3 {
  margin-top: 22px;
}

.guide-card p {
  margin-bottom: 24px;
}

.guide-articles {
  display: grid;
  gap: 22px;
}

.guide-article {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(20px, 4vw, 34px);
  align-items: start;
  padding: clamp(18px, 3vw, 28px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.guide-article img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.guide-article h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 2.7vw, 2.55rem);
  font-weight: 600;
  line-height: 1.08;
}

.guide-article p {
  color: #526176;
}

.guide-article .eyebrow {
  margin-bottom: 18px;
}

.guide-lead {
  color: var(--ink);
  font-weight: 600;
}

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

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 700;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: #526176;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 28px));
  margin: clamp(76px, 10vw, 120px) auto 0;
  padding: clamp(28px, 5vw, 48px);
  color: #fff;
  background: #141418;
  border-radius: var(--radius);
}

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 26px;
  align-items: start;
}

.detail-copy {
  max-width: 760px;
}

.detail-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.guide-page .section-head {
  max-width: 900px;
}

.guide-grid.wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.checklist {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 24px;
}

.checklist h2 {
  margin: 0 0 8px;
}

.checklist label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #344256;
  font-weight: 600;
}

.checklist input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--teal);
}

.not-found {
  min-height: 62vh;
  padding-top: 100px;
}

.not-found h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1;
}

.site-footer {
  margin-top: clamp(80px, 10vw, 130px);
  padding: clamp(42px, 6vw, 72px) clamp(18px, 4vw, 56px) 24px;
  color: #dbe5f0;
  background: var(--coal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.7fr 1fr;
  gap: 28px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin: 9px 0;
}

.site-footer p {
  color: #aebbd0;
}

.footer-brand .brand-mark {
  background: var(--teal);
  color: #fff;
}

.footer-phone,
.footer-whatsapp {
  color: #fff;
  font-weight: 700;
}

.footer-whatsapp {
  color: #7ee0c4;
}

.photo-credit {
  font-size: 0.82rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  width: min(1160px, 100%);
  margin: 34px auto 0;
  padding-top: 18px;
  color: #92a1b7;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #fff;
  font-weight: 700;
  background: var(--teal);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 155, 122, 0.32);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

body.has-scrolled .floating-whatsapp {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .top-strip {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .top-strip::-webkit-scrollbar {
    display: none;
  }

  .header-main {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 116px 0 auto 0;
    display: none;
    flex-direction: column;
    gap: 0;
    max-height: calc(100vh - 116px);
    overflow-y: auto;
    padding: 18px clamp(18px, 4vw, 48px);
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  }

  body.menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 13px 6px;
    border-bottom: 1px solid #efedf7;
  }

  .header-call {
    justify-self: end;
  }

  .quote-band,
  .trust-section,
  .detail-layout,
  .guide-article {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-bottom: 318px;
  }

  .hero-content > * {
    max-width: 760px;
  }

  .hero::after,
  .hero-overlay,
  .hero-visual {
    top: auto;
    right: 18px;
    bottom: 44px;
    left: 18px;
    width: auto;
    height: 280px;
  }

  .quote-form,
  .service-grid,
  .city-grid,
  .guide-grid,
  .guide-grid.wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-panel {
    position: static;
  }

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

@media (max-width: 700px) {
  body {
    font-size: 15px;
  }

  .top-strip {
    min-height: 32px;
    padding: 5px 14px;
    gap: 22px;
    font-size: 0.76rem;
  }

  .header-main {
    grid-template-columns: 1fr auto;
    gap: 10px;
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-mark svg {
    width: 34px;
    height: 34px;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .header-call {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 40px;
    font-size: 0.95rem;
  }

  .site-nav {
    inset: 142px 0 auto 0;
    max-height: calc(100vh - 142px);
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    padding-top: 10px;
  }

  .hero::after {
    display: none;
  }

  .hero-overlay {
    position: relative;
    inset: auto;
    order: 1;
    width: min(100% - 28px, 520px);
    height: 184px;
    margin: 0 auto;
    background-image: var(--hero-image);
    overflow: hidden;
    border-radius: 8px;
  }

  .hero-overlay::before,
  .hero-overlay::after {
    position: absolute;
    inset: 0;
    content: "";
    background-position: center;
    background-size: cover;
    opacity: 0;
    animation: heroSlide 12s infinite;
  }

  .hero-overlay::before {
    background-image: var(--hero-image-2);
    animation-delay: 4s;
  }

  .hero-overlay::after {
    background-image: var(--hero-image-3);
    animation-delay: 8s;
  }

  .hero-content {
    order: 2;
    width: min(100% - 28px, 1120px);
    padding-top: 18px;
    padding-bottom: 28px;
  }

  .hero-topline {
    gap: 8px;
  }

  .hero-topline .eyebrow {
    margin-bottom: 14px;
  }

  .company-info-button {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .company-info-panel {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    margin: -2px 0 18px;
    padding: 18px;
  }

  .company-info-panel dl div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9.2vw, 2.75rem);
    line-height: 1.08;
  }

  .hero-sub h1 {
    font-size: clamp(1.95rem, 8.8vw, 2.65rem);
  }

  .hero-visual {
    display: none;
  }

  .hero-copy {
    margin-top: 14px;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .hero-stat {
    margin-top: 12px;
    font-size: 0.94rem;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-proof {
    margin-top: 16px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .hero-proof::-webkit-scrollbar {
    display: none;
  }

  .hero-proof span {
    flex: 0 0 auto;
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .visual-card {
    padding: 9px 10px;
    font-size: 0.82rem;
  }

  .route-card {
    top: 14px;
    right: 14px;
  }

  .route-card span {
    width: 34px;
  }

  .crew-card {
    bottom: 70px;
    left: 14px;
  }

  .delivery-card {
    right: 14px;
    bottom: 14px;
  }

  .quote-band {
    margin-top: -18px;
    padding: 18px;
  }

  .quote-form,
  .service-grid,
  .city-grid,
  .guide-grid,
  .guide-grid.wide,
  .process-list {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .service-card,
  .city-card,
  .guide-grid article,
  .process-list article {
    min-height: auto;
  }

  .trust-image {
    min-height: 360px;
  }

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

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

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 48px;
    padding: 0 14px;
  }
}

@keyframes heroSlide {
  0%,
  28% {
    opacity: 0;
  }

  33%,
  61% {
    opacity: 1;
  }

  66%,
  100% {
    opacity: 0;
  }
}
