/* ═══════════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════════ */
:root {
  --navy:    #2A3347;
  --navy-d:  #1C2335;
  --navy-dd: #111824;
  --gold:    #E1A14C;
  --gold-l:  #EDB870;
  --brown:   #47302A;
  --off:     #F5F2EE;
  --muted:   rgba(245,242,238,.55);
  --border:  rgba(225,161,76,.15);
  --border2: rgba(255,255,255,.06);
  --r-sm:    4px;
  --r-md:    8px;
  --r-lg:    16px;
  --shadow-card: 0 2px 40px rgba(0,0,0,.32), 0 1px 8px rgba(0,0,0,.2);
  --shadow-glow: 0 0 80px rgba(225,161,76,.08);
  --font-display: 'Ubuntu', Georgia, serif;
  --font-body:    'Open Sans', sans-serif;
  --ease: cubic-bezier(.22,.68,0,1.2);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ═══════════════════════════════════════════════
   RESET / BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy-dd);
  color: var(--off);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ═══════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--off);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.body-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
}
.gold-line {
  display: inline-block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 32px;
}
.divider {
  width: 100%;
  height: 1px;
  background: var(--border2);
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s var(--ease-out), transform .72s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .72s var(--ease-out), transform .72s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .72s var(--ease-out), transform .72s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  transition: background .3s, box-shadow .3s;
}
nav.scrolled {
  background: rgba(17,24,36,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  display: block;
  width: auto;
  height: 30px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(245,242,238,.5);
  transition: color .2s;
}
.nav-links a:hover { color: var(--off); }
.nav-cta {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy-dd);
  background: var(--gold);
  padding: 10px 22px;
  border-radius: var(--r-sm);
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-l); transform: translateY(-1px); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--off);
  transition: .3s;
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy-dd);
  padding-top: 72px;
}

/* Grid texture */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(225,161,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225,161,76,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Radial glow */
#hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225,161,76,.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
  width: 100%;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  background: rgba(225,161,76,.04);
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .3; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--off);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.btn-primary {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy-dd);
  background: var(--gold);
  padding: 14px 28px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(225,161,76,.25);
}
.btn-outline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--off);
  background: transparent;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(245,242,238,.2);
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(225,161,76,.06);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--off);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border2);
  align-self: center;
}

/* Hero panel */
.hero-panel {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-card);
}
.hero-panel-label {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-panel-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.panel-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border2);
}
.panel-item:last-child { border-bottom: none; padding-bottom: 0; }
.panel-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(225,161,76,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--gold);
}
.panel-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--off);
  margin-bottom: 2px;
  line-height: 1.3;
}
.panel-desc {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════
   RIBBON — TICKER
═══════════════════════════════════════════════ */
.ribbon {
  background: var(--gold);
  overflow: hidden;
  padding: 10px 0;
  white-space: nowrap;
}
.ribbon-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 28s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ribbon-item {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy-dd);
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.ribbon-item::after {
  content: '◆';
  font-size: 6px;
  opacity: .5;
}

/* ═══════════════════════════════════════════════
   ABOUT / TESE
═══════════════════════════════════════════════ */
#about {
  padding: 120px 0;
  background: var(--navy-dd);
  position: relative;
}
#about::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 240px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.about-left .body-text { margin-top: 24px; }
.about-left .body-text + .body-text { margin-top: 16px; }

.principles-list {
  list-style: none;
  margin-top: 32px;
}
.principles-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border2);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.principles-list li:first-child { padding-top: 0; }
.principles-list li:last-child { border-bottom: none; }
.principle-num {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--gold);
  opacity: .7;
  flex-shrink: 0;
  margin-top: 2px;
  font-style: italic;
}

/* Tese card */
.tese-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  position: relative;
  overflow: hidden;
}
.tese-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--brown));
}
.tese-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  color: var(--off);
  line-height: 1.45;
  margin-bottom: 32px;
}
.tese-quote strong { color: var(--gold); font-style: normal; font-weight: 700; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.value-chip {
  background: rgba(225,161,76,.06);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--off);
}
.value-chip svg { color: var(--gold); flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
#services {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
}
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 72px;
}
.services-intro { font-size: 15px; line-height: 1.8; color: var(--muted); font-weight: 300; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--navy-d);
  padding: 48px 40px;
  border: 1px solid var(--border2);
  position: relative;
  overflow: hidden;
  transition: background .3s;
  cursor: default;
}
.service-card:first-child { border-radius: var(--r-lg) 0 0 0; }
.service-card:nth-child(2) { border-radius: 0 var(--r-lg) 0 0; }
.service-card:nth-child(3) { border-radius: 0 0 0 var(--r-lg); }
.service-card:last-child { border-radius: 0 0 var(--r-lg) 0; }
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover { background: var(--navy); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: rgba(225,161,76,.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 28px;
  transition: background .3s;
}
.service-card:hover .service-icon { background: rgba(225,161,76,.18); }
.service-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-style: italic;
  color: var(--gold);
  opacity: .5;
  position: absolute;
  top: 28px; right: 32px;
}
.service-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--off);
  line-height: 1.25;
  margin-bottom: 16px;
}
.service-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 28px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.service-tag {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  background: rgba(225,161,76,.08);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ═══════════════════════════════════════════════
   INFOGRAPHIC — METHODOLOGY
═══════════════════════════════════════════════ */
#methodology {
  padding: 120px 0;
  background: var(--navy-dd);
}
.method-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}
.method-header .body-text { margin-top: 20px; text-align: center; }
.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.method-step {
  text-align: center;
  padding: 0 20px;
}
.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: var(--navy-dd);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 22px;
  color: var(--gold);
  position: relative;
  box-shadow: 0 0 0 8px rgba(225,161,76,.06);
}
.step-circle svg {
  width: 26px;
  height: 26px;
  display: block;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--off);
  margin-bottom: 10px;
}
.step-text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════
   STATS — INFOGRAPHIC BAR
═══════════════════════════════════════════════ */
#stats {
  background: var(--navy);
  padding: 100px 0;
  overflow: hidden;
}
.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.stats-text .section-title { margin-bottom: 24px; }
.stats-text .body-text { margin-bottom: 32px; }

/* Chart bars */
.chart-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.chart-row { display: flex; flex-direction: column; gap: 6px; }
.chart-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.chart-label { color: var(--off); font-weight: 500; }
.chart-val { color: var(--gold); font-weight: 600; }
.chart-track {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,.06);
  border-radius: 100px;
  overflow: hidden;
}
.chart-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  width: 0;
  transition: width 1.4s var(--ease-out);
}
.chart-fill.animated { width: var(--w); }

/* Big stats */
.big-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.big-stat {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border2);
  padding: 28px 24px;
  border-radius: var(--r-md);
}
.big-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--off);
  line-height: 1;
  margin-bottom: 6px;
}
.big-stat-num span { color: var(--gold); }
.big-stat-label {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════
   PRINCIPLES — FULL SECTION
═══════════════════════════════════════════════ */
#principles {
  padding: 120px 0;
  background: var(--navy-dd);
  position: relative;
  overflow: hidden;
}
#principles::before {
  content: 'PRINCÍPIOS';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 12vw;
  font-weight: 700;
  color: rgba(255,255,255,.015);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: .1em;
}
.principles-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
  margin-bottom: 80px;
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.principle-card {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border2);
  padding: 36px 28px;
  transition: background .3s, border-color .3s;
}
.principle-card:hover {
  background: rgba(225,161,76,.04);
  border-color: var(--border);
}
.principle-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: rgba(8,12,20,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 18px;
  box-shadow: 0 0 0 6px rgba(225,161,76,.05);
}
.principle-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}
.principle-title {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--off);
  margin-bottom: 10px;
  line-height: 1.3;
}
.principle-text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════
   ICP / QUEM ATENDEMOS
═══════════════════════════════════════════════ */
#icp {
  padding: 120px 0;
  background: var(--navy);
}
.icp-header { text-align: center; max-width: 640px; margin: 0 auto 72px; }
.icp-header .body-text { margin-top: 18px; }
.icp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.icp-card {
  background: var(--navy-d);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.icp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--border);
}
.icp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.icp-card:hover::before { opacity: 1; }
.icp-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: rgba(8,12,20,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  box-shadow: 0 0 0 8px rgba(225,161,76,.05);
}
.icp-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}
.icp-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--off);
  margin-bottom: 12px;
}
.icp-text { font-size: 13.5px; line-height: 1.7; color: var(--muted); }

/* ═══════════════════════════════════════════════
   TEAM / QUEM SOMOS
═══════════════════════════════════════════════ */
#team {
  padding: 120px 0;
  background:
    radial-gradient(circle at top left, rgba(225,161,76,.07), transparent 30%),
    linear-gradient(180deg, var(--navy-dd), #0d1522);
}
.team-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.team-header .body-text { margin-top: 18px; }
.team-slider {
  position: relative;
}
.team-slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.team-slider-caption {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(245,242,238,.38);
}
.team-slider-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.team-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--off);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, transform .2s;
  cursor: pointer;
}
.team-slider-btn:hover {
  background: rgba(225,161,76,.10);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.team-slider-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}
.team-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.team-track::-webkit-scrollbar {
  display: none;
}
.team-card {
  flex: 0 0 calc(50% - 14px);
  min-width: calc(50% - 14px);
  scroll-snap-align: start;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-card);
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.team-photo {
  position: relative;
  height: 280px;
  border-radius: calc(var(--r-lg) - 6px);
  overflow: hidden;
  margin-bottom: 24px;
  background:
    linear-gradient(180deg, rgba(6,10,18,.06), rgba(6,10,18,.68)),
    var(--team-accent),
    linear-gradient(135deg, #1c2e4d, #101927);
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 18px;
}
.team-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .22;
}
.team-photo-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  background: rgba(8,12,20,.58);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 10px;
}
.team-photo-initials {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  color: var(--off);
  letter-spacing: .04em;
}
.team-role {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.team-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--off);
  margin-bottom: 14px;
}
.team-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 22px;
}
.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(225,161,76,.07);
  color: var(--off);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background .2s, border-color .2s, transform .2s;
}
.team-linkedin:hover {
  background: rgba(225,161,76,.12);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.team-linkedin svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  display: block;
}

/* ═══════════════════════════════════════════════
   CTA — CONTACT
═══════════════════════════════════════════════ */
#cta {
  padding: 120px 0;
  background: var(--navy-dd);
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225,161,76,.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--off);
  margin-bottom: 24px;
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-sub { font-size: 15px; line-height: 1.75; color: var(--muted); margin-bottom: 40px; }

/* Form */
.contact-form {
  background: var(--navy);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.form-label {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border2);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  color: var(--off);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color .2s, background .2s;
  margin-bottom: 20px;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: rgba(225,161,76,.04);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(245,242,238,.25); }
.form-select option { background: var(--navy-d); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-alert {
  border-radius: var(--r-md);
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.6;
}
.form-alert-success {
  background: rgba(90, 168, 118, .12);
  border: 1px solid rgba(90, 168, 118, .28);
  color: #cfe7d5;
}
.form-alert-error {
  background: rgba(177, 74, 74, .14);
  border: 1px solid rgba(177, 74, 74, .28);
  color: #f5d5d5;
}
.form-error-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.form-whatsapp {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-whatsapp svg { color: #25D366; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  background: var(--navy-d);
  border-top: 1px solid var(--border2);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}
.footer-logo img {
  display: block;
  width: auto;
  height: 34px;
}
.footer-about {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 24px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact a {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.footer-contact a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  background: rgba(255,255,255,.02);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color .2s, border-color .2s, background .2s, transform .2s;
}
.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(225,161,76,.08);
  transform: translateY(-1px);
}
.footer-col-title {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--off);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border2);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(245,242,238,.25);
}
.footer-created {
  font-size: 11px;
  color: rgba(245,242,238,.22);
  white-space: nowrap;
}
.footer-created-label {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-created-link,
.footer-created-link:visited {
  color: var(--gold);
  transition: color .2s;
}
.footer-created-link:hover { color: var(--gold-l); }
.footer-principles {
  font-size: 11px;
  color: rgba(245,242,238,.2);
  font-style: italic;
  font-family: var(--font-display);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-panel { display: none; }
  .about-grid, .services-header, .stats-inner, .cta-inner, .principles-header { grid-template-columns: 1fr; gap: 48px; }
  .method-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .team-card {
    flex-basis: min(560px, 85vw);
    min-width: min(560px, 85vw);
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .team-slider-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .team-card {
    flex-basis: 100%;
    min-width: 100%;
  }
  .team-card { padding: 22px; }
  .team-photo { height: 240px; }
  .service-card:first-child,
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:last-child { border-radius: 0; }
  .services-grid { border-radius: var(--r-lg); overflow: hidden; }
  .big-stats { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .icp-cards { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
}
