@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700;800&family=IBM+Plex+Mono:wght@400;600&display=swap');

:root {
  --bg: #0b1220;
  --surface: #121b2d;
  --surface-2: #17233a;
  --surface-3: #1d2d4a;
  --text: #f5f7fb;
  --muted: #a9b4c9;
  --line: rgba(255, 255, 255, 0.12);
  --primary: #ff6b35;
  --primary-deep: #e75018;
  --accent: #6ee7d8;
  --accent-soft: rgba(110, 231, 216, 0.14);
  --danger: #ff8861;
  --max: 1180px;
  --shadow: 0 24px 80px rgba(3, 7, 18, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(255, 107, 53, 0.18), transparent 32%),
    radial-gradient(circle at left 20%, rgba(110, 231, 216, 0.12), transparent 24%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  font-weight: 600;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(10, 15, 27, 0.78);
  backdrop-filter: blur(12px);
}

.topbar .container,
.nav .container,
.footer-top .container,
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar .container {
  padding: 0.7rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.topbar-links,
.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 18, 32, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav .container {
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--primary), #ffb26b);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.28);
  display: grid;
  place-items: center;
}

.brand-mark img {
  width: 1.7rem;
  height: 1.7rem;
}

.brand-text strong {
  display: block;
  font-size: 1.1rem;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.nav-links a,
.footer-links a,
.topbar-links a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a:hover,
.footer-links a:hover,
.topbar-links a:hover {
  color: var(--primary);
}

.nav-links a.nav-current {
  color: var(--primary);
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  font: inherit;
}

.button,
.button-secondary,
.button-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.button {
  background: linear-gradient(135deg, var(--primary), #ff8b5c);
  color: white;
  box-shadow: 0 14px 34px rgba(255, 107, 53, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line);
}

.button-whatsapp {
  background: var(--accent-soft);
  border-color: rgba(110, 231, 216, 0.28);
  color: var(--accent);
}

.hero,
.page-hero {
  padding: 5rem 0 4rem;
}

.hero-grid,
.two-col,
.contact-grid,
.footer-grid,
.service-layout {
  display: grid;
  gap: 2rem;
}

.hero-grid,
.contact-grid,
.service-layout {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--accent);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.hero h1,
.page-hero h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero p,
.page-hero p,
.section-intro {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 60ch;
}

.cta-row,
.usp-list,
.stats,
.chips,
.trust-row,
.check-list,
.mini-cta,
.contact-list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.usp-list,
.check-list,
.contact-list {
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.usp-list li,
.check-list li,
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--text);
}

.usp-list li::before,
.check-list li::before,
.contact-list li::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  flex: 0 0 auto;
}

.hero-card,
.panel,
.service-card,
.testimonial,
.faq-item,
.contact-card,
.process-card,
.price-card,
.region-card,
.stat,
.gallery-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
}

.hero-card,
.panel,
.contact-card,
.price-card {
  padding: 1.4rem;
}

.hero-media {
  position: relative;
  overflow: hidden;
}

.hero-media img,
.gallery-card img,
.service-photo img {
  height: 100%;
  object-fit: cover;
}

.hero-card .badge,
.meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 107, 53, 0.12);
  color: #ffc0a8;
  font-size: 0.82rem;
  font-weight: 700;
}

.stats {
  margin-top: 1.75rem;
}

.stat {
  padding: 1rem 1.1rem;
  min-width: 11rem;
}

.stat strong,
.price-card strong {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.8rem;
  line-height: 1;
}

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

section {
  padding: 2.2rem 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.section-head h2,
.section-head h3,
.panel h3,
.contact-card h3,
.price-card h3,
.service-card h3,
.testimonial h3,
.faq-item h3,
.process-card h3,
.region-card h3 {
  margin: 0;
  letter-spacing: -0.04em;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.grid-3,
.grid-4,
.grid-2,
.gallery-grid,
.regions-grid,
.testimonial-grid {
  display: grid;
  gap: 1.2rem;
}

.grid-2,
.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.grid-2 > .panel,
.grid-2 > .service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.grid-2 > .panel > *,
.grid-2 > .service-card > * {
  flex: 1;
}

.grid-2 > .panel h3,
.grid-2 > .panel p,
.grid-2 > .panel ul {
  margin-bottom: 0.5rem;
}

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

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

.service-card,
.testimonial,
.faq-item,
.process-card,
.region-card,
.gallery-card {
  overflow: hidden;
}

.service-card-body,
.testimonial,
.process-card,
.region-card,
.faq-item,
.gallery-copy {
  padding: 1.35rem;
}

.service-card p,
.testimonial p,
.faq-answer,
.region-card p,
.gallery-copy p,
.panel p,
.contact-card p,
.price-card p {
  color: var(--muted);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  font-size: 1.3rem;
}

.trust-strip {
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 1rem 0 0;
}

.trust-row {
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.92rem;
}

.panel + .panel {
  margin-top: 1rem;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  color: inherit;
  text-align: left;
  padding: 1.35rem;
  font: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.faq-answer {
  padding-top: 0;
  display: none;
}

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

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

.faq-plus {
  transition: transform 0.2s ease;
  font-size: 1.5rem;
  color: var(--primary);
}

.quote-box {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--primary);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.contact-card form {
  display: grid;
  gap: 1rem;
}

.field-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 500;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12);
}

.service-hero,
.footer-top {
  padding-top: 4rem;
}

.service-photo,
.gallery-card {
  min-height: 16rem;
}

.footer {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

.footer-top .container,
.footer-bottom .container {
  padding: 1.6rem 0;
}

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

.footer p,
.footer li,
.footer small {
  color: var(--muted);
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.note {
  font-size: 0.84rem;
  color: var(--muted);
}

.highlight {
  color: var(--accent);
}

.spacer-top {
  margin-top: 1.25rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .contact-grid,
  .service-layout,
  .footer-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .gallery-grid,
  .regions-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .nav .container {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0.5rem;
  }

  .nav-links.open {
    display: flex;
  }

  .topbar .container,
  .trust-row,
  .footer-top .container,
  .footer-bottom .container,
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .field-grid,
  .cta-row,
  .stats {
    grid-template-columns: 1fr;
  }

  .field-grid {
    display: grid;
  }

  .hero,
  .page-hero,
  .service-hero {
    padding-top: 3.5rem;
  }

  .button,
  .button-secondary,
  .button-whatsapp {
    width: 100%;
  }
}

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

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 54px;
    height: 54px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* --- Calculator --- */
.calc-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.calc-form,
.calc-result {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.calc-group {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border-radius: 1.4rem;
  padding: 1.4rem;
}

.calc-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  width: 100%;
  appearance: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  color: var(--text);
  font: inherit;
  cursor: pointer;
}

.select-wrapper::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--muted);
  pointer-events: none;
}

.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.radio-option,
.checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.radio-option:hover,
.checkbox-option:hover {
  border-color: rgba(255,107,53,0.3);
  background: rgba(255,107,53,0.05);
}

.radio-option input,
.checkbox-option input {
  width: auto;
  margin: 0.15rem 0 0;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

.radio-label,
.checkbox-option span {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.4;
}

.radio-label strong {
  display: block;
  font-weight: 700;
}

.radio-label small,
.checkbox-option span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 0.15rem;
}

.result-card {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,107,53,0.12), rgba(255,107,53,0.04));
  border-radius: 1.6rem;
  padding: 2rem;
  text-align: center;
  position: sticky;
  top: 6rem;
}

.result-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.result-price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}

.result-breakdown {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.result-disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.7;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.cta-card,
.info-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border-radius: 1.4rem;
  padding: 1.4rem;
}

.cta-card h3,
.info-card h3 {
  margin: 0 0 0.75rem;
  letter-spacing: -0.04em;
  font-size: 1.15rem;
}

.cta-card p,
.info-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.calc-note {
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.calc-note p {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  padding: 1.25rem 1rem;
  display: none;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.4);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  flex: 1;
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner .btn-row {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-banner .btn-accept {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 0.75rem;
  padding: 0.6rem 1.2rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.cookie-banner .btn-accept:hover {
  background: var(--primary-deep);
}

.cookie-banner .btn-decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 0.6rem 1rem;
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}

.cookie-banner .btn-decline:hover {
  border-color: var(--muted);
  color: var(--text);
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .cookie-banner .btn-row {
    justify-content: flex-end;
  }
}

/* --- Contact Form --- */
.field-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field-error {
  color: var(--danger);
  font-size: 0.8rem;
  display: none;
  font-weight: 500;
}

.field-wrap.is-error input,
.field-wrap.is-error select,
.field-wrap.is-error textarea {
  border-color: var(--danger) !important;
}

.form-status {
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: none;
  line-height: 1.5;
}

.form-status--success {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #6ee7d8;
}

.form-status--error {
  background: rgba(255, 88, 97, 0.15);
  border: 1px solid rgba(255, 88, 97, 0.4);
  color: #ff8861;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

input, select, textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--text);
  font: inherit;
  width: 100%;
  transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
}

input::placeholder, textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 560px) {
  .field-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Full-width footer --- */
.footer-top {
  padding: 3rem 0 2rem;
}

.footer-top .container {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-top .brand {
  margin-bottom: 0.75rem;
}

.footer-top p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.footer-top ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-top ul li {
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-top h3 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.footer-top a:hover {
  color: var(--primary);
}

@media (max-width: 900px) {
  .footer-top .container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-top .container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Sitemap --- */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.sitemap-col h2 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 700;
  margin: 0 0 1rem;
}

.sitemap-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sitemap-col ul a {
  color: var(--accent);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.sitemap-col ul a:hover {
  color: var(--primary);
}

@media (max-width: 700px) {
  .sitemap-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 440px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Procedure Flow --- */
.procedure-flow {
  margin-top: 0;
}

.procedure-flow img {
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
  display: block;
}

/* --- Team Section --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 1rem;
  border-radius: 1.2rem;
}

.team-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.4rem;
}

.team-card p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 460px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-card img {
    max-width: 200px;
  }
}

/* --- Local SEO Section --- */
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.local-cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.local-city {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.local-city::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .local-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Quote / Trust Block --- */
.trust-badge-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

.trust-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .trust-badge-row {
    gap: 0.5rem;
  }
  .trust-badge {
    font-size: 0.76rem;
    padding: 0.4rem 0.75rem;
  }
}

/* --- Expanded CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, rgba(255,107,53,0.2), rgba(255,107,53,0.05));
  border: 1px solid rgba(255,107,53,0.25);
  border-radius: 1.4rem;
  padding: 2.5rem;
  text-align: center;
}

.cta-banner h2 {
  font-size: 1.8rem;
  letter-spacing: -0.04em;
  margin: 0 0 0.75rem;
}

.cta-banner p {
  color: var(--muted);
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}

/* --- Checklist panel --- */
.checklist-panel {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  border-radius: 1.2rem;
  padding: 1.5rem;
}

.checklist-panel h3 {
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

/* --- Numbered steps list --- */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* --- Trust Strip (under hero) --- */
.trust-strip-credentials {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  margin: 0;
}

.trust-strip-credentials .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-credential {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
}

.trust-credential svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--primary);
}

.trust-credential strong {
  color: var(--text);
}

.trust-credential-divider {
  width: 1px;
  height: 20px;
  background: var(--line);
}

@media (max-width: 600px) {
  .trust-strip-credentials .container {
    gap: 1rem;
  }
  .trust-credential-divider {
    display: none;
  }
}

/* --- Reviews Section --- */
.reviews-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 3rem 0;
}

.reviews-header {
  text-align: center;
  margin-bottom: 2rem;
}

.reviews-header .google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.reviews-header .google-badge svg {
  width: 16px;
  height: 16px;
}

.reviews-header h2 {
  font-size: 1.6rem;
  letter-spacing: -0.04em;
  margin: 0 0 0.5rem;
}

.reviews-header .stars {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 0.5rem;
}

.reviews-header .stars svg {
  width: 20px;
  height: 20px;
  fill: #FBBC04;
}

.reviews-header .rating-text {
  color: var(--muted);
  font-size: 0.9rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--primary);
  flex-shrink: 0;
}

.review-author-info strong {
  display: block;
  font-size: 0.9rem;
}

.review-author-info .review-date {
  font-size: 0.75rem;
  color: var(--muted);
}

.review-stars {
  display: flex;
  gap: 0.15rem;
}

.review-stars svg {
  width: 14px;
  height: 14px;
  fill: #FBBC04;
}

.review-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
  flex: 1;
}

.review-text strong {
  color: var(--text);
}

.review-google-tag {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: auto;
}

.review-google-tag svg {
  width: 12px;
  height: 12px;
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* --- Before/After Gallery --- */
.beforeafter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.beforeafter-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.beforeafter-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.beforeafter-images {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.beforeafter-images .ba-before,
.beforeafter-images .ba-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s;
}

.beforeafter-images .ba-after {
  opacity: 0;
}

.beforeafter-card:hover .ba-after {
  opacity: 1;
}

.beforeafter-images .ba-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.beforeafter-images .ba-label.after {
  left: auto;
  right: 0.75rem;
  background: rgba(255,107,53,0.8);
}

.beforeafter-body {
  padding: 1rem 1.25rem;
}

.beforeafter-body h3 {
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
}

.beforeafter-body p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .beforeafter-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .beforeafter-grid { grid-template-columns: 1fr; }
}

/* --- Video Strip --- */
.video-strip {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 3rem 0;
  text-align: center;
}

.video-strip h2 {
  font-size: 1.6rem;
  letter-spacing: -0.04em;
  margin: 0 0 0.5rem;
}

.video-strip p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 1.5rem;
}

.video-wrapper {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  aspect-ratio: 16/9;
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.video-wrapper iframe,
.video-wrapper video {
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer;
  position: relative;
}

.video-placeholder-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.video-play-btn {
  width: 72px;
  height: 72px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 8px rgba(255,107,53,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.video-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 12px rgba(255,107,53,0.25);
}

.video-play-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
  margin-left: 4px;
}

.video-placeholder-text {
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.video-thumbnail-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

/* --- Referral + Email Capture --- */
.referral-section {
  padding: 3rem 0;
}

.referral-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.referral-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  padding: 1.75rem;
}

.referral-card .card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,107,53,0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.referral-card .card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.referral-card h3 {
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}

.referral-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.email-form {
  display: flex;
  gap: 0.5rem;
}

.email-form input {
  flex: 1;
  min-width: 0;
  padding: 0.7rem 1rem;
}

.email-form .button {
  flex-shrink: 0;
  padding: 0.7rem 1.25rem;
}

.email-success {
  display: none;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 600;
  text-align: center;
}

.referral-card .referral-detail {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

@media (max-width: 640px) {
  .referral-grid { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; }
}

/* --- Inline WhatsApp Chat Widget --- */
.whatsapp-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.whatsapp-chat-panel {
  display: none;
  width: 340px;
  max-height: 480px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  flex-direction: column;
  animation: slideUp 0.25s ease;
}

.whatsapp-chat-panel.open {
  display: flex;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.whatsapp-chat-header {
  background: #25D366;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-chat-header svg {
  width: 32px;
  height: 32px;
  fill: white;
  flex-shrink: 0;
}

.whatsapp-chat-header-info strong {
  display: block;
  color: white;
  font-size: 0.9rem;
}

.whatsapp-chat-header-info span {
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
}

.whatsapp-chat-close {
  margin-left: auto;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.whatsapp-chat-close:hover { opacity: 1; }

.whatsapp-chat-body {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wa-msg {
  max-width: 80%;
  padding: 0.6rem 0.85rem;
  border-radius: 1rem;
  font-size: 0.85rem;
  line-height: 1.5;
}

.wa-msg.bot {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  border-bottom-left-radius: 0.25rem;
  align-self: flex-start;
}

.wa-msg.bot-meta {
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.2);
  border-bottom-left-radius: 0.25rem;
  color: var(--accent);
  font-size: 0.8rem;
  padding: 0.75rem 1rem;
}

.wa-msg.user {
  background: #25D366;
  color: white;
  border-bottom-right-radius: 0.25rem;
  align-self: flex-end;
  margin-left: auto;
}

.whatsapp-chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.wa-quick-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font: inherit;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.wa-quick-btn:hover {
  background: rgba(37,211,102,0.1);
  border-color: rgba(37,211,102,0.4);
}

.whatsapp-chat-input {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  background: var(--surface-2);
}

.whatsapp-chat-input input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-size: 0.85rem;
  color: var(--text);
  font: inherit;
}

.whatsapp-chat-input input:focus {
  outline: none;
  border-color: rgba(37,211,102,0.5);
}

.whatsapp-chat-input input::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.wa-send-btn {
  background: #25D366;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.1s;
}

.wa-send-btn:hover { background: #20bd5a; }
.wa-send-btn:active { transform: scale(0.95); }

.wa-send-btn svg {
  width: 18px;
  height: 18px;
  fill: white;
  margin-left: 2px;
}

.whatsapp-launcher {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
  position: relative;
}

.whatsapp-launcher:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-launcher svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.whatsapp-launcher .launcher-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: var(--danger);
  border-radius: 50%;
  border: 2px solid var(--bg);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

@media (max-width: 400px) {
  .whatsapp-chat-panel {
    width: calc(100vw - 2rem);
    right: -1rem;
    bottom: 5rem;
  }
  .whatsapp-widget {
    bottom: 1rem;
    right: 1rem;
  }
  .whatsapp-launcher {
    width: 52px;
    height: 52px;
  }
  .whatsapp-launcher svg {
    width: 28px;
    height: 28px;
  }
}

/* --- Exit Intent Popup --- */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.exit-popup-overlay.open {
  display: flex;
  animation: fadeIn 0.25s ease;
}

.exit-popup {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  max-width: 480px;
  width: 100%;
  padding: 2rem;
  position: relative;
  text-align: center;
  animation: slideUp 0.3s ease;
}

.exit-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0.25rem;
  transition: color 0.2s;
}

.exit-popup-close:hover { color: var(--text); }

.exit-popup h2 {
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  margin: 0 0 0.75rem;
  color: var(--primary);
}

.exit-popup p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.exit-popup-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.exit-popup-cta .button,
.exit-popup-cta .button-whatsapp {
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
}

.exit-popup-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

@media (max-width: 480px) {
  .exit-popup { padding: 1.5rem 1.25rem; }
  .exit-popup h2 { font-size: 1.3rem; }
}

/* --- Nav current page --- */
.nav-links a.nav-current {
  color: var(--primary);
  font-weight: 700;
}

/* --- Cookie Banner mobile fix --- */
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .cookie-banner .btn-row {
    justify-content: flex-end;
  }
}


