:root {
  --navy-950: #081228;
  --navy-900: #101b35;
  --navy-800: #172644;
  --red-700: #c62f3d;
  --red-600: #df3d4d;
  --red-500: #f04a59;
  --blue-500: #2c65d8;
  --cream-100: #f6f3ed;
  --cream-50: #fbfaf7;
  --white: #ffffff;
  --ink: #152039;
  --muted: #677087;
  --line: #e5e6ea;
  --green: #1dbf73;
  --yellow: #f8bd3e;
  --shadow-sm: 0 12px 30px rgba(16, 27, 53, 0.08);
  --shadow-lg: 0 28px 80px rgba(8, 18, 40, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream-50);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-900);
  padding: 10px 16px;
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.section {
  padding: 112px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(251, 250, 247, 0.72);
  backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  border-color: rgba(16, 27, 53, 0.08);
  background: rgba(251, 250, 247, 0.94);
  box-shadow: 0 8px 30px rgba(16, 27, 53, 0.06);
}

.nav-shell {
  display: flex;
  align-items: center;
  min-height: 82px;
  gap: 38px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  transform: rotate(-4deg);
  border-radius: 11px 14px 11px 14px;
  background: var(--red-600);
  color: var(--white);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -2px;
  box-shadow: 5px 5px 0 var(--navy-900);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  color: var(--navy-900);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.main-nav a {
  position: relative;
  color: #3f4960;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--red-600);
  content: "";
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 0 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button i {
  font-size: 19px;
}

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

.button:active {
  transform: translateY(0);
}

.button-primary {
  background: var(--red-600);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(223, 61, 77, 0.24);
}

.button-primary:hover {
  background: var(--red-700);
  box-shadow: 0 14px 32px rgba(223, 61, 77, 0.3);
}

.button-secondary {
  border-color: #d8dae0;
  background: rgba(255, 255, 255, 0.65);
  color: var(--navy-900);
}

.button-secondary:hover {
  border-color: var(--navy-900);
  background: var(--white);
}

.button-lg {
  min-height: 58px;
  border-radius: 15px;
  padding: 0 26px;
  font-size: 15px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--navy-900);
  cursor: pointer;
  font-size: 24px;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding-top: 178px;
  background: linear-gradient(180deg, #fbfaf7 0%, #f6f3ed 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image: radial-gradient(rgba(16, 27, 53, 0.16) 0.7px, transparent 0.7px);
  background-size: 20px 20px;
  content: "";
  mask-image: linear-gradient(to right, #000, transparent 48%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  top: 105px;
  right: -130px;
  width: 460px;
  height: 460px;
  background: rgba(44, 101, 216, 0.09);
}

.hero-orb-two {
  right: 330px;
  bottom: -200px;
  width: 350px;
  height: 350px;
  background: rgba(223, 61, 77, 0.09);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 72px;
}

.hero-grid > *,
.social-grid > *,
.quote-shell > * {
  min-width: 0;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 22px;
  border: 1px solid rgba(223, 61, 77, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  padding: 9px 13px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-500);
  box-shadow: 0 0 0 5px rgba(240, 74, 89, 0.12);
}

.hero h1 {
  max-width: 660px;
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(49px, 5.4vw, 73px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 1.01;
}

.hero h1 span {
  position: relative;
  color: var(--red-600);
  white-space: nowrap;
}

.hero h1 span::after {
  position: absolute;
  right: 2px;
  bottom: -3px;
  left: 2px;
  height: 8px;
  transform: rotate(-1deg);
  border-radius: 50%;
  background: rgba(223, 61, 77, 0.15);
  content: "";
}

.hero-lead {
  max-width: 580px;
  margin: 27px 0 0;
  color: #586278;
  font-size: 18px;
  line-height: 1.75;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 43px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 11px;
}

.trust-item > i {
  color: var(--yellow);
  font-size: 25px;
}

.trust-item:nth-child(3) > i {
  color: var(--blue-500);
}

.trust-item span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.trust-item strong {
  color: var(--navy-900);
  font-size: 14px;
}

.trust-item small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.trust-divider {
  width: 1px;
  height: 34px;
  background: #d9d9dc;
}

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

.visual-card {
  position: absolute;
  inset: 16px 8px 24px 22px;
  overflow: hidden;
  transform: rotate(1.5deg);
  border: 8px solid var(--white);
  border-radius: 36px;
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
}

.visual-card::before {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: radial-gradient(circle at center, black 20%, transparent 80%);
}

.visual-topline,
.visual-footer {
  position: absolute;
  z-index: 2;
  right: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.visual-topline {
  top: 27px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  padding: 7px 11px;
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.status-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(29, 191, 115, 0.16);
}

.visual-code {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.route-scene {
  position: absolute;
  inset: 76px 22px 82px;
}

.route-line {
  position: absolute;
  top: 65px;
  right: 42px;
  bottom: 75px;
  left: 42px;
  transform: rotate(-8deg);
  border: 2px dashed rgba(255, 255, 255, 0.24);
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 0 0 80% 0;
}

.route-pin {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-900);
  font-size: 19px;
  background-clip: padding-box;
}

.route-pin-a {
  top: 21px;
  left: 17px;
}

.route-pin-b {
  right: 15px;
  bottom: 22px;
  background: var(--red-500);
  color: var(--white);
}

.route-label {
  position: absolute;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 700;
}

.route-label-a {
  top: 72px;
  left: 7px;
}

.route-label-b {
  right: 0;
  bottom: 0;
}

.truck-wrap {
  position: absolute;
  z-index: 2;
  top: 46%;
  left: 50%;
  width: 250px;
  height: 120px;
  transform: translate(-50%, -50%) rotate(-2deg);
}

.truck-box {
  position: absolute;
  top: 7px;
  left: 2px;
  display: flex;
  width: 150px;
  height: 80px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 9px 6px 4px 4px;
  background: var(--red-600);
  color: var(--white);
  box-shadow: inset 0 -12px 30px rgba(111, 13, 23, 0.18), 0 14px 24px rgba(0, 0, 0, 0.2);
}

.truck-box span {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.truck-box small {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.truck-cab {
  position: absolute;
  right: 7px;
  bottom: 33px;
  display: grid;
  width: 94px;
  height: 65px;
  place-items: center;
  clip-path: polygon(24% 0, 80% 0, 100% 42%, 100% 100%, 0 100%, 0 36%);
  border-radius: 8px;
  background: #eceff5;
  color: var(--navy-900);
  font-size: 22px;
}

.truck-cab::before {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 37px;
  height: 24px;
  clip-path: polygon(0 0, 67% 0, 100% 100%, 0 100%);
  border-radius: 3px;
  background: #85a4bd;
  content: "";
}

.truck-cab i {
  position: absolute;
  right: 35px;
  bottom: 9px;
  font-size: 13px;
}

.truck-wheel {
  position: absolute;
  bottom: 21px;
  width: 29px;
  height: 29px;
  border: 7px solid #0c1325;
  border-radius: 50%;
  background: #aab3c3;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.wheel-one {
  left: 35px;
}

.wheel-two {
  right: 32px;
}

.visual-footer {
  bottom: 26px;
  color: var(--white);
}

.visual-footer div {
  display: flex;
  flex-direction: column;
}

.visual-footer span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-footer strong {
  font-size: 15px;
}

.visual-footer > i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 18px;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(16, 27, 53, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  padding: 11px 14px;
  box-shadow: 0 16px 36px rgba(16, 27, 53, 0.13);
  backdrop-filter: blur(12px);
  animation: float 4.5s ease-in-out infinite;
}

.floating-rating {
  top: 22px;
  right: -25px;
}

.floating-care {
  bottom: 0;
  left: -20px;
  animation-delay: -2.2s;
}

.floating-icon {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 10px;
  background: #fff5d9;
  color: var(--yellow);
  font-size: 18px;
}

.floating-icon-blue {
  background: #eaf1ff;
  color: var(--blue-500);
}

.floating-card > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.floating-card strong {
  color: var(--navy-900);
  font-size: 11px;
}

.floating-card small {
  color: var(--muted);
  font-size: 9px;
}

/* Hero route tracker */
.hero-visual {
  min-height: 520px;
}

.visual-card {
  inset: 8px 0 26px 18px;
  transform: rotate(0.5deg);
  border-width: 7px;
  background:
    radial-gradient(circle at 78% 18%, rgba(67, 118, 216, 0.2), transparent 31%),
    radial-gradient(circle at 22% 76%, rgba(223, 61, 77, 0.11), transparent 28%),
    var(--navy-900);
}

.visual-card::before {
  opacity: 0.22;
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0.35));
}

.visual-topline {
  top: 26px;
  right: 27px;
  left: 27px;
}

.tracker-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.tracker-brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  transform: rotate(-4deg);
  border-radius: 11px;
  background: var(--red-600);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.12);
}

.tracker-brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.tracker-brand strong {
  font-size: 13px;
  letter-spacing: -0.03em;
}

.tracker-brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-pill {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.75);
}

.tracker-map {
  position: absolute;
  inset: 82px 24px 104px;
}

.tracker-map::before {
  position: absolute;
  top: 47%;
  left: 53%;
  width: 190px;
  height: 190px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255, 255, 255, 0.018), 0 0 0 84px rgba(255, 255, 255, 0.012);
  content: "";
}

.tracker-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.tracker-route path {
  fill: none;
  stroke-linecap: round;
}

.tracker-route-base {
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 2;
  stroke-dasharray: 7 9;
}

.tracker-route-progress {
  stroke: var(--red-500);
  stroke-width: 3;
  stroke-dasharray: 58 100;
  filter: drop-shadow(0 0 5px rgba(240, 74, 89, 0.32));
}

.tracker-route circle {
  fill: rgba(255, 255, 255, 0.45);
  stroke: var(--navy-900);
  stroke-width: 5;
}

.route-stop {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
}

.route-origin {
  bottom: 1px;
  left: 0;
}

.route-destination {
  top: 0;
  right: 0;
  flex-direction: row-reverse;
  text-align: right;
}

.route-stop-icon {
  display: grid;
  width: 47px;
  height: 47px;
  flex: 0 0 auto;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-900);
  font-size: 17px;
  background-clip: padding-box;
}

.route-stop-icon-destination {
  background: var(--red-500);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(223, 61, 77, 0.26);
}

.route-stop-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.route-stop-copy small {
  color: rgba(255, 255, 255, 0.36);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-stop-copy strong {
  margin-top: 3px;
  color: var(--white);
  font-size: 11px;
}

.truck-marker {
  position: absolute;
  z-index: 4;
  top: 46%;
  left: 52%;
  width: 104px;
  height: 104px;
  transform: translate(-50%, -50%);
}

.truck-marker-ring {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(240, 74, 89, 0.3);
  border-radius: 50%;
  animation: tracker-pulse 2.8s ease-out infinite;
}

.truck-marker-core {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 9px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--red-500), var(--red-700));
  color: var(--white);
  font-size: 43px;
  background-clip: padding-box;
  box-shadow: 0 22px 42px rgba(5, 12, 28, 0.38), 0 0 35px rgba(223, 61, 77, 0.15);
}

.truck-marker-label {
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  display: flex;
  min-width: 115px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(8, 18, 40, 0.83);
  padding: 6px 10px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.truck-marker-label small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 7px;
  text-transform: uppercase;
}

.truck-marker-label strong {
  color: var(--white);
  font-size: 9px;
}

.tracker-footer {
  position: absolute;
  z-index: 5;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  padding: 12px 14px;
  backdrop-filter: blur(12px);
}

.tracker-footer-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #87adff;
  font-size: 20px;
}

.tracker-footer-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  line-height: 1.2;
}

.tracker-footer-copy > span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tracker-footer-copy > strong {
  margin-top: 3px;
  color: var(--white);
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tracker-progress {
  width: min(175px, 100%);
  height: 3px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
}

.tracker-progress span {
  display: block;
  width: 66%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red-500), #ff8a95);
}

.tracker-step {
  display: flex;
  align-items: baseline;
  color: var(--white);
}

.tracker-step strong {
  font-size: 22px;
  letter-spacing: -0.06em;
}

.tracker-step small {
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
}

.floating-rating {
  top: 4px;
  right: -16px;
}

@keyframes tracker-pulse {
  0% { transform: scale(0.86); opacity: 0.75; }
  75%, 100% { transform: scale(1.34); opacity: 0; }
}

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

.proof-bar {
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(16, 27, 53, 0.06);
  border-bottom: 1px solid rgba(16, 27, 53, 0.06);
  background: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 92px;
}

.proof-grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid var(--line);
  color: #475168;
  font-size: 12px;
  font-weight: 800;
}

.proof-grid > div:last-child {
  border-right: 0;
}

.proof-grid i {
  color: var(--red-600);
  font-size: 21px;
}

.services {
  background: var(--cream-50);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 50px;
}

.section-heading h2,
.process h2,
.social-section h2,
.faq-section h2,
.quote-section h2 {
  margin: 12px 0 0;
  color: var(--navy-900);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.section-heading p {
  max-width: 420px;
  margin: 0 0 5px;
  color: var(--muted);
  line-height: 1.8;
}

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

.service-card {
  position: relative;
  min-height: 388px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 34px 32px;
  box-shadow: 0 0 0 rgba(16, 27, 53, 0);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(223, 61, 77, 0.3);
  box-shadow: var(--shadow-sm);
}

.service-card::after {
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 145px;
  height: 145px;
  border: 32px solid rgba(223, 61, 77, 0.035);
  border-radius: 50%;
  content: "";
}

.service-card-featured {
  transform: translateY(-12px);
  border-color: var(--navy-900);
  background: var(--navy-900);
  padding-top: 52px;
  color: var(--white);
}

.service-card-featured:hover {
  transform: translateY(-19px);
  border-color: var(--navy-900);
}

.service-number {
  position: absolute;
  top: 27px;
  right: 28px;
  color: #c9ccd3;
  font-size: 13px;
  font-weight: 800;
}

.service-card-featured .service-number {
  top: 48px;
  color: rgba(255, 255, 255, 0.3);
}

.popular-label {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  z-index: 3;
  border-radius: 0;
  background: var(--red-600);
  padding: 10px 20px;
  text-align: center;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 17px;
  background: #fff0f1;
  color: var(--red-600);
  font-size: 31px;
}

.service-card-featured .service-icon {
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.service-card h3 {
  margin: 46px 0 13px;
  color: var(--navy-900);
  font-size: 21px;
  letter-spacing: -0.025em;
}

.service-card-featured h3 {
  color: var(--white);
}

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

.service-card-featured p {
  color: rgba(255, 255, 255, 0.62);
}

.service-card > a {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--red-600);
  font-size: 12px;
  font-weight: 900;
}

.service-card-featured > a {
  color: var(--white);
}

.service-card > a i {
  font-size: 17px;
  transition: transform 0.2s ease;
}

.service-card > a:hover i {
  transform: translate(3px, -3px);
}

.process {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
}

.process::before,
.process::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  content: "";
}

.process::before {
  top: -220px;
  left: -180px;
  width: 500px;
  height: 500px;
}

.process::after {
  right: -110px;
  bottom: -230px;
  width: 450px;
  height: 450px;
}

.process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.kicker-light {
  color: #ff8290;
}

.process h2 {
  max-width: 480px;
  color: var(--white);
}

.process-copy > p {
  max-width: 470px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.6);
}

.button-light {
  background: var(--white);
  color: var(--navy-900);
}

.button-light:hover {
  background: var(--cream-100);
}

.process-list {
  position: relative;
  display: flex;
  align-self: center;
  margin: 0;
  padding: 0;
  flex-direction: column;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 64px;
  bottom: 64px;
  left: 91px;
  width: 1px;
  background: rgba(255, 255, 255, 0.13);
  content: "";
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 40px 58px 1fr;
  align-items: center;
  gap: 22px;
  min-height: 128px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.process-step:last-child {
  border-bottom: 0;
}

.step-index {
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  font-weight: 800;
}

.step-icon {
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 17px;
  background: var(--navy-800);
  color: #ff8793;
  font-size: 25px;
}

.process-step h3 {
  margin: 0 0 5px;
  font-size: 17px;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.social-section {
  background: var(--cream-100);
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 90px;
}

.review-column h2 {
  max-width: 500px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 28px;
}

.rating-row > strong {
  color: var(--navy-900);
  font-size: 30px;
  letter-spacing: -0.05em;
}

.rating-row > span:last-child {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--yellow);
  font-size: 18px;
}

.testimonial-slider {
  margin-top: 30px;
  outline: none;
  overflow: hidden;
}

.testimonial-slider:focus-visible {
  border-radius: var(--radius-md);
  box-shadow: 0 0 0 3px rgba(44, 101, 216, 0.22);
}

.testimonial-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.testimonial {
  position: relative;
  display: flex;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  flex: 0 0 100%;
  flex-direction: column;
  border: 1px solid rgba(16, 27, 53, 0.08);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 35px 35px 28px;
  box-shadow: var(--shadow-sm);
}

.testimonial > i {
  position: absolute;
  top: 20px;
  right: 25px;
  color: rgba(223, 61, 77, 0.1);
  font-size: 72px;
}

.testimonial > p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.testimonial footer {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 29px;
}

.avatar {
  display: grid;
  width: 42px;
  height: 42px;
  margin-right: 11px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
}

.avatar-whatsapp {
  background: #e5f8ed;
  color: #159b54;
}

.testimonial footer > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.testimonial footer strong {
  font-size: 12px;
}

.testimonial footer small {
  color: var(--muted);
  font-size: 10px;
}

.testimonial-source {
  display: grid;
  width: 34px;
  height: 34px;
  margin-left: auto;
  place-items: center;
  border-radius: 10px;
  font-weight: 900;
}

.source-google {
  background: #eef4ff;
  color: #4285f4;
  font-size: 18px;
}

.source-whatsapp {
  background: #e5f8ed;
  color: #159b54;
  font-size: 18px;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
}

.testimonial-dots,
.testimonial-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: #c9ccd3;
  padding: 0;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.testimonial-dot.is-active {
  width: 28px;
  background: var(--red-600);
}

.testimonial-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-900);
  cursor: pointer;
  font-size: 19px;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.testimonial-arrow:hover {
  transform: translateY(-2px);
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}

.instagram-card {
  overflow: hidden;
  transform: rotate(1.5deg);
  border: 8px solid var(--white);
  border-radius: 31px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.instagram-copy {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 17px;
}

.instagram-icon {
  display: grid;
  width: 41px;
  height: 41px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #6a44d9, #d33b82 55%, #f3a43b);
  color: var(--white);
  font-size: 21px;
}

.instagram-copy > div {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.instagram-copy > div span {
  color: var(--muted);
  font-size: 10px;
}

.instagram-copy > div strong {
  color: var(--navy-900);
  font-size: 13px;
}

.instagram-copy > a {
  display: grid;
  width: 40px;
  height: 40px;
  margin-left: auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy-900);
  font-size: 19px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.instagram-copy > a:hover {
  transform: translate(2px, -2px);
  background: var(--navy-900);
  color: var(--white);
}

.instagram-preview {
  position: relative;
  display: block;
  height: 440px;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(145deg, #f6f3ed, #ffffff);
}

.instagram-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.instagram-preview::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 18, 40, 0.72), transparent 42%);
  content: "";
  pointer-events: none;
}

.instagram-preview:hover img {
  transform: scale(1.025);
  filter: saturate(1.06);
}

.instagram-preview-cta {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(8, 18, 40, 0.18);
}

.instagram-preview-cta i {
  color: var(--red-600);
  font-size: 19px;
}

.instagram-preview-cta i:last-child {
  margin-left: 2px;
}

.faq-section {
  background: var(--navy-900);
  color: var(--white);
}

.faq-shell {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 92px;
}

.faq-heading {
  position: sticky;
  top: 126px;
}

.faq-heading h2 {
  max-width: 470px;
  color: var(--white);
}

.faq-heading > p {
  max-width: 440px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 98px;
  padding: 24px 4px;
  cursor: pointer;
  list-style: none;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

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

.faq-item summary i {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #ff8793;
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item[open] summary i {
  transform: rotate(180deg);
  background: rgba(255, 255, 255, 0.08);
}

.faq-item p {
  max-width: 650px;
  margin: -8px 62px 30px 4px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
}

.faq-item summary:focus-visible {
  outline: 3px solid rgba(255, 135, 147, 0.45);
  outline-offset: 4px;
}

.quote-section {
  background: var(--white);
}

.quote-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.quote-copy > p {
  max-width: 470px;
  margin: 24px 0 34px;
  color: var(--muted);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
}

.contact-list a > i {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 12px;
  background: var(--cream-100);
  color: var(--red-600);
  font-size: 20px;
}

.contact-list a > span {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.contact-list small {
  color: var(--muted);
  font-size: 10px;
}

.contact-list strong {
  color: var(--navy-900);
  font-size: 13px;
}

.quote-form {
  display: flex;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream-50);
  padding: 34px;
  flex-direction: column;
  gap: 17px;
  box-shadow: var(--shadow-sm);
}

.quote-form label {
  display: flex;
  gap: 7px;
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
  flex-direction: column;
}

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

.quote-form input,
.quote-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid #dfe1e6;
  outline: none;
  border-radius: 12px;
  background: var(--white);
  color: var(--navy-900);
  padding: 0 15px;
  font-size: 13px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form input::placeholder {
  color: #a1a6b2;
}

.quote-form input:focus,
.quote-form select:focus {
  border-color: var(--red-600);
  box-shadow: 0 0 0 3px rgba(223, 61, 77, 0.11);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: -5px 0 0;
  color: #8b91a0;
  font-size: 9px;
  text-align: center;
}

.site-footer {
  background: var(--navy-950);
  color: var(--white);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.65fr 0.8fr;
  gap: 80px;
  padding-bottom: 56px;
}

.brand-light .brand-copy strong {
  color: var(--white);
}

.brand-light .brand-copy small {
  color: rgba(255, 255, 255, 0.45);
}

.footer-brand p {
  max-width: 360px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 8px;
  font-size: 12px;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: #20ba67;
  color: var(--white);
  padding: 0 18px;
  box-shadow: 0 15px 35px rgba(18, 121, 69, 0.3);
  font-size: 11px;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float i {
  font-size: 23px;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: #159b54;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav-shell { gap: 24px; }
  .main-nav { gap: 20px; }
  .hero-grid { gap: 35px; }
  .hero h1 { font-size: clamp(47px, 5.8vw, 64px); }
  .floating-rating { right: -5px; }
  .floating-care { left: 0; }
  .process-grid { gap: 60px; }
  .social-grid,
  .quote-shell { gap: 55px; }
}

@media (max-width: 920px) {
  .section { padding: 88px 0; }
  .site-header { background: rgba(251, 250, 247, 0.97); backdrop-filter: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-cta { display: none; }
  .main-nav {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    display: flex;
    height: calc(100dvh - 82px);
    transform: translateX(100%);
    background: rgba(251, 250, 247, 0.98);
    padding: 50px 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.32s ease, opacity 0.25s ease, visibility 0.25s ease;
  }
  .main-nav.is-open { transform: translateX(0); opacity: 1; visibility: visible; }
  .main-nav a { font-size: 24px; color: var(--navy-900); }
  .hero { padding-top: 150px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-visual { min-height: 540px; margin-top: 20px; }
  .visual-card { inset: 20px 5% 30px; }
  .floating-rating { right: 3%; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div { min-height: 75px; border-bottom: 1px solid var(--line); }
  .proof-grid > div:nth-child(2) { border-right: 0; }
  .proof-grid > div:nth-child(3),
  .proof-grid > div:nth-child(4) { border-bottom: 0; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; }
  .service-card-featured { transform: none; }
  .service-card-featured:hover { transform: translateY(-7px); }
  .process-grid { grid-template-columns: 1fr; gap: 55px; }
  .process-copy { max-width: 640px; }
  .social-grid,
  .faq-shell,
  .quote-shell { grid-template-columns: 1fr; }
  .review-column { max-width: 650px; }
  .instagram-card { max-width: 680px; transform: none; }
  .instagram-preview { height: 440px; }
  .quote-copy { max-width: 680px; }
  .faq-heading { position: static; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .nav-shell { min-height: 72px; }
  .brand-mark { width: 39px; height: 39px; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy small { font-size: 8px; }
  .main-nav { top: 72px; height: calc(100dvh - 72px); }
  .hero { min-height: auto; padding-top: 124px; }
  .hero h1 { font-size: clamp(40px, 11.5vw, 51px); overflow-wrap: anywhere; }
  .hero h1 span { white-space: normal; }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-trust { align-items: flex-start; gap: 16px; }
  .trust-divider { display: none; }
  .trust-item { flex: 1; align-items: flex-start; }
  .trust-item > i { margin-top: 2px; }
  .trust-item small { font-size: 9px; }
  .hero-visual { min-height: 405px; margin-top: 16px; }
  .visual-card { inset: 18px 0 26px; border-width: 6px; border-radius: 29px; }
  .visual-topline { top: 17px; right: 15px; left: 15px; }
  .tracker-brand { gap: 8px; }
  .tracker-brand-mark { width: 32px; height: 32px; border-radius: 9px; font-size: 15px; }
  .tracker-brand strong { font-size: 11px; }
  .tracker-brand small { display: none; }
  .status-pill { gap: 6px; padding: 6px 8px; font-size: 8px; }
  .status-pill span { width: 6px; height: 6px; }
  .tracker-map { inset: 63px 12px 86px; }
  .route-stop { gap: 6px; }
  .route-stop-icon { width: 38px; height: 38px; border-width: 4px; font-size: 15px; }
  .route-stop-copy small { font-size: 6px; }
  .route-stop-copy strong { font-size: 9px; }
  .truck-marker { top: 45%; width: 78px; height: 78px; }
  .truck-marker-core { border-width: 7px; font-size: 33px; }
  .truck-marker-ring { inset: -9px; }
  .truck-marker-label { top: calc(100% + 6px); min-width: 102px; padding: 5px 8px; }
  .truck-marker-label small { font-size: 6px; }
  .truck-marker-label strong { font-size: 8px; }
  .tracker-footer { right: 10px; bottom: 10px; left: 10px; min-height: 65px; gap: 9px; border-radius: 15px; padding: 10px; }
  .tracker-footer-icon { width: 36px; height: 36px; border-radius: 10px; font-size: 18px; }
  .tracker-footer-copy > strong { font-size: 10px; }
  .tracker-progress { width: 110px; margin-top: 6px; }
  .tracker-step strong { font-size: 19px; }
  .floating-rating { top: 2px; right: -4px; }
  .floating-card { padding: 9px 11px; }
  .floating-card strong { font-size: 10px; }
  .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0; }
  .proof-grid > div { justify-content: flex-start; min-height: 76px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 12px 14px; font-size: 11px; line-height: 1.35; }
  .proof-grid > div:nth-child(2n) { border-right: 0; }
  .proof-grid > div:nth-child(3),
  .proof-grid > div:nth-child(4) { border-bottom: 0; }
  .proof-grid i { flex: 0 0 auto; font-size: 20px; }
  .section-heading { align-items: flex-start; margin-bottom: 35px; flex-direction: column; gap: 18px; }
  .section-heading h2,
  .process h2,
  .social-section h2,
  .faq-section h2,
  .quote-section h2 { font-size: 38px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; }
  .service-card { min-height: 360px; }
  .process-list::before { top: 71px; bottom: 71px; left: 64px; }
  .process-step { grid-template-columns: 28px 48px 1fr; gap: 12px; min-height: 142px; }
  .step-icon { width: 48px; height: 48px; border-radius: 14px; font-size: 21px; }
  .process-step p { font-size: 12px; }
  .testimonial { min-height: 430px; padding: 30px 24px 24px; }
  .testimonial > p { font-size: 15px; }
  .instagram-preview { height: 420px; }
  .faq-shell { gap: 42px; }
  .faq-item summary { min-height: 86px; font-size: 16px; }
  .faq-item p { margin-right: 4px; font-size: 14px; }
  .quote-shell { gap: 45px; }
  .quote-form { border-radius: 22px; padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; padding: 22px 0; flex-direction: column; justify-content: center; gap: 5px; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 54px; height: 54px; min-height: 54px; justify-content: center; padding: 0; }
  .whatsapp-float span { display: none; }
}

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