/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --navy:        #0b1f45;
  --gls-blue:    #0032a0;
  --navy-2:      #12295e;
  --navy-deep:   #071633;
  --yellow:      #ffc627;
  --yellow-ink:  #7a5600;
  --white:       #ffffff;
  --paper:       #f5f7fb;
  --paper-2:     #eaeef6;
  --ink:         #10182b;
  --ink-soft:    #2a3350;
  --ink-mute:    #5b6480;
  --line:        rgba(16,24,43,0.12);
  --line-on-navy: rgba(255,255,255,0.16);
  --success:     #1a7f4e;
  --danger:      #b3261e;

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Manrope", var(--sans);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(11,31,69,0.08);
  --shadow-md: 0 8px 24px rgba(11,31,69,0.10);
  --shadow-lg: 0 20px 50px rgba(11,31,69,0.16);

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --nav-h: 76px;
  --container: 1240px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; letter-spacing: -0.02em; font-family: var(--display); font-weight: 800; color: var(--navy); }
ul, ol { list-style: none; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--yellow); color: var(--navy); }

:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.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; }
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.1rem; background: var(--white); color: var(--navy);
  z-index: 9999; border-radius: 8px; font-weight: 700; box-shadow: var(--shadow-md);
}
.skip-link:focus { top: 1rem; }
.section { padding-block: clamp(48px, 8vw, 96px); }
.section-alt { background: var(--paper); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h1, .section-navy h2, .section-navy h3 { color: var(--white); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy-2);
}
.section-navy .eyebrow { color: var(--yellow); }
.eyebrow::before { content: ""; width: 18px; height: 3px; background: var(--yellow); border-radius: 2px; }
.section-head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 44px); }
.section-head p { color: var(--ink-mute); font-size: 1.05rem; margin-top: 10px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
  background: var(--paper-2); color: var(--navy-2);
}

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-family: var(--display); font-weight: 700; font-size: 0.98rem;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background-color .25s var(--ease-out), color .25s var(--ease-out);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 17px 32px; font-size: 1.05rem; }
.btn-primary { background: var(--yellow); color: var(--navy-deep); box-shadow: var(--shadow-sm); }
.btn-primary:hover { box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.section-navy .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.45); }
.section-navy .btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-ghost { background: var(--paper-2); color: var(--navy); }
.btn-ghost:hover { background: var(--paper); }
.btn-whatsapp { background: #25d366; color: #06210f; }
.btn-whatsapp:hover { box-shadow: var(--shadow-md); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; pointer-events: none; }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* =============================================================
   5. Header / Nav
   ============================================================= */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease-out);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: var(--nav-h); }
.brand { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: var(--display); font-weight: 800; font-size: 1.1rem; color: var(--navy); letter-spacing: -0.01em; }
.brand-sub { font-size: 0.72rem; color: var(--ink-mute); font-weight: 500; }

.nav-links { display: none; align-items: center; gap: 2px; }
.nav-links a {
  position: relative;
  padding: 9px 4px; margin-inline: 7px; font-weight: 600; font-size: 0.88rem; color: var(--ink-soft);
  white-space: nowrap; transition: color .2s var(--ease-out);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px; background: var(--yellow);
  transform: scaleX(0); transform-origin: left; transition: transform .2s var(--ease-out);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a[aria-current="page"] { color: var(--navy); }
.nav-links a[aria-current="page"]::after, .nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: none; align-items: center; gap: 8px; }
.nav-actions .btn { padding: 10px 16px; font-size: 0.85rem; white-space: nowrap; }
.nav-call {
  display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%;
  color: var(--navy); background: var(--paper-2); flex-shrink: 0;
}
@media (min-width: 1180px) {
  .nav-links a { padding: 10px 14px; font-size: 0.92rem; }
  .nav-actions .btn { padding: 11px 20px; font-size: 0.9rem; }
}

.hamburger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; border-radius: 10px; background: var(--paper-2);
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--navy); margin-inline: auto; transition: transform .3s var(--ease-out), opacity .3s var(--ease-out); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 480;
  background: var(--white); padding: 24px 20px 32px; overflow-y: auto;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out);
}
.mobile-menu.is-open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a { display: block; padding: 16px 4px; font-family: var(--display); font-weight: 700; font-size: 1.25rem; color: var(--navy); border-bottom: 1px solid var(--line); }
.mobile-menu .mobile-actions { display: grid; gap: 12px; margin-top: 24px; }
.mobile-menu .mobile-actions .btn { width: 100%; }

@media (min-width: 1180px) {
  .nav-links, .nav-actions { display: flex; }
  .hamburger, .mobile-menu { display: none; }
}
@media (max-width: 1179.98px) {
  .brand-sub { max-width: 260px; }
}

/* =============================================================
   6. Hero
   ============================================================= */
.hero { position: relative; overflow: hidden; background: var(--white); color: var(--ink); }
.hero-grid { position: relative; display: grid; gap: 0; max-width: 1680px; margin-inline: auto; }
.hero-copy { padding: clamp(40px, 7vw, 88px) 20px; display: flex; flex-direction: column; justify-content: center; }
.hero-copy .container-inner { max-width: 560px; margin-inline: auto; width: 100%; }
.hero-title { font-size: clamp(2rem, 4.6vw, 3.1rem); line-height: 1.06; text-transform: uppercase; }
.hero-title .price { color: var(--gls-blue); }
.hero-sub { margin-top: 18px; font-size: 1.08rem; color: var(--ink-mute); max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-actions .btn { text-transform: uppercase; letter-spacing: 0.01em; }
.hero-locate { margin-top: 14px; }
.hero-address {
  display: flex; align-items: center; gap: 10px; margin-top: 22px; font-weight: 600;
  color: var(--ink-soft); font-size: 0.95rem;
}
.hero-address svg { width: 18px; height: 18px; color: var(--navy-2); flex-shrink: 0; }
.hero-disclaimer { margin-top: 10px; font-size: 0.78rem; color: var(--ink-mute); }

.hero-photo { position: relative; min-height: 320px; background: var(--paper-2); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1fr 1fr; min-height: 560px; }
  .hero-copy { padding-inline: clamp(32px, 4vw, 64px); }
  .hero-copy .container-inner { margin-inline: 0; max-width: 480px; }
  .hero-photo { min-height: 100%; }
}

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
}

/* =============================================================
   7. Cards & grids
   ============================================================= */
.grid { display: grid; gap: 20px; min-width: 0; }
.grid-2 { grid-template-columns: minmax(0,1fr); }
.grid-3 { grid-template-columns: minmax(0,1fr); }
.grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid > * { min-width: 0; }
@media (min-width: 720px) { .grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); } .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 960px) { .grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); } .grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); } }

.card {
  min-width: 0;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(255,198,39,0.5); }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--paper-2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.card-icon svg { width: 26px; height: 26px; color: var(--navy-2); }
.card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card p { color: var(--ink-mute); font-size: 0.95rem; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-weight: 700; color: var(--navy-2); font-size: 0.9rem; }

.trust-bar {
  display: grid; gap: 18px; padding: 26px; border-radius: var(--radius-lg);
  background: var(--navy); color: var(--white);
}
.trust-title { font-family: var(--display); font-weight: 800; font-size: 1.3rem; margin-bottom: 4px; }
.trust-items { display: grid; gap: 16px; grid-template-columns: 1fr; min-width: 0; }
.trust-item { display: flex; align-items: center; gap: 12px; min-width: 0; }
.trust-item svg { width: 22px; height: 22px; color: var(--yellow); flex-shrink: 0; }
.trust-item strong { display: block; font-size: 0.92rem; }
.trust-item span { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.65); }
@media (min-width: 720px) { .trust-bar { grid-template-columns: auto 1fr; align-items: center; } .trust-items { grid-template-columns: repeat(4, minmax(0,1fr)); } }

/* =============================================================
   8. Forms
   ============================================================= */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 700; font-size: 0.85rem; color: var(--navy); }
.field .hint { font-size: 0.78rem; color: var(--ink-mute); }
.field input, .field select, .field textarea {
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px; background: var(--white);
  font-size: 0.98rem; transition: border-color .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--navy-2); box-shadow: 0 0 0 3px rgba(18,41,94,0.12); outline: none;
}
.field textarea { min-height: 110px; resize: vertical; }
.form-grid { display: grid; gap: 16px; grid-template-columns: minmax(0,1fr); }
@media (min-width: 640px) { .form-grid.cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 4vw, 36px); box-shadow: var(--shadow-md); }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.82rem; color: var(--ink-mute); margin-top: 16px; }
.consent input { margin-top: 3px; }
.consent a { text-decoration: underline; color: var(--navy-2); }
.form-note { margin-top: 14px; font-size: 0.8rem; color: var(--ink-mute); }
.form-success { display: none; padding: 18px; border-radius: var(--radius); background: rgba(26,127,78,0.1); color: var(--success); font-weight: 600; }
.form-success.is-visible { display: block; }

/* choice buttons */
.choice-grid { display: grid; gap: 10px; grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (min-width: 640px) { .choice-grid.cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); } .choice-grid.cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.choice {
  min-width: 0;
  padding: 14px 12px; border-radius: 12px; border: 1.5px solid var(--line); text-align: center;
  font-weight: 700; font-size: 0.88rem; color: var(--ink-soft);
  transition: border-color .2s var(--ease-out), background-color .2s var(--ease-out), color .2s var(--ease-out);
}
.choice:hover { border-color: var(--navy-2); }
.choice.is-active { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* =============================================================
   9. Calculator wizard
   ============================================================= */
.calc-shell { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.calc-steps { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 22px 16px 0; }
.calc-step-dot {
  display: flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 700; color: var(--ink-mute);
}
.calc-step-dot .num {
  width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--paper-2); color: var(--ink-mute); font-family: var(--display); transition: background-color .3s var(--ease-out), color .3s var(--ease-out);
}
.calc-step-dot.is-active .num { background: var(--yellow); color: var(--navy-deep); }
.calc-step-dot.is-done .num { background: var(--navy-2); color: var(--white); }
.calc-step-line { width: 24px; height: 2px; background: var(--line); }
.calc-step-label { display: none; }
@media (min-width: 640px) { .calc-step-label { display: inline; } }

.calc-body { padding: clamp(22px, 4vw, 36px); }
.calc-pane { display: none; }
.calc-pane.is-active { display: block; }
.calc-pane h2 { font-size: 1.5rem; margin-bottom: 6px; }
.calc-pane .pane-sub { color: var(--ink-mute); margin-bottom: 22px; }
.calc-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 26px; }

.calc-page { background: var(--navy); padding-bottom: clamp(40px, 6vw, 80px); }
.calc-banner { position: relative; height: clamp(160px, 26vw, 260px); overflow: hidden; }
.calc-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.calc-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,31,69,0.15) 0%, var(--navy) 100%); }
.calc-wrap { max-width: 640px; margin-inline: auto; padding-inline: 20px; margin-top: -64px; position: relative; z-index: 2; }

.calc-result {
  background: linear-gradient(180deg, #eef3ff 0%, #e4ecff 100%); color: var(--navy); border-radius: var(--radius); padding: 26px 24px; margin-top: 4px;
  text-align: center;
}
.calc-result .label { font-size: 0.9rem; color: var(--ink-mute); font-weight: 600; }
.calc-result .price-big { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 8vw, 3rem); color: var(--navy); margin-top: 4px; line-height: 1; }
.calc-result .price-big small { font-size: 1.2rem; font-weight: 700; color: var(--ink-mute); }
.calc-result .note { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(11,31,69,0.12); font-size: 0.82rem; color: var(--ink-mute); }
.calc-summary { display: grid; gap: 8px; margin-top: 18px; font-size: 0.9rem; text-align: left; }
.calc-summary div { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 8px; border-bottom: 1px dashed var(--line); }
.calc-summary dt { color: var(--ink-mute); }
.calc-summary dd { font-weight: 700; text-align: right; }

.calc-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 30px; }
.calc-trust div { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 600; }
.calc-trust svg { color: var(--yellow); width: 20px; height: 20px; }

/* =============================================================
   10. FAQ accordion
   ============================================================= */
.accordion { display: grid; gap: 10px; }
.accordion-item { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.accordion-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; font-weight: 700; font-family: var(--display); font-size: 1rem; color: var(--navy);
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary .chev { transition: transform .3s var(--ease-out); flex-shrink: 0; width: 20px; height: 20px; color: var(--navy-2); }
.accordion-item[open] summary .chev { transform: rotate(180deg); }
.accordion-item .accordion-body { padding: 0 20px 20px; color: var(--ink-mute); }

/* =============================================================
   11. Footer
   ============================================================= */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.8); padding-block: 56px 28px; }
.footer-grid { display: grid; gap: 32px; grid-template-columns: minmax(0,1fr); }
.footer-col, .footer-brand { min-width: 0; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand .brand-name { color: var(--white); }
.footer-brand p { margin-top: 12px; font-size: 0.9rem; color: rgba(255,255,255,0.6); max-width: 34ch; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 0.03em; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: color .2s var(--ease-out); }
.footer-col a:hover { color: var(--yellow); }
.footer-legal-note { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; margin-top: 18px; font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { text-decoration: underline; }

/* =============================================================
   12. Sticky mobile action bar
   ============================================================= */
.mobile-actionbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
  display: flex; gap: 8px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(11,31,69,0.08);
}
.mobile-actionbar .btn { flex: 1; min-width: 0; padding: 13px 6px; font-size: 0.8rem; gap: 6px; overflow: hidden; }
.mobile-actionbar .btn svg { flex-shrink: 0; }
@media (min-width: 960px) { .mobile-actionbar { display: none; } }
body.has-mobile-bar { padding-bottom: 72px; }
@media (min-width: 960px) { body.has-mobile-bar { padding-bottom: 0; } }

/* =============================================================
   13. AI Assistant widget
   ============================================================= */
.assistant-launcher {
  position: fixed; right: 18px; bottom: 88px; z-index: 450;
  display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-radius: 999px;
  background: var(--navy); color: var(--white); box-shadow: var(--shadow-lg);
  font-weight: 700; font-family: var(--display); font-size: 0.92rem;
  transition: transform .25s var(--ease-out);
}
.assistant-launcher:hover { transform: translateY(-2px); }
.assistant-launcher svg { width: 22px; height: 22px; color: var(--yellow); }
@media (min-width: 960px) { .assistant-launcher { bottom: 26px; } }

.assistant-panel {
  position: fixed; right: 18px; bottom: 88px; z-index: 460;
  width: min(370px, calc(100vw - 36px)); max-height: min(560px, 72vh);
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; overflow: hidden;
  transform: translateY(16px) scale(0.98); opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out);
}
.assistant-panel.is-open { opacity: 1; transform: none; pointer-events: auto; }
@media (min-width: 960px) { .assistant-panel { bottom: 26px; } }

.assistant-head { background: var(--navy); color: var(--white); padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.assistant-head strong { font-family: var(--display); font-size: 0.95rem; }
.assistant-head span { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.65); margin-top: 2px; }
.assistant-close { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.assistant-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; background: var(--paper); }
.assistant-msg { max-width: 88%; padding: 11px 14px; border-radius: 14px; font-size: 0.88rem; line-height: 1.5; }
.assistant-msg.bot { align-self: flex-start; background: var(--white); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.assistant-msg.user { align-self: flex-end; background: var(--navy); color: var(--white); border-bottom-right-radius: 4px; }
.assistant-typing { color: var(--ink-mute); font-weight: 700; letter-spacing: 2px; }
.assistant-options { display: flex; flex-direction: column; gap: 8px; }
.assistant-options button {
  text-align: left; padding: 11px 14px; border-radius: 12px; background: var(--white); border: 1.5px solid var(--line);
  font-size: 0.86rem; font-weight: 600; color: var(--navy-2); transition: border-color .2s var(--ease-out), background-color .2s var(--ease-out);
}
.assistant-options button:hover { border-color: var(--navy-2); background: var(--paper-2); }
.assistant-foot { padding: 12px; border-top: 1px solid var(--line); display: flex; gap: 8px; background: var(--white); }
.assistant-foot input { flex: 1; padding: 11px 13px; border-radius: 10px; border: 1.5px solid var(--line); font-size: 0.88rem; }
.assistant-foot button { width: 42px; height: 42px; border-radius: 10px; background: var(--yellow); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.assistant-foot button svg { width: 18px; height: 18px; color: var(--navy-deep); }

/* =============================================================
   14. Cookie banner + preferences
   ============================================================= */
.cookie-banner {
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 700;
  max-width: 640px; margin-inline: auto; background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line); padding: 20px;
  transform: translateY(140%); transition: transform .4s var(--ease-out);
}
.cookie-banner.is-visible { transform: none; }
.cookie-banner p { font-size: 0.86rem; color: var(--ink-mute); }
.cookie-banner p a { text-decoration: underline; color: var(--navy-2); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.cookie-actions .btn { padding: 11px 16px; font-size: 0.85rem; }

.cookie-modal-backdrop {
  position: fixed; inset: 0; background: rgba(7,22,51,0.55); z-index: 800;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.cookie-modal-backdrop.is-open { display: flex; }
.cookie-modal { background: var(--white); border-radius: var(--radius-lg); max-width: 560px; width: 100%; max-height: 84vh; overflow-y: auto; padding: clamp(20px, 4vw, 32px); }
.cookie-toggle-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cookie-toggle-row:last-of-type { border-bottom: none; }
.cookie-toggle-row h4 { font-size: 0.95rem; color: var(--navy); }
.cookie-toggle-row p { font-size: 0.82rem; color: var(--ink-mute); margin-top: 4px; }
.switch { position: relative; width: 46px; height: 26px; border-radius: 999px; background: var(--line); flex-shrink: 0; transition: background-color .2s var(--ease-out); }
.switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--white); box-shadow: var(--shadow-sm); transition: transform .2s var(--ease-out); }
.switch.is-on { background: var(--navy-2); }
.switch.is-on::after { transform: translateX(20px); }
.switch.is-disabled { background: var(--ink-mute); opacity: .6; }

/* =============================================================
   15. Content pages (legal, about)
   ============================================================= */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.4rem; margin-top: 34px; margin-bottom: 12px; }
.prose h3 { font-size: 1.1rem; margin-top: 22px; margin-bottom: 8px; }
.prose p { margin-bottom: 14px; color: var(--ink-soft); }
.prose ul { margin: 0 0 14px; display: grid; gap: 8px; }
.prose li { padding-left: 22px; position: relative; color: var(--ink-soft); }
.prose li::before { content: "—"; position: absolute; left: 0; color: var(--navy-2); }
.prose strong { color: var(--navy); }
.pending-badge { display: inline-block; background: rgba(179,38,30,0.1); color: var(--danger); font-size: 0.75rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; margin-left: 6px; }
.page-hero { background: var(--paper); padding-block: 44px; border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { margin-bottom: 10px; }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.page-hero p { color: var(--ink-mute); margin-top: 10px; max-width: 60ch; }
.breadcrumb { font-size: 0.82rem; color: var(--ink-mute); margin-bottom: 14px; }
.breadcrumb a { color: var(--navy-2); font-weight: 600; }

/* =============================================================
   16. About / team / values
   ============================================================= */
.value-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.value-row:last-child { border-bottom: none; }
.value-row .n { font-family: var(--display); font-weight: 800; font-size: 1.3rem; color: var(--yellow-ink); flex-shrink: 0; width: 40px; }
.value-row h3 { font-size: 1.05rem; margin-bottom: 4px; }
.value-row p { color: var(--ink-mute); font-size: 0.94rem; }

/* =============================================================
   17. Contact / map
   ============================================================= */
.contact-grid { display: grid; gap: 24px; grid-template-columns: minmax(0,1fr); }
@media (min-width: 960px) { .contact-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.map-frame { display: block; width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--paper-2); position: relative; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.map-frame img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease-out); }
.map-frame:hover img { transform: scale(1.03); }
.map-open-badge {
  position: absolute; left: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px; background: var(--white); color: var(--navy);
  font-weight: 700; font-size: 0.85rem; box-shadow: var(--shadow-md);
}
.map-open-badge svg { color: var(--navy-2); }
.map-fallback { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 24px; }
.map-fallback svg { width: 44px; height: 44px; color: var(--navy-2); }
.info-list { display: grid; gap: 18px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-item .card-icon { flex-shrink: 0; margin-bottom: 0; }
.info-item h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 2px; }
.info-item p, .info-item a { font-size: 0.92rem; color: var(--ink-mute); }
.info-item a:hover { color: var(--navy-2); }

/* =============================================================
   18. Marquee zones strip
   ============================================================= */
.zone-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.zone-chip { padding: 8px 16px; border-radius: 999px; background: var(--white); border: 1.5px solid var(--line); font-weight: 700; font-size: 0.85rem; color: var(--navy-2); }

/* =============================================================
   19. Empresas — tier cards, photo+form, banners
   ============================================================= */
.tier-card { display: flex; flex-direction: column; }
.tier-card .card-icon { background: var(--paper-2); }
.tier-card h3 { font-size: 1.15rem; }
.tier-card p { flex: 1; }
.tier-card--highlight {
  background: var(--navy); border-color: var(--navy); color: var(--white);
}
.tier-card--highlight h3, .tier-card--highlight .price-note { color: var(--white); }
.tier-card--highlight p { color: rgba(255,255,255,0.7); }
.tier-card--highlight .card-icon { background: rgba(255,255,255,0.12); }
.tier-card--highlight .card-icon svg { color: var(--yellow); }
.tier-card--highlight .btn-primary { margin-top: 14px; }

.photo-banner { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; }
.photo-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.photo-banner.wide { aspect-ratio: 16/9; }
@media (min-width: 960px) { .photo-banner.wide { aspect-ratio: 18/9; } }

.solicita-grid { display: grid; gap: 24px; grid-template-columns: minmax(0,1fr); align-items: stretch; }
@media (min-width: 960px) { .solicita-grid { grid-template-columns: 1.1fr 1fr; } }
.solicita-photo { border-radius: var(--radius-lg); overflow: hidden; min-height: 320px; }
.solicita-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* =============================================================
   20. Quiénes somos (compact homepage blurb)
   ============================================================= */
.quienes-somos { max-width: 720px; }
.quienes-somos p { color: var(--ink-mute); font-size: 1.05rem; margin-top: 14px; }

/* =============================================================
   21. Reduced motion — only intrusive
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-photo img { animation: none; }
}

/* =============================================================
   20. Print
   ============================================================= */
@media print {
  .site-header, .mobile-actionbar, .assistant-launcher, .assistant-panel, .cookie-banner { display: none !important; }
}
