:root {
  --gold: #d4af37;
  --gold-light: #f0d068;
  --gold-dim: rgba(212, 175, 55, .15);
  --navy: #0a0e1a;
  --navy-2: #0f1525;
  --navy-3: #141b30;
  --navy-card: #111827;
  --white: #ffffff;
  --off-white: #f5f4ef;
  --text-muted: #8a94a8;
  --text-body: #c8d0e0;
  --red-accent: #c0392b;
  --green-accent: #27ae60;
  --border: rgba(212, 175, 55, .2);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: .35s cubic-bezier(.4, 0, .2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --shadow-gold: 0 8px 40px rgba(212, 175, 55, .18);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.7;
}

::selection {
  background: var(--gold-dim);
  color: var(--gold);
}

a {
  text-decoration: none;
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

/* ── Reveal animations (Intersection Observer) ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════ */
#mainNav {
  padding: 18px 0;
  background: transparent;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
  z-index: 1000;
}

#mainNav.scrolled {
  padding: 10px 0;
  background: rgba(10, 14, 26, .92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: .15em;
}

.brand-icon {
  color: var(--gold);
  font-size: 1.4rem;
}

.brand-text {
  color: var(--white);
}

.nav-link {
  color: var(--text-body) !important;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px !important;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition), left var(--transition);
}

.nav-link:hover {
  color: var(--gold) !important;
}

.nav-link:hover::after {
  width: 60%;
  left: 20%;
}

.btn-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 4px;
  border: none;
  transition: background var(--transition), box-shadow var(--transition);
}

.btn-cta:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
}

/* Hamburger */
.navbar-toggler {
  border: none;
  background: none;
  padding: 6px 4px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
  transition: transform var(--transition);
}

/* ════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════ */
#hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  min-height: 100vh;
}

/* Dot grid background */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212, 175, 55, .12) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow--1 {
  width: 600px;
  height: 600px;
  background: rgba(212, 175, 55, .08);
  top: -100px;
  right: -100px;
}

.hero-glow--2 {
  width: 400px;
  height: 400px;
  background: rgba(192, 57, 43, .06);
  bottom: 100px;
  left: 0;
}

.hero-container {
  padding-top: 100px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: .5;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

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

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .06em;
  padding: 14px 32px;
  border-radius: 4px;
  transition: all var(--transition);
}

.btn-primary-custom:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-ghost-custom {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .06em;
  padding: 13px 30px;
  border-radius: 4px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.btn-ghost-custom:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat-item {
  text-align: left;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
}

.stat-sign {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
}

.stat-label {
  display: block;
  font-size: .75rem;
  color: var(--text-muted);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ── Hero Visual / Dashboard ── */
.hero-visual {
  position: relative;
}

.hero-card-wrap {
  position: relative;
  padding: 40px 20px;
}

.hero-dashboard {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.db-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  font-size: .75rem;
  color: var(--text-muted);
}

.db-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.db-dot.red {
  background: #ff5f57;
}

.db-dot.yellow {
  background: #febc2e;
}

.db-dot.green {
  background: #28c840;
}

.db-title {
  margin-left: 8px;
}

.db-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  padding-bottom: 4px;
  margin-bottom: 16px;
}

.chart-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.chart-bar::before {
  content: '';
  width: 100%;
  height: var(--h);
  background: linear-gradient(180deg, rgba(212, 175, 55, .5) 0%, rgba(212, 175, 55, .2) 100%);
  border-radius: 4px 4px 0 0;
  transition: height 1s ease var(--d);
  animation: barGrow 1s ease var(--d) both;
}

.chart-bar.active::before {
  background: linear-gradient(180deg, var(--gold) 0%, rgba(212, 175, 55, .4) 100%);
}

@keyframes barGrow {
  from {
    height: 0;
  }

  to {
    height: var(--h);
  }
}

.chart-bar span {
  font-size: .6rem;
  color: var(--text-muted);
}

.db-metrics {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.db-metric {
  text-align: center;
}

.dm-val {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--gold);
}

.dm-lbl {
  font-size: .65rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Floating cards */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .4);
}

.floating-card i {
  color: var(--gold);
  font-size: 1rem;
}

.card-1 {
  top: 20px;
  left: -30px;
  animation: floatY 4s ease-in-out infinite;
}

.card-2 {
  top: 30px;
  right: -10px;
  animation: floatY 4s ease-in-out infinite .8s;
}

.card-3 {
  bottom: 40px;
  left: -20px;
  animation: floatY 4s ease-in-out infinite 1.6s;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fadeInUp 1s ease 1.5s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ════════════════════════════════════════════════
   INTRO STRIP (marquee)
   ════════════════════════════════════════════════ */
.intro-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
}

.strip-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
}

.strip-track .sep {
  opacity: .5;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ════════════════════════════════════════════════
   SHARED SECTION STYLES
   ════════════════════════════════════════════════ */
section {
  padding: 100px 0;
}

.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  position: relative;
  padding-left: 20px;
}

.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}

.section-eyebrow.light {
  color: var(--gold-light);
}

.section-eyebrow.light::before {
  background: var(--gold-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title.light {
  color: var(--white);
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 0;
}

.section-sub.light {
  color: rgba(255, 255, 255, .7);
}

.section-header {
  margin-bottom: 16px;
}

/* ════════════════════════════════════════════════
   STRATEGY — PILLAR CARDS
   ════════════════════════════════════════════════ */
.section-strategy {
  background: var(--navy-2);
}

.pillar-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  height: 100%;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.pillar-card--featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--navy-card) 0%, rgba(212, 175, 55, .06) 100%);
}

.pillar-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--gold);
  color: var(--navy);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 16px;
  -webkit-text-stroke: 1px rgba(212, 175, 55, .2);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--gold);
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.pillar-card p {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillar-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-body);
}

.pillar-list i {
  color: var(--gold);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════
   GROWTH — TIMELINE
   ════════════════════════════════════════════════ */
.section-growth {
  background: var(--navy);
}

.steps-timeline {
  position: relative;
  padding-left: 24px;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.step-item {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-marker {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: border-color var(--transition);
}

.step-marker.active,
.step-item:hover .step-marker {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.step-n {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 900;
  color: var(--gold);
}

.step-body {
  flex: 1;
  padding-top: 8px;
}

.step-body h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.step-body p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

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

.step-tags span {
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(212, 175, 55, .25);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .04em;
}

/* ════════════════════════════════════════════════
   METRICS SECTION
   ════════════════════════════════════════════════ */
.section-metrics {
  background: var(--navy-2);
  padding: 80px 0;
}

.metrics-inner {
  background: linear-gradient(135deg, var(--navy-card) 0%, rgba(212, 175, 55, .05) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 60px 48px;
}

.metrics-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
}

.metric-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
}

.mb-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.mb-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.mb-pct {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}

.mb-desc {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 8px;
  max-width: 160px;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════
   CASES
   ════════════════════════════════════════════════ */
.section-cases {
  background: var(--navy);
}

.case-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.case-card--featured {
  border-color: var(--gold);
}

.case-header {
  background: linear-gradient(135deg, rgba(var(--accent), .15) 0%, var(--navy-3) 100%);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(20, 27, 48, 1) 0%, rgba(20, 27, 48, .5) 100%);
  position: relative;
}

.case-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 15%, transparent) 0%, transparent 60%);
}

.case-logo {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: .85rem;
  position: relative;
}

.case-company {
  flex: 1;
  position: relative;
}

.case-company strong {
  display: block;
  color: var(--white);
  font-size: .95rem;
}

.case-company span {
  font-size: .75rem;
  color: var(--text-muted);
}

.case-growth {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  position: relative;
}

.case-body {
  padding: 24px;
  flex: 1;
}

.case-body blockquote {
  font-size: .88rem;
  color: var(--text-body);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
}

.case-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ca-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .75rem;
  flex-shrink: 0;
  color: var(--white);
}

.ca-1 {
  background: linear-gradient(135deg, #2980b9, #6dd5fa);
}

.ca-2 {
  background: linear-gradient(135deg, #c0392b, #f56a6a);
}

.ca-3 {
  background: linear-gradient(135deg, #27ae60, #56d386);
}

.case-author strong {
  display: block;
  font-size: .85rem;
  color: var(--white);
}

.case-author span {
  font-size: .72rem;
  color: var(--text-muted);
}

.case-metrics {
  display: flex;
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  gap: 4px;
}

.cm {
  flex: 1;
  text-align: center;
}

.cm span {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--gold);
}

.cm small {
  font-size: .68rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════
   TOOLS / MARKETING
   ════════════════════════════════════════════════ */
.section-tools {
  background: var(--navy-2);
}

.tool-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tool-row {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: transform var(--transition);
}

.tool-row:last-child {
  border-bottom: none;
}

.tool-row:hover {
  transform: translateX(6px);
}

.tool-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 2px;
}

.tool-info strong {
  display: block;
  color: var(--white);
  font-size: .92rem;
  margin-bottom: 4px;
}

.tool-info p {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Visual cards */
.tools-visual {
  position: relative;
  padding: 20px;
}

.tv-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.tv-main {}

.tv-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 20px;
}

.tv-header i {
  color: var(--gold);
}

.tv-chart {
  display: flex;
  gap: 24px;
  align-items: center;
}

.pie-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.pie-svg {
  transform: rotate(-90deg);
}

.pie-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.pie-legend {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pl-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--text-body);
}

.pl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pl-row strong {
  margin-left: auto;
  color: var(--white);
}

.tv-small {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 14px 18px;
  min-width: 130px;
}

.tv-s1 {
  bottom: -10px;
  left: 0;
}

.tv-s2 {
  top: -10px;
  right: 0;
}

.tvs-label {
  font-size: .68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.tvs-val {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.tvs-trend {
  font-size: .72rem;
  font-weight: 600;
}

.tvs-trend.up {
  color: var(--green-accent);
}

.tvs-trend.down {
  color: var(--red-accent);
}

/* ════════════════════════════════════════════════
   TEAM
   ════════════════════════════════════════════════ */
.section-team {
  background: var(--navy);
}

.team-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}

.tc-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  position: relative;
}

.tc-av1 {
  background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
}

.tc-av2 {
  background: linear-gradient(135deg, #134e5e, #71b280);
}

.tc-av3 {
  background: linear-gradient(135deg, #373b44, #4286f4);
}

.tc-av4 {
  background: linear-gradient(135deg, #6a3093, #a044ff);
}

.tc-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--navy-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .5rem;
  color: var(--navy);
}

.team-card h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 4px;
}

.tc-role {
  display: block;
  font-size: .75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.team-card p {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.tc-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.tc-socials a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--text-muted);
  transition: all var(--transition);
}

.tc-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ════════════════════════════════════════════════
   QUOTE
   ════════════════════════════════════════════════ */
.section-quote {
  background: var(--navy-2);
  padding: 80px 0;
}

.quote-inner {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.qi-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: .8;
  color: var(--gold);
  opacity: .2;
  position: absolute;
  top: -20px;
  left: -20px;
}

.quote-inner blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 24px;
}

.quote-inner cite {
  font-size: .85rem;
  color: var(--gold);
  letter-spacing: .06em;
}

/* ════════════════════════════════════════════════
   CONTACT / CTA
   ════════════════════════════════════════════════ */
.section-contact {
  background: var(--navy-3);
  position: relative;
  overflow: hidden;
}

.contact-bg-shape {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, .1) 0%, transparent 70%);
  pointer-events: none;
}

.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255, 255, 255, .8);
}

.cp-item i {
  color: var(--gold-light);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.contact-form-wrap h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-form-wrap>p {
  font-size: .85rem;
  color: #6b7280;
  margin-bottom: 24px;
}

.cf-field {
  margin-bottom: 16px;
}

.cf-field label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: #374151;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cf-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--navy);
  background: #f9fafb;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.cf-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .15);
  background: var(--white);
}

textarea.cf-input {
  resize: vertical;
  min-height: 90px;
}

.btn-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--gold);
  color: var(--navy);
}

.cf-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  color: #9ca3af;
  margin-top: 12px;
  margin-bottom: 0 !important;
}

.cf-privacy i {
  color: var(--green-accent);
}

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
.site-footer {
  background: #070b14;
  padding-top: 80px;
  padding-bottom: 0;
  border-top: 1px solid var(--border);
}

.footer-top {
  padding-bottom: 60px;
}

.footer-desc {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .9rem;
  transition: all var(--transition);
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.site-footer h6 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: .85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.footer-subscribe {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.footer-subscribe input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 11px 14px;
  font-size: .85rem;
  color: var(--white);
  outline: none;
}

.footer-subscribe input::placeholder {
  color: var(--text-muted);
}

.footer-subscribe button {
  background: var(--gold);
  border: none;
  padding: 0 16px;
  color: var(--navy);
  font-size: .9rem;
  cursor: pointer;
  transition: background var(--transition);
}

.footer-subscribe button:hover {
  background: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .78rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
  transition: color var(--transition);
}

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

/* ════════════════════════════════════════════════
   TOAST
   ════════════════════════════════════════════════ */
.toast-custom {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--navy-card);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--white);
  box-shadow: var(--shadow-gold);
  transform: translateY(100px);
  opacity: 0;
  transition: all .4s ease;
  z-index: 9999;
}

.toast-custom i {
  color: var(--green-accent);
  font-size: 1.1rem;
}

.toast-custom.show {
  transform: translateY(0);
  opacity: 1;
}

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .floating-card {
    display: none;
  }

  .hero-card-wrap {
    padding: 10px 0;
  }

  .hero-actions .btn-ghost-custom {
    margin-top: 12px;
    margin-left: 0 !important;
  }

  .metrics-inner {
    padding: 36px 24px;
  }

  .steps-timeline::before {
    display: none;
  }

  .steps-timeline {
    padding-left: 0;
  }

  .tools-visual .tv-small {
    display: none;
  }
}

@media (max-width: 767px) {
  section {
    padding: 70px 0;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .qi-mark {
    font-size: 5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .toast-custom {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }
}