/* ====================================================================
   UNS LANDING v3 — LAYOUT (sections)
   ==================================================================== */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}
.container-narrow { max-width: 880px; }

.section-head {
  display: flex; flex-direction: column; gap: 6px;
  align-items: flex-start;
  margin-bottom: 64px;
  max-width: 720px;
}

/* ====================================================================
   NAV
   ==================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--t-base) ease,
              backdrop-filter var(--t-base) ease,
              border-color var(--t-base) ease,
              padding var(--t-base) ease;
}
.nav.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 36px;
  transition: padding var(--t-base) ease;
}
.nav.scrolled .nav-inner { padding: 12px 28px; }

.nav-brand img {
  height: 56px;
  width: auto;
  transition: height var(--t-base) ease, filter var(--t-base) ease;
}
.nav.scrolled .nav-brand img { height: 44px; }
:root[data-theme="light"] .nav-brand img { filter: invert(1) hue-rotate(180deg) brightness(0.9); }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  position: relative;
  transition: background var(--t-fast) ease;
}
.nav-link span {
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--fg-3);
}
.nav-link em {
  font-style: normal; font-size: 13px; font-weight: 600;
  color: var(--fg-1); font-family: var(--f-serif);
  margin-top: 2px;
}
.nav-link:hover { background: var(--bg-card); }
.nav-link:hover span { color: var(--accent); }

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta { padding: 10px 20px; }
.nav-cta-short { display: none; }

.mobile-nav {
  display: none;
}

.nav-progress {
  height: 2px; background: transparent;
  position: relative;
}
.nav-progress span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--red));
  width: 0%;
  transition: width 80ms linear;
  box-shadow: 0 0 12px var(--accent);
}

/* ====================================================================
   HERO
   ==================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  padding: 160px 80px 100px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.65) contrast(1.05) brightness(0.55);
  transition: filter var(--theme-t) ease;
}
:root[data-theme="light"] .hero-bg-img {
  filter: saturate(0.95) contrast(1.05) brightness(0.95);
  opacity: 0.55;
}
.hero-bg-scrim {
  position: absolute; inset: 0;
  background: var(--hero-grad),
              radial-gradient(ellipse at 30% 30%, rgba(31, 79, 210, 0.18), transparent 60%),
              radial-gradient(ellipse at 70% 70%, rgba(200, 32, 46, 0.12), transparent 60%);
}
:root[data-theme="light"] .hero-bg-scrim {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.65) 35%, rgba(255,255,255,0.92) 100%),
    radial-gradient(ellipse at 25% 25%, rgba(31, 79, 210, 0.06), transparent 60%),
    radial-gradient(ellipse at 75% 75%, rgba(200, 32, 46, 0.05), transparent 60%);
}
:root[data-theme="light"] .hero-bg-img {
  filter: saturate(1.05) contrast(1.05) brightness(1.0);
  opacity: 0.38;
}
:root[data-theme="light"] .hero-hud { color: rgba(11, 18, 32, 0.5); }
:root[data-theme="light"] .photo-meta { color: white; }
:root[data-theme="light"] .nav.scrolled {
  background: rgba(255,255,255, 0.88);
  border-bottom: 1px solid rgba(11, 18, 32, 0.08);
}

.hero-hud {
  position: absolute; z-index: 5;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--fg-3);
  display: flex; align-items: center; gap: 8px;
  opacity: 0;
  animation: hudIn .8s 1s var(--ease-out) forwards;
}
.hud-tl { top: 100px; left: 28px; }
.hud-tr { top: 100px; right: 28px; }
@keyframes hudIn { to { opacity: 1; } }

.rec-dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-content { position: relative; z-index: 4; max-width: 640px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
  animation: pulse 1.6s infinite;
}

.hero-h1 {
  font-family: var(--f-serif);
  font-size: clamp(48px, 6.4vw, 88px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--fg-1);
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero-h1 .line { display: block; overflow: hidden; }
.hero-h1 .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: heroLineUp 900ms var(--ease-out) forwards;
}
.hero-h1 .line:nth-child(1) span { animation-delay: 0.35s; }
.hero-h1 .line:nth-child(2) span { animation-delay: 0.55s; }
@keyframes heroLineUp {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}
.hero-h1 em { font-style: normal; }
.accent-blue {
  background: linear-gradient(135deg, var(--accent), var(--uns-blue-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.accent-red {
  background: linear-gradient(135deg, var(--red), var(--uns-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lede {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.85;
  color: var(--fg-2);
  margin: 0 0 36px;
  max-width: 52ch;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-proof {
  display: flex; align-items: stretch; gap: 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.proof-item { display: flex; flex-direction: column; gap: 4px; padding-right: 32px; }
.proof-num {
  font-family: var(--f-display);
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.proof-num.red { color: var(--red); }
.proof-lbl {
  font-family: var(--f-display);
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.proof-lbl small {
  display: block;
  font-size: 11px;
  color: var(--fg-4);
  letter-spacing: 0.04em;
  text-transform: none;
  margin-top: 2px;
}
.proof-sep { width: 1px; background: var(--line); }

/* Hero photo column */
.hero-photo {
  position: relative; z-index: 4;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  aspect-ratio: 1/1.05;
}
.photo-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-card);
}
.photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transition: transform 800ms var(--ease-out);
}
.photo-frame:hover img { transform: scale(1.04); }
.photo-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,8,16,0.7) 100%);
}
.photo-main { grid-row: 1 / 3; }
.photo-main::after {
  background: linear-gradient(180deg, transparent 35%, rgba(5,8,16,0.85) 100%),
              linear-gradient(90deg, transparent 60%, rgba(31,79,210,0.18) 100%);
}

.photo-hud-top {
  position: absolute; top: 14px; left: 14px;
  display: flex; align-items: center; gap: 8px;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(244,241,234, 0.9);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.photo-meta {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 16px; z-index: 2;
}
.photo-caption {
  font-size: 13px; font-weight: 600;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  letter-spacing: 0.01em;
  max-width: 70%;
}
.photo-code {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.1em; text-align: right;
  color: rgba(255,255,255, 0.65);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.photo-badge {
  position: absolute; top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: rgba(0,0,0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255, 0.14);
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: white;
  z-index: 2;
}
.dot-pulse {
  width: 5px; height: 5px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: pulse 1.6s infinite;
}

.scroll-cue {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.cue-line {
  width: 1px; height: 44px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  animation: cueLine 2.4s infinite;
}
@keyframes cueLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  46%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ====================================================================
   MARQUEE BAND
   ==================================================================== */
.marquee-band {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
}
.marquee { overflow: hidden; }
.marquee-track {
  display: flex; align-items: center; gap: 32px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--f-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg-2);
  letter-spacing: 0.03em;
}
.marquee-track .dot { color: var(--accent); font-size: 14px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ====================================================================
   ISSUES
   ==================================================================== */
.issues { padding: 140px 0 80px; }
.issues .section-head { text-align: center; align-items: center; margin-left: auto; margin-right: auto; }
.issues .section-head .section-sub { text-align: center; }

.issues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.issue-card {
  position: relative;
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  transition: transform var(--t-base) var(--ease-out),
              background var(--t-base) ease,
              border-color var(--t-base) ease;
  overflow: hidden;
}
.issue-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-h);
  border-color: var(--line-2);
}
.issue-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--red);
  font-weight: 600;
}
.issue-card h3 {
  font-family: var(--f-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--fg-1);
  margin: 14px 0 12px;
  letter-spacing: -0.005em;
}
.issue-card p {
  font-size: 14px;
  color: var(--fg-3);
  line-height: 1.7;
  margin: 0;
}
.issue-bar {
  position: absolute;
  left: 0; top: 28px; bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, var(--red), transparent);
  opacity: 0.55;
}

.issue-bridge {
  display: flex; align-items: center; justify-content: center;
  gap: 18px;
  margin: 64px auto 0;
  max-width: 480px;
}
.bridge-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.bridge-arrow {
  padding: 10px 22px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--red), var(--uns-red));
  color: white;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.28em;
  box-shadow: 0 10px 24px rgba(200, 32, 46, 0.35);
}

/* ====================================================================
   SERVICES
   ==================================================================== */
.services { padding: 120px 0; position: relative; }
.services::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--accent-soft), transparent 70%);
  pointer-events: none;
}
.services .section-head { text-align: center; align-items: center; margin-left: auto; margin-right: auto; }
.services .section-head .section-sub { text-align: center; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.service-card {
  position: relative;
  padding: 40px 32px 32px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  transition: transform var(--t-base) var(--ease-out),
              border-color var(--t-base) ease;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}
.service-card.featured {
  background: linear-gradient(145deg, var(--bg-card-h), var(--bg-card));
  border-color: var(--accent);
  box-shadow: 0 24px 60px rgba(31, 79, 210, 0.18), 0 0 0 1px var(--accent-soft) inset;
}
.svc-num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.service-card h3 {
  font-family: var(--f-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--fg-1);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.service-card > p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--fg-3);
  margin: 0 0 22px;
}
.service-card ul {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.service-card li {
  font-size: 14px;
  color: var(--fg-2);
  display: flex; gap: 12px; align-items: flex-start;
}
.service-card li::before {
  content: "";
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  margin-top: 3px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%234A86F9' stroke-width='2.5'><path d='M3 8.5 6.5 12 13 5'/></svg>");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.svc-foot {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.svc-license {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--fg-4);
  letter-spacing: 0.04em;
}
.svc-link {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}
.svc-link:hover { color: var(--accent-h); }
.svc-ribbon {
  position: absolute;
  top: 16px; right: -36px;
  transform: rotate(45deg);
  background: var(--red);
  color: white;
  font-family: var(--f-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 5px 40px;
}

/* ====================================================================
   COMPLIANCE
   ==================================================================== */
.compliance {
  padding: 120px 0;
  background:
    linear-gradient(180deg, var(--bg-base), var(--bg-elev)),
    radial-gradient(ellipse at 15% 20%, var(--red-soft), transparent 60%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.compliance-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.compliance-title {
  max-width: 9em;
  font-size: clamp(42px, 4.9vw, 70px);
  line-height: 1.08;
  margin-bottom: 24px;
}
.compliance-title span {
  display: block;
}
.compliance-title span + span {
  margin-top: 2px;
}
.compliance-copy > p {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.9;
  margin: 0 0 30px;
  max-width: 52ch;
}
.compliance-link { display: inline-flex; }
.compliance-panel {
  padding: 34px;
  border-radius: var(--r-xl);
  background:
    linear-gradient(145deg, var(--bg-card-h), var(--bg-card)),
    radial-gradient(ellipse at 90% 10%, var(--accent-soft), transparent 55%);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-card);
}
.compliance-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--fg-3);
}
.compliance-list {
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.compliance-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-areas:
    "num title"
    "num desc";
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.compliance-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.compliance-list span {
  grid-area: num;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1px solid var(--line-2);
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--accent);
}
.compliance-list strong {
  grid-area: title;
  display: block;
  font-family: var(--f-serif);
  font-size: 19px;
  color: var(--fg-1);
  margin-bottom: 3px;
}
.compliance-list em {
  grid-area: desc;
  display: block;
  font-style: normal;
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.6;
}

/* ====================================================================
   TALENT
   ==================================================================== */
.talent { padding: 120px 0; }
.talent-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: flex-end;
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.talent-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform var(--t-base) var(--ease-out),
              border-color var(--t-base) ease;
}
.talent-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
}
.talent-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.talent-card:hover img { transform: scale(1.08); }
.talent-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(5,8,16,0.95) 100%);
}
.talent-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px;
  z-index: 2;
  color: white;
}
.talent-flag {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: rgba(255,255,255, 0.8);
}
.talent-card h3 {
  font-family: var(--f-serif);
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin: 10px 0 12px;
  letter-spacing: -0.01em;
}
.talent-card p {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255, 0.78);
  margin: 0 0 16px;
}
.talent-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.talent-tags span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255, 0.14);
  border: 1px solid rgba(255,255,255, 0.18);
  color: white;
  backdrop-filter: blur(8px);
}
.talent-num {
  position: absolute;
  top: 24px; right: 28px;
  z-index: 3;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255, 0.5);
  font-weight: 600;
}

/* ====================================================================
   PROCESS
   ==================================================================== */
.process { padding: 120px 0; background: var(--bg-elev); }
.process .section-head { text-align: center; align-items: center; margin-left: auto; margin-right: auto; }
.process .section-head .section-sub { text-align: center; }

.process-list {
  list-style: none; padding: 0; margin: 80px auto 0;
  max-width: 880px;
  display: flex; flex-direction: column;
  gap: 24px;
  position: relative;
}
.process-list::before {
  content: "";
  position: absolute;
  left: 28px; top: 28px; bottom: 28px;
  width: 1px;
  background: linear-gradient(180deg, var(--red), var(--accent), var(--accent-soft));
}
.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  position: relative;
  padding: 20px 0;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--bg-base);
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.05em;
  z-index: 2;
  position: relative;
  box-shadow: 0 0 0 6px var(--bg-elev), 0 0 32px var(--accent-soft);
  flex-shrink: 0;
}
.process-step:first-child .step-num {
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 0 0 6px var(--bg-elev), 0 0 32px rgba(200,32,46, 0.3);
}
.step-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--fg-3);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.step-body h3 {
  font-family: var(--f-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--fg-1);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.step-body p {
  font-size: 14.5px;
  color: var(--fg-3);
  line-height: 1.8;
  margin: 0;
}

/* ====================================================================
   ABOUT
   ==================================================================== */
.about { padding: 120px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.about-text > p {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.85;
  margin: 0 0 36px;
  max-width: 48ch;
}
.about-meta {
  display: flex; flex-direction: column;
  gap: 12px;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.about-meta > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
}
.about-meta dt {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin: 0;
  padding-top: 2px;
}
.about-meta dd {
  font-size: 14px;
  color: var(--fg-1);
  margin: 0;
  font-weight: 500;
}
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.about-licenses {
  display: flex; flex-direction: column;
  gap: 14px;
}
.license-card {
  padding: 28px 26px;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-base) ease, transform var(--t-base) var(--ease-out);
}
.license-card:hover { border-color: var(--accent); transform: translateX(4px); }
.license-card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--red), var(--accent));
}
.lic-label {
  font-family: var(--f-display);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.lic-name {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg-1);
  margin: 8px 0 12px;
  letter-spacing: -0.005em;
}
.lic-num {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--fg-3);
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

/* ====================================================================
   FAQ
   ==================================================================== */
.faq { padding: 120px 0; background: var(--bg-elev); }
.faq .section-head { text-align: center; align-items: center; margin-left: auto; margin-right: auto; }
.faq .section-head .section-sub { text-align: center; }

.faq-list {
  margin-top: 64px;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-base) ease;
}
.faq-item[open] {
  border-color: var(--accent);
  background: var(--bg-card-h);
}
.faq-item summary {
  list-style: none;
  padding: 22px 26px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg-1);
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--line-2);
  position: relative;
  transition: transform var(--t-base) var(--ease-out),
              background var(--t-base) ease;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--accent);
  border-radius: 1px;
  transition: transform var(--t-base) var(--ease-out);
}
.faq-icon::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-content {
  padding: 0 26px 22px;
  font-size: 14.5px;
  color: var(--fg-3);
  line-height: 1.85;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 0;
}

/* ====================================================================
   CONTACT
   ==================================================================== */
.contact { padding: 120px 0; position: relative; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}
.contact-pitch {
  padding: 56px;
  border-radius: var(--r-xl);
  background:
    radial-gradient(ellipse at 20% 30%, var(--accent-soft), transparent 60%),
    radial-gradient(ellipse at 80% 70%, var(--red-soft), transparent 60%),
    var(--bg-card);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.contact-pitch::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--accent), var(--gold));
}
.contact-pitch > p {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.8;
  margin: 0 0 36px;
  max-width: 48ch;
}
.contact-phone {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 28px;
  width: fit-content;
}
.phone-num {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--fg-1);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  transition: color var(--t-fast) ease;
}
.contact-phone:hover .phone-num { color: var(--accent); }
.phone-meta {
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--fg-3);
}
.contact-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* Contact form */
.contact-form { margin-top: 8px; display: flex; flex-direction: column; gap: 18px; }
.cf-row { display: flex; flex-direction: column; gap: 18px; }
.cf-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .cf-row-2 { grid-template-columns: 1fr; } }

.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-label {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.cf-label em { color: var(--red); font-style: normal; margin-left: 2px; }
.cf-field input, .cf-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: var(--bg-base);
  border: 1px solid var(--line-2);
  color: var(--fg-1);
  font-family: var(--f-display);
  font-size: 14.5px;
  line-height: 1.55;
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease, background var(--t-fast) ease;
}
.cf-field input::placeholder, .cf-field textarea::placeholder { color: var(--fg-4); }
.cf-field input:focus, .cf-field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.cf-field textarea { resize: vertical; min-height: 92px; }
.cf-field.cf-invalid input, .cf-field.cf-invalid textarea {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
}
.cf-error {
  display: none;
  margin-top: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}
.cf-field.cf-invalid .cf-error {
  display: block;
}
.cf-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.cf-note {
  font-size: 12px;
  color: var(--fg-3);
  margin: 4px 0 0;
  line-height: 1.6;
}
.cf-note a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.cf-success {
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}
.cf-success a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* Premium AJAX Success State */
.cf-success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--r-xl);
  background: var(--bg-glass);
  backdrop-filter: blur(var(--bg-glass-blur));
  -webkit-backdrop-filter: blur(var(--bg-glass-blur));
  border: 1px solid var(--card-border);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
  animation: cfFadeInUp 0.6s var(--ease-out) forwards;
  margin-top: 18px;
}

@keyframes cfFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1); /* Gold tint */
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 0 32px rgba(212, 175, 55, 0.2);
  animation: cfScaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes cfScaleIn {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-icon-wrap svg {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: cfStrokeDraw 0.6s 0.2s ease forwards;
}

@keyframes cfStrokeDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.cf-success-state h3 {
  font-family: var(--f-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--fg-1);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.cf-success-state p {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.8;
  margin: 0 0 32px;
  max-width: 42ch;
}

/* Form sending and loading states */
.contact-form.cf-sending {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}

.contact-form.cf-sending input,
.contact-form.cf-sending textarea,
.contact-form.cf-sending button {
  cursor: not-allowed;
}

/* Spinner for submit button */
.btn-loading-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: cfSpin 0.8s linear infinite;
  margin-right: 8px;
  flex-shrink: 0;
}

@keyframes cfSpin {
  to { transform: rotate(360deg); }
}

/* Transicion de desvanecimiento para el formulario al enviarse */
.contact-form {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.contact-form.cf-fade-out {
  opacity: 0;
  transform: translateY(-15px);
  pointer-events: none;
  display: none !important;
}

.contact-offices {
  display: flex; flex-direction: column;
  gap: 18px;
}
.office {
  border-radius: var(--r-xl);
  background: var(--bg-card);
  border: 1px solid var(--line);
  transition: border-color var(--t-base) ease, transform var(--t-base) var(--ease-out);
  overflow: hidden;
}
.office:hover { border-color: var(--accent); }
.office[data-open="true"] {
  border-color: var(--accent);
  box-shadow: 0 14px 32px var(--accent-soft);
}
.office-toggle {
  display: block;
  width: 100%;
  text-align: left;
  padding: 32px 28px;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
  font: inherit;
  position: relative;
  transition: background var(--t-base) ease;
}
.office-toggle:hover { background: var(--bg-card-h); }
.office-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}
.office-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-display);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}
.office-badge::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 999px;
  background: var(--red);
}
.office h3 {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg-1);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.office p {
  font-size: 14px;
  color: var(--fg-3);
  line-height: 1.75;
  margin: 0;
}
.office-phone {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg-1);
  font-variant-numeric: tabular-nums;
}
.office-phone small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-3);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* Map CTA inside office button */
.office-map-cue {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  border: 1px solid var(--line-2);
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  transition: background var(--t-fast) ease, border-color var(--t-fast) ease;
}
.office-toggle:hover .office-map-cue {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.office-toggle:hover .map-cue-icon,
.office-toggle:hover .map-cue-arrow { color: white; }
.map-cue-arrow {
  transition: transform var(--t-base) var(--ease-out);
}
.office[data-open="true"] .map-cue-arrow {
  transform: rotate(180deg);
}
.office[data-open="true"] .office-map-cue {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.office[data-open="true"] .map-cue-icon,
.office[data-open="true"] .map-cue-arrow { color: white; }

/* Map drawer */
.office-map {
  position: relative;
  max-height: 0;
  overflow: hidden;
  background: var(--bg-elev);
  transition: max-height var(--t-base) var(--ease-out);
}
.office[data-open="true"] .office-map {
  max-height: 420px;
  border-top: 1px solid var(--line);
}
.office-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  filter: var(--map-filter, none);
  transition: filter var(--theme-t) ease;
}
:root[data-theme="dark"] .office-map iframe {
  --map-filter: invert(0.92) hue-rotate(180deg) saturate(0.6) brightness(0.95);
}
.map-open {
  position: absolute;
  bottom: 16px; right: 16px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: var(--bg-base);
  border: 1px solid var(--line-2);
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--fg-1);
  text-decoration: none;
  z-index: 2;
  backdrop-filter: blur(8px);
  transition: transform var(--t-fast) ease, background var(--t-fast) ease;
}
.map-open:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ====================================================================
   FOOTER
   ==================================================================== */
.footer {
  padding: 80px 0 36px;
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer-brand img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 18px;
  transition: filter var(--t-base) ease;
}
:root[data-theme="light"] .footer-brand img { filter: invert(1) hue-rotate(180deg) brightness(0.9); }
.footer-brand p {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.8;
  max-width: 38ch;
  margin: 0;
}
.footer-col h4 {
  font-family: var(--f-display);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 22px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px;
  color: var(--fg-2);
  transition: color var(--t-fast) ease;
}
.footer-col a:hover { color: var(--accent); }
.footer-col small {
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.04em;
}
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: var(--fg-3);
  font-family: var(--f-display);
  letter-spacing: 0.02em;
}
.footer-legal { display: flex; align-items: center; flex-wrap: wrap; gap: 18px 24px; }
.footer-intro-replay {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fg-2);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: color var(--t-fast) ease, border-color var(--t-fast) ease, background var(--t-fast) ease, transform var(--t-fast) ease;
}
.footer-intro-replay svg {
  width: 10px;
  height: 10px;
  opacity: 0.8;
}
.footer-intro-replay:hover {
  color: var(--fg-1);
  border-color: var(--uns-blue);
  background: rgba(31, 79, 210, 0.06);
  transform: translateY(-1px);
}
.footer-intro-replay:focus-visible {
  outline: 2px solid var(--uns-blue);
  outline-offset: 2px;
}

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; padding: 140px 32px 80px; gap: 56px; }
  .hero-photo { max-width: 540px; }
  .about-grid, .contact-grid, .talent-head, .compliance-grid {
    grid-template-columns: 1fr; gap: 48px;
  }
}
@media (max-width: 800px) {
  .nav-links { display: none; }
  .mobile-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 18px 12px;
    background: var(--bg-glass);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px) saturate(1.25);
    -webkit-backdrop-filter: blur(18px) saturate(1.25);
    scrollbar-width: none;
  }
  .mobile-nav::-webkit-scrollbar { display: none; }
  .mobile-nav a {
    flex: 0 0 auto;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    background: var(--bg-card);
    color: var(--fg-2);
    font-family: var(--f-serif);
    font-size: 12px;
    font-weight: 700;
  }
  .mobile-nav a:hover,
  .mobile-nav a:focus-visible {
    color: var(--fg-1);
    border-color: var(--accent);
  }
  .hero { padding-top: 168px; }
  .issues-grid, .services-grid, .talent-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-proof { flex-wrap: wrap; gap: 18px; }
  .proof-sep { display: none; }
  .hero-h1 { font-size: clamp(38px, 9vw, 56px); }
  .hud-tl, .hud-tr { display: none; }
}
@media (max-width: 520px) {
  .nav-inner { padding: 14px 18px; gap: 10px; }
  .nav.scrolled .nav-inner { padding: 10px 18px; }
  .nav-brand img { height: 40px; }
  .nav.scrolled .nav-brand img { height: 38px; }
  .nav-right { gap: 8px; }
  .nav-cta {
    padding: 11px 14px;
    min-height: 46px;
    border-radius: 14px;
    font-size: 13px;
  }
  .nav-cta-full { display: none; }
  .nav-cta-short { display: inline; }
  .nav-cta svg { width: 14px; height: 14px; }
  .hero {
    min-height: auto;
    padding-top: 164px;
    padding-bottom: 72px;
    gap: 44px;
  }
  .hero, .issues, .services, .compliance, .talent, .process, .about, .faq, .contact { padding-left: 18px; padding-right: 18px; }
  .hero-eyebrow {
    gap: 10px;
    margin-bottom: 22px;
    font-size: 10px;
    letter-spacing: 0.16em;
    line-height: 1.55;
    max-width: 100%;
  }
  .hero-h1 {
    font-size: clamp(42px, 12.5vw, 56px);
    line-height: 1.02;
    margin-bottom: 24px;
  }
  .hero-lede {
    font-size: 16px;
    line-height: 1.78;
    margin-bottom: 30px;
  }
  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 46px;
  }
  .hero-actions .btn-lg {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 16px 18px;
    font-size: 14px;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
  .hero-actions .btn-lg span {
    min-width: 0;
  }
  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 26px;
  }
  .proof-item { padding-right: 0; }
  .proof-lbl { font-size: 11px; letter-spacing: 0.04em; }
  .container { padding: 0 0; }
  .contact-pitch { padding: 36px 26px; }
  .contact-title { font-size: clamp(32px, 9.5vw, 38px); }
  .contact-title span {
    display: inline-block;
    white-space: nowrap;
    font-size: 0.92em;
  }
  .compliance-title { font-size: clamp(38px, 11vw, 52px); }
  .compliance-panel { padding: 24px 20px; }
  .compliance-list li { grid-template-columns: 36px 1fr; gap: 12px; }
  .compliance-list strong { font-size: 17px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ====================================================================
   BRAND INTRO
   ==================================================================== */
.brand-intro {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #02040a;
  color: #fff;
  opacity: 0;
}
.brand-intro.active {
  display: flex;
  opacity: 1;
  animation: brandIntroIn 0.34s ease-out both;
}
.brand-intro.exiting {
  display: flex;
  pointer-events: none;
  animation: brandIntroOut 0.78s cubic-bezier(.77, 0, .18, 1) forwards;
}
.brand-intro-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.045);
  filter: brightness(0.72) contrast(1.24) saturate(1.2) sepia(0.045);
  transition:
    opacity 0.85s cubic-bezier(.16, 1, .3, 1),
    transform 1.35s cubic-bezier(.16, 1, .3, 1),
    filter 0.7s ease;
  will-change: transform, opacity, filter;
}
.brand-intro-video.is-current {
  opacity: 0.98;
  transform: scale(1.018);
}
.brand-intro-video.is-previous {
  opacity: 0;
  transform: scale(1.035);
  filter: blur(5px) brightness(0.52) contrast(1.28) saturate(1.15);
}
.brand-intro[data-stage="2"] .brand-intro-video.is-current {
  filter: brightness(0.78) contrast(1.2) saturate(1.16) sepia(0.035);
}
.brand-intro-grade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.94) 0,
      rgba(0, 0, 0, 0.94) 7.2vh,
      transparent 18vh,
      transparent calc(100% - 18vh),
      rgba(0, 0, 0, 0.92) calc(100% - 7.2vh),
      rgba(0, 0, 0, 0.92) 100%),
    radial-gradient(ellipse at center, transparent 38%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(90deg, rgba(15, 46, 110, 0.28), transparent 36%, transparent 64%, rgba(142, 12, 24, 0.2));
  mix-blend-mode: multiply;
}
.brand-intro-grade::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/></svg>");
  mix-blend-mode: screen;
}
.brand-intro-light {
  position: absolute;
  inset: -15%;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: screen;
}
.brand-intro-light::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 136vw;
  height: 3px;
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0.24);
  background:
    linear-gradient(90deg,
      transparent,
      rgba(52, 136, 255, 0.22) 33%,
      rgba(255, 255, 255, 0.72) 50%,
      rgba(255, 44, 58, 0.22) 67%,
      transparent);
  box-shadow:
    0 0 16px rgba(255, 255, 255, 0.58),
    0 0 72px rgba(31, 79, 210, 0.38),
    0 0 92px rgba(200, 32, 46, 0.28);
  animation: brandIntroFlash 16s linear forwards;
}
.brand-intro-light span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92vw;
  height: 14px;
  border-radius: 999px;
  opacity: 0;
  filter: blur(10px);
}
.brand-intro-light span:first-child {
  background: linear-gradient(90deg, transparent, rgba(200, 32, 46, 0.82), rgba(255, 114, 96, 0.34), transparent);
  box-shadow: 0 0 42px rgba(200, 32, 46, 0.46);
  animation: brandIntroRedSweep 16s cubic-bezier(.16, 1, .3, 1) forwards;
}
.brand-intro-light span:last-child {
  background: linear-gradient(90deg, transparent, rgba(31, 79, 210, 0.88), rgba(132, 205, 255, 0.36), transparent);
  box-shadow: 0 0 42px rgba(31, 79, 210, 0.48);
  animation: brandIntroBlueSweep 16s cubic-bezier(.16, 1, .3, 1) forwards;
}
.brand-intro-ui {
  position: absolute;
  top: clamp(22px, 4vw, 46px);
  left: clamp(24px, 4vw, 56px);
  right: clamp(24px, 4vw, 56px);
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}
.brand-intro-ui span:last-child {
  color: rgba(255, 255, 255, 0.48);
}
.brand-intro-skip {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(7, 12, 24, 0.42);
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform var(--t-fast) ease, border-color var(--t-fast) ease, background var(--t-fast) ease;
}
.brand-intro-skip:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
}
.brand-intro-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
}
.brand-intro-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #1F4FD2, #f7f9ff, #C8202E);
  box-shadow: 0 0 18px rgba(31, 79, 210, 0.76);
}
body.brand-intro-active {
  overflow: hidden;
}
@keyframes brandIntroIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes brandIntroOut {
  from { opacity: 1; filter: blur(0); transform: scale(1); }
  to { opacity: 0; filter: blur(8px); transform: scale(1.025); }
}
@keyframes brandIntroFlash {
  0%, 10% { opacity: 0; transform: translate(-50%, -50%) scaleX(0.16); }
  16% { opacity: 0.68; transform: translate(-50%, -50%) scaleX(1); }
  23%, 48% { opacity: 0; transform: translate(-50%, -50%) scaleX(1.16); }
  55% { opacity: 0.78; transform: translate(-50%, -50%) scaleX(0.9); }
  63% { opacity: 0.18; transform: translate(-50%, -50%) scaleX(1.24); }
  78% { opacity: 0.44; transform: translate(-50%, -50%) scaleX(0.76); }
  86%, 100% { opacity: 0; transform: translate(-50%, -50%) scaleX(1.18); }
}
@keyframes brandIntroRedSweep {
  0%, 18% { opacity: 0; transform: translate(-112%, 26%) rotate(-18deg) scaleX(0.5); }
  30% { opacity: 0.72; transform: translate(-44%, 8%) rotate(-18deg) scaleX(1.08); }
  46% { opacity: 0.22; transform: translate(28%, -14%) rotate(-18deg) scaleX(0.82); }
  54%, 100% { opacity: 0; transform: translate(58%, -24%) rotate(-18deg) scaleX(0.62); }
}
@keyframes brandIntroBlueSweep {
  0%, 20% { opacity: 0; transform: translate(12%, -36%) rotate(15deg) scaleX(0.54); }
  34% { opacity: 0.7; transform: translate(-48%, -8%) rotate(15deg) scaleX(1.05); }
  52% { opacity: 0.24; transform: translate(-70%, 12%) rotate(15deg) scaleX(0.74); }
  60%, 100% { opacity: 0; transform: translate(-82%, 20%) rotate(15deg) scaleX(0.58); }
}
/* Mobile uses the same cinematic 16:9 video as desktop. object-fit:cover on
   .brand-intro-video handles portrait framing (sides crop, height fills).
   Only the skip button gets a touch-friendly tweak below. */
@media (max-width: 600px) {
  .brand-intro-skip {
    min-height: 44px;
    padding: 12px 22px;
    font-size: 12px;
    right: 50%;
    bottom: 36px;
    transform: translateX(50%);
    background: rgba(7, 12, 24, 0.72);
    border-color: rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  .brand-intro-skip:hover {
    transform: translateX(50%) translateY(-2px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .brand-intro {
    display: none !important;
  }
}

/* ====================================================================
   WHY UNS SECTION (B2B Redesign)
   ==================================================================== */
.why-uns {
  padding: var(--sp-8) 0;
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-7);
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
  backdrop-filter: var(--bg-glass-blur);
  -webkit-backdrop-filter: var(--bg-glass-blur);
  transition: transform var(--t-base) var(--ease-out),
              border-color var(--t-base) ease,
              box-shadow var(--t-base) ease;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
  pointer-events: none;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-border-h);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

:root[data-theme="light"] .why-card:hover {
  box-shadow: 0 20px 48px rgba(15, 23, 38, 0.12), 0 0 0 1px rgba(15, 23, 38, 0.06);
}

.why-badge {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-5);
  font-family: var(--f-mono);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  opacity: 0.18;
  transition: opacity var(--t-fast) ease, transform var(--t-fast) ease;
}

.why-card:hover .why-badge {
  opacity: 0.45;
  transform: scale(1.1);
}

.why-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  box-shadow: 0 0 0 1px var(--card-border);
  transition: background var(--t-fast) ease, color var(--t-fast) ease, transform var(--t-fast) ease;
}

.why-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.why-card:hover .why-icon-wrap {
  background: var(--accent);
  color: #ffffff;
  transform: scale(1.05);
}

.why-card h3 {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg-1);
  margin: 0 0 var(--sp-3) 0;
  line-height: 1.4;
}

.why-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0;
}

/* Customizing Hero CTAs for B2B Redesign */
.btn-b2b {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-cta);
  padding: 16px 32px;
  font-size: 15px;
}

.btn-b2b small {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.85;
  margin-left: 4px;
}

.btn-b2c {
  color: var(--fg-2);
}

/* RESPONSIVE DESIGN FOR WHY SECTION */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-5);
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
  
  .why-card {
    padding: var(--sp-5);
  }
  
  .why-card h3 {
    font-size: 18px;
  }
}
