:root {
  --anthracite: #1a2332;
  --anthracite-soft: #2c3648;
  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #eef1f5;
  --gray-300: #c8d0da;
  --gray-600: #5e6a7a;
  --electric: #2b6cb8;
  --electric-dark: #1e5090;
  --electric-light: #4a8fd4;
  --cyan: #5eb8b0;
  --accent: #c9a86c;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --telegram: #229ed9;
  --telegram-dark: #1a8bc4;
  --shadow: 0 8px 32px rgba(26, 35, 50, 0.08);
  --shadow-soft: 0 4px 16px rgba(26, 35, 50, 0.06);
  --radius: 14px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --max: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--anthracite);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 5.5rem;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--electric); text-decoration: none; }
a:hover { color: var(--electric-dark); }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 2rem;
  padding: 0.65rem 0;
  position: relative;
}
.header-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  min-width: 0;
  grid-column: 3;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  padding-left: 1rem;
  margin-left: 0.25rem;
  border-left: 1px solid var(--gray-100);
}
.header-cta .btn {
  padding: 0.65rem 1rem;
  font-size: 0.86rem;
  white-space: nowrap;
}
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  color: var(--anthracite);
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  text-decoration: none;
  grid-column: 1;
  padding-right: 0.25rem;
}
.logo:hover { color: var(--anthracite); }
.logo-img {
  flex-shrink: 0;
  width: 6.5rem;
  height: 6.5rem;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  min-width: 0;
}
.logo-text strong {
  font-size: 1.15rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo-text > span {
  display: none;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  flex-wrap: nowrap;
  flex-shrink: 1;
  min-width: 0;
  margin-left: 0.5rem;
}
.nav a {
  color: var(--anthracite);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1;
  white-space: nowrap;
  padding: 0.4rem 0;
}
.nav a:hover { color: var(--electric); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--anthracite);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--electric);
  color: var(--white);
  box-shadow: var(--shadow-soft);
  border-color: var(--electric);
}
.btn-primary:hover {
  color: var(--white);
  background: var(--electric-dark);
  border-color: var(--electric-dark);
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: var(--white);
  color: var(--anthracite);
  border-color: var(--gray-300);
}
.btn-secondary:hover {
  color: var(--electric-dark);
  border-color: var(--electric-light);
  background: var(--gray-50);
}
.hero .btn-secondary,
.cta-band .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.hero .btn-secondary:hover,
.cta-band .btn-secondary:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp:hover {
  color: var(--white);
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
}
.btn-whatsapp .btn-wa-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.btn-telegram {
  background: var(--telegram);
  color: var(--white);
  border-color: var(--telegram);
  box-shadow: 0 4px 18px rgba(34, 158, 217, 0.35);
}
.btn-telegram:hover {
  color: var(--white);
  background: var(--telegram-dark);
  border-color: var(--telegram-dark);
  box-shadow: 0 6px 22px rgba(34, 158, 217, 0.45);
}
.btn-telegram .btn-tg-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.hero .btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
}
.hero .btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  color: var(--white);
}
.cta-band .btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}
.cta-band .btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  color: var(--white);
}
.btn-accent {
  background: var(--anthracite-soft);
  color: var(--white);
  border-color: var(--anthracite-soft);
}
.btn-accent:hover {
  background: var(--anthracite);
  color: var(--white);
}
.cta-band .btn-primary {
  background: var(--white);
  color: var(--anthracite);
  border-color: var(--white);
  box-shadow: none;
}
.cta-band .btn-primary:hover {
  background: var(--gray-50);
  color: var(--anthracite);
}
.btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Hero */
.hero {
  position: relative;
  padding: 5rem 0 5.5rem;
  color: var(--white);
  overflow: hidden;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background: var(--anthracite);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(28, 35, 51, 0.92) 0%, rgba(28, 35, 51, 0.78) 45%, rgba(26, 58, 92, 0.65) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(45, 212, 191, 0.12), transparent 40%),
              radial-gradient(circle at 5% 90%, rgba(29, 110, 245, 0.15), transparent 35%);
  pointer-events: none;
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  max-width: 22ch;
}
.hero-lead {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
  margin-bottom: 0.75rem;
}
.hero-tagline {
  font-size: 1rem;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 2rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-stat strong { display: block; font-size: 1.1rem; }
.hero-stat span { font-size: 0.85rem; opacity: 0.8; }

/* Sections */
section { padding: 4rem 0; }
section:nth-child(even):not(.hero):not(.cta-band):not(.page-hero-img):not(.reviews-section) {
  background: var(--gray-50);
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}
.section-head p { color: var(--gray-600); margin: 0; }

/* Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.card:hover { transform: translateY(-3px); }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(29, 110, 245, 0.12), rgba(45, 212, 191, 0.12));
}
.card h3 { margin: 0 0 0.5rem; font-size: 1.15rem; }
.card p { margin: 0; color: var(--gray-600); font-size: 0.95rem; }
.card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: var(--gray-600);
  font-size: 0.9rem;
}
.card a.stretched { font-weight: 700; font-size: 0.9rem; margin-top: 1rem; display: inline-block; }

/* Trust */
.trust-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.trust-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
}
.trust-item::before {
  content: "✓";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--anthracite);
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}

/* Avis clients */
.reviews-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}
.reviews-summary {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.reviews-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.25rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
}
.reviews-score-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--electric);
  line-height: 1;
}
.reviews-score-stars {
  color: var(--accent);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}
.reviews-score-label {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 600;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.2s;
}
.review-card:hover {
  transform: translateY(-2px);
}
.review-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.06em;
}
.review-text {
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--anthracite);
  font-style: normal;
}
.review-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.75rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-100);
}
.review-meta strong {
  color: var(--anthracite);
  font-weight: 700;
}
.review-tag {
  padding: 0.2rem 0.6rem;
  background: rgba(29, 110, 245, 0.08);
  color: var(--electric);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.reviews-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* FAQ */
.faq details {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  padding: 0.25rem 1rem;
}
.faq summary {
  font-weight: 700;
  cursor: pointer;
  padding: 0.75rem 0;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details[open] summary { color: var(--electric); }
.faq p { margin: 0 0 1rem; color: var(--gray-600); font-size: 0.95rem; }

/* CTA band */
section.cta-band {
  background: linear-gradient(160deg, var(--anthracite) 0%, var(--anthracite-soft) 55%, #243447 100%);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band {
  background: linear-gradient(160deg, var(--anthracite) 0%, var(--anthracite-soft) 55%, #243447 100%);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(94, 184, 176, 0.12), transparent 45%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
}
.cta-band p {
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 52ch;
  margin-inline: auto;
}

/* Contact form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-grid .full { grid-column: 1 / -1; }
label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}
input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  font: inherit;
  background: var(--white);
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(29, 110, 245, 0.35);
  border-color: var(--electric);
}
input.input-error, textarea.input-error, select.input-error {
  border-color: #ef4444;
}
.field-error {
  display: none;
  color: #ef4444;
  font-size: 0.82rem;
  margin: 0.35rem 0 0;
  font-weight: 600;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-form-card { position: relative; }
.form-alert {
  padding: 1rem 1.15rem;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.form-alert strong { display: block; margin-bottom: 0.35rem; }
.form-alert p { margin: 0; }
.form-alert--success {
  background: rgba(45, 212, 191, 0.15);
  border: 1px solid #2dd4bf;
  color: var(--anthracite);
}
.form-alert--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.btn-full { width: 100%; }

/* Footer */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #141c28 0%, var(--anthracite) 40%, #121a24 100%);
  color: rgba(255, 255, 255, 0.82);
  padding: 0 0 1.5rem;
  font-size: 0.9rem;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0%, rgba(201, 168, 108, 0.08), transparent 40%),
              radial-gradient(circle at 90% 100%, rgba(94, 184, 176, 0.06), transparent 35%);
  pointer-events: none;
}
.footer-accent {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent) 20%, var(--accent) 80%, transparent);
  opacity: 0.85;
}
.site-footer .container {
  position: relative;
  z-index: 1;
  padding-top: 3rem;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 2.5rem 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand {
  padding-right: 1rem;
}
.footer-brand-name {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.footer-tagline {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.45;
}
.footer-desc {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  font-size: 0.88rem;
  max-width: 32ch;
}
.footer-col h4 {
  color: var(--white);
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.15s;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent);
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  font-size: 0.88rem;
}
.footer-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  font-size: 0.85rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
}
.footer-bottom-note {
  color: rgba(255, 255, 255, 0.4);
}

/* Page hero smaller */
.page-hero {
  padding: 3rem 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}
.page-hero h1 { margin: 0 0 0.5rem; font-size: clamp(1.75rem, 4vw, 2.5rem); }
.page-hero p { margin: 0; color: var(--gray-600); max-width: 60ch; }

.excluded-box {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.excluded-box strong { color: #c2410c; }

.floating-cta {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  left: auto;
  z-index: 90;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-end;
  gap: 0.65rem;
  max-width: 24rem;
}
.floating-cta .btn {
  box-shadow: 0 8px 28px rgba(26, 35, 50, 0.18);
}
.floating-cta .btn-primary {
  flex: 0.9;
  padding: 0.95rem 1rem;
  font-size: 0.9rem;
}
.floating-cta .btn-whatsapp {
  flex: 0;
  padding: 0.95rem;
  min-width: 3.25rem;
}
.floating-cta .btn-telegram {
  flex: 0;
  padding: 0.95rem;
  min-width: 3.25rem;
  background: var(--telegram);
  color: #fff;
  border-color: var(--telegram);
}
.floating-cta .btn-telegram:hover {
  background: var(--telegram-dark);
  border-color: var(--telegram-dark);
  color: #fff;
}
.floating-cta .btn-whatsapp .btn-wa-icon,
.floating-cta .btn-telegram .btn-tg-icon {
  width: 1.45rem;
  height: 1.45rem;
}

/* Images & cards */
.card-img {
  border-radius: 10px;
  overflow: hidden;
  margin: -0.25rem -0.25rem 1rem;
  aspect-ratio: 16/10;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card.has-img { padding: 0.75rem; }
.card.has-img h3, .card.has-img p, .card.has-img a { padding-inline: 0.5rem; }
.card.has-img a.stretched { padding-bottom: 0.5rem; }

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-block img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(28, 35, 51, 0.88));
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}
.gallery-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.gallery-featured .gallery-item:first-child { aspect-ratio: auto; min-height: 320px; }

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.before-after .ba-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}
.before-after .ba-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.before-after .ba-label {
  padding: 0.75rem 1rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.before-after .ba-label.before { background: var(--gray-100); color: var(--gray-600); }
.before-after .ba-label.after { background: rgba(45, 212, 191, 0.2); color: var(--anthracite); }

/* Map zone */
.zone-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  min-height: 400px;
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }
.map-wrap--full iframe { height: min(480px, 65vh); }
.zone-svg-wrap {
  background: linear-gradient(160deg, #e8f4fc, #f0f7ff);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--gray-100);
}
.zone-svg-wrap svg { width: 100%; height: auto; }
.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.city-tag {
  padding: 0.4rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--anthracite);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}
.city-tag:hover {
  border-color: var(--electric);
  color: var(--electric);
  transform: translateY(-1px);
}
.city-tag.primary,
.city-tag.is-active {
  background: var(--electric);
  color: var(--white);
  border-color: var(--electric);
}
.city-tag:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 2px;
}
.city-list {
  columns: 2;
  gap: 2rem;
  margin: 1.5rem 0 0;
  padding-left: 1.1rem;
  color: var(--gray-600);
}
.city-list li { margin-bottom: 0.35rem; break-inside: avoid; }

.page-hero-img {
  position: relative;
  padding: 4rem 0;
  color: var(--white);
  overflow: hidden;
}
.page-hero-img .hero-bg { filter: brightness(0.55); }
.page-hero-img .hero-overlay {
  background: linear-gradient(90deg, rgba(28, 35, 51, 0.9), rgba(28, 35, 51, 0.55));
}
.page-hero-img .container { position: relative; z-index: 2; }
.page-hero-img h1 { margin: 0 0 0.5rem; font-size: clamp(1.75rem, 4vw, 2.5rem); }
.page-hero-img p { margin: 0; max-width: 60ch; opacity: 0.92; }

/* Pages légales */
.legal-page {
  padding: 3rem 0 4rem;
}
.legal-page .container {
  max-width: 760px;
}
.legal-back {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
}
.legal-back a { font-weight: 600; }
.legal-page h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}
.legal-updated {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin: 0 0 2rem;
}
.legal-page h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.2rem;
}
.legal-page h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1rem;
}
.legal-page p,
.legal-page li {
  color: var(--gray-600);
  line-height: 1.7;
}
.legal-page ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}
.legal-page li { margin-bottom: 0.35rem; }

@media (max-width: 1140px) {
  .nav a { font-size: 0.82rem; }
  .nav { gap: 0.65rem; }
  .header-inner { column-gap: 1.25rem; }
}

@media (max-width: 992px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow);
    z-index: 10;
  }
  .nav.open a {
    padding: 0.65rem 0;
    white-space: normal;
  }
  .nav-toggle { display: block; }
  .logo-img { width: 6rem; height: 6rem; }
  .logo-text strong { font-size: 1.05rem; }
}

@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    column-gap: 0.75rem;
  }
  .header-end { gap: 0.5rem; }
  .logo { max-width: none; gap: 0.65rem; }
  .header-cta {
    padding-left: 0;
    margin-left: 0;
    border-left: none;
  }
  .form-grid { grid-template-columns: 1fr; }
  .header-cta .btn {
    padding: 0.55rem 0.8rem;
    font-size: 0.78rem;
  }
  .header-cta .btn-whatsapp .btn-wa-icon {
    width: 1rem;
    height: 1rem;
  }
  .floating-cta {
    right: 0.75rem;
    bottom: 1rem;
    left: auto;
    max-width: min(20rem, calc(100% - 1.5rem));
  }
  .floating-cta .btn-whatsapp {
    font-size: 0.95rem;
    padding: 0.9rem 1rem;
  }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 3.5rem 0 4rem; }
  .logo-img { width: 5rem; height: 5rem; }
  .logo-text strong { font-size: 0.92rem; }
  .service-block, .service-block.reverse { grid-template-columns: 1fr; direction: ltr; }
  .zone-layout { grid-template-columns: 1fr; }
  .gallery-featured { grid-template-columns: 1fr; }
  .before-after { grid-template-columns: 1fr; }
  .city-list { columns: 1; }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
  .footer-desc { max-width: none; }
}

@media (max-width: 560px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
