:root {
  --radius: 0.625rem;
  --background: oklch(1 0 0);
  --foreground: oklch(0.18 0.05 250);
  --card: oklch(1 0 0);
  --primary: oklch(0.42 0.18 255);
  --primary-glow: oklch(0.62 0.18 245);
  --secondary: oklch(0.96 0.02 250);
  --muted: oklch(0.97 0.01 250);
  --muted-foreground: oklch(0.45 0.03 255);
  --border: oklch(0.91 0.02 250);
  --gradient-hero: linear-gradient(135deg, oklch(0.28 0.13 258), oklch(0.45 0.18 250) 60%, oklch(0.62 0.18 245));
  --gradient-primary: linear-gradient(135deg, oklch(0.42 0.18 255), oklch(0.62 0.18 245));
  --shadow-elegant: 0 20px 50px -20px oklch(0.42 0.18 255 / 0.35);
  --shadow-card: 0 8px 30px -12px oklch(0.3 0.1 250 / 0.18);
  --whatsapp: #25d366;
  --font-sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  letter-spacing: 0;
}

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

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

button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: oklch(1 0 0 / 0.8);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: -12px;
}

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

.brand span {
  color: var(--primary);
  font-weight: 900;
  line-height: 0.95;
}

.brand small {
  display: block;
  margin-top: 1px;
  color: var(--muted-foreground);
  font-size: 0.625rem;
  font-weight: 600;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 28px;
  font-size: 0.875rem;
  font-weight: 600;
}

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

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 8px;
  background: var(--whatsapp);
  padding: 8px 14px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgb(0 0 0 / 0.16);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.header-cta:hover,
.button-whatsapp:hover {
  filter: brightness(1.08);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg,
.hero-gradient,
.hero-dark,
.hero-light {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-gradient {
  z-index: -3;
  background: var(--gradient-hero);
  opacity: 0.9;
  mix-blend-mode: multiply;
}

.hero-dark {
  z-index: -2;
  background: linear-gradient(to bottom, rgb(0 0 0 / 0.4), transparent 50%, rgb(0 0 0 / 0.3));
}

.hero-light {
  z-index: -1;
  opacity: 0.2;
  background: radial-gradient(circle at 20% 20%, white, transparent 40%);
}

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

.hero-copy {
  max-width: 760px;
  padding-top: 16px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.1);
  padding: 5px 12px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: none;
  backdrop-filter: blur(10px);
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}

.icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon.fill svg {
  fill: currentColor;
  stroke: none;
}

.hero h1 {
  max-width: 960px;
  margin-top: 20px;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 900;
  line-height: 1.05;
}

.hero h1 span,
.contact-section h2 span {
  color: var(--primary-glow);
}

.hero-copy > p {
  max-width: 600px;
  margin-top: 24px;
  color: rgb(255 255 255 / 0.86);
  font-size: 1.125rem;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 12px 22px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

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

.button-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 15px 30px rgb(0 0 0 / 0.15);
}

.button-outline {
  border: 1px solid rgb(255 255 255 / 0.3);
  background: rgb(255 255 255 / 0.05);
  color: #fff;
}

.button-outline:hover {
  background: rgb(255 255 255 / 0.15);
}

.button.wide {
  width: fit-content;
  max-width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(100%, 384px);
  margin-top: 40px;
}

.hero-stats strong {
  display: block;
  color: var(--primary-glow);
  font-size: 1.875rem;
  font-weight: 900;
}

.hero-stats span {
  display: block;
  margin-top: 4px;
  color: rgb(255 255 255 / 0.72);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 48px;
}

.hero-gallery img {
  width: 100%;
  height: 192px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-elegant);
}

.trust-strip {
  border-block: 1px solid var(--border);
  background: oklch(0.96 0.02 250 / 0.5);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-block: 24px;
  text-align: center;
}

.trust-grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgb(26 44 78 / 0.84);
  font-size: 0.875rem;
  font-weight: 700;
}

.trust-grid .icon {
  color: var(--primary);
}

.clients-section {
  border-bottom: 1px solid var(--border);
  background: var(--background);
  padding-block: 64px;
}

.section-heading {
  max-width: 680px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.max-3 {
  max-width: 768px;
}

.section-heading > span,
.coverage-content > span {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading h2,
.compressor-copy h2,
.about-grid h2,
.coverage-content h2,
.contact-section h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
}

.section-heading p,
.compressor-copy p,
.about-grid p,
.coverage-content p,
.contact-section p {
  margin-top: 16px;
  color: var(--muted-foreground);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.logo-marquee {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: marquee 40s linear infinite;
}

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

.client-logo {
  width: 144px;
  height: 144px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  box-shadow: 0 5px 18px rgb(0 0 0 / 0.05);
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews-section {
  border-block: 1px solid var(--border);
  background: #faf7f2;
}

.reviews-section > .container {
  padding-block: 96px;
}

.rating-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: #facc15;
}

.stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: currentColor;
}

.stars.big svg {
  width: 28px;
  height: 28px;
}

.reviews-layout {
  display: grid;
  gap: 32px;
  align-items: center;
  margin-top: 56px;
}

.score-card {
  text-align: center;
}

.score-card h3 {
  font-size: 1.875rem;
  font-weight: 900;
}

.score-card .stars {
  margin-top: 12px;
}

.score-card p {
  margin-top: 12px;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.score-card strong {
  color: var(--foreground);
}

.google-word {
  margin-top: 14px;
  color: #4285f4;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.reviews-carousel {
  position: relative;
  min-width: 0;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding-inline: 40px;
}

.review-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.review-card.desktop-only {
  display: none;
}

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

.avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
}

.avatar.blue { background: #3b82f6; }
.avatar.emerald { background: #10b981; }
.avatar.orange { background: #f97316; }
.avatar.red { background: #ef4444; }
.avatar.violet { background: #8b5cf6; }
.avatar.teal { background: #14b8a6; }
.avatar.pink { background: #ec4899; }
.avatar.indigo { background: #6366f1; }
.avatar.cyan { background: #06b6d4; }
.avatar.lime { background: #65a30d; }
.avatar.rose { background: #f43f5e; }
.avatar.amber { background: #f59e0b; }

.review-meta {
  min-width: 0;
  flex: 1;
}

.review-meta strong {
  display: block;
  overflow: hidden;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-meta small {
  color: var(--muted-foreground);
  font-size: 0.75rem;
}

.google-mark {
  color: #4285f4;
  font-size: 1.15rem;
  font-weight: 900;
}

.review-card .stars {
  margin-top: 16px;
}

.review-card .stars svg {
  width: 16px;
  height: 16px;
}

.review-card p {
  margin-top: 12px;
  color: rgb(26 44 78 / 0.82);
  font-size: 0.875rem;
  line-height: 1.65;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  color: var(--foreground);
  box-shadow: 0 10px 24px rgb(0 0 0 / 0.12);
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

.carousel-btn:hover {
  background: var(--secondary);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.content-section,
.compressor-section,
.faq-section {
  padding-block: 96px;
}

.card-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

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

.service-card:hover {
  border-color: oklch(0.42 0.18 255 / 0.4);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.card-media {
  position: relative;
  height: 176px;
  overflow: hidden;
}

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

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

.card-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-elegant);
}

.card-icon .icon {
  width: 22px;
  height: 22px;
}

.card-body {
  display: flex;
  min-height: 218px;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.card-body h3 {
  font-size: 1.125rem;
  font-weight: 800;
}

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

.card-body .button {
  width: 100%;
  min-height: 42px;
  margin-top: 20px;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.875rem;
}

.products-section,
.about-section {
  border-block: 1px solid var(--border);
  background: oklch(0.96 0.02 250 / 0.4);
}

.compressor-section {
  display: grid;
  gap: 48px;
  align-items: center;
}

.compressor-media {
  position: relative;
}

.compressor-media img,
.about-grid > img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-elegant);
}

.saving-badge {
  display: none;
  position: absolute;
  left: -24px;
  bottom: -24px;
  width: 240px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.saving-badge strong {
  display: block;
  color: var(--primary);
  font-size: 1.875rem;
  font-weight: 900;
}

.saving-badge span {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.4;
}

.compressor-copy p,
.about-grid p {
  font-size: 1.125rem;
}

.two-list,
.check-list,
.popup-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

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

.two-list li,
.check-list li,
.popup-list li {
  position: relative;
  padding-left: 30px;
  color: rgb(26 44 78 / 0.86);
  line-height: 1.5;
}

.two-list li::before,
.check-list li::before,
.popup-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--primary);
}

.two-list li::after,
.check-list li::after,
.popup-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.compressor-copy .button,
.about-grid .button,
.coverage-content .button {
  margin-top: 32px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.project-card {
  overflow: hidden;
  border-radius: 12px;
  background: var(--secondary);
}

.project-card img {
  width: 100%;
  height: 192px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.coverage-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--gradient-hero);
  color: #fff;
}

.coverage-map {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -2;
  width: min(100%, 680px);
  height: 100%;
  object-fit: contain;
  opacity: 0.25;
  filter: drop-shadow(0 0 60px rgb(255 255 255 / 0.35));
}

.coverage-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to right, rgb(15 76 129 / 0.9), rgb(15 76 129 / 0.6), transparent);
}

.coverage-content {
  max-width: 768px;
  padding-block: 96px;
}

.coverage-content > span {
  color: var(--primary-glow);
}

.coverage-content p {
  color: rgb(255 255 255 / 0.82);
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.coverage-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.1);
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.coverage-tags .icon {
  color: var(--primary-glow);
}

.about-grid {
  display: grid;
  gap: 48px;
  align-items: center;
  padding-block: 96px;
}

.about-grid > img {
  aspect-ratio: 4 / 3;
}

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

.faq-list {
  display: grid;
  max-width: 768px;
  gap: 12px;
  margin: 48px auto 0;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  padding: 20px 24px;
  text-align: left;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: oklch(0.96 0.02 250 / 0.4);
}

.faq-question strong {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.faq-question .icon {
  color: var(--primary);
}

.faq-plus {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.2s ease;
}

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

.faq-answer {
  display: none;
  padding: 0 24px 20px 56px;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
}

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

.contact-section {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  color: #fff;
  text-align: center;
}

.contact-content {
  padding-block: 80px;
}

.contact-section h2 {
  max-width: 780px;
  margin-inline: auto;
}

.contact-section p {
  max-width: 680px;
  margin-inline: auto;
  color: rgb(255 255 255 / 0.86);
}

.contact-section .button {
  margin-top: 32px;
}

.contact-cards {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin: 48px auto 0;
  text-align: left;
}

.contact-cards a,
.contact-cards article {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgb(255 255 255 / 0.15);
  border-radius: 12px;
  background: rgb(255 255 255 / 0.1);
  padding: 20px;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease;
}

.contact-cards a:hover {
  background: rgb(255 255 255 / 0.15);
}

.contact-cards .icon {
  color: var(--primary-glow);
  font-size: 1.25rem;
  margin-top: 2px;
}

.contact-cards small {
  display: block;
  color: rgb(255 255 255 / 0.72);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-cards strong {
  display: block;
  min-width: 0;
  margin-top: 4px;
  overflow-wrap: anywhere;
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: oklch(0.96 0.02 250 / 0.4);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 40px;
  text-align: center;
}

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

.footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  object-fit: contain;
}

.footer-brand span,
.footer-links span {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--whatsapp);
  font-size: 0.875rem;
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 999px;
  background: var(--whatsapp);
  padding: 12px 20px;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 34px rgb(0 0 0 / 0.2);
  animation: bounce 1.4s infinite;
}

.whatsapp-float .icon {
  font-size: 1.25rem;
}

.urgency-popup[hidden] {
  display: none;
}

.urgency-popup {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0.6);
  backdrop-filter: blur(5px);
}

.popup-card {
  position: relative;
  width: min(100%, 448px);
  max-height: calc(100vh - 32px);
  overflow: auto;
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 28px 70px rgb(0 0 0 / 0.35);
  animation: popIn 0.25s ease both;
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  background: rgb(0 0 0 / 0.5);
  color: #fff;
}

.popup-card > img {
  width: 100%;
  height: 208px;
  object-fit: cover;
}

.popup-body {
  position: relative;
  margin-top: -64px;
  padding: 0 24px 24px;
}

.popup-offer {
  border-radius: 16px;
  background: linear-gradient(135deg, #ef4444, #f97316);
  padding: 24px;
  color: #fff;
  text-align: center;
  box-shadow: 0 16px 30px rgb(0 0 0 / 0.2);
}

.popup-offer span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgb(0 0 0 / 0.25);
  padding: 5px 12px;
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
}

.popup-offer h2 {
  margin-top: 12px;
  font-size: clamp(2.5rem, 9vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.popup-offer p {
  margin-top: 12px;
  color: rgb(255 255 255 / 0.96);
  font-size: 0.875rem;
  line-height: 1.55;
}

.popup-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.popup-list li::before {
  background: #dcfce7;
}

.popup-list li::after {
  border-color: #16a34a;
}

.popup-wa {
  width: 100%;
  min-height: 56px;
  margin-top: 20px;
  border-radius: 999px;
}

.popup-no {
  width: 100%;
  margin-top: 8px;
  background: transparent;
  padding: 8px;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

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

@keyframes bounce {
  0%,
  100% { transform: translateY(-10%); animation-timing-function: cubic-bezier(.8,0,1,1); }
  50% { transform: translateY(0); animation-timing-function: cubic-bezier(0,0,.2,1); }
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@media (min-width: 640px) {
  .container {
    width: min(100% - 48px, 1280px);
  }

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

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

  .footer-brand,
  .footer-links {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }

  .hero-content {
    padding-block: 96px;
  }

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

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

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

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

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

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

  .footer-inner {
    flex-direction: row;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .reviews-layout {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .score-card {
    text-align: left;
  }

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

  .review-card.desktop-only {
    display: block;
  }

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

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

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

  .compressor-media {
    order: 1;
  }

  .compressor-copy {
    order: 2;
  }

  .saving-badge {
    display: block;
  }

  .coverage-map {
    opacity: 0.35;
  }
}

@media (max-width: 767px) {
  .header-inner {
    min-height: 62px;
  }

  .header-cta {
    max-width: 148px;
    padding-inline: 11px;
    font-size: 0.78rem;
    text-align: center;
  }

  .hero-content,
  .content-section,
  .compressor-section,
  .reviews-section > .container,
  .about-grid,
  .faq-section {
    padding-block: 72px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-copy > p,
  .section-heading p,
  .compressor-copy p,
  .about-grid p {
    font-size: 1rem;
  }

  .hero-actions .button,
  .compressor-copy .button,
  .coverage-content .button,
  .about-grid .button {
    width: 100%;
  }

  .hero-gallery img,
  .project-card img {
    height: 158px;
  }

  .trust-grid {
    gap: 18px;
  }

  .trust-grid div {
    font-size: 0.8rem;
  }

  .client-logo {
    width: 132px;
    height: 132px;
  }

  .review-card {
    padding: 20px;
  }

  .card-body {
    min-height: auto;
  }

  .coverage-shade {
    background: linear-gradient(to right, rgb(15 76 129 / 0.94), rgb(15 76 129 / 0.72));
  }

  .contact-cards {
    margin-top: 36px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
  }

  .whatsapp-float span:last-child {
    display: none;
  }
}

@media (max-width: 420px) {
  .brand {
    margin-left: 0;
  }

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

  .brand span {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.55rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-gallery img,
  .project-card img {
    height: 140px;
  }
}
