:root {
  --bg: #06070a;
  --bg-soft: #0d1017;
  --panel: rgba(17, 20, 28, 0.76);
  --panel-strong: rgba(22, 25, 34, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f6f7fb;
  --muted: #a8afbd;
  --red: #e10613;
  --red-deep: #8f0209;
  --silver: #d6d9de;
  --blue: #111c33;
  --gold: #c9a75b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --radius: 8px;
  --max: 1180px;
  --scroll-progress: 0;
  --ambient-red-x: 16%;
  --ambient-red-y: 18%;
  --ambient-blue-x: 84%;
  --ambient-blue-y: 14%;
  --ambient-tilt: -12deg;
  --ambient-dim: 0.72;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(225, 6, 19, 0.14), transparent 32rem),
    radial-gradient(circle at 80% 20%, rgba(32, 46, 78, 0.6), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: -5;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--ambient-red-x) var(--ambient-red-y), rgba(225, 6, 19, 0.19), transparent 34rem),
    radial-gradient(circle at var(--ambient-blue-x) var(--ambient-blue-y), rgba(32, 46, 78, 0.54), transparent 31rem),
    linear-gradient(135deg, #050609 0%, #0b0e16 52%, #140306 100%);
}

.ambient-bg::before {
  position: absolute;
  inset: -18%;
  content: "";
  background-image:
    linear-gradient(30deg, transparent 0 44%, rgba(255, 255, 255, 0.04) 45% 46%, transparent 47%),
    linear-gradient(150deg, transparent 0 44%, rgba(255, 255, 255, 0.026) 45% 46%, transparent 47%);
  background-size: 82px 48px;
  opacity: calc(0.12 + (var(--scroll-progress) * 0.16));
  transform: translate3d(calc(var(--scroll-progress) * -38px), calc(var(--scroll-progress) * 26px), 0);
  transition: opacity 160ms linear;
}

.ambient-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 42%, transparent 0 28%, rgba(0, 0, 0, 0.42) 76%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, var(--ambient-dim)));
}

.ambient-glow,
.ambient-streak {
  position: absolute;
  display: block;
  will-change: transform, opacity;
}

.ambient-glow {
  width: min(70vw, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.54;
  mix-blend-mode: screen;
}

.ambient-glow-red {
  left: -18%;
  top: -16%;
  background: rgba(225, 6, 19, 0.28);
  transform: translate3d(calc(var(--scroll-progress) * 46vw), calc(var(--scroll-progress) * 32vh), 0);
}

.ambient-glow-blue {
  right: -16%;
  top: 4%;
  background: rgba(24, 54, 118, 0.36);
  transform: translate3d(calc(var(--scroll-progress) * -38vw), calc(var(--scroll-progress) * 42vh), 0);
}

.ambient-streak {
  left: -16vw;
  width: 132vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(225, 6, 19, 0.18), rgba(216, 219, 225, 0.22), transparent);
  box-shadow: 0 0 26px rgba(225, 6, 19, 0.32);
  transform: rotate(var(--ambient-tilt)) translate3d(calc(var(--scroll-progress) * 9vw), 0, 0);
}

.ambient-streak-one {
  top: 28%;
  opacity: 0.72;
}

.ambient-streak-two {
  top: 68%;
  opacity: 0.38;
  transform: rotate(calc(var(--ambient-tilt) * -0.65)) translate3d(calc(var(--scroll-progress) * -8vw), 0, 0);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(30deg, transparent 0 44%, rgba(255, 255, 255, 0.045) 45% 46%, transparent 47%),
    linear-gradient(150deg, transparent 0 44%, rgba(255, 255, 255, 0.035) 45% 46%, transparent 47%);
  background-size: 76px 44px;
  opacity: 0.1;
}

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

img,
svg {
  display: block;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(5, 6, 9, 0.76), rgba(5, 6, 9, 0));
  backdrop-filter: blur(12px);
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  border-color: var(--line);
  background: rgba(5, 6, 9, 0.9);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  color: var(--red);
  font-size: 1.8rem;
  font-weight: 950;
  font-style: italic;
  line-height: 1;
  text-shadow: 0 0 24px rgba(225, 6, 19, 0.42);
  animation: brandGlow 4.8s ease-in-out infinite;
}

.brand-mark::after {
  position: absolute;
  right: -7px;
  bottom: -7px;
  left: 4px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--red), var(--silver), transparent);
  transform: skew(-18deg) scaleX(0.78);
  transform-origin: left;
  opacity: 0.78;
  animation: brandLine 4.8s ease-in-out infinite;
}

.brand-text {
  position: relative;
  overflow: hidden;
  color: var(--silver);
  font-size: 0.98rem;
  font-weight: 850;
  letter-spacing: 0;
  transform: skew(-8deg);
}

.brand-text::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, transparent 15%, rgba(255, 255, 255, 0.65) 48%, transparent 72%);
  transform: translateX(-130%);
  animation: brandShine 6.4s ease-in-out infinite;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  color: rgba(246, 247, 251, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover {
  color: #fff;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(225, 6, 19, 0.65);
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 12px 40px rgba(225, 6, 19, 0.22);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover,
.mobile-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

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

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: 72px 14px auto;
  z-index: 40;
  display: none;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(9, 11, 16, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel nav {
  display: grid;
  gap: 4px;
}

.mobile-panel a {
  padding: 12px 10px;
  color: rgba(246, 247, 251, 0.86);
  font-weight: 750;
}

.mobile-cta {
  width: 100%;
  margin-top: 12px;
}

.section-band {
  position: relative;
}

.section-pad {
  padding: clamp(76px, 10vw, 128px) clamp(18px, 4vw, 56px);
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto 36px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  position: relative;
  max-width: min(100%, 1080px);
  margin-bottom: 16px;
  overflow: visible;
  font-size: clamp(2.6rem, 4.8vw, 5.25rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
  text-wrap: balance;
  hyphens: manual;
  animation: heroTitleIn 760ms cubic-bezier(0.2, 0.78, 0.2, 1) both;
}

h1::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, transparent 0 44%, rgba(255, 255, 255, 0.22) 50%, transparent 58%);
  transform: translateX(-120%);
  animation: heroTitleShine 6.8s ease-in-out 1.2s infinite;
  pointer-events: none;
}

h1 span {
  display: block;
  hyphens: manual;
}

h2 {
  max-width: 790px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4.2vw, 4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero {
  min-height: 100svh;
  padding: 116px clamp(18px, 4vw, 56px) 48px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/rb-detailing-brand.png");
  background-position: center 44%;
  background-size: cover;
  filter: saturate(1.02) contrast(1.08) brightness(0.82);
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 54% 45%, rgba(225, 6, 19, 0.08), transparent 28rem),
    linear-gradient(90deg, rgba(3, 4, 7, 0.96) 0%, rgba(3, 4, 7, 0.72) 46%, rgba(3, 4, 7, 0.48) 100%),
    linear-gradient(180deg, rgba(3, 4, 7, 0.42) 0%, rgba(3, 4, 7, 0.38) 45%, rgba(3, 4, 7, 0.96) 100%);
}

.hero-content {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding-bottom: 0;
}

.hero-subtitle {
  max-width: 720px;
  margin-bottom: 18px;
  color: rgba(246, 247, 251, 0.84);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 650;
}

.hero-slogan {
  position: relative;
  display: inline-grid;
  gap: 3px;
  max-width: min(100%, 430px);
  margin-bottom: 28px;
  padding: 12px 16px 12px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid var(--red);
  background:
    linear-gradient(115deg, rgba(225, 6, 19, 0.16), rgba(255, 255, 255, 0.045) 42%, rgba(255, 255, 255, 0.02)),
    rgba(7, 9, 13, 0.62);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.32), 0 0 36px rgba(225, 6, 19, 0.14);
  backdrop-filter: blur(14px);
  animation: sloganEnter 760ms cubic-bezier(0.2, 0.78, 0.2, 1) 240ms both, sloganFloat 5.8s ease-in-out 1.1s infinite;
}

.hero-slogan::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, transparent 0 38%, rgba(255, 255, 255, 0.18) 48%, transparent 58%);
  transform: translateX(-120%);
  animation: sloganShine 5.4s ease-in-out 1.5s infinite;
}

.hero-slogan span,
.hero-slogan strong {
  position: relative;
  z-index: 1;
}

.hero-slogan span {
  color: #fff;
  font-size: clamp(0.96rem, 1.7vw, 1.18rem);
  font-weight: 900;
  line-height: 1.22;
}

.hero-slogan strong {
  color: var(--silver);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 760;
  line-height: 1.3;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  color: #fff;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.btn-primary {
  border-color: rgba(225, 6, 19, 0.66);
  background: linear-gradient(135deg, #ff1625, #9a030b);
  box-shadow: 0 18px 52px rgba(225, 6, 19, 0.27);
}

.whatsapp-button {
  min-width: 160px;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(8, 10, 14, 0.72);
  color: #fff;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(225, 6, 19, 0.62);
  background:
    linear-gradient(145deg, rgba(225, 6, 19, 0.22), rgba(255, 255, 255, 0.04)),
    rgba(8, 10, 14, 0.88);
  box-shadow: 0 16px 42px rgba(225, 6, 19, 0.18);
}

.social-link svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.social-link[data-facebook] svg {
  fill: currentColor;
  stroke: none;
}

.contact-actions .social-links {
  display: contents;
}

.contact-actions .btn,
.contact-actions .footer-action-button,
.contact-actions .social-link {
  display: inline-flex;
  width: 100%;
  min-width: 0;
  min-height: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(8, 10, 14, 0.72);
  box-shadow: none;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 850;
}

.contact-actions .btn:hover,
.contact-actions .footer-action-button:hover,
.contact-actions .social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(225, 6, 19, 0.62);
  background:
    linear-gradient(145deg, rgba(225, 6, 19, 0.22), rgba(255, 255, 255, 0.04)),
    rgba(8, 10, 14, 0.88);
  box-shadow: 0 16px 42px rgba(225, 6, 19, 0.18);
}

.contact-actions .btn svg,
.contact-actions .footer-action-button svg,
.contact-actions .social-link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.hero-stat {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 34px;
  width: min(280px, calc(100vw - 36px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 10, 14, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-stat span,
.hero-stat small {
  display: block;
  color: var(--muted);
}

.hero-stat strong {
  display: block;
  color: #fff;
  font-size: 2.35rem;
  line-height: 1;
}

.benefit-grid,
.service-grid,
.gallery-grid,
.review-grid {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  gap: 16px;
}

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

.premium-card,
.service-card,
.review-card,
.contact-card,
.cta-panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.premium-card {
  min-height: 244px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.premium-card:hover,
.service-card:hover,
.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 6, 19, 0.5);
}

.icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid rgba(225, 6, 19, 0.45);
  background: rgba(225, 6, 19, 0.1);
}

.icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 1.8;
  fill: none;
}

.premium-card p,
.service-card p,
.review-card p,
.contact-card dd,
.gallery-card small {
  color: var(--muted);
}

.services,
.reviews,
.contacts {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.018);
}

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

.service-card {
  min-height: 270px;
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-icon {
  display: inline-grid;
  width: 54px;
  height: 36px;
  margin-bottom: 28px;
  place-items: center;
  border-left: 3px solid var(--red);
  background: linear-gradient(90deg, rgba(225, 6, 19, 0.22), rgba(255, 255, 255, 0.04));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
}

.service-card a {
  display: inline-flex;
  margin-top: 12px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 850;
}

.service-card a::after {
  margin-left: 9px;
  content: "→";
  color: var(--red);
}

.pricing {
  position: relative;
  overflow: hidden;
}

.pricing::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(120deg, rgba(225, 6, 19, 0.16), transparent 38%),
    radial-gradient(circle at 82% 16%, rgba(225, 6, 19, 0.12), transparent 24rem),
    rgba(255, 255, 255, 0.012);
}

.pricing-hero,
.pricing-grid,
.pricing-benefits {
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.pricing-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

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

.price-card {
  position: relative;
  display: grid;
  min-height: 610px;
  padding: 30px 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(7, 9, 13, 0.82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.price-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(110deg, transparent 0 46%, rgba(255, 255, 255, 0.075) 52%, transparent 58%),
    radial-gradient(circle at 50% 100%, rgba(225, 6, 19, 0.12), transparent 17rem);
  opacity: 0.7;
  pointer-events: none;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 6, 19, 0.5);
  box-shadow: 0 32px 88px rgba(0, 0, 0, 0.44), 0 0 42px rgba(225, 6, 19, 0.12);
}

.price-card-featured {
  border-color: rgba(225, 6, 19, 0.72);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.42), 0 0 38px rgba(225, 6, 19, 0.14);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: -42px;
  z-index: 2;
  width: 160px;
  padding: 7px 0;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(45deg);
}

.price-card h3,
.price-subtitle,
.price-tag,
.price-card ul,
.price-note,
.price-includes {
  position: relative;
  z-index: 1;
}

.price-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 950;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.price-subtitle {
  margin-bottom: 22px;
  color: var(--red);
  font-size: 1.35rem;
  font-weight: 950;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.price-tag {
  display: grid;
  min-height: 72px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1;
}

.price-tag::after {
  display: block;
  width: 42px;
  height: 4px;
  margin-top: 10px;
  content: "";
  background: var(--red);
}

.price-includes {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.price-card ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  min-height: 30px;
  padding-left: 34px;
  color: rgba(246, 247, 251, 0.82);
}

.price-card li::before {
  position: absolute;
  top: 0.15rem;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(225, 6, 19, 0.55);
  color: var(--red);
  content: "✓";
  font-size: 0.8rem;
  font-weight: 950;
}

.price-note {
  align-self: end;
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.pricing-benefits {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 9, 13, 0.72);
}

.pricing-benefits span {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(246, 247, 251, 0.85);
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.pricing-benefits span:last-child {
  border-right: 0;
}

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

.before-after-showcase {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(8, 10, 14, 0.72);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.36);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.before-after-showcase:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 6, 19, 0.5);
  box-shadow: 0 34px 98px rgba(0, 0, 0, 0.48), 0 0 48px rgba(225, 6, 19, 0.12);
}

.before-after-slider {
  position: relative;
  min-height: auto;
  aspect-ratio: 1448 / 1086;
  overflow: hidden;
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
  background: #050609;
}

.before-after-slider-wide {
  aspect-ratio: 1448 / 1086;
}

.before-after-slider::before,
.before-after-slider::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  content: "";
  pointer-events: none;
}

.before-after-slider::before {
  background:
    linear-gradient(90deg, rgba(5, 6, 9, 0.52), transparent 36%, transparent 64%, rgba(5, 6, 9, 0.38)),
    linear-gradient(0deg, rgba(5, 6, 9, 0.7), transparent 34%);
}

.before-after-slider::after {
  background: linear-gradient(112deg, transparent 0 42%, rgba(255, 255, 255, 0.18) 49%, transparent 57% 100%);
  opacity: 0.55;
  transform: translateX(-28%);
  transition: transform 520ms ease, opacity 220ms ease;
}

.before-after-showcase:hover .before-after-slider::after {
  opacity: 0.78;
  transform: translateX(18%);
}

.compare-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.compare-after {
  z-index: 1;
}

.compare-before-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--position) + 1px) 0 0);
  transform: translateZ(0);
  will-change: clip-path, transform;
}

.compare-before {
  filter: saturate(0.84) contrast(0.92) brightness(0.88);
}

.compare-label {
  position: absolute;
  z-index: 5;
  top: 12px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 6, 9, 0.58);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.compare-label-before {
  left: 12px;
}

.compare-label-after {
  right: 12px;
  border-color: rgba(225, 6, 19, 0.48);
  box-shadow: 0 0 28px rgba(225, 6, 19, 0.15);
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 6;
  width: 3px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.92) 18%, rgba(225, 6, 19, 0.92) 50%, rgba(255, 255, 255, 0.88) 82%, transparent);
  box-shadow: 0 0 24px rgba(225, 6, 19, 0.42);
  transform: translateX(-50%);
  will-change: left;
}

.compare-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(145deg, #151923, #050609 58%, #1c0306);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45), 0 0 34px rgba(225, 6, 19, 0.36);
  color: #fff;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.before-after-slider:hover .compare-handle,
.before-after-slider.is-dragging .compare-handle {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.5), 0 0 46px rgba(225, 6, 19, 0.52);
}

.compare-handle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.before-after-showcase figcaption {
  display: grid;
  min-height: 82px;
  align-content: center;
  gap: 5px;
  padding: 14px 16px;
}

.before-after-showcase figcaption strong,
.before-after-showcase figcaption small {
  display: block;
  line-height: 1.35;
}

.before-after-showcase figcaption small {
  color: var(--muted);
}

.gallery-card {
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.gallery-image {
  position: relative;
  min-height: clamp(260px, 32vw, 430px);
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(3, 4, 7, 0.75) 0 49.8%, rgba(225, 6, 19, 0.22) 50% 50.2%, rgba(3, 4, 7, 0.1) 50.4%),
    url("assets/rb-detailing-brand.png");
  background-size: cover;
}

.gallery-image::before,
.gallery-image::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.gallery-image::before {
  width: 50%;
  background: rgba(0, 0, 0, 0.58);
  filter: grayscale(1);
}

.gallery-image::after {
  background:
    linear-gradient(110deg, transparent 0 52%, rgba(255, 255, 255, 0.22) 53%, transparent 57%),
    linear-gradient(0deg, rgba(5, 6, 9, 0.75), transparent 46%);
}

.gallery-image span {
  position: absolute;
  z-index: 2;
  top: 18px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.gallery-image span:first-child {
  left: 18px;
}

.gallery-image span:last-child {
  right: 18px;
  border-color: rgba(225, 6, 19, 0.45);
}

.gallery-paint {
  background-position: center;
}

.gallery-interior {
  background-position: 42% center;
  filter: hue-rotate(195deg) saturate(0.8);
}

.gallery-light {
  background-position: 78% center;
  filter: brightness(1.08) saturate(1.2);
}

.gallery-ceramic {
  background-position: 22% center;
  filter: contrast(1.18);
}

.gallery-card figcaption {
  display: grid;
  gap: 4px;
  padding: 18px;
}

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

.review-card {
  padding: 26px;
}

.stars {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 1.1rem;
}

.review-card p {
  min-height: 78px;
  font-size: 1.06rem;
}

.accordion {
  width: min(100%, 900px);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-item b {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--red);
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.faq-item.is-open b {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 22px;
}

.cta-panel {
  display: flex;
  width: min(100%, var(--max));
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(120deg, rgba(225, 6, 19, 0.22), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel-strong);
}

.cta-panel h2 {
  max-width: 760px;
}

.contact-layout {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  grid-template-columns: minmax(310px, 0.74fr) 1fr;
  gap: 18px;
}

.contact-card {
  padding: 28px;
}

.contact-card dl {
  display: grid;
  gap: 18px;
  margin: 0 0 26px;
}

.contact-card dt {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 3px 0 0;
}

.address-link {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: rgba(225, 6, 19, 0.45);
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.address-link:hover {
  color: #fff;
  text-decoration-color: var(--red);
}

.map-wrap {
  min-height: 430px;
  border: 1px solid var(--line);
  background: #111;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  filter: grayscale(1) invert(0.88) contrast(0.9);
}

.site-footer {
  padding: 34px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #050609;
}

.footer-grid,
.footer-bottom {
  display: flex;
  width: min(100%, var(--max));
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-grid nav,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(128px, 1fr));
  gap: 10px;
}

.footer-action-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(8, 10, 14, 0.72);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.footer-action-button:hover {
  transform: translateY(-2px);
  border-color: rgba(225, 6, 19, 0.58);
  background: rgba(225, 6, 19, 0.14);
  box-shadow: 0 14px 34px rgba(225, 6, 19, 0.16);
}

.footer-action-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-social {
  display: contents;
}

.footer-contact .social-link {
  display: inline-flex;
  width: 100%;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 14px;
  font-size: 0.86rem;
  font-weight: 850;
}

.footer-contact .social-link svg {
  width: 18px;
  height: 18px;
}

.contact-email-button {
  min-height: 52px;
  padding: 0 18px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: rgba(168, 175, 189, 0.82);
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease var(--delay, 0ms), transform 560ms ease var(--delay, 0ms);
}

.premium-card.reveal,
.service-card.reveal,
.before-after-showcase.reveal,
.gallery-card.reveal,
.review-card.reveal,
.contact-card.reveal,
.map-wrap.reveal,
.cta-panel.reveal {
  filter: blur(6px);
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 620ms ease var(--delay, 0ms),
    transform 620ms cubic-bezier(0.2, 0.75, 0.2, 1) var(--delay, 0ms),
    filter 620ms ease var(--delay, 0ms),
    border-color 180ms ease,
    background 180ms ease;
}

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

.premium-card.reveal.is-visible,
.service-card.reveal.is-visible,
.before-after-showcase.reveal.is-visible,
.gallery-card.reveal.is-visible,
.review-card.reveal.is-visible,
.contact-card.reveal.is-visible,
.map-wrap.reveal.is-visible,
.cta-panel.reveal.is-visible {
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.before-after-showcase.reveal.is-visible:hover {
  transform: translateY(-5px) scale(1);
}

.chat-widget {
  position: fixed;
  right: clamp(16px, 2.4vw, 28px);
  bottom: clamp(16px, 2.4vw, 28px);
  z-index: 60;
}

.chat-launcher {
  position: relative;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid rgba(225, 6, 19, 0.62);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(145deg, #141821, #050609 58%, #1c0306);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.46), 0 0 32px rgba(225, 6, 19, 0.22);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.chat-launcher:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.52), 0 0 42px rgba(225, 6, 19, 0.3);
}

.chat-logo {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--red);
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 950;
  line-height: 1;
  text-shadow: 0 0 18px rgba(225, 6, 19, 0.55);
}

.chat-logo::before {
  position: absolute;
  inset: -5px;
  content: "";
  border-top: 3px solid var(--red);
  border-right: 2px solid rgba(216, 219, 225, 0.76);
  border-radius: 50%;
  transform: rotate(-22deg);
}

.chat-logo::after {
  position: absolute;
  right: 7px;
  bottom: 8px;
  left: 9px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--silver));
  transform: skew(-22deg);
}

.chat-logo.small {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  font-size: 0.92rem;
}

.chat-pulse {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(225, 6, 19, 0.32);
  border-radius: 50%;
  animation: chatPulse 2.8s ease-out infinite;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 82px;
  display: grid;
  width: min(370px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(150deg, rgba(225, 6, 19, 0.12), transparent 34%),
    rgba(8, 10, 14, 0.96);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.58);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.97);
  transform-origin: bottom right;
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(18px);
}

.chat-widget.is-open .chat-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.chat-agent {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-agent strong,
.chat-agent small {
  display: block;
}

.chat-agent strong {
  line-height: 1.2;
}

.chat-agent small {
  color: var(--muted);
  font-size: 0.78rem;
}

.chat-close {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
}

.chat-messages {
  display: grid;
  max-height: 320px;
  min-height: 178px;
  gap: 10px;
  padding: 16px;
  overflow-y: auto;
}

.bot-message,
.user-message {
  width: fit-content;
  max-width: 88%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.45;
  animation: messageIn 220ms ease both;
}

.bot-message {
  background: rgba(255, 255, 255, 0.06);
}

.user-message {
  justify-self: end;
  border-color: rgba(225, 6, 19, 0.4);
  background: linear-gradient(135deg, rgba(225, 6, 19, 0.8), rgba(93, 5, 10, 0.88));
}

.chat-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 14px;
}

.chat-quick-actions button {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(246, 247, 251, 0.86);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.chat-quick-actions button:hover {
  border-color: rgba(225, 6, 19, 0.48);
  color: #fff;
  transform: translateY(-1px);
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--line);
}

.chat-form input {
  min-width: 0;
  min-height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font: inherit;
  padding: 0 12px;
  outline: none;
}

.chat-form input:focus {
  border-color: rgba(225, 6, 19, 0.55);
}

.chat-form button {
  min-height: 44px;
  border: 1px solid rgba(225, 6, 19, 0.62);
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  cursor: pointer;
}

@keyframes brandGlow {
  0%,
  100% {
    text-shadow: 0 0 18px rgba(225, 6, 19, 0.32);
  }
  50% {
    text-shadow: 0 0 30px rgba(225, 6, 19, 0.64), 0 0 14px rgba(216, 219, 225, 0.24);
  }
}

@keyframes brandLine {
  0%,
  100% {
    opacity: 0.5;
    transform: skew(-18deg) scaleX(0.58);
  }
  50% {
    opacity: 0.95;
    transform: skew(-18deg) scaleX(1);
  }
}

@keyframes brandShine {
  0%,
  54% {
    transform: translateX(-130%);
  }
  72%,
  100% {
    transform: translateX(130%);
  }
}

@keyframes chatPulse {
  0% {
    opacity: 0.8;
    transform: scale(0.86);
  }
  100% {
    opacity: 0;
    transform: scale(1.24);
  }
}

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

@keyframes sloganEnter {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes sloganShine {
  0%,
  56% {
    transform: translateX(-120%);
  }
  78%,
  100% {
    transform: translateX(120%);
  }
}

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

@keyframes heroTitleShine {
  0%,
  58% {
    transform: translateX(-120%);
  }
  76%,
  100% {
    transform: translateX(120%);
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

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

  .price-card-featured {
    grid-column: span 2;
  }

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

  .pricing-benefits span {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-stat {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 20px auto 0;
  }

  .hero {
    align-items: center;
    gap: 20px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-mark {
    font-size: 1.55rem;
  }

  .brand-text {
    font-size: 0.82rem;
  }

  .section-pad {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .hero {
    min-height: 100svh;
    padding: 104px 16px 34px;
    align-items: center;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero-slogan {
    width: 100%;
    padding: 13px 15px;
    margin-bottom: 22px;
  }

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

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 4, 7, 0.98), rgba(3, 4, 7, 0.72)),
      linear-gradient(180deg, rgba(3, 4, 7, 0.4), rgba(3, 4, 7, 0.98));
  }

  h1 {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: clamp(2rem, 8.8vw, 3.2rem);
    line-height: 0.98;
  }

  .hero-subtitle {
    margin-bottom: 16px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .hero-actions .btn {
    min-height: 50px;
  }

  .hero-stat {
    display: none;
  }

  .benefit-grid,
  .service-grid,
  .pricing-grid,
  .gallery-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .pricing-hero {
    display: grid;
  }

  .pricing-hero .btn {
    width: 100%;
  }

  .price-card,
  .price-card-featured {
    grid-column: auto;
    min-height: auto;
  }

  .pricing-benefits {
    grid-template-columns: 1fr;
  }

  .before-after-slider {
    min-height: auto;
    aspect-ratio: 1448 / 1086;
  }

  .compare-label {
    top: 12px;
    padding: 7px 9px;
  }

  .compare-label-before {
    left: 12px;
  }

  .compare-label-after {
    right: 12px;
  }

  .compare-handle {
    width: 44px;
    height: 44px;
  }

  .premium-card,
  .service-card {
    min-height: auto;
  }

  .cta-panel {
    display: grid;
  }

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

  .contact-actions .social-links {
    width: 100%;
  }

  .footer-grid,
  .footer-bottom {
    display: grid;
  }

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

  .chat-widget {
    right: 14px;
    bottom: 14px;
  }

  .chat-launcher {
    width: 60px;
    height: 60px;
  }

  .chat-panel {
    bottom: 74px;
  }

  .chat-messages {
    max-height: 270px;
  }
}

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

  .ambient-glow,
  .ambient-streak,
  .ambient-bg::before {
    transform: none !important;
  }
}
