/* ═══════════════════════════════════════════════
   AZURITE ADVISORY
   Design: Teneo-inspired | Colors: Navy + Orange
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Sora:wght@700;800&display=swap');

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

:root {
  --navy:    #05111f;
  --navy2:   #0b1f35;
  --orange:  #E8650A;
  --org2:    #F28C3A;
  --white:   #ffffff;
  --off:     #f8fafc;
  --border:  #e2e8f0;
  --text:    #475569;
  --dim:     #94a3b8;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--navy); line-height: 1.6; overflow-x: hidden; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: var(--orange); }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ── NAV ──────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%; height: 70px;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.wordmark { display: flex; flex-direction: column; gap: 4px; }
.wm-top { font-family: 'Sora', sans-serif; font-size: 21px; font-weight: 800; color: var(--navy); letter-spacing: .02em; line-height: 1; }
.wm-btm { display: flex; align-items: center; gap: 7px; }
.wm-line { display: inline-block; width: 26px; height: 2.5px; background: var(--orange); border-radius: 2px; flex-shrink: 0; }
.wm-sub { font-size: 8.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: #64748b; font-size: 13.5px; font-weight: 500; padding: 6px 14px; border-radius: 6px; transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-cta {
  background: var(--orange); color: white; font-size: 13.5px; font-weight: 600;
  padding: 9px 22px; border-radius: 6px; transition: background .15s;
}
.nav-cta:hover { background: var(--org2); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0; z-index: 99;
  background: white; border-bottom: 1px solid var(--border); padding: 16px 6%;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 0; font-size: 15px; font-weight: 500; color: var(--navy); border-bottom: 1px solid var(--off); }
.mobile-menu a:last-child { border-bottom: none; }

/* ── HERO ─────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  padding: 0 6% 80px; overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.48;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(5,17,31,0.95) 40%, rgba(5,17,31,0.55) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero-label { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--org2); margin-bottom: 20px; }
.hero-h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 800; line-height: 1.05; letter-spacing: -2px;
  color: white; margin-bottom: 24px;
}
.hero-h1 em { font-style: normal; color: var(--orange); }
.hero-sub { font-size: 18px; line-height: 1.72; color: rgba(255,255,255,0.60); max-width: 520px; margin-bottom: 40px; }
.hero-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: white; font-size: 15px; font-weight: 600;
  padding: 15px 32px; border-radius: 6px; transition: all .2s;
  box-shadow: 0 8px 32px rgba(232,101,10,0.35);
}
.hero-btn:hover { background: var(--org2); transform: translateY(-2px); }

/* ── PAGE HERO (interior pages) ───────────── */
.page-hero {
  position: relative; padding: 140px 6% 88px;
  background: var(--navy); overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.20;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(5,17,31,0.97) 50%, rgba(5,17,31,0.70) 100%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 680px; }
.page-hero-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--org2); margin-bottom: 16px; }
.page-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 800; line-height: 1.08; letter-spacing: -1.5px;
  color: white; margin-bottom: 18px;
}
.page-hero h1 em { font-style: normal; color: var(--orange); }
.page-hero p { font-size: 17px; line-height: 1.72; color: rgba(255,255,255,0.55); max-width: 560px; }

/* ── STAT BAR ─────────────────────────────── */
.stat-bar { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--border); }
.stat-bar-item { padding: 36px 32px; border-right: 1px solid var(--border); text-align: center; }
.stat-bar-item:last-child { border-right: none; }
.stat-bar-num { font-family: 'Sora', sans-serif; font-size: 42px; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 6px; }
.stat-bar-label { font-size: 13px; color: var(--text); }

/* ── SECTION ──────────────────────────────── */
.section { padding: 96px 6%; }
.section.alt { background: var(--off); }
.section.dark { background: var(--navy); }
.s-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.s-label.light { color: var(--org2); }
.s-h2 { font-family: 'Sora', sans-serif; font-size: clamp(28px, 3.5vw, 48px); font-weight: 800; letter-spacing: -1px; line-height: 1.1; color: var(--navy); margin-bottom: 16px; }
.s-h2.light { color: white; }
.s-lead { font-size: 17px; line-height: 1.75; color: var(--text); max-width: 600px; }
.s-lead.light { color: rgba(255,255,255,0.55); }

/* ── SERVICES GRID (Teneo-style) ──────────── */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 56px; }
.svc-item {
  border-top: 1.5px solid var(--border);
  padding: 36px 0 36px 0;
  padding-right: 48px;
  transition: border-color .2s;
  cursor: default;
}
.svc-item:hover { border-top-color: var(--orange); }
.svc-item:nth-child(odd) { padding-right: 56px; }
.svc-item:nth-child(even) { padding-left: 56px; border-left: 1px solid var(--border); padding-right: 0; }
.svc-num { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 1.5px; margin-bottom: 12px; }
.svc-title { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.25; }
.svc-desc { font-size: 14px; line-height: 1.70; color: var(--text); }

/* ── STATEMENT BAND ───────────────────────── */
.statement {
  position: relative; padding: 120px 6%;
  background: var(--navy); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.statement-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.42;
}
.statement-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,17,31,0.98) 40%, rgba(5,17,31,0.60) 100%); }
.statement-text { position: relative; z-index: 1; }
.statement-h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(30px, 3.8vw, 56px);
  font-weight: 800; line-height: 1.1; letter-spacing: -1.5px;
  color: white;
}
.statement-h2 em { font-style: normal; color: var(--orange); }
.statement-img { position: relative; z-index: 1; border-radius: 12px; overflow: hidden; }
.statement-img img { width: 100%; height: 380px; object-fit: cover; opacity: 0.85; }

/* ── APPROACH STEPS ───────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 60px; }
.step { padding: 0 32px 0 0; border-right: 1px solid var(--border); }
.step:last-child { border-right: none; padding-right: 0; padding-left: 32px; }
.step:nth-child(2), .step:nth-child(3) { padding: 0 32px; }
.step-n { font-family: 'Sora', sans-serif; font-size: 48px; font-weight: 800; color: rgba(232,101,10,0.15); line-height: 1; margin-bottom: 16px; }
.step-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-desc { font-size: 13.5px; line-height: 1.68; color: var(--text); }

/* ── DIFF GRID ────────────────────────────── */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-top: 56px; }
.diff-item { background: white; padding: 36px 32px; transition: background .2s; }
.diff-item:hover { background: var(--off); }
.diff-icon { font-size: 24px; margin-bottom: 14px; }
.diff-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.diff-desc { font-size: 13.5px; line-height: 1.68; color: var(--text); }

/* ── ENGAGEMENT MODELS ────────────────────── */
.eng-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.eng-item {
  border-top: 2px solid var(--border); padding-top: 24px; transition: border-color .2s;
}
.eng-item:hover { border-top-color: var(--orange); }
.eng-icon { font-size: 24px; margin-bottom: 12px; }
.eng-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.eng-desc { font-size: 13.5px; line-height: 1.68; color: var(--text); }

/* ── HEALTH CHECK ─────────────────────────── */
.health-check {
  display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: start;
  background: white; border: 1.5px solid rgba(232,101,10,0.30);
  border-radius: 12px; padding: 40px 44px; margin-top: 48px;
}
.hc-badge {
  background: var(--orange); color: white; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; padding: 8px 16px; border-radius: 5px; white-space: nowrap;
}
.hc-body h3 { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.hc-body p { font-size: 15px; line-height: 1.75; color: var(--text); }
.hc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.hc-tag { background: rgba(232,101,10,0.08); border: 1px solid rgba(232,101,10,0.18); color: var(--orange); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 20px; }

/* ── JOB CARDS ────────────────────────────── */
.job-card {
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin-bottom: 20px; transition: border-color .2s;
}
.job-card:hover { border-color: rgba(232,101,10,0.35); }
.job-head {
  padding: 28px 32px 20px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.job-tag-pill { background: rgba(232,101,10,0.10); border: 1px solid rgba(232,101,10,0.20); color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 4px; margin-bottom: 12px; display: inline-block; }
.job-title { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 13px; color: var(--text); }
.job-meta span { display: flex; align-items: center; gap: 6px; }
.job-body { padding: 0 32px 28px; }
.job-body ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.job-body ul li { display: flex; gap: 10px; font-size: 14px; color: var(--text); line-height: 1.6; }
.job-body ul li::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.job-apply { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: white; font-size: 13.5px; font-weight: 600; padding: 10px 22px; border-radius: 6px; transition: background .15s; }
.job-apply:hover { background: var(--orange); }

/* ── CONTACT ──────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; margin-top: 56px; }
.contact-info h3 { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.contact-info p { font-size: 15px; line-height: 1.8; color: var(--text); margin-bottom: 36px; }
.c-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.c-icon { width: 42px; height: 42px; flex-shrink: 0; background: rgba(232,101,10,0.10); border: 1px solid rgba(232,101,10,0.20); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.c-lbl { font-size: 10.5px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--dim); margin-bottom: 2px; }
.c-val { font-size: 15px; font-weight: 500; color: var(--navy); }
.c-val a { color: var(--navy); transition: color .15s; }
.c-val a:hover { color: var(--orange); }
.contact-form { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 40px 36px; box-shadow: 0 4px 40px rgba(0,0,0,0.06); }
.contact-form h3 { font-family: 'Sora', sans-serif; font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.f-group { display: flex; flex-direction: column; gap: 5px; }
.f-group.full { grid-column: 1 / -1; }
.f-group label { font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--dim); }
.f-group input, .f-group select, .f-group textarea {
  background: var(--off); border: 1px solid var(--border); border-radius: 7px;
  padding: 11px 14px; font-family: 'Inter', sans-serif; font-size: 14px; color: var(--navy);
  outline: none; resize: none; transition: border .15s, box-shadow .15s;
}
.f-group input::placeholder, .f-group textarea::placeholder { color: var(--dim); opacity: 0.6; }
.f-group input:focus, .f-group select:focus, .f-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,101,10,0.10); background: white; }
.f-submit { width: 100%; margin-top: 18px; background: var(--orange); color: white; border: none; border-radius: 7px; padding: 14px; font-size: 15px; font-weight: 600; font-family: 'Inter', sans-serif; cursor: pointer; transition: background .15s; }
.f-submit:hover { background: var(--org2); }

/* ── CTA BAND ─────────────────────────────── */
.cta-band {
  background: var(--navy); padding: 100px 6%; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(232,101,10,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-inner .s-h2 { color: white; margin-bottom: 14px; }
.cta-inner .s-lead { color: rgba(255,255,255,0.55); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--orange); color: white; font-size: 15px; font-weight: 600; padding: 14px 30px; border-radius: 6px; transition: background .15s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--org2); }
.btn-secondary { color: rgba(255,255,255,0.75); font-size: 15px; font-weight: 500; padding: 14px 30px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.20); transition: all .15s; display: inline-flex; align-items: center; gap: 8px; }
.btn-secondary:hover { color: white; border-color: rgba(255,255,255,0.50); }

/* ── FOOTER ───────────────────────────────── */
footer { background: var(--navy2); padding: 64px 6% 32px; }
.ft-top { display: flex; justify-content: space-between; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); flex-wrap: wrap; }
.ft-brand { max-width: 220px; }
.ft-wordmark { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.ft-wm-top { font-family: 'Sora', sans-serif; font-size: 21px; font-weight: 800; color: white; letter-spacing: .02em; line-height: 1; }
.ft-wm-btm { display: flex; align-items: center; gap: 7px; }
.ft-wm-line { display: inline-block; width: 26px; height: 2.5px; background: var(--orange); border-radius: 2px; flex-shrink: 0; }
.ft-wm-sub { font-size: 8.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--orange); }
.ft-tagline { font-size: 12.5px; color: rgba(255,255,255,0.28); line-height: 1.6; }
.ft-col h4 { font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 16px; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-col a { font-size: 13.5px; color: rgba(255,255,255,0.48); transition: color .15s; }
.ft-col a:hover { color: var(--org2); }
.ft-bottom { display: flex; justify-content: space-between; padding-top: 28px; flex-wrap: wrap; gap: 10px; }
.ft-bottom p { font-size: 12px; color: rgba(255,255,255,0.20); }

/* ── FAQ ──────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--navy); gap: 16px; }
.faq-q::after { content: '+'; font-size: 22px; color: var(--orange); font-weight: 300; flex-shrink: 0; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { font-size: 14px; line-height: 1.75; color: var(--text); padding-bottom: 20px; display: none; max-width: 680px; }
.faq-item.open .faq-a { display: block; }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1100px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .eng-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .step { border-right: none; padding: 0 !important; border-bottom: 1px solid var(--border); padding-bottom: 32px !important; }
  .step:last-child { border-bottom: none; padding-bottom: 0 !important; }
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-bar-item:nth-child(2) { border-right: none; }
  .stat-bar-item:nth-child(1), .stat-bar-item:nth-child(2) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 900px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-item { padding-right: 0 !important; padding-left: 0 !important; border-left: none !important; }
  .statement { grid-template-columns: 1fr; gap: 40px; }
  .statement-img { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .health-check { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 72px 5%; }
  .hero { padding: 0 5% 72px; }
  .page-hero { padding: 120px 5% 72px; }
  .svc-grid { margin-top: 40px; }
  .diff-grid { grid-template-columns: 1fr; }
  .eng-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stat-bar { grid-template-columns: 1fr 1fr; }
  .ft-top { flex-direction: column; gap: 32px; }
  footer { padding: 48px 5% 28px; }
  .cta-band { padding: 80px 5%; }
  .f-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }
  .job-head, .job-body { padding-left: 20px; padding-right: 20px; }
}

/* ── WHO GRID (homepage 3-col) ──────────────── */
.who-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.who-item { padding: 52px 44px; border-right: 1px solid var(--border); border-top: 3px solid transparent; transition: border-top-color .25s; cursor: default; }
.who-item:hover { border-top-color: var(--orange); }
.who-item:last-child { border-right: none; }
.who-lbl { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.who-title { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 14px; line-height: 1.2; }
.who-desc { font-size: 14px; line-height: 1.72; color: var(--text); margin-bottom: 20px; }
.who-link { font-size: 13.5px; font-weight: 600; color: var(--orange); }
.who-link:hover { text-decoration: underline; }

/* ── CLIENT SECTION HEADER (services page) ──── */
.client-hdr { padding: 44px 6%; background: var(--navy); }
.client-hdr-tag { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--org2); margin-bottom: 12px; }
.client-hdr-h { font-family: 'Sora', sans-serif; font-size: clamp(24px,3vw,36px); font-weight: 800; color: white; margin-bottom: 10px; line-height: 1.15; }
.client-hdr-sub { font-size: 15px; color: rgba(255,255,255,0.52); max-width: 520px; }

@media (max-width: 900px) {
  .who-grid { grid-template-columns: 1fr; }
  .who-item { border-right: none; border-top-width: 1px; border-bottom: 1px solid var(--border); padding: 40px 5%; }
}

/* ── CLIENT HDR with image ───────────────────── */
.client-hdr { position: relative; overflow: hidden; }
.client-hdr-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.20; }
.client-hdr-tag, .client-hdr-h, .client-hdr-sub { position: relative; z-index: 1; }
