/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:   #0b3866;
  --cobalt: #145a96;
  --sky:    #1886c3;
  --ink:    #152344;
  --mid:    #607194;
  --muted:  #AFC0D9;
  --border: #D4E2F0;
  --ice:    #EAF5FC;
  --bg:     #F5F9FD;
  --white:  #FFFFFF;
  --gold:   #CBEFFF;
  --error:  #E53E3E;
  --success:#2F855A;
}

/* ─── RESET ──────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display:block; max-width:100%; }
a { text-decoration:none; }
ul { list-style:none; }

h1 { font-size:clamp(36px,5vw,60px); font-weight:800; line-height:1.1; letter-spacing:-1.5px; }
h2 { font-size:clamp(26px,3.5vw,40px); font-weight:800; line-height:1.15; letter-spacing:-1px; color:var(--ink); }
h3 { font-size:20px; font-weight:700; color:var(--ink); }
p  { font-size:16px; line-height:1.75; color:var(--mid); }
strong { font-weight:700; color:var(--ink); }
.sky { color:var(--sky); }

.section-label {
  display:inline-block;
  font-size:11px; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--sky);
  margin-bottom:14px;
}

/* ─── TOP BAR ────────────────────────────────────────────── */
.topbar {
  position:fixed; top:0; left:0; right:0; z-index:201;
  height:36px;
  background:var(--white);
  border-bottom:1px solid var(--border);
  display:flex; align-items:center; justify-content:space-between;
  padding:0 60px;
  transition:transform .25s ease;
}
.topbar-group { display:flex; align-items:center; gap:20px; }
.topbar-item {
  display:flex; align-items:center; gap:6px;
  font-size:12px; color:var(--mid); letter-spacing:.01em;
}
.topbar-item svg { width:13px; height:13px; stroke:var(--sky); flex-shrink:0; }
.topbar-dot { width:4px; height:4px; border-radius:50%; background:var(--border); }
@media(max-width:860px){ .topbar { display:none; } }

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position:fixed; top:36px; left:0; right:0; z-index:200;
  height:68px;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 60px;
  background:rgba(255,255,255,0.97);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
  transition:box-shadow .2s, top .2s;
}
.nav.scrolled { box-shadow:0 4px 24px rgba(21,35,68,.07); top:0; }

.nav-logo { display:flex; align-items:center; gap:10px; }
.nav-logo img { height:48px; width:auto; border-radius:6px; }
.nav-logo-name {
  font-size:10px; font-weight:600;
  letter-spacing:.22em; text-transform:uppercase;
  color:var(--mid); line-height:1;
}
.nav-links { display:flex; align-items:center; gap:34px; }
.nav-links a {
  font-size:15px; font-weight:500; color:var(--mid);
  transition:color .15s; letter-spacing:.1px;
}
.nav-links a:hover { color:var(--navy); }
.nav-links a.active { color:var(--navy); font-weight:600; }
.nav-cta {
  background:linear-gradient(135deg,var(--navy),var(--sky));
  color:var(--white) !important;
  padding:9px 22px; border-radius:999px;
  font-weight:600 !important; font-size:14px !important;
  transition:opacity .15s !important;
}
.nav-cta:hover { opacity:.88; }

/* ─── DROPDOWN ───────────────────────────────────────────── */
.nav-item { position:relative; list-style:none; }
.nav-item-btn {
  display:inline-flex; align-items:center; gap:5px;
  font-size:15px; font-weight:500;
  color:var(--mid); background:none; border:none;
  cursor:pointer; padding:0; font-family:'DM Sans',sans-serif;
  letter-spacing:.1px; transition:color .15s;
}
.nav-item-btn:hover { color:var(--navy); }
.nav-item-btn svg { width:14px; height:14px; stroke:currentColor; flex-shrink:0; transition:transform .2s; }
.nav-item.open .nav-item-btn svg { transform:rotate(180deg); }
.nav-dropdown {
  display:none;
  position:absolute; top:calc(100% + 18px); left:50%;
  transform:translateX(-50%); min-width:220px;
  background:var(--white); border:1px solid var(--border);
  border-radius:12px; box-shadow:0 16px 48px rgba(10,20,66,.13);
  padding:8px 0; z-index:300; animation:dd-in .18s ease both;
}
.nav-item.open .nav-dropdown { display:block; }
@keyframes dd-in {
  from { opacity:0; transform:translateX(-50%) translateY(8px); }
  to   { opacity:1; transform:translateX(-50%) translateY(0); }
}
.nav-dropdown a {
  display:block; padding:11px 20px;
  font-size:14px; font-weight:500; color:var(--ink);
  border-bottom:1px solid var(--border);
  transition:background .15s, color .15s; white-space:nowrap;
}
.nav-dropdown a:last-child { border-bottom:none; }
.nav-dropdown a:hover { background:var(--ice); color:var(--sky); }
.nav-dropdown a.active { color:var(--sky); background:var(--ice); }

.burger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:6px; }
.burger span { width:22px; height:1.5px; background:var(--navy); border-radius:2px; transition:.3s; }
.mob-nav {
  display:none; position:fixed; top:104px; left:0; right:0;
  background:var(--white); border-bottom:1px solid var(--border);
  padding:12px 0; z-index:199; flex-direction:column;
}
.mob-nav.open { display:flex; }
.mob-nav a {
  padding:14px 28px; font-size:15px; color:var(--ink);
  border-bottom:1px solid var(--border); transition:background .15s;
}
.mob-nav a:hover { background:var(--bg); }

/* ─── PAGE HERO ──────────────────────────────────────────── */
.page-hero {
  position:relative;
  min-height:52vh;
  display:flex; align-items:center;
  padding:160px 0 100px;
  overflow:hidden;
  background:url('../images/bg.jpg') center 40% / cover no-repeat;
}
.page-hero::before {
  content:'';
  position:absolute; inset:0; z-index:0;
  background:linear-gradient(
    120deg,
    rgba(10,18,56,.95) 0%,
    rgba(21,38,100,.88) 55%,
    rgba(17,88,168,.74) 100%
  );
}
.page-hero-container {
  position:relative; z-index:1;
  width:100%; max-width:1360px;
  margin:0 auto; padding:0 60px;
}
.page-hero-eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase;
  color:rgba(255,255,255,.62); margin-bottom:18px;
}
.page-hero-eyebrow::before {
  content:''; display:inline-block; width:20px; height:2px; background:var(--sky);
}
.page-hero h1 { color:var(--white); max-width:680px; }
.page-hero h1 strong { color:var(--sky); }
.page-hero p {
  margin-top:18px; font-size:18px;
  color:rgba(255,255,255,.68); line-height:1.72; max-width:560px;
}
.breadcrumb {
  display:flex; align-items:center; gap:8px;
  margin-top:32px; font-size:13px; color:rgba(255,255,255,.42);
}
.breadcrumb a { color:rgba(255,255,255,.55); transition:color .15s; }
.breadcrumb a:hover { color:var(--white); }
.breadcrumb span { font-size:11px; }

/* ─── SECTION WRAPPER ────────────────────────────────────── */
.section-wrap {
  max-width:1360px; margin:0 auto;
  padding:96px 60px;
}
.section-wrap.narrow { max-width:900px; }

/* ─── WHAT IS VALUE DISCOVERY ────────────────────────────── */
.vd-intro-shell { background:var(--white); border-top:1px solid var(--border); }
.vd-intro-layout {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:72px;
  align-items:center;
}
.vd-intro-copy .section-label { display:block; }
.vd-intro-copy h2 { margin-bottom:20px; }
.vd-intro-copy p { margin-bottom:18px; }
.vd-intro-copy p:last-child { margin-bottom:0; }

.vd-intro-card {
  background:linear-gradient(145deg, var(--navy) 0%, var(--cobalt) 60%, var(--sky) 100%);
  border-radius:20px;
  padding:44px 40px;
  color:var(--white);
  position:relative;
  overflow:hidden;
}
.vd-intro-card::after {
  content:'';
  position:absolute; top:-60px; right:-60px;
  width:200px; height:200px; border-radius:50%;
  background:rgba(255,255,255,.05);
}
.vd-intro-card-icon {
  width:56px; height:56px; border-radius:14px;
  background:rgba(255,255,255,.15);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:24px;
}
.vd-intro-card-icon svg { width:28px; height:28px; stroke:var(--white); fill:none; stroke-width:2; }
.vd-intro-card h3 { color:var(--white); font-size:22px; margin-bottom:8px; }
.vd-intro-card .card-sub {
  font-size:14px; color:rgba(255,255,255,.65); margin-bottom:28px; line-height:1.6;
}
.vd-intro-bullets { display:flex; flex-direction:column; gap:14px; }
.vd-intro-bullet {
  display:flex; align-items:flex-start; gap:12px;
}
.vd-intro-bullet-dot {
  width:20px; height:20px; border-radius:50%; flex-shrink:0; margin-top:2px;
  background:rgba(255,255,255,.18);
  display:flex; align-items:center; justify-content:center;
}
.vd-intro-bullet-dot::after {
  content:''; width:7px; height:7px; border-radius:50%;
  background:var(--sky);
}
.vd-intro-bullet span { font-size:14px; color:rgba(255,255,255,.82); line-height:1.6; }

.vd-intro-badge {
  display:inline-flex; align-items:center; gap:8px;
  margin-top:28px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.2);
  border-radius:999px;
  padding:8px 18px;
  font-size:13px; color:rgba(255,255,255,.85); font-weight:600;
}
.vd-intro-badge svg { width:14px; height:14px; stroke:rgba(255,255,255,.7); }

/* ─── THE PROBLEM ────────────────────────────────────────── */
.problem-shell {
  background:#0c0c0c;
  border-top:1px solid rgba(255,255,255,.06);
}
.problem-head { text-align:center; margin-bottom:56px; }
.problem-head .section-label { color:rgba(23,136,199,.85); }
.problem-head h2 { color:var(--white); margin-bottom:12px; }
.problem-head p { color:rgba(255,255,255,.52); max-width:520px; margin:0 auto; }

.problem-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.problem-card {
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:40px 36px;
  transition:border-color .2s, background .2s;
  position:relative;
  overflow:hidden;
}
.problem-card::before {
  content:'';
  position:absolute; top:0; left:0; right:0;
  height:3px;
  background:linear-gradient(90deg, var(--cobalt), var(--sky));
  opacity:0; transition:opacity .2s;
}
.problem-card:hover { background:rgba(255,255,255,.07); border-color:rgba(255,255,255,.14); }
.problem-card:hover::before { opacity:1; }

.problem-num {
  font-size:48px; font-weight:800;
  line-height:1; letter-spacing:-2px;
  color:rgba(255,255,255,.06);
  margin-bottom:12px;
}
.problem-icon {
  width:48px; height:48px; border-radius:12px;
  background:linear-gradient(135deg, var(--cobalt), var(--sky));
  display:flex; align-items:center; justify-content:center;
  margin-bottom:22px;
}
.problem-icon svg { width:24px; height:24px; stroke:var(--white); fill:none; stroke-width:2; }
.problem-card h3 { color:var(--white); font-size:20px; margin-bottom:12px; }
.problem-card p { color:rgba(255,255,255,.52); font-size:15px; line-height:1.72; }

/* ─── WHAT YOU GET ───────────────────────────────────────── */
.process-shell { background:var(--bg); border-top:1px solid var(--border); }
.process-head { text-align:center; margin-bottom:64px; }
.process-head h2 { margin-bottom:12px; }
.process-head p { max-width:520px; margin:0 auto; }

.process-timeline {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  position:relative;
}
.process-timeline::before {
  content:'';
  position:absolute;
  top:36px; left:calc(12.5%); right:calc(12.5%);
  height:2px;
  background:linear-gradient(90deg, var(--border), var(--sky), var(--border));
  z-index:0;
}

.process-step {
  position:relative; z-index:1;
  display:flex; flex-direction:column; align-items:center;
  text-align:center;
  padding:0 16px;
}
.process-step-num {
  width:72px; height:72px; border-radius:50%;
  background:var(--white);
  border:2px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:24px;
  position:relative;
  transition:border-color .2s, box-shadow .2s;
}
.process-step-num:hover {
  border-color:var(--sky);
  box-shadow:0 0 0 6px rgba(23,136,199,.1);
}
.process-num-inner {
  width:52px; height:52px; border-radius:50%;
  background:linear-gradient(135deg, var(--navy), var(--sky));
  display:flex; align-items:center; justify-content:center;
  font-size:22px; font-weight:800; color:var(--white);
}
.process-step h3 { font-size:17px; margin-bottom:10px; }
.process-step p { font-size:14px; line-height:1.7; }

.process-step-connector {
  position:absolute;
  top:36px; right:0;
  width:100%; height:2px;
  z-index:-1;
}

/* ─── DELIVERABLES ───────────────────────────────────────── */
.deliverables-shell { background:var(--white); border-top:1px solid var(--border); }
.deliverables-layout {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:72px;
  align-items:center;
}
.deliverables-copy .section-label { display:block; }
.deliverables-copy h2 { margin-bottom:16px; }
.deliverables-copy > p { margin-bottom:36px; }
.deliverables-list { display:flex; flex-direction:column; gap:14px; }
.deliverable-item {
  display:flex; align-items:center; gap:14px;
  padding:16px 20px;
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:12px;
  transition:box-shadow .2s, border-color .2s;
}
.deliverable-item:hover { box-shadow:0 4px 20px rgba(21,35,68,.07); border-color:var(--sky); }
.deliverable-check {
  width:30px; height:30px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg, var(--navy), var(--sky));
  display:flex; align-items:center; justify-content:center;
}
.deliverable-check svg { width:14px; height:14px; stroke:var(--white); fill:none; stroke-width:2.5; }
.deliverable-item span { font-size:15px; font-weight:500; color:var(--ink); }

.deliverables-highlight {
  background:linear-gradient(145deg, var(--ink) 0%, var(--navy) 60%, var(--cobalt) 100%);
  border-radius:20px;
  padding:48px 44px;
  color:var(--white);
  position:relative;
  overflow:hidden;
}
.deliverables-highlight::after {
  content:'';
  position:absolute; bottom:-80px; right:-80px;
  width:250px; height:250px; border-radius:50%;
  background:rgba(23,136,199,.08);
}
.deliverables-highlight .section-label {
  color:var(--sky); margin-bottom:20px;
}
.deliverables-highlight h3 { color:var(--white); font-size:24px; margin-bottom:12px; }
.deliverables-highlight > p { color:rgba(255,255,255,.6); font-size:15px; margin-bottom:32px; }

.highlight-points { display:flex; flex-direction:column; gap:18px; }
.highlight-point {
  display:flex; gap:14px; align-items:flex-start;
}
.highlight-point-icon {
  width:36px; height:36px; border-radius:9px; flex-shrink:0;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.15);
  display:flex; align-items:center; justify-content:center;
}
.highlight-point-icon svg { width:17px; height:17px; stroke:var(--sky); fill:none; stroke-width:2; }
.highlight-point-text strong { display:block; font-size:14px; color:var(--white); margin-bottom:3px; }
.highlight-point-text span { font-size:13px; color:rgba(255,255,255,.55); line-height:1.55; }

.deliverables-highlight-cta {
  margin-top:36px;
  display:inline-flex; align-items:center; gap:8px;
  background:var(--sky);
  color:var(--white);
  font-family:'DM Sans',sans-serif;
  font-size:14px; font-weight:700;
  padding:13px 26px; border-radius:999px;
  transition:opacity .15s;
}
.deliverables-highlight-cta:hover { opacity:.88; }
.deliverables-highlight-cta svg { width:16px; height:16px; stroke:var(--white); fill:none; stroke-width:2; }

/* ─── WHO IT'S FOR ───────────────────────────────────────── */
.for-shell { background:var(--bg); border-top:1px solid var(--border); }
.for-head { text-align:center; margin-bottom:56px; }
.for-head h2 { margin-bottom:12px; }
.for-head p { max-width:520px; margin:0 auto; }

.for-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.for-card {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:18px;
  padding:40px 36px;
  transition:box-shadow .2s, border-color .2s;
  position:relative;
}
.for-card:hover { box-shadow:0 8px 36px rgba(21,35,68,.08); border-color:var(--sky); }
.for-card-icon {
  width:52px; height:52px; border-radius:14px;
  background:linear-gradient(135deg, var(--navy), var(--sky));
  display:flex; align-items:center; justify-content:center;
  margin-bottom:24px;
}
.for-card-icon svg { width:26px; height:26px; stroke:var(--white); fill:none; stroke-width:2; }
.for-card-label {
  font-size:11px; font-weight:700;
  letter-spacing:.18em; text-transform:uppercase;
  color:var(--sky); margin-bottom:10px; display:block;
}
.for-card h3 { font-size:19px; margin-bottom:12px; }
.for-card p { font-size:15px; }

/* ─── CTA ─────────────────────────────────────────────────── */
.cta-shell {
  position:relative; overflow:hidden;
  background:url('../images/656.jpg') center center / cover no-repeat;
}
.cta-shell::before {
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(110deg,rgba(13,21,60,.92) 0%,rgba(21,38,100,.86) 45%,rgba(23,136,199,.70) 100%);
  pointer-events:none;
}
.cta-inner {
  position:relative; z-index:1;
  max-width:1360px; margin:0 auto;
  padding:88px 60px;
  display:flex; align-items:center; justify-content:space-between;
  gap:40px; flex-wrap:wrap;
}
.cta-copy h2 { color:var(--white); max-width:520px; }
.cta-copy p {
  margin-top:12px; font-size:18px;
  color:rgba(255,255,255,.72); line-height:1.72; max-width:460px;
}
.cta-btns { display:flex; gap:14px; flex-shrink:0; flex-wrap:wrap; }
.btn-white {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--white); color:var(--navy);
  font-family:'DM Sans',sans-serif; font-size:14px; font-weight:700;
  padding:14px 28px; border-radius:999px;
  transition:opacity .15s; white-space:nowrap;
}
.btn-white:hover { opacity:.88; }
.btn-ghost-cta {
  display:inline-flex; align-items:center; gap:8px;
  background:transparent; color:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.22);
  font-family:'DM Sans',sans-serif; font-size:14px; font-weight:500;
  padding:13px 26px; border-radius:999px;
  transition:border-color .15s, color .15s; white-space:nowrap;
}
.btn-ghost-cta:hover { border-color:rgba(255,255,255,.5); color:var(--white); }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer { background:#001327; border-top:1px solid rgba(255,255,255,.06); }
.footer-inner {
  max-width:1360px; margin:0 auto;
  padding:64px 60px 48px;
  display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:0 48px; align-items:start;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.footer-brand img { height:48px; width:auto; border-radius:6px; margin-bottom:18px; }
.footer-brand p { font-size:14px; color:rgba(255,255,255,.46); line-height:1.75; max-width:280px; }
.footer-social-label {
  font-size:11px; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  color:rgba(255,255,255,.36); margin-top:28px; margin-bottom:14px;
}
.footer-socials { display:flex; gap:10px; }
.footer-social-btn {
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center;
  transition:background .15s, border-color .15s;
}
.footer-social-btn:hover { background:var(--sky); border-color:var(--sky); }
.footer-social-btn svg { width:16px; height:16px; fill:rgba(255,255,255,.7); }
.footer-social-btn:hover svg { fill:var(--white); }
.footer-col h4 { font-size:13px; font-weight:700; color:var(--white); margin-bottom:20px; }
.footer-col ul { list-style:none; padding:0; margin:0; }
.footer-col li { display:flex; align-items:center; gap:8px; margin-bottom:12px; }
.footer-col li::before { content:''; width:5px; height:5px; border-radius:50%; background:rgba(255,255,255,.2); flex-shrink:0; }
.footer-col a { font-size:14px; color:rgba(255,255,255,.52); transition:color .15s; }
.footer-col a:hover { color:var(--white); }
.footer-bottom {
  max-width:1360px; margin:0 auto; padding:20px 60px;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:12px;
}
.footer-bottom p { font-size:13px; color:rgba(255,255,255,.28); }
.footer-back-top {
  width:40px; height:40px; border-radius:10px;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center;
  transition:background .15s; cursor:pointer;
}
.footer-back-top:hover { background:var(--sky); border-color:var(--sky); }
.footer-back-top svg { width:16px; height:16px; stroke:rgba(255,255,255,.7); }
.footer-bottom-links { display:flex; gap:24px; }
.footer-bottom-links a { font-size:13px; color:rgba(255,255,255,.36); transition:color .15s; }
.footer-bottom-links a:hover { color:var(--white); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media(max-width:1100px) {
  .vd-intro-layout { grid-template-columns:1fr; gap:48px; }
  .deliverables-layout { grid-template-columns:1fr; gap:48px; }
  .process-timeline { grid-template-columns:1fr 1fr; gap:40px; }
  .process-timeline::before { display:none; }
  .footer-inner { grid-template-columns:1fr 1fr; gap:40px; }
  .problem-grid { grid-template-columns:1fr; gap:20px; }
  .for-grid { grid-template-columns:1fr; gap:20px; }
}
@media(max-width:860px) {
  .nav { padding:0 24px; }
  .nav-links { display:none; }
  .burger { display:flex; }
  .page-hero { padding:100px 0 60px; min-height:auto; }
  .page-hero-container,
  .section-wrap { padding-left:24px; padding-right:24px; }
  .cta-inner { padding:60px 24px; flex-direction:column; align-items:flex-start; }
  .footer-inner { grid-template-columns:1fr; gap:32px; padding:44px 24px 28px; }
  .footer-bottom { padding:16px 24px; }
  .footer-bottom-links { display:none; }
  .process-timeline { grid-template-columns:1fr; }
  .vd-intro-card { padding:32px 28px; }
  .deliverables-highlight { padding:36px 28px; }
}
@media(max-width:640px) {
  .problem-grid { grid-template-columns:1fr; }
  .for-grid { grid-template-columns:1fr; }
}
body { font-size:1rem; }
p { font-size:1rem; }
