/* GlobalScan — Esri-inspired structure, GlobalScan branding */

:root {
  --bg: #ffffff;
  --bg-2: #f5f5f2;
  --bg-3: #ebebe6;
  --ink: #0d1b2a;
  --ink-2: #1f2d3d;
  --ink-3: #4a5566;
  --ink-4: #8a93a3;
  --line: #e3e3df;
  --line-2: #ededea;

  --brand-navy: #082A5E;
  --brand-navy-2: #0b3a82;
  --surface-deep: #1F3F7A;
  --surface-deep-2: #2A4F8E;
  --brand-orange: #EC7A1E;
  --brand-orange-2: #d96c0f;
  --brand-gray: #7c7c7c;

  --accent: #EC7A1E;
  --accent-soft: rgba(236, 122, 30, 0.10);

  --font-sans: "Geist", "Söhne", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Geist", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", ui-monospace, monospace;

  --container: 1340px;
  --pad-x: clamp(20px, 4vw, 56px);

  --radius: 6px;
  --radius-lg: 14px;
  --radius-card: 4px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }
html, body { background: var(--bg); color: var(--ink); }
body {
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, video, svg { display: block; max-width: 100%; }

::selection { background: var(--brand-navy); color: white; }

h1, h2, h3, h4, h5 { font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; color: var(--ink); font-family: var(--font-display); }

.mono { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--brand-navy); font-weight: 600;
}
.eyebrow .pip { width: 18px; height: 2px; background: var(--brand-orange); }

.shell { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }

/* ─── Navigation ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--pad-x);
  transition: background .25s var(--ease), box-shadow .3s, border-color .3s;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid transparent;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,0.96); }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; letter-spacing: -0.015em; font-size: 17px;
  color: var(--brand-navy);
}
.nav-logo .mark {
  width: 34px; height: 24px;
  background-image: url("assets/globalscan-mark.png");
  background-size: contain; background-repeat: no-repeat; background-position: center;
}
.nav-logo .scan { color: var(--brand-orange); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 14px; color: var(--ink-2); transition: color .2s;
  font-weight: 450; position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--brand-orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover { color: var(--brand-navy); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 4px;
  background: var(--brand-navy); color: white; font-size: 14px; font-weight: 500;
  white-space: nowrap;
  transition: background .25s;
}
.nav-cta:hover { background: var(--brand-navy-2); }

@media (max-width: 900px) { .nav-links { display: none; } }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 4px;
  font-size: 14px; font-weight: 500;
  white-space: nowrap;
  transition: background .25s, color .25s, border-color .25s, transform .25s var(--ease);
}
.btn-primary { background: var(--brand-navy); color: white; }
.btn-primary:hover { background: var(--brand-navy-2); }
.btn-accent { background: var(--brand-orange); color: white; }
.btn-accent:hover { background: var(--brand-orange-2); }
.btn-ghost { background: transparent; color: var(--brand-navy); border: 1px solid var(--brand-navy); }
.btn-ghost:hover { background: var(--brand-navy); color: white; }
.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brand-navy); font-weight: 500; font-size: 14px;
  border-bottom: 1px solid var(--brand-orange);
  padding-bottom: 2px;
  transition: gap .25s var(--ease);
}
.btn-link:hover { gap: 12px; }

/* ─── HERO BANNER ─── */
.hero {
  position: relative;
  min-height: 92vh;
  padding-top: 78px;
  overflow: hidden;
  background: var(--surface-deep);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(80% 60% at 80% 20%, rgba(236, 122, 30, 0.22) 0%, transparent 60%),
    radial-gradient(70% 70% at 0% 100%, rgba(42, 79, 142, 0.65) 0%, transparent 65%),
    linear-gradient(180deg, #2a4f8e 0%, #1f3f7a 50%, #16305f 100%);
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.5; mix-blend-mode: overlay;
}

.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 5vw, 80px);
  padding: clamp(60px, 8vw, 110px) clamp(20px, 7vw, 100px) clamp(50px, 6vw, 80px);
  align-items: start;
  color: white;
}
.hero-left { display: flex; flex-direction: column; gap: 30px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); font-weight: 500;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-orange); box-shadow: 0 0 0 4px rgba(236,122,30,0.2); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse {
  0%,100%{box-shadow:0 0 0 4px rgba(236,122,30,0.2);}
  50%{box-shadow:0 0 0 9px rgba(236,122,30,0);}
}
.hero-headline {
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.02; letter-spacing: -0.03em;
  font-weight: 500; color: white;
}
.hero-headline .em { color: var(--brand-orange); }
.hero-sub {
  font-size: clamp(16px, 1.2vw, 19px);
  color: rgba(255,255,255,0.82);
  max-width: 560px; line-height: 1.55;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.hero-ctas .btn-primary { background: var(--brand-orange); }
.hero-ctas .btn-primary:hover { background: var(--brand-orange-2); }
.hero-ctas .btn-ghost { color: white; border-color: rgba(255,255,255,0.4); }
.hero-ctas .btn-ghost:hover { background: white; color: var(--brand-navy); border-color: white; }

.hero-stats {
  display: flex; gap: clamp(20px, 4vw, 56px);
  margin-top: 12px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat { display: flex; align-items: flex-start; gap: 10px; }
.hero-stat .stat-icon { color: rgba(255,255,255,0.55); flex-shrink: 0; margin-top: 4px; }
.hero-stat .k { font-size: clamp(22px, 2vw, 30px); font-weight: 500; letter-spacing: -0.02em; color: white; font-variant-numeric: tabular-nums; }
.hero-stat .l { font-family: var(--font-mono); font-size: 10.5px; color: rgba(255,255,255,0.6); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: flex-start; }
.hero-visual .vert-wrap {
  position: relative;
  width: 78%; max-width: 380px;
  aspect-ratio: 9/16;
  border-radius: 8px;
  overflow: hidden;
  background: #0a1530;
  box-shadow: 0 50px 100px -30px rgba(0,0,0,0.6), 0 20px 40px -10px rgba(0,0,0,0.3);
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform .8s var(--ease);
}
.hero-visual .vert-wrap:hover { transform: perspective(1200px) rotateY(-3deg) rotateX(1deg); }

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-content {
    grid-template-columns: 1fr;
    padding-top: clamp(40px, 8vw, 80px);
    padding-bottom: clamp(48px, 8vw, 80px);
    padding-left: clamp(20px, 6vw, 64px);
    padding-right: clamp(20px, 6vw, 64px);
    align-items: stretch;
  }
  .hero-visual {
    display: flex; justify-content: center; align-items: center;
    width: 100%;
    max-width: 360px;
    margin: 8px auto 0;
  }
  .hero-visual .vert-wrap {
    transform: none;
    width: 100%;
    max-width: 320px;
  }
  .hero-visual.reveal { opacity: 1; transform: none; }
}

/* ─── Section base ─── */
.section { padding: clamp(70px, 9vw, 130px) 0; position: relative; }
.section.alt { background: var(--bg-2); }
.section.dark { background: var(--surface-deep); color: white; }
.section.dark h2, .section.dark .lead { color: white; }
.section.dark .eyebrow { color: white; }

.section-head {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px;
  align-items: end; padding-bottom: 48px;
}
.section-head h2 { font-size: clamp(34px, 4.2vw, 56px); letter-spacing: -0.025em; font-weight: 500; line-height: 1.05; }
.section-head .lead { color: var(--ink-3); font-size: 16px; max-width: 460px; }
.section.dark .section-head .lead { color: rgba(255,255,255,0.7); }

@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 22px; padding-bottom: 32px; }
}

/* ─── SERVICES (card grid + modal) ─── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .25s;
  cursor: pointer; text-align: left;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -20px rgba(8,42,94,0.25); border-color: transparent; }
.svc-card:hover .svc-card-img .badge { background: var(--brand-orange); color: white; }

.svc-card-img {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--surface-deep);
  overflow: hidden;
}
.svc-card-img .svc-num-badge {
  position: absolute; left: 18px; top: 16px;
  display: flex; align-items: baseline; gap: 8px;
  color: white; z-index: 2;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(0,0,0,0.3); backdrop-filter: blur(6px);
  padding: 6px 10px 6px 8px; border-radius: 3px;
}
.svc-card-img .svc-num-badge .n { font-family: var(--font-display); font-size: 18px; letter-spacing: -0.02em; line-height: 1; color: var(--brand-orange); font-weight: 500; }
.svc-card-img .badge {
  position: absolute; left: 18px; bottom: 16px;
  padding: 6px 10px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(255,255,255,0.16); color: white;
  backdrop-filter: blur(8px);
  transition: background .25s, color .25s;
  z-index: 2;
}
.svc-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc-card-body h3 { font-size: 22px; line-height: 1.15; font-weight: 500; }
.svc-card-body p { color: var(--ink-3); font-size: 14.5px; line-height: 1.55; margin: 0; }

@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

/* ─── Modal (service detail) ─── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(8,16,32,0.6);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: white; color: var(--ink);
  width: 100%; max-width: 1100px; max-height: 92vh;
  border-radius: 12px; overflow: hidden;
  transform: translateY(20px); transition: transform .4s var(--ease);
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.4);
}
.modal-backdrop.open .modal { transform: none; }
.modal-vid { background: var(--brand-navy); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 28px; }
.modal-vid .vert-wrap { width: 100%; max-width: 280px; aspect-ratio: 9/16; border-radius: 8px; overflow: hidden; background: #0a1530; box-shadow: 0 30px 60px -10px rgba(0,0,0,0.5); }

.modal-video-only { max-width: 460px; background: var(--brand-navy); }
.modal-video-only .modal-vid { padding: 36px; }
.modal-video-only .modal-vid .vert-wrap { max-width: 360px; }
.modal-video-only .modal-close { background: rgba(255,255,255,0.9); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.95); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  z-index: 2;
}
.modal-close:hover { background: white; }

@media (max-width: 820px) {
  .modal { max-height: 92vh; overflow-y: auto; }
  .modal-vid { padding: 24px; }
  .modal-vid .vert-wrap { max-width: 200px; }
}

/* ─── Vertical video ─── */
.video-vert { position: relative; width: 100%; height: 100%; background: linear-gradient(180deg, #0e2253 0%, #061539 100%); overflow: hidden; }
.video-vert .rec { position: absolute; top: 12px; left: 12px; z-index: 3; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.9); display: flex; align-items: center; gap: 6px; }
.video-vert .rec .dot { width: 6px; height: 6px; border-radius: 50%; background: #ff3b3b; box-shadow: 0 0 0 2px rgba(255,59,59,0.2); animation: pulse 1.8s ease-in-out infinite; }
.video-vert .meta { position: absolute; top: 12px; right: 12px; z-index: 3; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.video-vert video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-vert .play-ov {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(8,18,42,0.38); z-index: 4; cursor: pointer; border: 0;
}
.video-vert .play-ov .play-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.5);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
}

/* ─── Photo (real image + branded overlay + label) ─── */
.img-photo {
  width: 100%; height: 100%; position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2a4f8e 0%, #1f3f7a 100%);
}
.img-photo > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .8s var(--ease);
}
.svc-card:hover .img-photo > img { transform: scale(1.05); }
.img-photo .ov { position: absolute; inset: 0; }
.img-photo .ov.subtle { background: linear-gradient(180deg, transparent 55%, rgba(8, 28, 60, 0.7) 100%); }
.img-photo .ov.brand { background: linear-gradient(135deg, rgba(8, 42, 94, 0.6) 0%, rgba(8, 42, 94, 0.3) 50%, rgba(236, 122, 30, 0.25) 100%); }
.img-photo .ov.deep { background: linear-gradient(180deg, rgba(8, 42, 94, 0.5) 0%, rgba(8, 28, 60, 0.85) 100%); }

/* ─── Stats (Why GlobalScan) ─── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.1); border-radius: 8px; overflow: hidden; }
.stat {
  background: var(--surface-deep);
  padding: 32px 26px 26px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 200px;
  justify-content: space-between;
  position: relative;
}
.stat-top { display: flex; justify-content: space-between; align-items: flex-start; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.stat-icon {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
}
.stat-icon svg { width: 14px; height: 14px; }
.stat.highlight .stat-icon { border-color: var(--brand-orange); color: var(--brand-orange); background: rgba(236,122,30,0.1); }
.stat-val { font-size: clamp(36px, 4vw, 56px); font-weight: 500; letter-spacing: -0.03em; line-height: 1; color: white; font-variant-numeric: tabular-nums; }
.stat-val .u { font-size: 0.42em; font-weight: 400; color: rgba(255,255,255,0.6); margin-left: 4px; letter-spacing: 0; }
.stat-val .pre { font-size: 0.5em; font-weight: 400; color: var(--brand-orange); margin-right: 4px; letter-spacing: 0; }
.stat.highlight .stat-val { color: var(--brand-orange); }
.stat-lbl { color: rgba(255,255,255,0.7); font-size: 13.5px; letter-spacing: -0.005em; max-width: 220px; }
.stat.wide { grid-column: span 2; }

@media (max-width: 1080px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .stat.wide { grid-column: span 2; } }
@media (max-width: 540px) { .stats-grid { grid-template-columns: 1fr; } .stat.wide { grid-column: span 1; } }

/* ─── CTA band + contact form ─── */
.cta-band { background: white; color: var(--ink); position: relative; overflow: hidden; padding: clamp(72px, 9vw, 120px) 0; }
.cta-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 70px); align-items: start; }
.cta-band h2 { font-size: clamp(36px, 4.6vw, 60px); letter-spacing: -0.025em; font-weight: 500; line-height: 1.05; }
.cta-band .left p { color: var(--ink-3); font-size: 16.5px; max-width: 460px; margin-top: 18px; }
.cta-contact-links { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.cta-contact-links a { display: inline-flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 500; color: var(--brand-navy); }
.cta-contact-links a:hover { color: var(--brand-orange); }
.cta-contact-links svg { width: 18px; height: 18px; color: var(--brand-orange); flex-shrink: 0; }

.contact-form { display: flex; flex-direction: column; gap: 14px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; padding: clamp(22px, 3vw, 34px); }
.contact-form label { font-size: 13px; font-weight: 600; color: var(--ink-2); display: flex; flex-direction: column; gap: 6px; }
.contact-form input, .contact-form textarea {
  font: inherit; font-size: 15px; color: var(--ink);
  background: white; border: 1px solid var(--line); border-radius: 6px;
  padding: 11px 13px; outline: none; width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--brand-navy); box-shadow: 0 0 0 3px rgba(8,42,94,0.08); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form button { justify-content: center; }
.form-note { font-size: 12.5px; color: var(--ink-4); }

@media (max-width: 900px) {
  .cta-inner { grid-template-columns: 1fr; }
  .contact-form .row2 { grid-template-columns: 1fr; }
}

/* ─── Footer ─── */
.footer { background: #16305f; color: rgba(255,255,255,0.72); padding: 72px 0 26px; }
.footer h5 { font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 18px; font-weight: 600; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 48px; }
.footer-logo { background: white; display: inline-block; padding: 16px 18px; border-radius: 6px; }
.footer-logo img { width: 200px; height: auto; display: block; }
.footer-tag { margin-top: 18px; font-size: 14px; max-width: 360px; line-height: 1.55; color: rgba(255,255,255,0.6); }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color .2s; }
.footer a:hover { color: white; }
.footer li { font-size: 14px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; }
.footer-bottom .geo { display: flex; align-items: center; gap: 8px; }
.footer-bottom .geo .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-orange); }
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ─── WhatsApp FAB ─── */
.wa-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 40px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
  color: white;
  transition: transform .3s var(--ease), background .25s;
}
.wa-fab:hover { transform: translateY(-3px); background: #20bd5a; }
.wa-fab svg { width: 26px; height: 26px; }
.wa-fab .tooltip { position: absolute; right: 68px; top: 50%; transform: translateY(-50%) translateX(8px); background: var(--brand-navy); color: white; padding: 8px 14px; border-radius: 6px; font-size: 12px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s, transform .25s var(--ease); }
.wa-fab:hover .tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

@media (max-width: 600px) { .wa-fab { right: 14px; bottom: 14px; width: 52px; height: 52px; } }

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 880px; }
.faq-item {
  background: white; border: 1px solid var(--line); border-radius: 8px;
  padding: 0 22px;
  transition: box-shadow .25s, border-color .25s;
}
.faq-item[open] { border-color: var(--brand-navy); box-shadow: 0 12px 30px -18px rgba(8,42,94,0.3); }
.faq-item summary {
  cursor: pointer; list-style: none;
  font-weight: 500; font-size: 16.5px; color: var(--ink);
  padding: 18px 30px 18px 0; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 22px; font-weight: 300; color: var(--brand-orange);
  transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { color: var(--ink-3); font-size: 15px; line-height: 1.6; padding: 0 0 20px; margin: 0; }

/* ─── Páginas de servicio ─── */
.svc-hero { background: var(--surface-deep); color: white; padding: 120px 0 70px; position: relative; overflow: hidden; }
.svc-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(80% 60% at 80% 20%, rgba(236,122,30,0.18) 0%, transparent 60%); }
.svc-hero .shell { position: relative; }
.crumbs { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 26px; display:flex; gap:8px; align-items:center; }
.crumbs a { color: rgba(255,255,255,0.85); }
.crumbs a:hover { color: var(--brand-orange); }
.svc-hero-grid { display:grid; grid-template-columns: 1.3fr 0.7fr; gap: clamp(28px,5vw,70px); align-items:center; }
.svc-hero h1 { color: white; font-size: clamp(34px,4.6vw,58px); letter-spacing:-0.03em; margin-top: 16px; line-height:1.05; }
.svc-intro { color: rgba(255,255,255,0.82); font-size: clamp(16px,1.2vw,18.5px); margin-top: 18px; max-width: 560px; line-height:1.6; }
.svc-hero-media { display:flex; justify-content:center; }
@media (max-width: 900px) { .svc-hero-grid { grid-template-columns: 1fr; } }
.svc-detail-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.svc-detail-card { background:white; border:1px solid var(--line); border-radius:8px; padding: 26px 28px; }
.svc-detail-card h3 { font-size: 19px; margin-bottom: 10px; }
.svc-detail-card h3::before { content:"— "; color: var(--brand-orange); }
.svc-detail-card p { color: var(--ink-3); font-size: 14.5px; line-height: 1.6; }
@media (max-width: 760px) { .svc-detail-grid { grid-template-columns: 1fr; } }

/* ─── Blog ─── */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { font-size: clamp(24px,2.6vw,32px); margin: 44px 0 16px; }
.article-body h3 { font-size: 20px; margin: 30px 0 12px; }
.article-body p { color: var(--ink-2); font-size: 16.5px; line-height: 1.75; margin-bottom: 18px; }
.article-body ul { margin: 0 0 18px 22px; color: var(--ink-2); font-size: 16.5px; line-height: 1.75; }
.article-body li { margin-bottom: 8px; }
.article-meta { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 18px; }
.blog-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:18px; }
.blog-card { background:white; border:1px solid var(--line); border-radius:8px; padding:26px 28px; display:flex; flex-direction:column; gap:12px; transition: transform .3s var(--ease), box-shadow .3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -20px rgba(8,42,94,0.25); }
.blog-card .cat { font-family: var(--font-mono); font-size: 10.5px; letter-spacing:.08em; text-transform:uppercase; color: var(--brand-orange); }
.blog-card h3 { font-size: 20px; line-height: 1.2; }
.blog-card p { color: var(--ink-3); font-size: 14.5px; line-height: 1.6; flex:1; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

/* ─── Reveal animations ─── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .06s; }
.reveal.d2 { transition-delay: .12s; }
.reveal.d3 { transition-delay: .18s; }
.reveal.d4 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
