:root {
  --background: 0 0% 100%;
  --foreground: 240 10% 3.9%;
  --card: 0 0% 100%;
  --muted: 240 4.8% 95.9%;
  --muted-foreground: 240 3.8% 46.1%;
  --primary: 221 83% 53%;
  --primary-foreground: 0 0% 100%;
  --border: 240 5.9% 90%;
  --radius: 0.75rem;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: "Plus Jakarta Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 0.75rem; }
p { margin: 0 0 1rem; }

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: hsl(var(--background));
  transition: box-shadow 0.2s, padding 0.2s, background 0.2s;
  padding: 1.15rem 0;
}
.site-header.is-scrolled {
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  padding: 0.75rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  font-size: 1.35rem;
  font-weight: 800;
  z-index: 60;
  position: relative;
}
.brand img { height: 2.5rem; width: auto; }

.nav-desktop { display: none; align-items: center; gap: 0.15rem; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
}
.nav-link:hover, .nav-link.is-active {
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.1);
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 12rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 0.5rem;
  box-shadow: var(--shadow);
}
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown { display: block; }
.nav-dropdown-link {
  display: block;
  padding: 0.65rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}
.nav-dropdown-link:hover, .nav-dropdown-link.is-active {
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
}
.header-actions { display: none; }

.nav-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  cursor: pointer;
}
.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: min(22rem, 85vw);
  height: 100dvh;
  background: hsl(var(--background));
  border-left: 1px solid hsl(var(--border));
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 70;
  padding: 4.5rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  z-index: 60;
}
.nav-toggle:checked ~ .nav-mobile { transform: translateX(0); }
.nav-toggle:checked ~ .nav-backdrop { opacity: 1; pointer-events: auto; }
.nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}
.mobile-link {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  font-weight: 700;
}
.mobile-link.is-active { background: hsl(var(--primary)); color: #fff; }
.mobile-child { margin-left: 1rem; font-size: 0.9rem; font-weight: 500; color: hsl(var(--muted-foreground)); }

.page-main { padding-top: 4.5rem; }
.section { padding: 5rem 0; }
.section-muted { background: hsl(var(--muted)); }
.section-intro { text-align: center; max-width: 40rem; margin: 0 auto 3rem; }
.section-intro.left { text-align: left; margin-left: 0; }
.section-intro h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
.section-intro p, .hero p { color: hsl(var(--muted-foreground)); font-size: 1.125rem; line-height: 1.7; }
.section-cta { text-align: center; margin-top: 3rem; }

.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111 center / cover no-repeat;
  position: relative;
  color: #fff;
  text-align: center;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.hero-content { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.75rem); color: #fff; margin-bottom: 1.5rem; }
.hero p { color: #e5e7eb; max-width: 40rem; margin: 0 auto 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.6rem;
  padding: 0.7rem 1.15rem;
  font-weight: 600;
  border: 1px solid transparent;
  background: hsl(var(--primary));
  color: #fff;
  transition: 0.2s ease;
}
.btn:hover { filter: brightness(1.05); }
.btn-primary { background: hsl(var(--primary)); color: #fff; }
.btn-outline { background: #fff; color: hsl(var(--foreground)); border-color: hsl(var(--border)); }
.btn-outline:hover { background: hsl(var(--primary)); color: #fff; border-color: hsl(var(--primary)); }
.btn-outline-light { background: rgba(255,255,255,0.1); color: #fff; border-color: #fff; }
.btn-outline-light:hover { background: #fff; color: #111; }
.btn-light { background: #fff; color: hsl(var(--primary)); }
.btn-lg { padding: 0.9rem 1.4rem; font-size: 1rem; }
.btn-pill { border-radius: 999px; padding-inline: 1.5rem; font-weight: 700; }
.btn-block { width: 100%; }

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.content-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.7);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.3s, transform 0.3s;
}
.content-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-media {
  display: block;
  aspect-ratio: 16 / 9;
  background: hsl(var(--muted));
  overflow: hidden;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.content-card:hover .card-media img { transform: scale(1.05); }
.card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: hsl(var(--muted-foreground) / 0.4);
}
.card-body { padding: 1.5rem; flex: 1; }
.card-body h3 { font-size: 1.25rem; }
.card-body h3 a:hover { color: hsl(var(--primary)); }
.card-body p { color: hsl(var(--muted-foreground)); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card-footer { padding: 0 1.5rem 1.5rem; }
.badge {
  display: inline-block;
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.meta, .meta-row { color: hsl(var(--muted-foreground)); font-size: 0.8rem; }
.meta-row { display: flex; gap: 1rem; margin-top: 1rem; }
.meta-row span { display: inline-flex; align-items: center; gap: 0.3rem; }

.why-grid { display: grid; gap: 3rem; }
.why-list { display: grid; gap: 1.5rem; }
.why-item { display: flex; gap: 1rem; }
.why-icon {
  flex: 0 0 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item h3 { font-size: 1.125rem; margin-bottom: 0.25rem; }
.why-item p { color: hsl(var(--muted-foreground)); font-size: 0.9rem; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.stat-card {
  background: hsl(var(--background));
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.stat-card strong { display: block; color: hsl(var(--primary)); font-size: 1.875rem; margin-bottom: 0.35rem; }
.stat-card span { color: hsl(var(--muted-foreground)); font-size: 0.875rem; }

.faq-list { max-width: 48rem; margin: 0 auto; display: grid; gap: 1rem; }
.faq-item {
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 0 1.5rem;
  background: #fff;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1.15rem 0;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { color: hsl(var(--muted-foreground)); padding-bottom: 1rem; line-height: 1.7; }

.section-cta-band { background: hsl(var(--primary)); color: #fff; }
.cta-band { text-align: center; max-width: 56rem; }
.cta-band h2 { color: #fff; font-size: clamp(1.75rem, 3vw, 2.25rem); }
.cta-band p { color: rgba(255,255,255,0.9); font-size: 1.125rem; margin-bottom: 2rem; }

.site-footer {
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
  border-top: 1px solid hsl(var(--border));
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-name { font-size: 1.5rem; font-weight: 800; color: hsl(var(--foreground)); display: block; margin-bottom: 1rem; }
.footer-brand img { height: 2.5rem; width: auto; margin-bottom: 1rem; }
.footer-text, .footer-brand p { line-height: 1.7; font-size: 0.9rem; }
.site-footer h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; }
.site-footer a:hover { color: hsl(var(--primary)); }
.contact-list li { display: flex; gap: 0.75rem; align-items: flex-start; }
.social-row { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-row a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid hsl(var(--border));
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.social-row a:hover { background: hsl(var(--primary)); color: #fff; border-color: hsl(var(--primary)); }
.footer-bottom {
  border-top: 1px solid hsl(var(--border) / 0.5);
  padding: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
}
.footer-bottom div { display: flex; gap: 1rem; }

.whatsapp-fab {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: #22c55e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 40;
}
.card-media { position: relative; }
.card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: hsl(var(--primary));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
}
.card-badge-static {
  position: static;
  display: inline-flex;
  margin: 0.75rem 0 0 0.75rem;
}
.card-media-43 img { aspect-ratio: 4 / 3; }
.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-layout {
  display: grid;
  gap: 2.5rem;
  margin-top: 2rem;
}
.form-card {
  border: 1px solid hsl(var(--border));
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.form-card-narrow { max-width: 36rem; margin: 2rem auto 0; }
.lead-form { display: grid; gap: 1rem; position: relative; }
.lead-form .field { display: grid; gap: 0.35rem; }
.lead-form label, .lead-form legend { font-weight: 600; font-size: 0.95rem; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 0.7rem 0.85rem;
  font: inherit;
  background: #fff;
}
.form-grid { display: grid; gap: 1rem; }
.check-grid { display: grid; gap: 0.6rem; }
.check { display: flex; align-items: center; gap: 0.5rem; font-weight: 500; }
.form-ok { color: hsl(142 40% 30%); font-weight: 600; }
.form-err, .form-pending { font-weight: 600; }
.form-err { color: hsl(0 70% 40%); }
.btn-block { width: 100%; justify-content: center; }
.meta-row.center { justify-content: center; flex-wrap: wrap; }
.article-image.wide img { aspect-ratio: 21 / 9; }
.blog-toolbar-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 0 2.5rem;
  align-items: stretch;
}
.blog-toolbar { display: flex; gap: 0.75rem; align-items: center; width: 100%; max-width: 28rem; }
.search-field {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}
.search-field svg {
  position: absolute;
  left: 0.85rem;
  color: hsl(var(--muted-foreground));
  pointer-events: none;
}
.search-field input {
  width: 100%;
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 0.7rem 0.9rem 0.7rem 2.4rem;
  font: inherit;
  background: #fff;
}
.chip-list.category-filters { margin: 0; justify-content: flex-start; }
.chip-list a.chip.is-active,
.chip-list a.is-active {
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
  color: #fff;
}
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 2.5rem 0 0;
}
.toc {
  background: hsl(var(--muted) / 0.5);
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  margin: 0 0 2.5rem;
}
.toc h2 { font-size: 1.1rem; margin: 0 0 0.75rem; }
.toc ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.4rem; }
.toc a { color: hsl(var(--muted-foreground)); font-weight: 600; }
.toc a:hover { color: hsl(var(--primary)); }
.prose h2, .prose h3 { scroll-margin-top: 6rem; }
.contact-nap {
  margin: 2rem 0;
  display: grid;
  gap: 0.75rem;
}
.contact-nap p { display: flex; align-items: center; gap: 0.6rem; }
.location-list { margin-top: 2.5rem; }
.location-list h2 { margin-bottom: 0.5rem; }
.sitemap-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.sitemap-grid .related-card { margin-top: 0; }
.sitemap-grid h2 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.page-services { min-height: 100dvh; }
.listing-hero { text-align: center; max-width: 46rem; margin: 0 auto 4rem; }
.listing-hero h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; }
.listing-intro, .listing-intro p { color: hsl(var(--muted-foreground)); font-size: 1.125rem; line-height: 1.7; }
.article-wrap { max-width: 56rem; margin: 0 auto 4rem; }
.article-hero { text-align: center; margin-bottom: 2.5rem; }
.article-hero h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; }
.lede { font-size: 1.25rem; color: hsl(var(--muted-foreground)); line-height: 1.7; font-weight: 500; }
.eyebrow { color: hsl(var(--primary)); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; }
.article-image { margin: 0 0 3rem; }
.article-image img { width: 100%; border-radius: 1rem; box-shadow: var(--shadow); aspect-ratio: 16 / 9; object-fit: cover; }
.article-cta { text-align: center; margin: 2.5rem 0 0; }
.prose { color: hsl(var(--muted-foreground)); font-size: 1.125rem; line-height: 1.8; }
.prose h2, .prose h3, .prose h4 { color: hsl(var(--foreground)); margin: 2rem 0 1rem; }
.prose ul, .prose ol { margin: 0 0 1.25rem 1.25rem; }
.prose li { margin-bottom: 0.4rem; }
.prose img { border-radius: 1rem; margin: 1.5rem 0; }
.cities-block, .related-block { max-width: 56rem; margin: 0 auto 4rem; text-align: center; }
.cities-block p, .related-block p { color: hsl(var(--muted-foreground)); }
.city-grid { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1rem; grid-template-columns: 1fr; }
.city-grid a {
  display: flex; align-items: center; gap: 0.75rem;
  border: 1px solid hsl(var(--border)); background: #fff;
  border-radius: 1rem; padding: 1rem 1.25rem; font-weight: 600;
}
.city-grid a:hover { border-color: hsl(var(--primary)); color: hsl(var(--primary)); }
.chip-list { list-style: none; padding: 0; margin: 1.5rem 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.chip-list a {
  display: inline-flex; border: 1px solid hsl(var(--border)); border-radius: 999px;
  padding: 0.6rem 1.2rem; font-size: 0.875rem; font-weight: 600;
}
.chip-list a:hover { border-color: hsl(var(--primary)); color: hsl(var(--primary)); }
.related-links { display: flex; gap: 1.5rem; justify-content: center; }
.related-links a { color: hsl(var(--primary)); font-weight: 600; }
.cta-panel {
  background: hsl(var(--primary)); color: #fff;
  border-radius: 1.5rem; padding: 3rem 2rem; text-align: center; margin-bottom: 2rem;
}
.cta-panel h2 { color: #fff; }
.cta-panel p { color: rgba(255,255,255,0.9); }
.cta-panel.compact { padding: 2rem 1.5rem; }
.local-hero { background: hsl(var(--muted) / 0.45); padding: 3rem 0 4rem; }
.local-hero-grid { display: grid; gap: 3rem; align-items: center; }
.local-hero h1 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; }
.pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: hsl(var(--primary) / 0.1); color: hsl(var(--primary));
  border-radius: 999px; padding: 0.25rem 0.75rem; font-size: 0.85rem; font-weight: 700;
}
.hero-actions.left { justify-content: flex-start; margin-top: 1.5rem; }
.local-hero-image { margin: 0; border-radius: 1.5rem; overflow: hidden; box-shadow: var(--shadow); }
.local-hero-image img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.local-layout { display: grid; gap: 3rem; }
.related-card, .office-card {
  border: 1px solid hsl(var(--border)); background: #fff;
  border-radius: 1rem; padding: 1.5rem; margin-top: 2rem;
}
.related-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.related-card a { color: hsl(var(--primary)); font-weight: 600; }
.office-card { background: hsl(var(--primary)); color: #fff; }
.office-card h2, .office-card strong { color: #fff; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.stub-panel, .error-panel {
  max-width: 40rem;
  margin: 4rem auto;
  text-align: center;
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 3rem 2rem;
}
.error-code { font-size: 3rem; color: hsl(var(--primary)); margin-bottom: 0.5rem; }
.empty-note { text-align: center; color: hsl(var(--muted-foreground)); }
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  padding: 1rem 0 0;
  margin: 0;
  font-size: 0.85rem;
  color: hsl(var(--muted-foreground));
}
.breadcrumbs li { display: inline-flex; align-items: center; gap: 0.35rem; }
.breadcrumbs li:not(:last-child)::after {
  content: "";
  width: 1rem;
  height: 1rem;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.45;
  margin-left: 0.15rem;
}

@media (min-width: 768px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .local-hero-grid, .local-layout { grid-template-columns: 1.2fr 0.8fr; }
  .blog-toolbar-row { flex-direction: row; align-items: center; justify-content: space-between; }
  .chip-list.category-filters { justify-content: flex-end; }
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid, .check-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr 1.1fr; align-items: start; }
}
@media (min-width: 1024px) {
  .nav-desktop, .header-actions { display: flex; }
  .nav-toggle-btn, .nav-mobile, .nav-backdrop { display: none; }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .brand img { height: 2.5rem; }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .local-layout { grid-template-columns: 2fr 1fr; }
  .sitemap-grid { grid-template-columns: repeat(3, 1fr); }
}
