/* Design tokens matching globals.css */
:root {
  --background: oklch(0.985 0 0);
  --foreground: oklch(0.175 0.02 255);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.175 0.02 255);
  --primary: oklch(0.25 0.06 255);
  --primary-foreground: oklch(0.985 0 0);
  --secondary: oklch(0.95 0.01 255);
  --muted: oklch(0.96 0.005 255);
  --muted-30: color-mix(in oklab, oklch(0.96 0.005 255) 30%, white);
  --muted-foreground: oklch(0.45 0.02 255);
  --accent: oklch(0.95 0.01 255);
  --border: oklch(0.90 0.01 255);
  --border-40: color-mix(in oklab, oklch(0.90 0.01 255) 40%, transparent);
  --border-60: color-mix(in oklab, oklch(0.90 0.01 255) 60%, transparent);
  --primary-5: color-mix(in oklab, oklch(0.25 0.06 255) 5%, transparent);
  --primary-10: color-mix(in oklab, oklch(0.25 0.06 255) 10%, transparent);
  --primary-15: color-mix(in oklab, oklch(0.25 0.06 255) 15%, transparent);
  --primary-20: color-mix(in oklab, oklch(0.25 0.06 255) 20%, transparent);
  --whatsapp: #25D366;
  --whatsapp-dark: #1da851;

  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-heading: "Montserrat", ui-sans-serif, system-ui, sans-serif;
  --font-cinzel: "Cinzel", "Times New Roman", serif;
  --font-raleway: "Raleway", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  font-family: var(--font-sans);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
a { text-decoration: none; color: inherit; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

/* Utility helpers */
.container { margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 640px) { .container { padding-left: 1.5rem; padding-right: 1.5rem; } }

.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { scrollbar-width: none; -ms-overflow-style: none; }

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border-40);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.8);
  transition: all 0.3s ease;
}
.navbar.scrolled { background: rgba(255,255,255,0.9); }
.navbar-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  transition: height 0.3s ease;
}
@media (min-width: 640px) { .navbar-inner { padding: 0 1.5rem; } }
.nav-logo img { width: auto; transition: height 0.3s ease; display: block; }
.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--primary); }
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--whatsapp);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: background 0.2s;
}
.btn-wa:hover { background: var(--whatsapp-dark); }
.nav-mobile-btn {
  display: inline-flex;
  padding: 0.5rem;
  border-radius: 0.375rem;
  color: var(--muted-foreground);
}
@media (min-width: 768px) { .nav-mobile-btn { display: none; } }
.nav-mobile {
  border-top: 1px solid var(--border-40);
  background: white;
  padding: 0.5rem 1rem 1rem;
  display: block;
}
@media (min-width: 768px) { .nav-mobile { display: none; } }
.nav-mobile a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}
.nav-mobile a:hover { color: var(--primary); }

/* HERO — minimal light variant (default) */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--background);
}
@media (min-width: 1024px) { .hero { min-height: 84vh; } }

/* Subtle background accents for the minimal variant */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, color-mix(in oklab, var(--primary) 6%, transparent), transparent 60%),
    linear-gradient(to bottom, var(--background), white);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, color-mix(in oklab, var(--primary) 5%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in oklab, var(--primary) 5%, transparent) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent 80%);
  pointer-events: none;
  opacity: 0.6;
}

/* Dark/image variant toggle */
.hero.variant-image { background: #000; }
.hero.variant-image::before, .hero.variant-image::after { display: none; }
.hero-bg {
  display: none;
  position: absolute;
  inset: 0;
  background-image: url(images/Traduccioninglesespanol.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  transition: transform 0.1s ease-out;
}
.hero.variant-image .hero-bg { display: block; }
.hero-overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.72), rgba(0,0,0,0.62) 50%, rgba(0,0,0,0.72));
}
.hero.variant-image .hero-overlay { display: block; }

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  padding: 5rem 1rem;
  text-align: center;
}
@media (min-width: 640px) { .hero-content { padding-left: 1.5rem; padding-right: 1.5rem; } }

/* Minimal eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border: 1px solid var(--border);
  background: white;
  border-radius: 9999px;
  color: var(--primary);
  font-family: var(--font-raleway);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 9999px;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.18);
}

/* Image-variant badge (kept for compatibility with image mode) */
.hero-badge {
  display: inline-grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  border-radius: 9999px;
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(6px);
}
.hero-badge .b-left { justify-self: end; white-space: nowrap; }
.hero-badge .b-right { justify-self: start; white-space: nowrap; }

/* Title — minimal (default) */
.hero h1 {
  font-family: var(--font-cinzel);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--primary);
  margin: 0;
}
.hero.variant-image h1 {
  color: white;
  text-shadow: 0 4px 6px rgba(0,0,0,0.3);
  font-weight: 800;
  letter-spacing: 0.025em;
}

.hero-subtitle {
  margin: 1.25rem auto 0;
  max-width: 38rem;
  font-family: var(--font-raleway);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted-foreground);
  font-weight: 500;
}
.hero.variant-image .hero-subtitle {
  color: white;
  font-weight: 700;
}
@media (min-width: 640px) { .hero-subtitle { font-size: 1.125rem; } }
.hero-subtitle strong {
  color: var(--foreground);
  font-weight: 700;
}
.hero.variant-image .hero-subtitle strong { color: white; font-weight: 800; }

.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) { .hero-cta { flex-direction: row; gap: 1rem; } }
.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--whatsapp);
  color: white;
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  font-family: var(--font-raleway);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(37,211,102,0.22);
  transition: all 0.2s;
}
.btn-primary-lg:hover { background: var(--whatsapp-dark); transform: translateY(-1px); box-shadow: 0 12px 20px rgba(37,211,102,0.3); }
.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  background: white;
  color: var(--primary);
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  font-family: var(--font-raleway);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-outline-lg:hover { background: var(--primary-5); border-color: var(--primary-20); }
.hero.variant-image .btn-outline-lg {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: white;
}
.hero.variant-image .btn-outline-lg:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }

/* Trust row — minimal chips */
.hero-trust-row {
  margin: 2rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
  align-items: center;
  max-width: 44rem;
}
.hero-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-raleway);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted-foreground);
  letter-spacing: 0.01em;
}
.hero-trust-chip svg { color: var(--primary); opacity: 0.8; }
.hero.variant-image .hero-trust-chip { color: rgba(255,255,255,0.85); }
.hero.variant-image .hero-trust-chip svg { color: #fcd34d; opacity: 1; }

/* Legacy single-line trust (still used by image variant) */
.hero-trust {
  margin-top: 2.5rem;
  font-family: var(--font-raleway);
  font-size: 0.875rem;
  color: white;
  font-weight: 700;
}

/* Typing effect — tune for light bg (default) */
.typing-wrap {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: color-mix(in oklab, var(--primary) 65%, transparent);
  font-family: var(--font-raleway);
  letter-spacing: 0.02em;
}
.hero.variant-image .typing-wrap {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-cinzel);
  font-weight: 600;
}
@media (min-width: 640px) { .typing-wrap { font-size: 1.875rem; } }
@media (min-width: 768px) { .typing-wrap { font-size: 2.25rem; } }
.typing-grid {
  display: inline-grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  width: min(90vw, 420px);
}
.typing-arrows path { stroke: #38BDF8; }
.hero:not(.variant-image) .typing-arrows path { stroke: color-mix(in oklab, var(--primary) 55%, white); }
.typing-left { justify-self: end; white-space: nowrap; padding-right: 0.5rem; }
.typing-right { justify-self: start; white-space: nowrap; padding-left: 0.5rem; }
@media (min-width: 640px) {
  .typing-left { padding-right: 0.75rem; }
  .typing-right { padding-left: 0.75rem; }
}
.typing-grid .invisible { visibility: hidden; }

/* Hero kicker (image variant) */
.hero-kicker {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #d1d5db;
  margin: 0 0 1rem;
}
@media (min-width: 768px) { .hero-kicker { font-size: 1rem; } }

/* Hero language chips */
.hero-langs {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
}
.hero-lang-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: white;
  color: var(--primary);
  overflow: hidden;
  cursor: default;
  transition: all 0.35s ease;
}
.hero-lang-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--c1) 0%, var(--c1) 18%, var(--c2) 44%, var(--c2) 56%, var(--c3) 82%, var(--c3) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}
.hero-lang-chip:hover::before { opacity: 0.2; }
.hero-lang-chip:hover {
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}
.hero-lang-chip > * { position: relative; z-index: 1; }
.lang-dot {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  border-radius: 9999px;
  background: linear-gradient(var(--dir, 90deg), var(--d1, var(--c1)) 0% 33%, var(--d2, var(--c2)) 33% 66%, var(--d3, var(--c3)) 66% 100%);
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  transition: opacity 0.35s ease;
}
.hero-lang-chip:hover .lang-dot { opacity: 0.5; }
.lang-dot-svg { background: none; overflow: hidden; display: inline-flex; }
.lang-dot-svg svg { display: block; }
.hero.variant-image .hero-lang-chip {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.15);
  color: white;
  backdrop-filter: blur(6px);
}
.hero.variant-image .hero-lang-chip:hover { border-color: transparent; }

/* NOSOTROS */
.section-nosotros { background: white; padding: 5rem 0; }
@media (min-width: 640px) { .section-nosotros { padding: 6rem 0; } }
.nosotros-text {
  max-width: 48rem;
  margin: 1.5rem auto 0;
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in oklab, var(--foreground) 80%, transparent);
}
@media (min-width: 768px) { .nosotros-text { font-size: 1.125rem; } }
.nosotros-quote {
  position: relative;
  max-width: 42rem;
  margin: 2.5rem auto 0;
  padding: 1.5rem 2rem;
}
.nosotros-quote p {
  font-style: italic;
  font-size: 1.125rem;
  font-weight: 500;
  color: color-mix(in oklab, var(--primary) 80%, transparent);
  margin: 0;
}
@media (min-width: 768px) { .nosotros-quote p { font-size: 1.25rem; } }
.q-mark {
  position: absolute;
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  color: rgba(37,211,102,0.3);
}
.q-open { top: 0; left: 0; }
.q-close { bottom: 0; right: 0; }

/* SERVICES — 6-card grid */
.svc-grid-6 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .svc-grid-6 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .svc-grid-6 { grid-template-columns: repeat(3, 1fr); } }

/* TRADUCCION PUBLICA */
.section-pub { background: color-mix(in oklab, var(--muted) 30%, white); padding: 5rem 0; }
@media (min-width: 640px) { .section-pub { padding: 6rem 0; } }
.pub-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .pub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pub-grid { grid-template-columns: repeat(3, 1fr); } }
.pub-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  border: 1px solid var(--border-60);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  transition: all 0.25s;
}
.pub-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.1); }
.pub-card p {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--primary);
}
.pub-icon {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(37,211,102,0.1);
  color: #1da851;
  margin-top: 2px;
}
.pub-banner {
  margin-top: 3rem;
  background: var(--primary);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: center;
  color: white;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* WORKFLOW note */
.wf-note {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

/* ARANCELES */
.section-fees { background: color-mix(in oklab, var(--muted) 30%, white); padding: 5rem 0; }
@media (min-width: 640px) { .section-fees { padding: 6rem 0; } }
.fees-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .fees-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .fees-grid { grid-template-columns: repeat(4, 1fr); } }
.fee-card {
  background: white;
  border: 1px solid var(--border-60);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  transition: all 0.25s;
}
.fee-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.1); }
.fee-icon {
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 9999px;
  background: var(--primary-5);
  color: var(--primary);
}
.fee-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.25rem;
}
.fee-sub { font-size: 0.875rem; color: var(--muted-foreground); margin: 0 0 0.75rem; }
.fee-price { font-size: 0.875rem; font-weight: 700; color: #1da851; margin: 0; }
.fees-note {
  margin: 2rem auto 0;
  max-width: 42rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.6;
  color: color-mix(in oklab, var(--muted-foreground) 70%, transparent);
}

/* Contact map */
.contact-map {
  margin-top: 2.5rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* SECTION HEADINGS */
.section-h {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--primary);
  margin: 0;
}
@media (min-width: 640px) { .section-h { font-size: 2.25rem; } }
.section-sub {
  max-width: 42rem;
  margin: 1rem auto 0;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* DIFFERENTIALS */
.section-diff { background: white; padding: 5rem 0; }
@media (min-width: 640px) { .section-diff { padding: 6rem 0; } }
.diff-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .diff-grid { grid-template-columns: repeat(5, 1fr); } }
.diff-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--border-60);
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  transition: all 0.3s;
}
.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  border-color: var(--primary-20);
  background: var(--primary-5);
}
.diff-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: var(--primary-5);
  color: var(--primary);
  transition: all 0.3s;
}
.diff-card:hover .diff-icon { background: transparent; transform: scale(1.1); }
.diff-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 1rem 0 0;
}
.diff-desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted-foreground);
  margin: 0.5rem 0 0;
}

/* SERVICES */
.section-services { background: color-mix(in oklab, var(--muted) 30%, white); padding: 5rem 0; }
@media (min-width: 640px) { .section-services { padding: 6rem 0; } }
.svc-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
.svc-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-60);
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  transition: all 0.3s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.svc-card.accent-blue { background: linear-gradient(to bottom, rgba(59,130,246,0.10), rgba(37,99,235,0.05)), white; }
.svc-card.accent-emerald { background: linear-gradient(to bottom, rgba(16,185,129,0.10), rgba(5,150,105,0.05)), white; }
.svc-card.accent-amber { background: linear-gradient(to bottom, rgba(245,158,11,0.10), rgba(217,119,6,0.05)), white; }
.svc-hover-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.svc-hover-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(2px);
}
.svc-card:hover .svc-hover-bg { opacity: 1; }
.svc-content { position: relative; z-index: 2; }
.svc-icon {
  display: flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem; border-radius: 0.75rem;
}
.svc-icon.blue { background: rgba(59,130,246,0.10); color: #2563eb; }
.svc-icon.emerald { background: rgba(16,185,129,0.10); color: #059669; }
.svc-icon.amber { background: rgba(245,158,11,0.10); color: #d97706; }
.svc-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 1.25rem 0 0;
}
.svc-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin: 1rem 0 0;
}
.svc-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: color-mix(in oklab, var(--foreground) 80%, transparent);
  margin: 0.25rem 0 0;
}

/* WORKFLOW */
.section-workflow { background: white; padding: 5rem 0; }
@media (min-width: 640px) { .section-workflow { padding: 6rem 0; } }
.wf-wrap { position: relative; margin-top: 5rem; max-width: 64rem; margin-left: auto; margin-right: auto; }
.wf-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .wf-grid { grid-template-columns: repeat(3, 1fr); } }
.wf-line {
  display: none;
  position: absolute;
  left: 16.66%;
  right: 16.66%;
  top: 3.5rem;
  height: 2px;
  background: var(--primary-15);
}
@media (min-width: 768px) { .wf-line { display: block; } }
.wf-anim-seg {
  pointer-events: none;
  position: absolute;
  top: 3.5rem;
  height: 2px;
  display: none;
  transition: opacity 0.3s ease-out;
}
@media (min-width: 768px) { .wf-anim-seg { display: block; } }
.wf-anim-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background: linear-gradient(to right, #38BDF8, #0EA5E9);
  transition: width 1.2s ease-out;
}
.wf-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.wf-ring {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border: 2px solid var(--primary-20);
  background: white;
  border-radius: 9999px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.07);
  transition: transform 0.3s;
}
.wf-ring:hover { transform: scale(1.05); }
.wf-ring-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: var(--primary);
  color: white;
}
.wf-badge {
  position: absolute;
  top: -0.25rem;
  left: 50%;
  transform: translateX(0.5rem);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  background: #38BDF8;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.wf-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 1.25rem 0 0;
}
.wf-desc {
  max-width: 20rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted-foreground);
  margin: 0.5rem 0 0;
}
.wf-float {
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  top: -3rem;
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
}
.wf-float.gap-6 { gap: 1.5rem; }
.wf-float > div {
  transition: all 0.5s ease-out;
  will-change: transform, opacity, filter;
}

/* REVIEWS */
.section-reviews { background: color-mix(in oklab, var(--muted) 30%, white); padding: 5rem 0; }
@media (min-width: 640px) { .section-reviews { padding: 6rem 0; } }
.trust-grid {
  margin: 2.5rem auto 0;
  max-width: 56rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
.trust-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--primary-15);
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  transition: box-shadow 0.2s;
}
.trust-card:hover { box-shadow: 0 8px 16px rgba(0,0,0,0.07); }
.trust-icon {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  width: 4rem; height: 4rem;
  border-radius: 1rem;
  background: var(--primary);
  color: white;
}
.trust-years {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
}
.trust-years-label {
  font-size: 1rem;
  font-weight: 700;
  color: color-mix(in oklab, var(--primary) 70%, transparent);
}
.trust-sub {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: color-mix(in oklab, var(--foreground) 70%, transparent);
}
.google-card {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(251,191,36,0.3);
  background: linear-gradient(135deg, #fffbeb, white 40%, white);
}
.google-card:hover { border-color: rgba(251,191,36,0.6); }
.google-shine {
  position: absolute;
  right: -2rem;
  top: -2rem;
  width: 6rem;
  height: 6rem;
  border-radius: 9999px;
  background: rgba(252,211,77,0.2);
  filter: blur(32px);
  pointer-events: none;
}
.google-rating {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1;
  color: var(--foreground);
}
.google-reviews-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2563eb;
  margin: 0.25rem 0 0;
}
.google-card:hover .google-reviews-text { text-decoration: underline; }

/* TRUST BANNER — navy card */
.trust-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0d1d33 0%, #0a1628 55%, #0c1b30 100%);
  border-radius: 1.75rem;
  padding: 4rem 1.5rem 4.5rem;
  text-align: center;
}
.trust-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.trust-banner > * { position: relative; }
.tb-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.08);
  color: #cbd5e1;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tb-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin: 1.25rem 0 0;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) { .tb-title { font-size: 2.75rem; } }
.tb-gold { color: #FFC93C; }
.tb-sub {
  max-width: 36rem;
  margin: 0.875rem auto 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #cbd5e1;
}
.tb-panel {
  margin: 2.5rem auto 0;
  max-width: 56rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
  padding: 2.5rem 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .tb-panel { grid-template-columns: 1fr auto 1fr; gap: 0; }
}
.tb-stat { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.tb-divider {
  display: none;
  width: 1px;
  height: 5.5rem;
  background: rgba(255,255,255,0.12);
}
@media (min-width: 768px) { .tb-divider { display: block; } }
.tb-years { display: flex; align-items: baseline; gap: 0.375rem; }
.tb-n {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}
.tb-y {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFC93C;
}
.tb-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e2e8f0;
}
.tb-stars { display: flex; gap: 0.25rem; }
.tb-google { display: flex; align-items: center; gap: 0.625rem; margin-top: 0.25rem; }
.tb-rating {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.tb-gtext { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.tb-eng {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFC93C;
}
.tb-count { font-size: 0.8125rem; color: #cbd5e1; }
.tb-link {
  margin-top: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #94a3b8;
  transition: color 0.2s;
}
.tb-link:hover { color: white; }

.reviews-scroller {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0.25rem 1rem;
}
@media (min-width: 640px) { .reviews-scroller { padding: 0.25rem 1.5rem; } }
.review-card {
  display: flex;
  flex-direction: column;
  width: 300px;
  flex-shrink: 0;
  border: 1px solid var(--border-60);
  background: white;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
@media (min-width: 640px) { .review-card { width: 340px; } }
.review-avatar {
  display: flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem;
  border-radius: 9999px;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
}
.review-name { font-size: 0.875rem; font-weight: 600; color: var(--foreground); }
.review-text { font-size: 0.875rem; line-height: 1.5; color: color-mix(in oklab, var(--foreground) 80%, transparent); margin: 0.75rem 0 0; }

/* CONTACT */
.section-contact { background: var(--primary); padding: 5rem 0; }
@media (min-width: 640px) { .section-contact { padding: 6rem 0; } }
.section-contact .section-h { color: white; }
.section-contact .section-sub { color: rgba(255,255,255,0.7); }
.contact-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  border-radius: 1rem;
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.contact-card:hover { background: rgba(255,255,255,0.1); }
.contact-card.wa { border-color: rgba(37,211,102,0.3); background: rgba(37,211,102,0.1); }
.contact-card.wa:hover { background: rgba(37,211,102,0.2); }
.contact-icon {
  display: flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.1);
  color: white;
  transition: background 0.2s;
}
.contact-card:hover .contact-icon { background: rgba(255,255,255,0.2); }
.contact-card.wa .contact-icon {
  background: var(--whatsapp);
  box-shadow: 0 10px 20px rgba(37,211,102,0.3);
}
.contact-label { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.6); margin: 1rem 0 0; }
.contact-value { font-size: 1.125rem; font-weight: 600; color: white; margin: 0.25rem 0 0; }
.contact-secure {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

/* FOOTER */
.footer { border-top: 1px solid var(--border-40); background: var(--card); padding: 2.5rem 0; }
.footer-inner { max-width: 72rem; margin: 0 auto; padding: 0 1rem; display: flex; flex-direction: column; gap: 1rem; align-items: center; text-align: center; }
@media (min-width: 640px) { .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; padding: 0 1.5rem; } }
.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; }
@media (min-width: 640px) { .footer-brand { align-items: flex-start; } }
.footer-desc { font-size: 0.875rem; color: var(--muted-foreground); }
.footer-right { font-size: 0.875rem; color: var(--muted-foreground); }
.footer-right a { transition: color 0.2s; }
.footer-right a:hover { color: var(--primary); }

/* LOGO (text) */
.logo-inline { display: inline-flex; align-items: center; }
.logo-inline img { flex-shrink: 0; display: block; }
.logo-text {
  margin-left: 6px;
  font-family: var(--font-cinzel);
  color: #1C2B4A;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
}
.logo-text .main { font-weight: 600; }
.logo-text .tld { font-weight: 500; margin-left: 1px; opacity: 0.85; }

/* TWEAKS PANEL */
.tweaks-panel {
  position: fixed;
  right: 1.25rem;
  bottom: 6rem;
  z-index: 60;
  width: 280px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12), 0 4px 10px rgba(0,0,0,0.05);
  padding: 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
}
.tweaks-panel h4 {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tweaks-panel label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted-foreground);
  margin: 0.75rem 0 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tweaks-panel .variant-row { display: flex; gap: 0.375rem; flex-wrap: wrap; }
.tweaks-panel .variant-row button {
  flex: 1;
  min-width: 0;
  padding: 0.5rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: white;
  color: var(--foreground);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}
.tweaks-panel .variant-row button:hover { border-color: var(--primary-20); }
.tweaks-panel .variant-row button.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.tweaks-panel textarea, .tweaks-panel input[type=text] {
  width: 100%;
  padding: 0.5rem 0.625rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font: inherit;
  font-size: 0.8125rem;
  color: var(--foreground);
  background: white;
  resize: vertical;
}
.tweaks-panel textarea:focus, .tweaks-panel input:focus { outline: 2px solid var(--primary-20); border-color: var(--primary-20); }

/* FAB */
.wa-fab {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 10px 25px rgba(37,211,102,0.4);
  transition: all 0.2s;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 15px 35px rgba(37,211,102,0.5); }

/* Max widths */
.mw-6xl { max-width: 72rem; margin-left: auto; margin-right: auto; }
.mw-5xl { max-width: 64rem; margin-left: auto; margin-right: auto; }
.mw-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
