:root {
  --radius: 0.75rem;
  --background: oklch(0.99 0.005 240);
  --foreground: oklch(0.16 0.03 255);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.16 0.03 255);
  --primary: oklch(0.35 0.17 255);
  --primary-foreground: oklch(0.99 0.005 240);
  --primary-glow: oklch(0.55 0.2 245);
  --secondary: oklch(0.95 0.02 240);
  --secondary-foreground: oklch(0.2 0.05 255);
  --muted: oklch(0.96 0.01 240);
  --muted-foreground: oklch(0.45 0.03 255);
  --accent: oklch(0.62 0.19 30);
  --accent-foreground: oklch(1 0 0);
  --whatsapp: oklch(0.65 0.17 148);
  --whatsapp-foreground: oklch(1 0 0);
  --border: oklch(0.9 0.015 240);
  --ring: oklch(0.55 0.2 245);
  --shadow-elegant: 0 20px 50px -20px color-mix(in oklab, var(--primary) 35%, transparent);
  --shadow-card: 0 10px 30px -12px oklch(0.2 0.05 250 / 0.15);
  --gradient-hero: linear-gradient(135deg, oklch(0.28 0.14 255) 0%, oklch(0.42 0.18 250) 60%, oklch(0.55 0.2 240) 100%);
  --gradient-cool: linear-gradient(135deg, oklch(0.96 0.02 240), oklch(0.92 0.04 235));
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}

body.popup-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
.brand,
.footer-brand,
.section-kicker {
  font-family: "Poppins", "Inter", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

.container {
  width: min(100% - 32px, 1152px);
  margin-inline: auto;
}

.ticker {
  overflow: hidden;
  background: linear-gradient(90deg, #ea580c, #dc2626);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-block: 8px;
}

.ticker-now {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.ticker-now span,
.online-dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #22c55e;
}

.ticker-now span {
  background: #fff;
}

.online-dot::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: inherit;
  opacity: 0.55;
  animation: dot-pulse 1.6s ease-in-out infinite;
}

.ticker-window {
  flex: 1;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 40px;
  width: max-content;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--background) 85%, transparent);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand img,
.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
}

.brand span {
  display: grid;
  gap: 1px;
  font-weight: 800;
  line-height: 1.05;
}

.brand small {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted-foreground);
  font: 500 11px/1.25 "Inter", sans-serif;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: color-mix(in oklab, var(--foreground) 80%, transparent);
  font-size: 14px;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--primary);
}

.wa-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: var(--whatsapp);
  color: var(--whatsapp-foreground);
  font-weight: 700;
  line-height: 1;
  padding: 14px 22px;
  box-shadow: 0 10px 30px -8px color-mix(in oklab, var(--whatsapp) 55%, transparent);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wa-button:hover {
  transform: translateY(-2px);
  background: color-mix(in oklab, var(--whatsapp) 90%, black);
  box-shadow: 0 18px 36px -12px color-mix(in oklab, var(--whatsapp) 70%, transparent);
}

.header-wa {
  padding: 10px 16px;
  font-size: 14px;
}

.wa-button.big {
  padding: 17px 28px;
  font-size: 16px;
}

.wa-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.wa-pulse {
  animation: wa-pulse-ring 2s infinite;
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(115deg, oklch(0.18 0.08 255 / 0.92) 0%, oklch(0.22 0.12 255 / 0.82) 45%, oklch(0.25 0.14 250 / 0.55) 100%);
}

.hero-black {
  background: rgb(0 0 0 / 0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 80px 112px;
}

.hero-copy {
  max-width: 672px;
  color: white;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.15);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.pill svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  margin-top: 16px;
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  text-shadow: 0 4px 20px rgb(0 0 0 / 0.5);
}

.hero h1 span {
  color: var(--primary-glow);
}

.hero p {
  margin-top: 20px;
  color: rgb(255 255 255 / 0.9);
  font-size: 18px;
  line-height: 1.65;
  text-shadow: 0 2px 12px rgb(0 0 0 / 0.45);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.response-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgb(255 255 255 / 0.9);
  font-size: 14px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 20px;
  margin-top: 24px;
  color: rgb(255 255 255 / 0.9);
  font-size: 14px;
}

.hero-badges span,
.trust-ribbon span,
.final-checks span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-badges svg,
.trust-ribbon svg,
.final-checks svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.stats-wrap {
  position: relative;
  z-index: 2;
  margin-top: -32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow-card);
}

.stats-grid div {
  text-align: center;
}

.stats-grid strong {
  display: block;
  color: var(--primary);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
}

.stats-grid span {
  color: var(--muted-foreground);
  font-size: 14px;
}

.trust-ribbon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-top: 24px;
  color: var(--muted-foreground);
  font-size: 14px;
}

.trust-ribbon svg {
  color: #10b981;
}

.reviews-section,
.how-section,
.services-section,
.work-section,
.about-section,
.final-section {
  padding-block: 80px;
}

.reviews-section {
  background: var(--gradient-cool);
}

.services-section,
.about-section {
  background: color-mix(in oklab, var(--muted) 40%, transparent);
}

.section-title {
  max-width: 672px;
  margin-inline: auto;
  text-align: center;
}

.section-title > span,
.section-kicker {
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-title h2,
.about-grid h2,
.final-card h2 {
  margin-top: 8px;
  font-size: clamp(30px, 4.3vw, 40px);
  font-weight: 800;
  line-height: 1.15;
}

.section-title p {
  margin-top: 12px;
  color: var(--muted-foreground);
  line-height: 1.65;
}

.rating-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.rating-line span,
.stars {
  color: #facc15;
  letter-spacing: 1px;
  text-shadow: 0 1px 0 #ca8a04;
}

.rating-line small {
  color: var(--muted-foreground);
  font-size: 14px;
}

.google-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
}

.google-score b {
  font-size: 24px;
  letter-spacing: -0.02em;
}

.google-score small {
  margin-top: 4px;
  color: var(--muted-foreground);
}

.google-score div {
  display: flex;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 600;
}

.google-score div span:nth-child(1),
.google-score div span:nth-child(4) {
  color: #4285f4;
}

.google-score div span:nth-child(2),
.google-score div span:nth-child(6) {
  color: #ea4335;
}

.google-score div span:nth-child(3) {
  color: #fbbc05;
}

.google-score div span:nth-child(5) {
  color: #34a853;
}

.reviews-carousel {
  position: relative;
  margin-top: 48px;
}

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

.review-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}

.review-card.active {
  transform: scale(1.04);
  box-shadow: var(--shadow-elegant);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
}

.avatar.orange { background: #f97316; }
.avatar.emerald { background: #10b981; }
.avatar.sky { background: #0ea5e9; }
.avatar.rose { background: #f43f5e; }
.avatar.indigo { background: #6366f1; }
.avatar.fuchsia { background: #d946ef; }

.review-card h3 {
  font-size: 16px;
  font-weight: 800;
}

.review-card time {
  display: block;
  color: var(--muted-foreground);
  font-size: 13px;
}

.review-card .stars {
  margin-top: 18px;
  font-size: 15px;
}

.review-card p {
  margin-top: 12px;
  color: color-mix(in oklab, var(--foreground) 82%, transparent);
  font-size: 14px;
  line-height: 1.65;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  color: var(--primary);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-btn.prev {
  left: -18px;
}

.carousel-btn.next {
  right: -18px;
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.review-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: color-mix(in oklab, var(--primary) 28%, transparent);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.review-dots button.active {
  width: 26px;
  background: var(--primary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.steps-grid article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow-card);
}

.steps-grid article > strong {
  position: absolute;
  top: -12px;
  right: 16px;
  color: color-mix(in oklab, var(--primary) 12%, transparent);
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
}

.steps-grid b {
  color: var(--primary);
}

.steps-grid h3 {
  margin-top: 8px;
  font-size: 20px;
}

.steps-grid p {
  margin-top: 8px;
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 1.6;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elegant);
}

.service-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--muted);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-media img {
  transform: scale(1.05);
}

.service-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--gradient-hero);
  color: #fff;
  box-shadow: 0 12px 24px -12px rgb(0 0 0 / 0.5);
}

.service-icon svg {
  width: 20px;
  height: 20px;
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.service-body h3 {
  font-size: 18px;
}

.service-body p {
  flex: 1;
  margin-top: 8px;
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 1.6;
}

.service-body .wa-button {
  width: 100%;
  margin-top: 20px;
  padding-block: 12px;
  font-size: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--muted);
  box-shadow: var(--shadow-card);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
  align-items: center;
  gap: 40px;
}

.about-grid p {
  margin-top: 16px;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.about-grid ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.about-grid li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-grid li svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--whatsapp);
}

.about-grid .wa-button {
  margin-top: 32px;
}

.about-card,
.final-card {
  background: var(--gradient-hero);
  color: #fff;
  box-shadow: var(--shadow-elegant);
}

.about-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 32px;
  border-radius: 24px;
}

.about-card > strong,
.about-card > span {
  grid-column: 1 / -1;
}

.about-card > strong {
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
}

.about-card > span {
  margin-top: -6px;
  font-size: 18px;
  opacity: 0.9;
}

.about-card div b {
  display: block;
  font-size: 26px;
}

.about-card div small {
  opacity: 0.82;
}

.final-card {
  max-width: 896px;
  margin-inline: auto;
  padding: 48px 56px;
  border-radius: 24px;
  text-align: center;
}

.final-card p {
  max-width: 672px;
  margin: 16px auto 0;
  color: rgb(255 255 255 / 0.9);
  line-height: 1.7;
}

.final-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-top: 24px;
  font-size: 14px;
}

.final-card .wa-button {
  margin-top: 32px;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--card);
  padding-block: 40px 24px;
}

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

.footer-brand,
.site-footer .footer-grid > div {
  display: grid;
  align-content: start;
  gap: 6px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
}

.site-footer b {
  font-weight: 800;
}

.site-footer span {
  display: block;
  color: var(--muted-foreground);
  font-size: 14px;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: var(--whatsapp);
  font-weight: 700;
}

.site-footer p {
  margin-top: 32px;
  color: var(--muted-foreground);
  font-size: 12px;
  text-align: center;
}

.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  box-shadow: 0 22px 45px -15px rgb(0 0 0 / 0.35);
}

.mobile-cta {
  display: none;
}

.offer-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.offer-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(15 23 42 / 0.62);
  backdrop-filter: blur(8px);
}

.popup-card {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px -24px rgb(0 0 0 / 0.45);
  transform: translateY(14px) scale(0.97);
  transition: transform 0.24s ease;
}

.offer-popup.is-open .popup-card {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.9);
  color: var(--foreground);
  cursor: pointer;
  box-shadow: 0 8px 20px -14px rgb(0 0 0 / 0.45);
}

.popup-close svg {
  width: 18px;
  height: 18px;
}

.popup-photo {
  height: 164px;
  background: var(--muted);
}

.popup-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-offer {
  margin: -34px 24px 0;
  position: relative;
  border-radius: 24px;
  padding: 20px 24px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #ff7a3d, #e94b25);
  box-shadow: 0 16px 30px -16px rgb(234 88 12 / 0.65);
}

.popup-offer span {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.popup-offer h2 {
  margin-top: 2px;
  font-size: 56px;
  font-weight: 900;
  line-height: 0.95;
}

.popup-offer p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.45;
}

.popup-body {
  padding: 22px 24px 24px;
}

.popup-body ul {
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
  padding: 0;
  color: var(--muted-foreground);
  font-size: 14px;
  list-style: none;
}

.popup-body li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.popup-body li svg {
  width: 16px;
  height: 16px;
  color: var(--whatsapp);
}

.popup-body .wa-button {
  width: 100%;
}

.popup-body button:not(.wa-button) {
  display: block;
  width: 100%;
  margin-top: 12px;
  border: 0;
  background: transparent;
  color: var(--muted-foreground);
  font-size: 13px;
  cursor: pointer;
}

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

@keyframes wa-pulse-ring {
  0% {
    box-shadow: 0 0 0 0 color-mix(in oklab, var(--whatsapp) 60%, transparent), 0 10px 30px -8px color-mix(in oklab, var(--whatsapp) 55%, transparent);
  }
  70% {
    box-shadow: 0 0 0 14px color-mix(in oklab, var(--whatsapp) 0%, transparent), 0 10px 30px -8px color-mix(in oklab, var(--whatsapp) 55%, transparent);
  }
  100% {
    box-shadow: 0 0 0 0 color-mix(in oklab, var(--whatsapp) 0%, transparent), 0 10px 30px -8px color-mix(in oklab, var(--whatsapp) 55%, transparent);
  }
}

@keyframes dot-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.7;
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: 76px;
  }

  .main-nav,
  .header-wa,
  .floating-wa {
    display: none;
  }

  .header-inner {
    height: 62px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-block: 64px 88px;
  }

  .hero h1 {
    font-size: clamp(36px, 9vw, 48px);
  }

  .hero p {
    font-size: 16px;
  }

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

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

  .review-card:not(.active) {
    display: none;
  }

  .review-card.active {
    transform: none;
  }

  .carousel-btn.prev {
    left: -8px;
  }

  .carousel-btn.next {
    right: -8px;
  }

  .steps-grid,
  .services-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

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

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

  .mobile-cta {
    position: fixed;
    inset: auto 0 0;
    z-index: 50;
    display: block;
    padding: 12px;
    border-top: 1px solid var(--border);
    background: color-mix(in oklab, var(--background) 95%, transparent);
    backdrop-filter: blur(12px);
    box-shadow: 0 -8px 24px -8px rgb(0 0 0 / 0.15);
  }

  .mobile-cta .wa-button {
    width: 100%;
    padding-block: 15px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1152px);
  }

  .ticker-now {
    display: none;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    font-size: 14px;
  }

  .brand small {
    font-size: 10px;
  }

  .pill {
    align-items: flex-start;
    line-height: 1.35;
  }

  .hero-actions .wa-button,
  .center-action .wa-button,
  .final-card .wa-button,
  .about-grid .wa-button {
    width: 100%;
  }

  .response-note {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    padding: 18px 14px;
  }

  .reviews-section,
  .how-section,
  .services-section,
  .work-section,
  .about-section,
  .final-section {
    padding-block: 64px;
  }

  .service-body,
  .steps-grid article {
    padding: 20px;
  }

  .gallery-grid {
    gap: 12px;
  }

  .about-card,
  .final-card {
    border-radius: 22px;
    padding: 28px 22px;
  }

  .popup-card {
    border-radius: 24px;
  }

  .popup-offer h2 {
    font-size: 48px;
  }
}
