:root {
  --black: #080c0f;
  --deep-navy: #0a1628;
  --navy: #0d1f3c;
  --navy-mid: #132848;
  --navy-light: #1a3560;
  --white: #ffffff;
  --off-white: #f4f3f0;
  --muted: #8a9bad;
  --muted-dark: #4a5c6e;
  --gold: #c8a96e;
  --gold-light: #d4ba87;
  --gold-dark: #a8893e;
  --rule: rgba(200, 169, 110, 0.25);
  --rule-light: rgba(255, 255, 255, 0.08);
  --mono: "Roboto Mono", monospace;
  --serif: "EB Garamond", Georgia, serif;
  --sans: "Inter", sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  background: var(--deep-navy);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 14%;
  background: rgba(8, 12, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rule-light);
  transition: background 0.4s ease;
}

nav.solid {
  background: var(--black);
}

.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0;
}

.nav-center {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-center a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-center a:hover {
  color: var(--white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switch {
  display: flex;
  border: 1px solid var(--rule-light);
  border-radius: 2px;
  overflow: hidden;
}

.lang-btn {
  padding: 5px 12px;
  background: transparent;
  border: none;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  border-right: 1px solid var(--rule-light);
}

.lang-btn:last-child {
  border-right: none;
}
.lang-btn.active {
  background: var(--gold);
  color: var(--black);
}

.nav-cta {
  padding: 9px 13px;
  background: transparent;
  border: 1px solid var(--gold);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

button.nav-cta {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  margin: 0;
  line-height: inherit;
}

/* ─── CONSULTATION DRAWER ─── */
body.consultation-open {
  overflow: hidden;
}

.consultation-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}

.consultation-drawer.is-open {
  pointer-events: auto;
}

.consultation-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 15, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.consultation-drawer.is-open .consultation-overlay {
  opacity: 1;
}

.consultation-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50vw;
  min-width: 0;
  max-width: 100%;
  background: var(--black);
  border-left: 1px solid var(--rule-light);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.consultation-drawer.is-open .consultation-panel {
  transform: translateX(0);
}

.consultation-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 28px 16px;
  border-bottom: 1px solid var(--rule-light);
  flex-shrink: 0;
}

.consultation-kicker {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.consultation-title {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--white);
}

.consultation-close {
  flex-shrink: 0;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid var(--rule-light);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.consultation-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.consultation-panel-body {
  padding: 20px 28px 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
}

.consultation-intro {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 22px;
  font-weight: 300;
}

.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.consultation-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.consultation-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.consultation-label input,
.consultation-label select,
.consultation-label textarea {
  width: 100%;
  padding: 11px 12px;
  background: rgba(10, 22, 40, 0.65);
  border: 1px solid var(--rule-light);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--white);
  transition: border-color 0.2s;
}

.consultation-label input:focus,
.consultation-label select:focus,
.consultation-label textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.consultation-label textarea {
  min-height: 120px;
  resize: vertical;
}

.consultation-label select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238a9bad' d='M1 1.5L6 6.5L11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.consultation-honey {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.consultation-submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
  .consultation-overlay,
  .consultation-panel {
    transition-duration: 0.01ms;
  }
}

/* ─── TICKER ─── */
.ticker {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 99;
  height: 32px;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--rule-light);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  flex-shrink: 0;
}

.ticker-item span {
  color: var(--gold);
  font-weight: 500;
}

.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding-top: 96px;
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: hidden;
}

/* Grid background like Palantir */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: 80px 80px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(to top, var(--deep-navy), transparent);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 56px;
  position: relative;
  z-index: 2;
}

.hero-left {
  padding-right: 80px;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  opacity: 0;
  animation: reveal 1s ease forwards 0.2s;
}

.hero-tag-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-tag-text {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 32px;
  opacity: 0;
  animation: reveal 1.1s ease forwards 0.4s;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  max-width: 420px;
  margin-bottom: 52px;
  opacity: 0;
  animation: reveal 1.1s ease forwards 0.6s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: reveal 1.1s ease forwards 0.8s;
}

.btn-gold {
  padding: 14px 36px;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 169, 110, 0.25);
}

button.btn-gold {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  margin: 0;
  line-height: inherit;
}

.btn-outline {
  padding: 14px 36px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--rule-light);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

/* Hero right — data panel */
.hero-panel {
  background: rgba(10, 22, 40, 0.7);
  border: 1px solid var(--rule-light);
  padding: 36px;
  opacity: 0;
  animation: reveal 1.2s ease forwards 1s;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule-light);
}

.panel-title {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.panel-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 0.6rem;
  color: #4caf7d;
  letter-spacing: 0.1em;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4caf7d;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule-light);
  margin-bottom: 28px;
}

.metric {
  background: var(--deep-navy);
  padding: 20px;
  position: relative;
}

.metric-val {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.metric-val.gold {
  color: var(--gold);
}

.metric-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.metric-change {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--mono);
  font-size: 0.6rem;
  color: #4caf7d;
  letter-spacing: 0.05em;
}

.panel-bar {
  margin-bottom: 16px;
}

.panel-bar-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.panel-bar-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-bar-val {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--gold);
}

.bar-track {
  height: 2px;
  background: var(--rule-light);
  position: relative;
}

.bar-fill {
  height: 100%;
  background: var(--gold);
  position: relative;
  transition: width 2s ease;
}

/* ─── DIVIDER ─── */
.divider {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--rule-light);
}

.divider-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.divider-num {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
}

.divider-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ─── SECTION FOUNDATIONS ─── */
section {
  position: relative;
}

.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 56px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
}

.section-num {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.2em;
}

.section-line {
  flex: none;
  width: 48px;
  height: 1px;
  background: var(--rule);
}

.section-title-sm {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-headline {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.01em;
}

.section-headline em {
  font-style: italic;
  color: var(--gold-light);
}

/* ─── WHY US (dark section) ─── */
.why-section {
  background: var(--black);
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.why-left .section-headline {
  margin-bottom: 28px;
}

.strategy-quote {
  margin: 36px 0;
  padding: 28px 32px;
  border-left: 2px solid var(--gold);
  background: rgba(200, 169, 110, 0.04);
}

.strategy-quote p {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.strategy-quote cite {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
}

.why-body-text {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--muted);
  font-weight: 300;
}

.why-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--rule-light);
}

.pillar {
  padding: 28px 32px;
  border-bottom: 1px solid var(--rule-light);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  transition: background 0.2s;
  cursor: default;
}

.pillar:last-child {
  border-bottom: none;
}

.pillar:hover {
  background: rgba(200, 169, 110, 0.04);
}

.pillar-num {
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  padding-top: 3px;
}

.pillar h4 {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.pillar p {
  font-size: 0.83rem;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
}

/* ─── MISSION / VISION ─── */
.mv-section {
  background: var(--deep-navy);
  overflow: hidden;
}

.mv-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.mv-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--rule-light);
}

.mv-card {
  background: var(--deep-navy);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: attr(data-letter);
  position: absolute;
  font-family: var(--serif);
  font-size: 300px;
  font-weight: 700;
  color: rgba(200, 169, 110, 0.04);
  bottom: -60px;
  right: -20px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.mv-tag {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mv-tag::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.mv-card h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.mv-card h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.mv-card p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--muted);
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* ─── SOLUTIONS ─── */
.solutions-section {
  background: var(--navy);
  border-top: 1px solid var(--rule-light);
}

.solutions-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.solutions-intro {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--muted);
  font-weight: 300;
}

.sol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule-light);
}

.sol-card {
  background: var(--navy);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}

.sol-card:hover {
  background: var(--navy-light);
}

.sol-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.sol-card:hover::after {
  transform: scaleX(1);
}

.sol-num {
  font-family: var(--mono);
  font-size: 0.58rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.sol-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.sol-card p {
  font-size: 0.83rem;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 28px;
}

.sol-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sol-tag {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dark);
  border: 1px solid var(--rule-light);
  padding: 4px 10px;
}

/* ─── PACKAGES ─── */
.packages-section {
  background: var(--black);
  border-top: 1px solid var(--rule-light);
}

.packages-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-light);
}

.pkg-card {
  background: var(--black);
  padding: 48px 36px;
  position: relative;
  transition: background 0.3s;
}

.pkg-card.featured {
  background: var(--navy);
}

.pkg-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.pkg-featured-tag {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: none;
}

.pkg-card.featured .pkg-featured-tag {
  display: block;
}

.pkg-tier {
  font-family: var(--mono);
  font-size: 0.58rem;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pkg-name {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.pkg-price-block {
  padding: 20px 0;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
  margin-bottom: 28px;
}

.pkg-price {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.pkg-price-note {
  font-family: var(--mono);
  font-size: 0.58rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 300;
}

.pkg-features li::before {
  content: "—";
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── PROCESS ─── */
.process-section {
  background: var(--deep-navy);
  border-top: 1px solid var(--rule-light);
  overflow: hidden;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--rule-light);
  margin-top: 64px;
}

.phase-card {
  background: var(--deep-navy);
  padding: 40px 32px;
  border-right: 1px solid var(--rule-light);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.phase-card:last-child {
  border-right: none;
}
.phase-card:hover {
  background: rgba(200, 169, 110, 0.04);
}

.phase-week {
  font-family: var(--mono);
  font-size: 0.58rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.phase-num-big {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 500;
  color: rgba(200, 169, 110, 0.08);
  line-height: 1;
  margin-bottom: 16px;
}

.phase-card h4 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.phase-card p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
}

/* ─── INDUSTRIES ─── */
.industries-section {
  background: var(--navy);
  border-top: 1px solid var(--rule-light);
}

.industries-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-light);
}

.ind-item {
  background: var(--navy);
  padding: 32px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
  cursor: default;
}

.ind-item:hover {
  background: var(--navy-light);
}

.ind-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

.ind-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* ─── CTA ─── */
.cta-section {
  background: var(--black);
  border-top: 1px solid var(--rule);
  overflow: hidden;
  position: relative;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 100%,
    rgba(200, 169, 110, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.cta-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-sub {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 500px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.cta-note {
  font-family: var(--mono);
  font-size: 0.58rem;
  color: var(--muted-dark);
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 4px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  border-top: 1px solid var(--rule-light);
  padding: 40px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-legal {
  font-family: var(--mono);
  font-size: 0.58rem;
  color: var(--muted-dark);
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-family: var(--mono);
  font-size: 0.58rem;
  color: var(--muted-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

/* ─── ANIMATIONS ─── */
@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── LANG ─── */
body.lang-en .es {
  display: none !important;
}
body.lang-es .en {
  display: none !important;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav {
    padding: 0 28px;
  }
  .nav-center {
    display: none;
  }
  .hero-inner,
  .why-layout,
  .mv-layout,
  .solutions-header,
  .packages-header,
  .industries-header,
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sol-grid,
  .pkg-grid,
  .ind-grid,
  .process-track {
    grid-template-columns: 1fr 1fr;
  }
  .section-wrap {
    padding: 72px 28px;
  }
  .hero-inner {
    padding: 60px 28px;
  }
  .hero-left {
    padding-right: 50%;
  }
  .hero-right {
    padding-right: 40%;
  }
  footer {
    padding: 32px 28px;
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-inner {
    padding: 72px 28px;
  }
  .mv-card {
    padding: 44px 36px;
  }
}

@media (max-width: 767px) {
  .consultation-panel {
    width: 100%;
    border-left: none;
  }

  .consultation-field-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .sol-grid,
  .pkg-grid,
  .ind-grid,
  .process-track {
    grid-template-columns: 1fr;
  }
  .metric-grid {
    display: block;
  }

  .consultation-panel-header,
  .consultation-panel-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .consultation-title {
    font-size: 1.25rem;
  }
}
