/* ══════════════════════════════════════════
   LUCIANO SANTOS ACCOUNTING FIRM
   main.css — v20260525
   Shared stylesheet for all pages
══════════════════════════════════════════ */

/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:       #FFFFFF;
  --off-white:   #F5F5F3;
  --black:       #111111;
  --navy:        #0A1F3D;
  --navy-mid:    #1E3A5F;
  --gray-dark:   #4A4A4A;
  --gray-mid:    #888888;
  --gray-light:  #CCCCCC;
  --gray-line:   #E5E5E5;
  --gold:        #1E8544;
  --gold-light:  #27A354;
  --green-pale:  #EBF5EF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w:   1280px;
  --pad-h:   40px;
  --sec-v:   120px;
  --nav-h:   96px;

  --ease-out:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--font-body); color: var(--black); background: var(--white); overflow-x: hidden; }
img   { display: block; max-width: 100%; }
a     { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── LAYOUT ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-h); }
.section    { padding: var(--sec-v) 0; }
.section-sm { padding: 72px 0; }
.s-dark     { background: var(--navy); color: var(--white); }
.s-gray     { background: var(--off-white); }

/* ── TYPOGRAPHY ── */
.label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }

.display {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  line-height: 1.06; letter-spacing: -0.02em;
}
.h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.12; letter-spacing: -0.01em;
}
.h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.0625rem; line-height: 1.45; }
.body-lg { font-size: 1.125rem; line-height: 1.75; color: var(--gray-dark); font-weight: 300; }
.body    { font-size: 0.9375rem; line-height: 1.75; color: var(--gray-dark); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  transition: all 0.22s var(--ease-out); cursor: pointer;
}
.btn-navy   { background: var(--navy);  color: var(--white); border: 1.5px solid var(--navy); }
.btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-ghost-w { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.45); }
.btn-ghost-w:hover { background: rgba(255,255,255,0.08); border-color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }
.btn-gold   { background: var(--gold);  color: var(--white); border: 1.5px solid var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ── REVEAL ── */
.rv { opacity: 0; transform: translateY(22px); transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out); }
.rv.on { opacity: 1; transform: none; }
.rv[data-split] { opacity: 1; transform: none; }
.d1 { transition-delay: 0.10s; } .d2 { transition-delay: 0.20s; }
.d3 { transition-delay: 0.30s; } .d4 { transition-delay: 0.40s; }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-line);
  transition: box-shadow 0.35s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.09); border-bottom-color: transparent; }

.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 100%;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 82px; width: auto; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy); transition: color 0.2s;
  position: relative; padding-bottom: 2px;
  display: flex; align-items: center; gap: 5px;
}
.nav-links > li > a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.22s var(--ease-out);
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--gold); }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { transform: scaleX(1); }

/* Nav caret */
.nav-caret {
  width: 10px; height: 10px; flex-shrink: 0;
  transition: transform 0.22s var(--ease-out);
}
.nav-has-dropdown:hover .nav-caret { transform: rotate(180deg); }

/* Dropdown — wrapper transparente que cubre el gap entre trigger y panel */
.nav-dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(6px);
  padding-top: 16px; /* puente hover: cubre el espacio sin gap visual */
  min-width: 600px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s var(--ease-out) 0.08s, transform 0.22s var(--ease-out) 0.08s;
}
.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s; /* abre sin delay, cierra con 80ms de gracia */
}
/* Panel visual dentro del wrapper */
.nav-dropdown-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: var(--white);
  border: 1px solid var(--gray-line);
  padding: 12px;
  box-shadow: 0 12px 48px rgba(10,31,61,0.13);
}
.nav-dd-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 14px;
  transition: background 0.18s; border-radius: 2px;
}
.nav-dd-item:hover { background: var(--off-white); }
.nav-dd-ico { font-size: 1.125rem; flex-shrink: 0; line-height: 1; margin-top: 1px; }
.nav-dd-text { display: flex; flex-direction: column; gap: 2px; }
.nav-dd-label { font-size: 0.8125rem; font-weight: 600; color: var(--navy); line-height: 1.3; transition: color 0.18s; }
.nav-dd-desc  { font-size: 0.6875rem; color: var(--gray-mid); line-height: 1.4; }
.nav-dd-item:hover .nav-dd-label { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: background 0.3s; }

/* Drawer */
.nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 998; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-drawer {
  position: fixed; top: 0; right: -100%; width: min(380px,100%); height: 100vh;
  background: var(--white); z-index: 999;
  padding: calc(var(--nav-h) + 20px) 0 36px;
  transition: right 0.35s var(--ease-in-out);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
  overflow-y: auto;
}
.nav-drawer.open { right: 0; }

.drawer-section { border-bottom: 1px solid var(--gray-line); }
.drawer-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 36px;
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 400;
  color: var(--navy); width: 100%; background: none; border: none; cursor: pointer;
  text-align: left; transition: color 0.2s;
}
.drawer-link:hover { color: var(--gold); }
.drawer-caret { width: 14px; height: 14px; transition: transform 0.25s; }
.drawer-section.open .drawer-caret { transform: rotate(180deg); }
.drawer-sub {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s var(--ease-out);
  background: var(--off-white);
}
.drawer-section.open .drawer-sub { max-height: 600px; }
.drawer-sub-link {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 36px 11px 48px;
  font-size: 0.875rem; color: var(--gray-dark);
  transition: color 0.2s;
}
.drawer-sub-link:hover { color: var(--gold); }
.drawer-sub-ico { font-size: 0.9375rem; flex-shrink: 0; }
.drawer-plain {
  display: block; padding: 16px 36px;
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 400;
  color: var(--navy); border-bottom: 1px solid var(--gray-line);
  transition: color 0.2s;
}
.drawer-plain:hover { color: var(--gold); }
.drawer-cta { padding: 28px 36px 0; }

/* ══════════════════════════════════════════
   HERO (homepage)
══════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  padding-bottom: 88px; background: #060F20; overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.38;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(6,15,32,0.2)   0%,
    rgba(6,15,32,0.45)  40%,
    rgba(6,15,32,0.82) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 860px; }
.hero-label {
  display: flex; align-items: center; gap: 16px;
  font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
}
.hero-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.hero-hl {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.04; color: var(--white);
  letter-spacing: -0.025em; margin-bottom: 28px;
}
.hero-hl em { font-style: italic; color: rgba(255,255,255,0.65); }
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.125rem); line-height: 1.75;
  color: rgba(255,255,255,0.65); max-width: 540px;
  margin-bottom: 48px; font-weight: 300;
}
.hero-acts { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 36px; right: var(--pad-h); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.35); font-size: 0.5625rem;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollDrop 1.6s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(1)   translateY(0);   opacity: 1; }
  100% { transform: scaleY(0.3) translateY(18px); opacity: 0; }
}

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 156px 0 88px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(30,133,68,0.16) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: rgba(255,255,255,0.07);
}
.page-hero-content { position: relative; z-index: 1; }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 24px; flex-wrap: wrap;
}
.breadcrumb a { font-size: 0.75rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); font-size: 0.75rem; }
.breadcrumb-cur { font-size: 0.75rem; color: rgba(255,255,255,0.65); }

.page-hero-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.page-hero-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }

.page-hero-title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2.25rem, 5vw, 4rem);
  color: var(--white); line-height: 1.08;
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.page-hero-title em { font-style: italic; color: rgba(255,255,255,0.55); }
.page-hero-desc {
  font-size: 1.0625rem; color: rgba(255,255,255,0.58);
  max-width: 560px; line-height: 1.78; font-weight: 300;
}

/* ══════════════════════════════════════════
   TICKER
══════════════════════════════════════════ */
.ticker { background: var(--gold); padding: 13px 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: runTicker 28s linear infinite; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 28px; padding: 0 28px;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--white);
}
.tick-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.5); flex-shrink: 0; }
@keyframes runTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════
   STATS
══════════════════════════════════════════ */
.stats-bar {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat {
  padding: 52px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat:last-child { border-right: none; }
.stat-n {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  color: var(--white); line-height: 1; margin-bottom: 10px;
}
.stat-l {
  font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ══════════════════════════════════════════
   SERVICES — homepage grid
══════════════════════════════════════════ */
.svc-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 64px;
}
.svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--gray-line);
  border-left: 1px solid var(--gray-line);
}
.svc-card {
  padding: 40px 34px;
  border-right: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
  transition: background 0.2s; position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.svc-card:hover { background: var(--off-white); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-idx {
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 300;
  color: var(--gray-light); letter-spacing: 0.08em; margin-bottom: 18px;
}
.svc-ico { font-size: 1.625rem; margin-bottom: 14px; display: block; }
.svc-title {
  font-weight: 600; font-size: 0.9375rem; color: var(--navy);
  margin-bottom: 10px; letter-spacing: 0.01em;
}
.svc-desc { font-size: 0.875rem; line-height: 1.7; color: var(--gray-dark); }
.svc-cta {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--gold);
  transition: gap 0.2s;
}
.svc-cta:hover { gap: 10px; }

/* Services — premium list */
.svc-list { margin-top: 64px; }
.svc-row {
  display: grid;
  grid-template-columns: 52px 40px 1fr 40px;
  align-items: center;
  gap: 0 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--gray-line);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.25s var(--ease-out);
  cursor: pointer;
}
.svc-row:first-child { border-top: 1px solid var(--gray-line); }
.svc-row:hover { padding-left: 14px; }
.svc-r-num {
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em;
  color: var(--gray-mid);
}
.svc-r-ico { width: 28px; height: 28px; color: var(--gold); flex-shrink: 0; }
.svc-r-ico svg { width: 100%; height: 100%; display: block; }
.svc-r-title {
  font-family: var(--font-display); font-size: 1.3125rem; font-weight: 400;
  color: var(--navy); transition: color 0.2s; line-height: 1.2; margin-bottom: 5px;
}
.svc-row:hover .svc-r-title { color: var(--gold); }
.svc-r-desc { font-size: 0.875rem; color: var(--gray-dark); line-height: 1.65; }
.svc-r-arr { color: var(--gray-mid); transition: transform 0.25s var(--ease-out), color 0.2s; display: flex; justify-content: flex-end; }
.svc-r-arr svg { width: 22px; height: 22px; }
.svc-row:hover .svc-r-arr { transform: translateX(5px); color: var(--gold); }

/* ══════════════════════════════════════════
   SERVICE DETAIL PAGE
══════════════════════════════════════════ */
.svc-detail-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.svc-detail-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 2px;
}
.svc-checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.svc-check-item { display: flex; align-items: flex-start; gap: 14px; font-size: 0.9375rem; color: var(--gray-dark); line-height: 1.55; }
.svc-check-icon {
  width: 22px; height: 22px; min-width: 22px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.svc-check-icon svg { width: 11px; height: 11px; display: block; }

/* Who needs it */
.who-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.who-card {
  border: 1px solid var(--gray-line); padding: 32px 28px;
  transition: border-color 0.22s, background 0.22s;
}
.who-card:hover { border-color: var(--gold); background: var(--off-white); }
.who-ico { font-size: 1.75rem; margin-bottom: 16px; display: block; }
.who-title { font-weight: 700; font-size: 0.875rem; color: var(--navy); margin-bottom: 8px; }
.who-desc { font-size: 0.8125rem; color: var(--gray-dark); line-height: 1.65; }

/* Related services */
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.related-card {
  border: 1px solid var(--gray-line); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.22s, background 0.22s;
  text-decoration: none; color: inherit;
}
.related-card:hover { border-color: var(--gold); background: var(--off-white); }
.related-ico { font-size: 1.375rem; }
.related-title { font-weight: 600; font-size: 0.9375rem; color: var(--navy); }
.related-desc { font-size: 0.8125rem; color: var(--gray-dark); line-height: 1.6; flex: 1; }
.related-arrow { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 6px; transition: gap 0.2s; margin-top: 4px; }
.related-card:hover .related-arrow { gap: 10px; }

/* ══════════════════════════════════════════
   ABOUT (homepage section + nosotros page)
══════════════════════════════════════════ */
.about-wrap { display: grid; grid-template-columns: 1.15fr 0.85fr; min-height: 660px; }
.about-img-col { position: relative; overflow: hidden; }
.about-img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; bottom: 48px; right: -1px;
  background: var(--gold); color: var(--white);
  padding: 22px 28px; text-align: center;
}
.about-badge-n {
  font-family: var(--font-display); font-size: 2.75rem;
  font-weight: 300; line-height: 1; display: block;
}
.about-badge-l {
  font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0.85; margin-top: 4px;
}
.about-txt {
  padding: 88px 72px; background: var(--off-white);
  display: flex; flex-direction: column; justify-content: center;
}
.about-quote {
  font-family: var(--font-display); font-size: 1.25rem;
  font-style: italic; font-weight: 300; color: var(--navy);
  line-height: 1.65; padding: 24px 0;
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
  margin: 24px 0 28px;
}

/* Nosotros page — timeline */
.timeline { position: relative; padding-left: 32px; margin-top: 48px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px; background: var(--gray-line); }
.tl-item { position: relative; margin-bottom: 44px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  position: absolute; left: -36px; top: 6px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--gold);
}
.tl-year { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.tl-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; color: var(--navy); margin-bottom: 8px; }
.tl-desc { font-size: 0.875rem; color: var(--gray-dark); line-height: 1.7; }

/* Team grid */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; margin-top: 56px; }
.team-card { text-align: center; }
.team-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; margin-bottom: 16px; filter: grayscale(20%); transition: filter 0.3s; }
.team-card:hover .team-photo { filter: grayscale(0%); }
.team-name { font-family: var(--font-display); font-size: 1.1875rem; font-weight: 400; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

/* Credentials strip */
.creds-strip { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.cred-tag {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px; border: 1px solid var(--gray-line);
  font-size: 0.75rem; font-weight: 600; color: var(--navy);
  transition: border-color 0.2s, background 0.2s;
}
.cred-tag:hover { border-color: var(--gold); background: var(--off-white); }
.cred-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ══════════════════════════════════════════
   FULL-WIDTH IMAGE BREAK
══════════════════════════════════════════ */
.img-break { position: relative; height: 580px; overflow: hidden; }
.img-break img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.img-break-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,31,61,0.94) 0%, rgba(10,31,61,0.72) 45%, rgba(10,31,61,0.12) 100%);
  display: flex; align-items: center;
}
.img-break-content { padding: 0 var(--pad-h); max-width: 680px; }
.img-break-deco {
  font-family: var(--font-display); font-size: 8rem; font-weight: 300;
  color: #C9A84C; line-height: 0.65; margin-bottom: 12px; display: block; opacity: 0.75;
}
.img-break-hl {
  font-family: var(--font-display); font-weight: 300; font-style: italic;
  font-size: clamp(1.75rem, 3vw, 2.875rem);
  color: var(--white); line-height: 1.3; margin-bottom: 22px;
}
.img-break-sub { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 36px; max-width: 480px; }

/* ══════════════════════════════════════════
   MVV
══════════════════════════════════════════ */
.mvv-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 24px; margin-top: 64px; max-width: 900px; margin-left: auto; margin-right: auto;
}
.mvv-card {
  background: var(--off-white); padding: 56px 48px;
  border: 1px solid var(--gray-line); border-radius: 4px;
}
.mvv-ico { font-size: 2rem; margin-bottom: 24px; display: block; }
.mvv-title {
  font-family: var(--font-display); font-size: 1.625rem;
  font-weight: 400; color: var(--navy); margin-bottom: 16px;
}
.mvv-body { font-size: 0.9375rem; line-height: 1.75; color: var(--gray-dark); }
.mvv-ico-svg { width: 40px; height: 40px; color: var(--gold); margin-bottom: 20px; }
.mvv-ico-svg svg { width: 100%; height: 100%; display: block; }

/* ══════════════════════════════════════════
   VALUES
══════════════════════════════════════════ */
.vals-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 20px; margin-top: 64px;
}
.val-card {
  background: var(--white); border: 1px solid var(--gray-line);
  border-radius: 14px; padding: 40px 28px; text-align: center;
  box-shadow: 0 2px 12px rgba(10,31,61,0.05);
  transition: box-shadow 0.25s, transform 0.25s;
}
.val-card:hover { box-shadow: 0 8px 28px rgba(10,31,61,0.11); transform: translateY(-4px); }
.val-n {
  font-family: var(--font-display); font-size: 2.75rem;
  font-weight: 300; color: var(--navy); opacity: 0.12; line-height: 1; margin-bottom: 16px;
}
.val-name { font-weight: 700; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 10px; }
.val-desc { font-size: 0.8125rem; line-height: 1.65; color: #6a7a8a; }

/* ══════════════════════════════════════════
   PROCESS
══════════════════════════════════════════ */
.proc-head { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; margin-bottom: 64px; }
.proc-list { display: flex; flex-direction: column; }
.proc-step {
  display: grid; grid-template-columns: 80px 1fr; gap: 36px;
  padding: 48px 0; border-bottom: 1px solid var(--gray-line); align-items: start;
}
.proc-step:first-child { border-top: 1px solid var(--gray-line); }
.proc-n {
  font-family: var(--font-display); font-size: 3.25rem;
  font-weight: 300; color: rgba(10,31,61,0.1); line-height: 1; padding-top: 2px;
}
.proc-title { font-weight: 600; font-size: 1.0625rem; color: var(--navy); margin-bottom: 10px; }
.proc-desc { font-size: 0.9375rem; line-height: 1.75; color: var(--gray-dark); }

/* ══════════════════════════════════════════
   CLIENTS
══════════════════════════════════════════ */
.clients-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  border-top: 1px solid var(--gray-line);
  border-left: 1px solid var(--gray-line);
  margin-top: 64px;
}
.client-card {
  padding: 32px 24px; border-right: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
  display: flex; align-items: center; justify-content: center;
  min-height: 110px; transition: background 0.25s;
}
.client-card:hover { background: var(--off-white); }
.client-logo {
  max-height: 80px; max-width: 160px; width: auto; height: auto;
  object-fit: contain; display: block;
  mix-blend-mode: multiply;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.3s var(--ease-out);
}
.client-card:hover .client-logo { filter: grayscale(0%) opacity(1); }
/* Logos blancos sobre transparente: invert para que sean visibles en fondo blanco */
.client-logo[src*="rannik"],
.client-logo[src*="belum"],
.client-logo[src*="evanns"] {
  mix-blend-mode: normal;
  filter: invert(1) opacity(0.55);
}
.client-logo[src*="rannik"] { max-height: 110px; max-width: 200px; }
.client-logo[src*="evanns"] { max-height: 90px;  max-width: 170px; }
.client-card:hover .client-logo[src*="rannik"],
.client-card:hover .client-logo[src*="belum"],
.client-card:hover .client-logo[src*="evanns"] { filter: invert(1) opacity(1); }

/* Helados Maffio: logo recoloreado a rosa, se muestra en color directo */
.client-logo[src*="helados-maffio"] {
  mix-blend-mode: normal;
  filter: grayscale(100%) opacity(0.55);
  max-height: 112px; max-width: 200px;
}
.client-card:hover .client-logo[src*="helados-maffio"] { filter: grayscale(0%) opacity(1); }
.client-logo[src*="kingagroot"], .client-logo[src*="royal-prestige"] { max-height: 130px; max-width: 220px; }
.client-logo[src*="belum"] { max-height: 80px; max-width: 150px; }

/* ══════════════════════════════════════════
   SOFTWARE STRIP
══════════════════════════════════════════ */
.sw-strip {
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
  padding: 56px 0; background: var(--white);
}
.sw-inner { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.sw-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #aab4be; }
.sw-logos { display: flex; align-items: center; gap: 44px; flex-wrap: nowrap; justify-content: center; overflow: hidden; }
.sw-logo {
  max-height: 72px; max-width: 160px;
  width: auto; height: auto; object-fit: contain; display: block; flex-shrink: 0;
  filter: grayscale(100%) opacity(0.45);
  transition: filter 0.3s;
}
.sw-logo:hover { filter: grayscale(0%) opacity(1); }

/* ══════════════════════════════════════════
   WHY US
══════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 64px; }
.why-item {
  padding: 40px 36px;
  border-left: 1px solid var(--gray-line);
  transition: background 0.2s;
}
.why-item:hover { background: var(--off-white); }
.why-item:first-child { border-left: none; }
.why-ico { width: 36px; height: 36px; color: var(--gold); margin-bottom: 20px; }
.why-ico svg { width: 100%; height: 100%; display: block; }
.why-title { font-family: var(--font-display); font-size: 1.1875rem; font-weight: 500; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.why-desc { font-size: 0.875rem; color: var(--gray-dark); line-height: 1.7; }

/* ══════════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════════ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-line); }
.faq-item:first-child { border-top: 1px solid var(--gray-line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 26px 0; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  color: var(--navy); text-align: left; transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-ico { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s var(--ease-out); }
.faq-item.open .faq-ico { transform: rotate(180deg); }
.faq-item.open .faq-q { color: var(--gold); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease-out); }
.faq-a p { padding-bottom: 24px; font-size: 0.9375rem; line-height: 1.8; color: var(--gray-dark); }
.faq-item.open .faq-a { max-height: 300px; }

/* ══════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════ */
.cta-band {
  background: var(--navy); padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(30,133,68,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 48px; flex-wrap: wrap;
}
.cta-band-text { flex: 1; min-width: 280px; }
.cta-band-tag {
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.cta-band-tag::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--gold); }
.cta-band-hl {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 12px;
}
.cta-band-hl em { font-style: italic; color: rgba(255,255,255,0.5); }
.cta-band-sub { font-size: 1rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.cta-band-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; flex-shrink: 0; }
.cta-band-note { font-size: 0.75rem; color: rgba(255,255,255,0.35); display: flex; align-items: center; gap: 6px; }
.cta-band-note::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; }
.contact-info { padding: 88px 64px 88px 0; display: flex; flex-direction: column; justify-content: center; }
.cd { display: flex; gap: 20px; margin-bottom: 32px; align-items: flex-start; }
.cd-icon-svg { width: 52px; height: 52px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--white); transition: background 0.22s; }
.cd-icon-svg svg { width: 22px; height: 22px; display: block; }
.cd:hover .cd-icon-svg { background: var(--gold); }
.cd-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.cd-val { font-size: 0.9375rem; color: var(--gray-dark); line-height: 1.6; }
.cd-val a:hover { color: var(--navy); }
.cf-wrap { background: var(--white); border: 1px solid var(--gray-line); border-radius: 20px; padding: 60px; box-shadow: 0 4px 32px rgba(10,31,61,0.08); }
.cf-title { font-family: var(--font-display); font-size: 1.875rem; font-weight: 300; color: var(--navy); margin-bottom: 36px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.flbl { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #6a7a8a; }
.finp, .fsel, .ftxt {
  background: var(--off-white); border: 1px solid var(--gray-line);
  color: var(--navy); font-family: var(--font-body); font-size: 0.9375rem;
  padding: 12px 16px; outline: none; transition: border-color 0.2s; width: 100%;
}
.finp::placeholder, .ftxt::placeholder { color: #aab4be; }
.finp:focus, .fsel:focus, .ftxt:focus { border-color: var(--gold); }
.fsel { appearance: none; cursor: pointer; }
.ftxt { resize: vertical; min-height: 96px; }
.f-msg { padding: 14px; font-size: 0.875rem; display: none; margin-bottom: 14px; }
.f-msg.ok { background: rgba(26,107,60,0.25); color: #1a6b3c; display: block; }
.f-msg.err { background: rgba(200,0,0,0.1); color: #c00; display: block; }

/* ══════════════════════════════════════════
   MAP
══════════════════════════════════════════ */
.map-section { position: relative; }
.map-label {
  position: absolute; top: 24px; left: 50%; transform: translateX(-50%);
  z-index: 10; background: var(--navy); color: var(--white);
  padding: 10px 22px; display: flex; align-items: center; gap: 10px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; white-space: nowrap;
  box-shadow: 0 4px 20px rgba(10,31,61,0.25);
}
.map-label svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--gold); }
.map-frame { width: 100%; height: 420px; border: none; display: block; filter: grayscale(20%) contrast(1.05); }

/* ══════════════════════════════════════════
   INSTAGRAM
══════════════════════════════════════════ */
.insta-wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; margin-bottom: 36px; }
.insta-handle { display: flex; align-items: center; gap: 16px; }
.insta-handle-ico { width: 48px; height: 48px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.insta-handle-ico svg { width: 22px; height: 22px; fill: white; display: block; }
.insta-handle-name { font-weight: 700; font-size: 1rem; color: var(--navy); }
.insta-handle-desc { font-size: 0.8125rem; color: var(--gray-mid); margin-top: 3px; }
.insta-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }
.insta-cell { position: relative; aspect-ratio: 1; overflow: hidden; display: block; }
.insta-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease-out); display: block; }
.insta-cell:hover img { transform: scale(1.06); }
.insta-ov { position: absolute; inset: 0; background: rgba(10,31,61,0.55); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.insta-cell:hover .insta-ov { opacity: 1; }
.insta-ov svg { fill: white; }

/* ══════════════════════════════════════════
   FOUNDER EDITORIAL
══════════════════════════════════════════ */
.fe-wrap { display: grid; grid-template-columns: 1fr 440px; min-height: 740px; background: var(--navy); }
.fe-content { padding: 96px 64px 96px 80px; display: flex; flex-direction: column; justify-content: center; }
.fe-content .label { color: var(--gold); margin-bottom: 24px; }
.fe-big-quote {
  font-family: var(--font-display); font-size: clamp(1.375rem, 2.4vw, 2rem);
  font-weight: 300; font-style: italic; color: var(--white); line-height: 1.5;
  margin-bottom: 36px; padding-left: 22px; border-left: 2px solid var(--gold);
}
.fe-name { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.625rem); font-weight: 400; color: var(--white); line-height: 1; margin-bottom: 8px; }
.fe-role { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; }
.fe-bio { font-size: 0.9375rem; line-height: 1.82; color: rgba(255,255,255,0.52); margin-bottom: 40px; }
.fe-creds-row { display: flex; align-items: center; margin-bottom: 44px; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); padding: 24px 0; }
.fe-cred { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.fe-cred-div { width: 1px; height: 44px; background: rgba(255,255,255,0.11); flex-shrink: 0; margin: 0 20px; }
.fe-cred-n { font-family: var(--font-display); font-size: 1.75rem; font-weight: 300; color: var(--white); line-height: 1; }
.fe-cred-l { font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.38); line-height: 1.4; }
.fe-photo-col { position: relative; overflow: hidden; }
.fe-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.fe-photo-gradient { position: absolute; inset: 0; background: linear-gradient(to right, var(--navy) 0%, rgba(10,31,61,0.15) 35%, transparent 60%); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background: #07101F; padding: 80px 0 40px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 36px;
}
.f-logo { height: 90px; width: auto; margin-bottom: 16px; object-fit: contain; display: block; filter: brightness(0) invert(1); }
.f-desc { font-size: 0.8125rem; line-height: 1.75; color: rgba(255,255,255,0.38); margin-bottom: 24px; }
.f-soc { display: flex; gap: 10px; }
.f-soc-a {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.f-soc-a:hover { border-color: var(--gold); color: var(--gold); }
.f-col-t { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.f-links { list-style: none; }
.f-links li { margin-bottom: 10px; }
.f-links a { font-size: 0.8125rem; color: rgba(255,255,255,0.38); transition: color 0.2s; }
.f-links a:hover { color: var(--gold); }
.f-ci { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.f-ci-ico { flex-shrink: 0; margin-top: 3px; width: 16px; height: 16px; color: var(--gold); }
.f-ci-ico svg { width: 100%; height: 100%; display: block; }
.f-ci-v { font-size: 0.8125rem; line-height: 1.55; color: rgba(255,255,255,0.38); }
.f-ci-v a:hover { color: var(--gold); }
.f-bot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.f-copy { font-size: 0.75rem; color: rgba(255,255,255,0.22); }
.f-legal { display: flex; gap: 22px; }
.f-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.22); transition: color 0.2s; }
.f-legal a:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 52px; height: 52px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 900; box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 26px; height: 26px; fill: white; }

/* ══════════════════════════════════════════
   BLOG
══════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; margin-top: 64px; }
.blog-card { display: flex; flex-direction: column; }
.blog-img-wrap { overflow: hidden; margin-bottom: 24px; aspect-ratio: 16/9; }
.blog-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s var(--ease-out); }
.blog-card:hover .blog-img { transform: scale(1.04); }
.blog-tag {
  font-size: 0.625rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block;
}
.blog-title {
  font-family: var(--font-display); font-size: 1.375rem; font-weight: 400;
  color: var(--navy); line-height: 1.3; margin-bottom: 12px;
  transition: color 0.2s;
}
.blog-card:hover .blog-title { color: var(--gold); }
.blog-excerpt { font-size: 0.875rem; color: var(--gray-dark); line-height: 1.75; flex: 1; margin-bottom: 20px; }
.blog-meta { font-size: 0.75rem; color: var(--gray-mid); display: flex; align-items: center; gap: 10px; }
.blog-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gray-light); }

/* Blog coming soon */
.blog-empty {
  text-align: center; padding: 96px 40px;
  max-width: 600px; margin: 0 auto;
}
.blog-empty-ico { font-size: 4rem; margin-bottom: 24px; opacity: 0.4; display: block; }
.blog-empty-title { font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: var(--navy); margin-bottom: 16px; }
.blog-empty-desc { font-size: 0.9375rem; color: var(--gray-dark); line-height: 1.75; }

/* Blog category bar */
.blog-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; }
.blog-cat {
  padding: 7px 16px; border: 1px solid var(--gray-line);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--navy);
  transition: border-color 0.2s, background 0.2s, color 0.2s; cursor: pointer;
}
.blog-cat:hover, .blog-cat.active { border-color: var(--gold); color: var(--gold); background: var(--green-pale); }

/* ══════════════════════════════════════════
   INSIGHTS (blog cards on other pages)
══════════════════════════════════════════ */
.insights-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; }
.insights-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 36px; margin-top: 64px; }
.insight-card { display: flex; flex-direction: column; border-top: 2px solid var(--gray-line); padding-top: 28px; transition: border-color 0.25s; }
.insight-card:hover { border-color: var(--gold); }
.ins-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 20px; }
.ins-tag { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.ins-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; color: var(--navy); line-height: 1.35; margin-bottom: 10px; flex: 1; }
.ins-meta { font-size: 0.75rem; color: var(--gray-mid); margin-bottom: 18px; }
.ins-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--navy); transition: gap 0.2s, color 0.2s; }
.ins-link:hover { gap: 10px; color: var(--gold); }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 64px; }
.testi-card {
  background: var(--white); border: 1px solid var(--gray-line); border-radius: 16px;
  padding: 40px 36px 36px; display: flex; flex-direction: column;
  box-shadow: 0 2px 16px rgba(10,31,61,0.06); transition: box-shadow 0.3s, transform 0.3s;
}
.testi-card:hover { box-shadow: 0 8px 32px rgba(10,31,61,0.12); transform: translateY(-4px); }
.testi-q { font-family: var(--font-display); font-size: 4.5rem; font-weight: 300; color: var(--gold); line-height: 0.75; margin-bottom: 20px; }
.testi-text { font-family: var(--font-display); font-size: 1.0625rem; font-style: italic; color: #3a4a5c; line-height: 1.8; flex: 1; margin-bottom: 32px; }
.testi-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--gray-line); padding-top: 24px; }
.testi-name { font-size: 0.9rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.testi-role { font-size: 0.75rem; color: #7a8a9a; margin-top: 2px; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  :root { --sec-v: 88px; --pad-h: 28px; }
  .nav-links, .nav-right .btn { display: none; }
  .nav-burger { display: flex; }
  .svc-intro { grid-template-columns: 1fr; gap: 28px; }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .stat { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .about-wrap { grid-template-columns: 1fr; }
  .about-img-col { height: 440px; }
  .about-txt { padding: 60px 40px; }
  .vals-grid { grid-template-columns: repeat(3,1fr); }
  .testi-grid { grid-template-columns: repeat(2,1fr); }
  .proc-head { grid-template-columns: 1fr; gap: 24px; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-info { padding: 64px 0 40px; }
  .cf-wrap { padding: 56px 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-detail-intro { grid-template-columns: 1fr; gap: 40px; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .fe-wrap { grid-template-columns: 1fr; }
  .fe-photo-col { height: 480px; order: -1; }
  .fe-content { padding: 72px 48px; }
}
@media (max-width: 860px) {
  .mvv-grid { grid-template-columns: 1fr; }
  .sw-logos { gap: 28px; }
  .sw-logo { max-height: 54px; max-width: 120px; }
}
@media (max-width: 768px) {
  .svc-row { grid-template-columns: 36px 32px 1fr 28px; gap: 0 16px; padding: 24px 0; }
}
@media (max-width: 640px) {
  :root { --sec-v: 64px; --pad-h: 20px; }
  .svc-grid { grid-template-columns: 1fr; }
  .vals-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .hero-hl { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .img-break { height: 420px; }
  .img-break-hl { font-size: 1.625rem; }
  .img-break-deco { font-size: 5.5rem; }
  .who-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .fe-photo-col { height: 400px; }
  .fe-content { padding: 48px 24px; }
  .fe-creds-row { flex-wrap: wrap; gap: 20px; padding: 20px 0; }
  .fe-cred-div { display: none; }
  .fe-cred { flex: 0 0 calc(50% - 10px); }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { border-left: none; }
  .sw-logos { gap: 18px; }
  .sw-logo { max-height: 40px; max-width: 88px; }
  .svc-row { grid-template-columns: 28px 1fr 24px; gap: 0 14px; }
  .svc-r-num { display: none; }
  .svc-r-title { font-size: 1.0625rem; }
  .clients-grid { grid-template-columns: repeat(2,1fr); }
  .insta-grid { grid-template-columns: repeat(2,1fr); }
  .page-hero { padding: 130px 0 64px; }
}
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .why-item { border-bottom: 1px solid var(--gray-line); }
  .why-item:nth-child(odd) { border-left: none; }
}

/* ══════════════════════════════════════════
   BLOG — ENHANCED (contacto + blog page)
══════════════════════════════════════════ */

/* Blog empty / coming-soon state */
.blog-empty-inner {
  display: flex; flex-direction: column; align-items: center;
}
.blog-empty-icon {
  width: 80px; height: 80px; color: var(--navy); opacity: 0.2;
  margin-bottom: 32px;
}
.blog-empty-icon svg { width: 100%; height: 100%; display: block; }

/* Subscribe form inside blog empty */
.blog-subscribe-form { width: 100%; max-width: 480px; }
.blog-sub-row { display: flex; gap: 0; }
.blog-sub-inp {
  flex: 1; border-radius: 0;
  border-right: none !important;
}
.blog-sub-btn {
  flex-shrink: 0; border-radius: 0;
  padding: 12px 24px; font-size: 0.8125rem;
}

/* Skeleton placeholder cards */
.blog-skeleton-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 32px; margin-top: 64px; opacity: 0.35;
  pointer-events: none;
}
.blog-sk-card {
  border: 1px solid var(--gray-line); border-radius: 12px; overflow: hidden;
}
.blog-sk-img {
  height: 196px;
  background: linear-gradient(90deg, #eaecef 25%, #f4f5f7 50%, #eaecef 75%);
  background-size: 400% 100%;
  animation: shimmer 1.8s infinite;
}
.blog-sk-body { padding: 24px 20px; }
.blog-sk-cat {
  height: 10px; width: 56px; border-radius: 4px; margin-bottom: 14px;
  background: linear-gradient(90deg, #eaecef 25%, #f4f5f7 50%, #eaecef 75%);
  background-size: 400% 100%; animation: shimmer 1.8s infinite;
}
.blog-sk-title {
  height: 18px; width: 92%; border-radius: 4px; margin-bottom: 10px;
  background: linear-gradient(90deg, #eaecef 25%, #f4f5f7 50%, #eaecef 75%);
  background-size: 400% 100%; animation: shimmer 1.8s infinite;
}
.blog-sk-text {
  height: 12px; width: 100%; border-radius: 4px; margin-bottom: 8px;
  background: linear-gradient(90deg, #eaecef 25%, #f4f5f7 50%, #eaecef 75%);
  background-size: 400% 100%; animation: shimmer 1.8s infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Blog topic cards */
.blog-topic-card {
  background: var(--white); border: 1px solid var(--gray-line); border-radius: 14px;
  padding: 36px 28px; transition: box-shadow 0.25s, transform 0.25s;
}
.blog-topic-card:hover { box-shadow: 0 8px 28px rgba(10,31,61,0.1); transform: translateY(-3px); }
.blog-topic-ico { font-size: 2rem; display: block; margin-bottom: 16px; }
.blog-topic-title {
  font-size: 1rem; font-weight: 700; color: var(--navy);
  margin-bottom: 10px; line-height: 1.3;
}
.blog-topic-desc { font-size: 0.875rem; line-height: 1.7; color: var(--gray-dark); }

/* ══════════════════════════════════════════
   CONTACT PAGE — STANDALONE
══════════════════════════════════════════ */

/* btn-navy variant (dark button) */
.btn-navy {
  background: var(--navy); color: var(--white);
  border: 1.5px solid var(--navy);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.04em; text-decoration: none; cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-navy:hover {
  background: var(--gold); border-color: var(--gold); color: var(--white);
}

/* Responsive tweaks for new components */
@media (max-width: 860px) {
  .blog-skeleton-grid { grid-template-columns: 1fr 1fr; }
  .blog-topics-wrap { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 640px) {
  .blog-skeleton-grid { grid-template-columns: 1fr; }
  .blog-subscribe-form { max-width: 100%; }
  .blog-sub-row { flex-direction: column; }
  .blog-sub-inp { border-right: 1px solid var(--gray-line) !important; }
  .blog-topics-wrap { grid-template-columns: 1fr !important; }
}

/* ══ SERVICE PAGE — ENHANCED COMPONENTS ══ */

/* Hero video bg layer */
.page-hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.13;
  z-index: 0; pointer-events: none;
}
/* Decorative large service number */
.page-hero-deco {
  position: absolute; right: -10px; bottom: -60px;
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(10rem, 18vw, 20rem);
  color: rgba(255,255,255,0.03);
  line-height: 1; pointer-events: none; user-select: none;
  z-index: 0;
}
/* Hero CTA strip */
.page-hero-acts {
  display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap;
}

/* Service stats strip */
.svc-stats-strip {
  background: var(--navy);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.svc-stats-inner {
  display: grid; grid-template-columns: repeat(3,1fr);
}
.svc-stat-item {
  padding: 38px 52px;
  border-right: 1px solid rgba(255,255,255,0.09);
}
.svc-stat-item:last-child { border-right: none; }
.svc-stat-n {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(1.75rem,3vw,2.6rem);
  color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.svc-stat-l {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); line-height: 1.55;
}

/* Media container in overview (replaces plain image) */
.svc-media-wrap {
  position: relative;
}
.svc-detail-video {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
}
.svc-media-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,31,61,0.88), transparent);
  padding: 32px 24px 20px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
}

/* Spotlight section — full-bleed ambient video + quote */
.svc-spotlight {
  position: relative; overflow: hidden;
  height: 480px; background: #040e1e;
}
.svc-spotlight-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.5;
  z-index: 0;
}
.svc-spotlight-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(4,14,30,0.93) 38%, rgba(4,14,30,0.3) 100%);
  display: flex; align-items: center;
}
.svc-spotlight-inner {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 var(--pad-h);
}
.svc-spotlight-quote {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(1.5rem,3.2vw,2.4rem);
  color: var(--white); line-height: 1.35; max-width: 620px;
  margin-bottom: 24px;
}
.svc-spotlight-attr {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
}
.svc-spotlight-attr::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}

/* Who needs it — redesigned (numbered, no emojis) */
.who-grid-v2 {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; margin-top: 52px;
  border: 1px solid var(--gray-line);
}
.who-card-v2 {
  padding: 44px 40px;
  border-right: 1px solid var(--gray-line);
  background: var(--white);
  transition: background 0.22s;
}
.who-card-v2:last-child { border-right: none; }
.who-card-v2:hover { background: var(--off-white); }
.who-num {
  font-family: var(--font-display); font-weight: 300;
  font-size: 4rem; color: var(--gold); opacity: 0.35;
  line-height: 1; margin-bottom: 20px; display: block;
}
.who-title-v2 {
  font-size: 0.9375rem; font-weight: 700;
  color: var(--navy); margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.who-desc-v2 {
  font-size: 0.84rem; color: var(--gray-dark);
  line-height: 1.72;
}

/* Responsive — service page */
@media (max-width:960px) {
  .svc-stats-inner { grid-template-columns: 1fr; }
  .svc-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.09); padding: 28px 32px; }
  .who-grid-v2 { grid-template-columns: 1fr; }
  .who-card-v2 { border-right: none; border-bottom: 1px solid var(--gray-line); }
  .svc-spotlight { height: 400px; }
  .svc-spotlight-overlay { background: rgba(4,14,30,0.85); }
}
@media (max-width:600px) {
  .svc-spotlight { height: 320px; }
  .svc-stat-item { padding: 22px 20px; }
  .who-card-v2 { padding: 32px 24px; }
  .page-hero-deco { display: none; }
}

/* ══ LANGUAGE SWITCHER ══ */
.nav-lang-wrap {
  display: flex !important;
  align-items: center;
  gap: 0;
  margin-left: 8px;
  padding-left: 18px;
  border-left: 1px solid var(--gray-line);
  list-style: none;
}
.lang-btn {
  display: inline-block;
  font-size: 0.685rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray-mid);
  padding: 4px 7px;
  border-radius: 3px;
  transition: color 0.18s, background 0.18s;
  line-height: 1;
}
.lang-btn:hover        { color: var(--navy); background: rgba(10,31,61,0.06); }
.lang-btn.lang-active  { color: var(--gold); font-weight: 700; }
.lang-sep {
  color: var(--gray-line);
  font-size: 0.65rem;
  line-height: 1;
  user-select: none;
}

/* Mobile drawer language switcher */
.drawer-lang {
  display: flex;
  gap: 8px;
  padding: 18px 24px 4px;
  border-top: 1px solid var(--gray-line);
  flex-wrap: wrap;
}
.drawer-lang-btn {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid var(--gray-line);
  color: var(--navy-mid);
  background: var(--white);
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.drawer-lang-btn:hover          { background: var(--off-white); border-color: var(--navy-mid); }
.drawer-lang-btn.lang-active    { background: var(--gold); border-color: var(--gold); color: var(--white); font-weight: 600; }

/* ══════════════════════════════════════════
   ARTÍCULO DE BLOG — PÁGINAS INDIVIDUALES
══════════════════════════════════════════ */

/* Encabezado del artículo */
.art-header {
  max-width: 780px; margin: 0 auto; padding: 72px var(--pad-h) 0;
  text-align: center;
}
.art-cat {
  font-size: 0.625rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); display: inline-block;
  margin-bottom: 20px;
}
.art-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 300; color: var(--navy); line-height: 1.2;
  margin-bottom: 28px; letter-spacing: -0.01em;
}
.art-meta-row {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
  font-size: 0.8125rem; color: var(--gray-mid); margin-bottom: 48px;
}
.art-meta-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--gray-light); flex-shrink: 0; }
.art-feat-img {
  width: 100%; aspect-ratio: 16/8; object-fit: cover;
  display: block; max-width: 1100px; margin: 0 auto;
}

/* Cuerpo del artículo */
.art-body {
  max-width: 720px; margin: 0 auto;
  padding: 64px var(--pad-h) 96px;
}
.art-body p {
  font-size: 1.0625rem; line-height: 1.85; color: #3a4a5c;
  margin-bottom: 24px;
}
.art-body h2 {
  font-family: var(--font-display); font-size: 1.625rem; font-weight: 400;
  color: var(--navy); margin: 48px 0 20px; letter-spacing: -0.01em;
}
.art-body h3 {
  font-size: 1.125rem; font-weight: 700; color: var(--navy);
  margin: 36px 0 14px;
}
.art-body ul, .art-body ol {
  padding-left: 24px; margin-bottom: 28px;
}
.art-body li {
  font-size: 1.0625rem; line-height: 1.8; color: #3a4a5c; margin-bottom: 10px;
}
.art-body strong { color: var(--navy); font-weight: 700; }
.art-body blockquote {
  border-left: 3px solid var(--gold); margin: 36px 0;
  padding: 4px 28px;
}
.art-body blockquote p {
  font-family: var(--font-display); font-size: 1.25rem; font-style: italic;
  color: var(--navy-mid); margin-bottom: 0;
}
.art-divider {
  width: 48px; height: 2px; background: var(--gold);
  margin: 48px auto; border: none;
}

/* Autor banner */
.art-author-band {
  background: var(--section-gray); border-top: 1px solid var(--gray-line);
  padding: 48px var(--pad-h);
}
.art-author-inner {
  max-width: 720px; margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
}
.art-author-img {
  width: 72px; height: 72px; border-radius: 50%; object-fit: cover;
  object-position: top; flex-shrink: 0;
}
.art-author-name { font-weight: 700; color: var(--navy); font-size: 1rem; margin-bottom: 4px; }
.art-author-bio { font-size: 0.875rem; color: var(--gray-dark); line-height: 1.6; }

/* Artículos relacionados */
.art-related { padding: var(--sec-v) var(--pad-h); }
.art-related-inner { max-width: var(--max-w); margin: 0 auto; }

/* Blog card como link */
a.blog-card { text-decoration: none; cursor: pointer; }
a.blog-card:hover .blog-title { color: var(--gold); }

/* Responsive artículo */
@media (max-width: 640px) {
  .art-title { font-size: 1.75rem; }
  .art-body { padding: 40px var(--pad-h) 72px; }
  .art-body p, .art-body li { font-size: 0.9375rem; }
  .art-author-inner { flex-direction: column; text-align: center; }
}

/* Chinese body font override */
[data-lang="zh"] body,
[data-lang="zh"] .body,
[data-lang="zh"] .body-lg,
[data-lang="zh"] p,
[data-lang="zh"] li,
[data-lang="zh"] .faq-a p,
[data-lang="zh"] .svc-r-desc,
[data-lang="zh"] .proc-desc,
[data-lang="zh"] .fe-bio,
[data-lang="zh"] .mvv-body,
[data-lang="zh"] .val-desc {
  font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', system-ui, sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.75;
}
