:root {
  --navy: #0b1f4a;
  --navy2: #132b63;
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --bg: #f5f7fa;
  --white: #ffffff;
  --text: #1a2340;
  --muted: #5f6e8a;
  --border: #dde3ee;
  --radius: 14px;
  --shadow: 0 4px 28px rgba(11,31,74,0.09);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: system-ui, -apple-system, sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; }
a { color: inherit; text-decoration: none; }

/* NAV */
.navbar {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  max-width: 1160px; margin: auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo {
  display: flex; flex-direction: column;
  font-size: 1.2rem; font-weight: 700; color: white; line-height: 1.1;
}
.nav-logo span { font-size: 0.7rem; font-weight: 400; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 0.9rem; color: rgba(255,255,255,0.75); font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: white; }
.btn-consult {
  background: var(--gold); color: var(--navy); font-weight: 700;
  font-size: 0.88rem; padding: 10px 22px; border-radius: 999px; transition: background 0.2s;
}
.btn-consult:hover { background: var(--gold-light); }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 55%, #1a3a80 100%);
  padding: 100px 28px;
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner { max-width: 1160px; margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800; color: white; line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 20px;
}
.hero-text h1 em { color: var(--gold); font-style: normal; }
.hero-text p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 36px; max-width: 460px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-gold {
  background: var(--gold); color: var(--navy); font-weight: 700;
  padding: 13px 28px; border-radius: 999px; transition: background 0.2s;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-white-outline {
  border: 2px solid rgba(255,255,255,0.35); color: white;
  padding: 13px 28px; border-radius: 999px; font-weight: 600; transition: background 0.2s;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.08); }

.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.stat-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 24px;
  backdrop-filter: blur(10px);
}
.stat-card strong { display: block; font-size: 2.2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-card span { font-size: 0.88rem; color: rgba(255,255,255,0.65); }

/* CLIENTS */
.clients-bar {
  background: white; border-bottom: 1px solid var(--border);
  padding: 28px 28px;
}
.clients-inner { max-width: 1160px; margin: auto; display: flex; align-items: center; gap: 32px; }
.clients-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); white-space: nowrap; }
.clients-logos { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.client-name { font-weight: 800; font-size: 1rem; color: #c8cdd8; letter-spacing: -0.02em; }

/* SECTION */
.section { padding: 84px 28px; }
.section-inner { max-width: 1160px; margin: auto; }
.section-header { margin-bottom: 52px; }
.section-eyebrow {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--gold); margin-bottom: 10px; display: block;
}
.section-header h2 { font-size: clamp(1.7rem, 2.8vw, 2.5rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 14px; }
.section-header p { color: var(--muted); font-size: 1rem; max-width: 520px; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.service-card {
  background: white; border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow); border-top: 4px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  margin-bottom: 22px;
}
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 0.93rem; line-height: 1.65; margin-bottom: 20px; }
.service-link { font-size: 0.88rem; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; }
.service-link:hover { text-decoration: underline; }

/* PROCESS */
.process-bg { background: var(--navy); }
.process-bg .section-header h2 { color: white; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%;
  height: 2px; background: rgba(201,168,76,0.25);
}
.process-step { text-align: center; padding: 0 20px; position: relative; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800; margin: 0 auto 20px;
  position: relative; z-index: 1;
}
.process-step h4 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 10px; }
.process-step p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* CASE STUDIES */
.cases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.case-card {
  background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.case-color { height: 8px; }
.case-body { padding: 32px; flex: 1; }
.case-industry {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); margin-bottom: 10px;
}
.case-body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.case-body p { color: var(--muted); font-size: 0.92rem; margin-bottom: 20px; }
.case-result {
  background: var(--bg); border-radius: 10px; padding: 14px 18px;
  font-size: 0.88rem; color: var(--text); border-left: 3px solid var(--gold);
}
.case-result strong { color: var(--navy); }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 48px; }
.team-card { text-align: center; }
.team-photo {
  width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
}
.team-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-card span { font-size: 0.85rem; color: var(--muted); display: block; margin-bottom: 10px; }
.team-card p { font-size: 0.87rem; color: var(--muted); }

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  padding: 90px 28px; text-align: center; color: white;
}
.cta-section h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 18px; }
.cta-section p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 500px; margin: 0 auto 40px; }

/* FOOTER */
footer { background: #060f22; color: rgba(255,255,255,0.45); padding: 40px 28px; text-align: center; font-size: 0.85rem; }
footer a { color: var(--gold); }

@media(max-width:900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .process-steps::before { display: none; }
}
