:root {
  --navy: #071d3a;
  --navy-2: #0d315d;
  --cyan: #12bfd2;
  --cyan-soft: #e7fbfd;
  --green: #19b96d;
  --green-dark: #0c9352;
  --ink: #12243a;
  --muted: #60718a;
  --line: #dce8f2;
  --white: #ffffff;
  --bg: #f5f9fc;
  --shadow: 0 18px 45px rgba(7, 29, 58, .13);
  --shadow-soft: 0 10px 30px rgba(7, 29, 58, .09);
  --radius: 8px;
  --container: 1180px;
  --header-offset: 104px;
  --header-offset-mobile: 104px;
  --nav-height: 68px;
  --nav-height-scrolled: 60px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-offset) + 18px);
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  padding-top: var(--header-offset);
  padding-bottom: 0;
}

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

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

button {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(220, 232, 242, .88);
  box-shadow: 0 8px 26px rgba(7, 29, 58, .07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow .22s ease, background .22s ease, border-color .22s ease, backdrop-filter .22s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .97);
  border-color: rgba(220, 232, 242, .72);
  box-shadow: 0 18px 44px rgba(7, 29, 58, .15);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.site-header.is-scrolled .marquee-track {
  padding-block: 5px;
}

.site-header.is-scrolled .nav-wrap {
  min-height: var(--nav-height-scrolled);
}

.site-header.is-scrolled .brand-mark {
  width: 36px;
  height: 36px;
  box-shadow: 0 8px 18px rgba(18, 191, 210, .2);
}

.top-marquee {
  overflow: hidden;
  color: #e9fbff;
  background: linear-gradient(90deg, var(--navy), #0b4565);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 7px 0;
  animation: topMarquee 34s linear infinite;
  will-change: transform;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.marquee-track span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(25, 185, 109, .16);
}

@keyframes topMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.nav-wrap {
  position: relative;
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition: min-height .22s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  max-width: 100%;
  min-height: 44px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(18, 191, 210, .25);
  transition: width .22s ease, height .22s ease, box-shadow .22s ease;
}

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

.brand-name {
  display: block;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  overflow-wrap: anywhere;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 10px;
  color: #28435f;
  font-weight: 750;
  font-size: 14px;
  border-radius: var(--radius);
  border: 0;
  background: transparent;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active,
.nav-dropdown.open .nav-dropdown-toggle {
  background: var(--cyan-soft);
  color: var(--navy);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}

.nav-dropdown.open .nav-dropdown-toggle::after,
.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 252px;
  display: grid;
  gap: 4px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  justify-content: flex-start;
  width: 100%;
  min-height: 40px;
}

.nav-dropdown-menu span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 10px;
  color: #39536f;
  font-size: 14px;
  font-weight: 760;
  border-radius: var(--radius);
}

.area-menu {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 330px;
}

.area-menu a {
  grid-column: 1 / -1;
  background: var(--cyan-soft);
  color: var(--navy);
  font-weight: 900;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  color: var(--navy);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 18px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}

.btn svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

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

.btn-call {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #0f4f83);
  box-shadow: 0 14px 30px rgba(7, 29, 58, .28);
}

.btn-wa {
  color: #fff;
  background: linear-gradient(135deg, #1fc875, var(--green-dark));
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 12px 26px rgba(25, 185, 109, .22);
}

.btn-ghost {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.btn-compact {
  min-height: 44px;
  padding: 11px 17px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 15% 10%, rgba(18, 191, 210, .27), transparent 35%), linear-gradient(135deg, #061a33, #0c335f 62%, #0e4d6e);
  max-width: 100vw;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
  gap: 38px;
  align-items: center;
  min-height: 710px;
  padding: 70px 0 86px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  color: #dffcff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  font-weight: 850;
  font-size: 13px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(25, 185, 109, .16);
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 16px;
  color: #fff;
  font-size: clamp(38px, 6vw, 70px);
  line-height: .98;
  letter-spacing: 0;
}

.hero p,
.page-hero p {
  margin: 0;
  max-width: 630px;
  color: #d6e9f4;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 26px;
}

.hero-actions .btn {
  min-height: 58px;
  padding-inline: 22px;
  font-size: 16px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
}

.proof-item {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .1);
}

.proof-item strong {
  display: block;
  font-size: 21px;
  line-height: 1.1;
}

.proof-item span {
  color: #cbe0ec;
  font-size: 12px;
  font-weight: 760;
}

.hero-visual {
  position: relative;
  min-height: 430px;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 30px 65px rgba(0, 0, 0, .34);
  border: 1px solid rgba(255, 255, 255, .16);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.van-decal {
  position: absolute;
  right: 12.5%;
  top: 31%;
  width: 38%;
  min-height: 110px;
  display: grid;
  place-items: center;
  padding: 13px;
  text-align: center;
  color: var(--navy);
  background: rgba(255, 255, 255, .92);
  border: 2px solid rgba(18, 191, 210, .5);
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(7, 29, 58, .16);
  transform: perspective(850px) rotateY(-4deg) rotateZ(.2deg);
}

.van-decal strong {
  display: block;
  font-size: clamp(16px, 1.7vw, 23px);
  line-height: 1.05;
}

.van-decal b {
  display: block;
  color: var(--green-dark);
  font-size: clamp(15px, 1.55vw, 21px);
}

.van-decal span {
  display: block;
  color: #38536c;
  font-size: clamp(9px, .95vw, 12px);
  font-weight: 800;
}

.floating-card {
  position: absolute;
  left: -20px;
  bottom: -20px;
  width: min(310px, 58%);
  padding: 16px;
  color: var(--navy);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-card strong {
  display: block;
  font-size: 18px;
}

.floating-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.service-strip {
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.strip-track {
  display: flex;
  width: max-content;
  gap: 28px;
  padding: 13px 0;
  animation: marquee 22s linear infinite;
  will-change: transform;
}

.strip-track span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  letter-spacing: 0;
}

.strip-track span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

section {
  padding: 78px 0;
}

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

.section-kicker {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.badge-grid,
.benefit-grid,
.process-grid,
.review-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.badge,
.benefit,
.process-step,
.review,
.contact-card,
.faq-item,
.info-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.badge,
.benefit,
.process-step,
.review,
.contact-card {
  padding: 22px;
}

.icon-box {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--navy);
  background: var(--cyan-soft);
  border-radius: var(--radius);
}

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

.badge strong,
.benefit h3,
.process-step h3,
.review strong,
.contact-card strong {
  display: block;
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.badge span,
.benefit p,
.process-step p,
.review p,
.contact-card span {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.services {
  background: #fff;
}

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

.service-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 191, 210, .55);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.32 / 1;
  object-fit: cover;
}

.service-card-body {
  padding: 18px;
}

.service-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
}

.service-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-dark);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, .58fr);
  gap: 34px;
  align-items: start;
}

.info-panel {
  padding: 26px;
  position: sticky;
  top: 98px;
}

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

.check-list li {
  display: flex;
  gap: 10px;
  color: #304b66;
  font-weight: 760;
}

.check-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 6px #d9f8e9;
}

.process-step {
  position: relative;
}

.step-no {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 13px;
  color: #fff;
  font-weight: 950;
  background: var(--navy);
  border-radius: var(--radius);
}

.review {
  min-height: 190px;
}

.reviews-section {
  overflow: hidden;
}

.review-marquee {
  width: 100%;
  overflow: hidden;
}

.review-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 4px 16px 10px;
  animation: reviewsMarquee 42s linear infinite;
  will-change: transform;
}

.review-track:hover {
  animation-play-state: paused;
}

.review-track .review {
  width: 360px;
  flex: 0 0 360px;
  min-height: 210px;
}

.review span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

@keyframes reviewsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.stars {
  color: #f3b632;
  font-weight: 900;
  margin-bottom: 12px;
}

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

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 19px 20px;
  color: var(--navy);
  background: #fff;
  border: 0;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  color: var(--cyan);
  font-size: 22px;
  line-height: 1;
}

.faq-item.open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
}

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

.final-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #0a3d6e);
}

.final-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.final-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.final-cta p {
  margin: 0;
  color: #d6e9f4;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero {
  color: #fff;
  background: radial-gradient(circle at 82% 18%, rgba(18, 191, 210, .22), transparent 38%), linear-gradient(135deg, #061a33, #0d315d);
}

.page-hero .container {
  min-height: 360px;
  display: grid;
  align-content: center;
  padding: 58px 0;
}

.page-hero h1 {
  max-width: 840px;
  font-size: clamp(38px, 5vw, 60px);
}

.content-band {
  background: #fff;
}

.content-rich {
  color: #304b66;
  font-size: 17px;
}

.content-rich h2 {
  margin: 0 0 13px;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

.content-rich p {
  margin: 0 0 16px;
}

.service-visual {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.area-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.area-pill {
  padding: 13px 14px;
  text-align: center;
  color: var(--navy);
  background: var(--cyan-soft);
  border: 1px solid rgba(18, 191, 210, .27);
  border-radius: var(--radius);
  font-weight: 900;
}

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

.map-box {
  min-height: 310px;
  display: grid;
  place-items: center;
  margin-top: 28px;
  color: #d6e9f4;
  text-align: center;
  background: linear-gradient(135deg, rgba(7, 29, 58, .92), rgba(12, 77, 110, .9)), url("../images/hero-servis-araci.jpg") center/cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-box strong {
  display: block;
  color: #fff;
  font-size: 25px;
}

.site-footer {
  padding: 48px 0 32px;
  color: #d7e4ee;
  background: #061a33;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 26px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 18px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: #d7e4ee;
  font-size: 14px;
}

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

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

.footer-bottom a {
  color: #9ef7c9;
  font-weight: 850;
}

.mobile-sticky {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .nav-links,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
    flex: 0 0 46px;
  }

  .nav-links.open {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    z-index: 3;
    display: grid;
    gap: 4px;
    max-height: calc(100dvh - var(--header-offset) - 24px);
    overflow-y: auto;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.open a,
  .nav-links.open .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    display: none;
    margin: 4px 0 4px 12px;
    padding: 8px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: #f7fbfd;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
  }

  .area-menu {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 56px 0 72px;
  }

  .hero-proof,
  .badge-grid,
  .benefit-grid,
  .process-grid,
  .service-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .final-cta-box {
    grid-template-columns: 1fr;
  }

  .info-panel {
    position: static;
  }

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

@media (max-width: 680px) {
  body {
    padding-top: var(--header-offset-mobile);
    padding-bottom: 82px;
  }

  html {
    scroll-padding-top: calc(var(--header-offset-mobile) + 16px);
  }

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

  .brand {
    min-width: 0;
    max-width: 100%;
    gap: 9px;
  }

  .brand-name {
    font-size: clamp(13px, 4vw, 15px);
    line-height: 1.08;
  }

  .nav-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
    align-items: center;
    gap: 10px;
    min-height: var(--nav-height);
  }

  .nav-wrap .brand {
    grid-column: 1;
    width: 100%;
    min-width: 0;
  }

  .menu-toggle {
    grid-column: 2;
    position: static;
    justify-self: end;
    align-self: center;
    display: block !important;
    width: 46px;
    min-width: 46px;
    max-width: 46px;
    background: var(--cyan-soft);
    border-color: rgba(18, 191, 210, .35);
  }

  .site-header.is-scrolled .nav-wrap {
    min-height: var(--nav-height-scrolled);
  }

  section {
    padding: 54px 0;
  }

  .hero-grid {
    padding: 42px 0 58px;
    gap: 26px;
  }

  .hero h1,
  .page-hero h1 {
    max-width: min(100%, 342px);
    overflow-wrap: break-word;
    white-space: normal;
    font-size: clamp(30px, 8.8vw, 34px);
    line-height: 1.05;
  }

  .hero p,
  .page-hero p {
    max-width: min(100%, 342px);
    overflow-wrap: break-word;
    font-size: 16px;
  }

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

  .hero-proof,
  .badge-grid,
  .benefit-grid,
  .process-grid,
  .service-grid,
  .review-grid,
  .contact-grid,
  .area-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-photo img {
    min-height: 300px;
  }

  .van-decal {
    right: 7%;
    top: 26%;
    width: 52%;
    min-height: 86px;
    padding: 9px;
  }

  .van-decal strong {
    font-size: 14px;
  }

  .van-decal b {
    font-size: 13px;
  }

  .van-decal span {
    font-size: 8px;
  }

  .floating-card {
    left: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .page-hero .container {
    min-height: 300px;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: grid;
    width: 100%;
    max-width: 100vw;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 28px rgba(7, 29, 58, .13);
    backdrop-filter: blur(14px);
  }

  .mobile-sticky .btn {
    min-height: 54px;
    min-width: 0;
    font-size: 14px;
    padding-inline: 10px;
  }

  .mobile-sticky .btn-wa {
    font-size: 0;
  }

  .mobile-sticky .btn-wa::after {
    content: "WhatsApp";
    font-size: 14px;
  }

  .review-track {
    gap: 12px;
    padding-inline: 12px;
    animation-duration: 38s;
  }

  .review-track .review {
    width: min(330px, calc(100vw - 36px));
    flex-basis: min(330px, calc(100vw - 36px));
    min-height: 224px;
  }
}

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