* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #0a0a0a;
  --surface: rgba(20, 20, 20, 0.96);
  --surface-soft: #161616;
  --surface-strong: #141414;
  --text: #f5f5f5;
  --muted: #a3a3a3;
  --line: rgba(245, 245, 245, 0.14);
  --line-strong: rgba(57, 255, 20, 0.35);
  --accent: #39ff14;
  --accent-deep: #2be600;
  --on-accent: #050505;
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.5);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --content: 1120px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(57, 255, 20, 0.08), transparent 28%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  font-weight: 600;
}

a {
  color: inherit;
}

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

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

.page-shell {
  padding: 1.25rem 0 4rem;
}

.page-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0 1.25rem;
}

.page-topbar__brand,
.page-topbar__crumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.page-topbar__brand strong {
  color: var(--text);
}

.page-topbar__brand img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.page-topbar__crumbs a {
  text-decoration: none;
}

.page-topbar__crumbs a:hover,
.page-topbar__crumbs a:focus-visible,
.related-links a:hover,
.related-links a:focus-visible,
.back-link:hover,
.back-link:focus-visible {
  color: var(--accent);
}

.hero,
.content,
.cta,
.links {
  padding: 1.5rem 0;
}

.hero-layout,
.detail-grid,
.cta-grid {
  display: grid;
  gap: 1.25rem;
}

.hero-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
}

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

.cta-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
}

.card,
.highlight-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.card {
  padding: 2rem;
}

.card--hero {
  padding: 2.5rem;
}

.card--image {
  padding: 1rem;
}

.card--tall {
  height: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(57, 255, 20, 0.22);
  background: rgba(57, 255, 20, 0.08);
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.1rem 0 0;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--surface-strong);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
}

.floating-whatsapp {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 70;
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: #25d366;
  color: #050505;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.45);
}

@media (max-width: 720px) {
  .floating-whatsapp {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 3.1rem;
    height: 3.1rem;
  }
}

h1,
h2,
h3 {
  letter-spacing: -0.03em;
}

h1 {
  margin: 1rem 0 1.1rem;
  font-size: clamp(2.35rem, 5vw, 4.55rem);
  line-height: 0.98;
  max-width: 12ch;
}

h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  line-height: 1.08;
}

h3 {
  margin: 0 0 0.65rem;
  font-size: 1.08rem;
  line-height: 1.2;
}

p,
li,
a {
  font-size: 1rem;
  line-height: 1.72;
}

.lead {
  margin: 0;
  max-width: 62ch;
  font-size: 1.08rem;
  color: var(--muted);
}

.actions,
.nav-links,
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.actions {
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  color: var(--on-accent);
  background: var(--accent);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-deep);
}

.button-secondary {
  color: var(--text);
  background: var(--surface-strong);
  border-color: var(--line-strong);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(57, 255, 20, 0.55);
}

.hero-stats,
.feature-list,
.process-list,
.faq-list,
.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.hero-stats li,
.mini-card,
.faq-item,
.price-list li {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
}

.hero-stats strong,
.price-list strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.service-image {
  width: 100%;
  height: min(61vw, 560px);
  object-fit: cover;
  object-position: top center;
  border-radius: calc(var(--radius-xl) - 8px);
  border: 1px solid var(--line);
}

.section-stack {
  display: grid;
  gap: 1rem;
}

.mini-card {
  height: 100%;
}

.services-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.service-link-card {
  display: block;
  height: 100%;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  text-decoration: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.service-link-card:hover,
.service-link-card:focus-visible {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-link-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  color: var(--accent-deep);
}

.service-link-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.mini-card p:last-child,
.faq-item p:last-child,
.price-list li p:last-child,
.card p:last-child {
  margin-bottom: 0;
}

.feature-list,
.process-list,
.faq-list,
.price-list {
  display: grid;
  gap: 0.85rem;
}

.feature-list li,
.process-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
}

.feature-list li::before,
.process-list li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--accent);
}

.related-links {
  margin-top: 1rem;
}

.related-links a,
.nav-links a,
.back-link {
  text-decoration: none;
  font-weight: 600;
}

.cta-copy p,
.section-intro {
  color: var(--muted);
}

.cta-note {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  color: var(--muted);
}

.highlight-panel {
  padding: 1.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
  margin-top: 1rem;
}

footer {
  padding-top: 1rem;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-layout,
  .detail-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .service-image {
    height: auto;
    max-height: 30rem;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding-top: 0.75rem;
  }

  .page-topbar {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0.9rem;
  }

  .page-topbar__crumbs {
    flex-wrap: wrap;
  }

  .card,
  .card--hero,
  .highlight-panel {
    padding: 1.35rem;
    border-radius: 22px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2rem, 9vw, 3rem);
  }
}
