/* ── ASSET PLACEHOLDERS ── swap these paths with your actual files */
:root {
  --logo-official:  url("logo.png");
  --logo-secondary: url("logo2.png");
  --bg-pattern:     url("background.png");

  --navy:        #032C7C;
  --core-blue:   #0464DD;
  --azure:       #3992FF;
  --steel:       #2F58A3;
  --green:       #AEE37B;
  --green-dark:  #4d7a24;
  --off-white:   #F5F6FA;
  --white:       #FFFFFF;
  --muted:       #56688a;

  --fs-xs:   0.72rem;
  --fs-sm:   0.82rem;
  --fs-base: 0.92rem;
  --lh:      1.78;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'Montserrat',sans-serif;
  background:var(--off-white);
  color:var(--navy);
  overflow-x:hidden;
  font-size:var(--fs-base);
  line-height:var(--lh);
}

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 4%; height:90px;
  background:rgba(245,246,250,0.55);
  backdrop-filter:blur(24px) saturate(180%);
  -webkit-backdrop-filter:blur(24px) saturate(180%);
  border-bottom:1px solid rgba(255,255,255,0.55);
  box-shadow:0 1px 0 rgba(4,100,221,0.07), 0 4px 24px rgba(3,44,124,0.04);
  transition:box-shadow .3s, background .3s;
}
nav.scrolled { background:rgba(245,246,250,0.95); box-shadow:0 4px 32px rgba(3,44,124,0.10); }
/* Inner pages have a dark hero — keep nav fully opaque from the start */
nav.nav-inner { background:rgba(245,246,250,0.97); box-shadow:0 2px 20px rgba(3,44,124,0.08); }

.nav-brand { display:flex; align-items:center; gap:12px; text-decoration:none; }
.nav-logo-img {
  width:90px; height:90px; object-fit:contain;
  display:flex; align-items:center; justify-content:center;
  font-size:0.63rem; font-weight:700; color:var(--core-blue);
  text-align:center; line-height:1.3;
}
.nav-logo-img img { width:100%; height:100%; object-fit:contain; }
.nav-name { font-weight:800; font-size:1.1rem; color:var(--navy); letter-spacing:-0.02em; line-height:1.2; }
.nav-name span { color:var(--core-blue); }

.nav-links { display:flex; align-items:center; gap:30px; list-style:none; }
.nav-links a { font-size:0.82rem; font-weight:600; color:var(--navy); text-decoration:none; letter-spacing:.04em; text-transform:uppercase; transition:color .2s; }
.nav-links a:hover { color:var(--core-blue); }
.nav-cta { background:var(--core-blue)!important; color:var(--white)!important; padding:9px 20px; border-radius:6px; transition:background .2s!important; }
.nav-cta:hover { background:var(--navy)!important; }

/* ══════════════════════════════════
   SHARED UTILITIES
══════════════════════════════════ */
.sec-tag {
  font-size:var(--fs-xs); font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; color:var(--core-blue); margin-bottom:10px;
  display:block;
}
.sec-h {
  font-size:clamp(1.75rem,3.2vw,2.55rem); font-weight:900;
  letter-spacing:-.03em; color:var(--navy); line-height:1.1; margin-bottom:16px;
}
.sec-p {
  font-size:var(--fs-sm); font-weight:400;
  color:var(--muted); line-height:var(--lh); max-width:520px;
}

/* reveal on scroll */
.rv { opacity:0; transform:translateY(22px); transition:opacity .65s ease, transform .65s ease; }
.rv.on { opacity:1; transform:none; }
.d1{transition-delay:.10s} .d2{transition-delay:.20s} .d3{transition-delay:.30s} .d4{transition-delay:.40s}

/* buttons */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 30px; border-radius:8px;
  font-size:var(--fs-sm); font-weight:700; text-decoration:none;
  transition:all .25s; cursor:pointer; border:2px solid transparent;
  white-space:nowrap;
}
.btn-blue  { background:var(--core-blue); color:var(--white); border-color:var(--core-blue); }
.btn-blue:hover  { background:var(--navy); border-color:var(--navy); transform:translateY(-2px); box-shadow:0 8px 20px rgba(4,100,221,.28); }
.btn-dark  { background:transparent; color:var(--navy); border-color:var(--navy); }
.btn-dark:hover  { background:var(--navy); color:var(--white); transform:translateY(-2px); }
.btn-white { background:var(--white); color:var(--navy); }
.btn-white:hover { background:var(--green); transform:translateY(-2px); box-shadow:0 8px 18px rgba(0,0,0,.13); }
.btn-ghost { background:transparent; color:var(--white); border:2px solid rgba(255,255,255,.42); }
.btn-ghost:hover { border-color:var(--white); background:rgba(255,255,255,.10); transform:translateY(-2px); }

/* section padding */
.sec { padding:96px 8%; }

/* content width limiter — keeps long text from stretching edge-to-edge */
.content-wrap { max-width:1200px; margin:0 auto; }
.text-wrap { max-width:680px; }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  min-height:100vh;
  display:grid; grid-template-columns:1fr 1fr;
  align-items:center; padding:130px 8% 60px;
  position:relative; overflow:hidden; background:var(--off-white);
}
.hero-pattern {
  position:absolute; top:0; right:0; width:56%; height:100%;
  background-image:var(--bg-pattern); background-size:290px auto; background-repeat:repeat;
  opacity:.028; pointer-events:none; z-index:1;
}
.hero::before {
  content:''; position:absolute; top:-200px; right:-200px;
  width:680px; height:680px;
  background:radial-gradient(circle,rgba(57,146,255,.11) 0%,transparent 68%);
  pointer-events:none;
}
.hero::after {
  content:''; position:absolute; bottom:-80px; left:22%;
  width:480px; height:480px;
  background:radial-gradient(circle,rgba(174,227,123,.08) 0%,transparent 68%);
  pointer-events:none;
}
.hero-left { position:relative; z-index:2; padding-right:52px; }

.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(4,100,221,.08); border:1px solid rgba(4,100,221,.18);
  color:var(--core-blue); font-size:var(--fs-xs); font-weight:700;
  letter-spacing:.1em; text-transform:uppercase; padding:6px 16px;
  border-radius:100px; margin-bottom:22px;
  animation:fadeUp .6s ease both;
}
.hero-badge::before { content:''; width:6px; height:6px; background:var(--green); border-radius:50%; flex-shrink:0; }

/* AI pulse badge */
.hero-badge-ai {
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(174,227,123,.12); border:1px solid rgba(174,227,123,.35);
  color:var(--green-dark); font-size:var(--fs-xs); font-weight:700;
  letter-spacing:.08em; text-transform:uppercase; padding:5px 14px;
  border-radius:100px; margin-bottom:10px; margin-left:8px;
  animation:fadeUp .6s .05s ease both;
}
.hero-badge-ai::before { content:''; width:6px; height:6px; background:var(--green); border-radius:50%; animation:pulse 2s ease-in-out infinite; }

.badge-row { display:flex; align-items:center; flex-wrap:wrap; gap:0; margin-bottom:8px; }

.hero-h1 {
  font-size:clamp(2.6rem,4.8vw,4rem); font-weight:900; line-height:1.05;
  letter-spacing:-.035em; color:var(--navy); margin-bottom:6px;
  animation:fadeUp .6s .08s ease both;
}
.hero-h1 .ac { color:var(--core-blue); }
.hero-sub1 {
  font-size:clamp(1rem,1.8vw,1.3rem); font-weight:700; color:var(--steel);
  letter-spacing:-.01em; margin-bottom:4px;
  animation:fadeUp .6s .13s ease both;
}
.hero-sub2 {
  font-size:var(--fs-sm); font-weight:500; color:var(--muted);
  margin-bottom:28px; animation:fadeUp .6s .17s ease both;
}
.hero-p {
  font-size:var(--fs-sm); color:var(--muted); line-height:var(--lh);
  margin-bottom:38px; max-width:470px;
  animation:fadeUp .6s .22s ease both;
}
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; animation:fadeUp .6s .28s ease both; }

/* hero graphic */
.hero-right {
  position:relative; z-index:2;
  display:flex; justify-content:center; align-items:center;
  animation:fadeRight .8s .2s ease both;
}
.hero-graphic { position:relative; width:430px; height:430px; }
.ring {
  position:absolute; border-radius:50%;
  border:1px solid rgba(4,100,221,.10);
  top:50%; left:50%; transform:translate(-50%,-50%);
}
.r1 { width:280px; height:280px; animation:rot 22s linear infinite; }
.r2 { width:400px; height:400px; animation:rot 32s linear infinite reverse; border-color:rgba(174,227,123,.12); }
.hero-logo-circle {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:150px; height:150px; border-radius:50%;
  background:rgba(4,100,221,.05);
  display:flex; align-items:center; justify-content:center;
}
.hero-logo-circle img { width:100%; height:100%; object-fit:contain; }
.hero-logo-ph { font-size:.55rem; font-weight:700; color:var(--steel); text-align:center; padding:16px; }

.fc {
  position:absolute; background:rgba(255,255,255,0.68); border-radius:10px;
  padding:10px 15px;
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  box-shadow:0 8px 32px rgba(3,44,124,.12);
  border:1px solid rgba(255,255,255,0.75); font-size:.7rem; font-weight:600;
  color:var(--navy); white-space:nowrap;
}
.fc-ic { display:none; }
.fc1 { top:36px;  left:6px;    animation:flt 4s ease-in-out infinite 0s;   }
.fc2 { top:46px;  right:0;     animation:flt 4s ease-in-out infinite 1.4s; }
.fc3 { bottom:74px; left:0;    animation:flt 4s ease-in-out infinite .8s;  }
.fc4 { bottom:54px; right:16px; animation:flt 4s ease-in-out infinite 2.1s; }
.fc5 { top:50%;   right:-10px; transform:translateY(-50%); animation:flt 4s ease-in-out infinite 1.8s; }

.od {
  display:none;
}
.od1 { transform:translate(-50%,-50%) translateX(150px); }
.od2 { transform:translate(-50%,-50%) rotate(120deg) translateX(150px) rotate(-120deg); }
.od3 { transform:translate(-50%,-50%) rotate(240deg) translateX(150px) rotate(-240deg); }

/* ══════════════════════════════════
   STATS BAR
══════════════════════════════════ */
.stats-bar {
  background:var(--navy); padding:24px 8%;
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px;
  position:relative; overflow:hidden; z-index:3;
}
.stats-pat {
  position:absolute; inset:0;
  background-image:var(--bg-pattern); background-size:230px auto;
  background-repeat:repeat; opacity:.05; pointer-events:none;
}
.stat { text-align:center; position:relative; z-index:1; }
.stat-n { font-size:1.8rem; font-weight:900; color:var(--white); letter-spacing:-.02em; line-height:1; }
.stat-n span { color:var(--green); }
.stat-l { font-size:var(--fs-xs); font-weight:600; color:rgba(255,255,255,.72); text-transform:uppercase; letter-spacing:.08em; margin-top:4px; }

/* ══════════════════════════════════
   PAIN POINTS
══════════════════════════════════ */
.pain {
  background:
    radial-gradient(ellipse 60% 50% at 8% 25%, rgba(57,146,255,0.10) 0%, transparent 100%),
    radial-gradient(ellipse 45% 55% at 88% 72%, rgba(174,227,123,0.09) 0%, transparent 100%),
    var(--white);
}
.pain-inner { display:grid; grid-template-columns:1fr 1fr; gap:68px; align-items:center; }
.pain-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:32px; }
.pain-card {
  padding:20px; border-radius:13px;
  background:rgba(255,255,255,0.30);
  backdrop-filter:blur(20px) saturate(160%); -webkit-backdrop-filter:blur(20px) saturate(160%);
  border:1px solid rgba(255,255,255,0.58);
  box-shadow:0 4px 20px rgba(3,44,124,0.07), inset 0 1px 0 rgba(255,255,255,0.80);
  transition:all .3s;
}
.pain-card:hover { border-color:rgba(255,255,255,0.90); box-shadow:0 8px 28px rgba(3,44,124,.10), inset 0 1px 0 rgba(255,255,255,0.90); }
.pain-icon { display:none; }
.pain-title { font-size:var(--fs-sm); font-weight:700; color:var(--navy); margin-bottom:5px; }
.pain-desc { font-size:var(--fs-xs); color:var(--muted); line-height:var(--lh); }

.pain-right { display:flex; flex-direction:column; gap:14px; }
.pain-cta-card {
  background:var(--navy); border-radius:18px; padding:34px 30px;
  color:var(--white); position:relative; overflow:hidden;
}
.pain-cta-card::before {
  content:''; position:absolute; top:-50px; right:-50px;
  width:180px; height:180px; border-radius:50%; background:rgba(57,146,255,.12);
}
.pain-cta-card::after {
  content:''; position:absolute; inset:0;
  background-image:var(--bg-pattern); background-size:190px auto;
  background-repeat:repeat; opacity:.04;
}
.pain-cta-card h3 { font-size:1.2rem; font-weight:800; letter-spacing:-.02em; margin-bottom:11px; position:relative; z-index:1; }
.pain-cta-card p { font-size:var(--fs-xs); color:rgba(255,255,255,.80); line-height:var(--lh); margin-bottom:22px; position:relative; z-index:1; }
.pain-cta-card a { position:relative; z-index:1; }
.inline-cta {
  background:rgba(4,100,221,.07); border:1.5px solid rgba(4,100,221,.14);
  border-radius:13px; padding:18px 22px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.inline-cta p { font-size:var(--fs-xs); font-weight:600; color:var(--navy); }

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
.services {
  background:
    radial-gradient(ellipse 50% 60% at 92% 18%, rgba(4,100,221,0.08) 0%, transparent 100%),
    radial-gradient(ellipse 55% 45% at 4% 80%, rgba(57,146,255,0.07) 0%, transparent 100%),
    var(--off-white);
}
.svc-header { display:grid; grid-template-columns:1fr 1fr; gap:52px; align-items:end; margin-bottom:52px; }
.svc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }

/* AI services get special treatment */
.svc-grid.ai-grid { grid-template-columns:repeat(3,1fr); margin-top:0; }

.svc-label {
  font-size:var(--fs-xs); font-weight:700; text-transform:uppercase;
  letter-spacing:.1em; margin:48px 0 20px;
  display:flex; align-items:center; gap:12px; color:var(--muted);
}
.svc-label::after { content:''; flex:1; height:1px; background:rgba(3,44,124,.08); }
.svc-label.ai-lbl { color:var(--green-dark); }
.svc-label.ai-lbl::after { background:rgba(174,227,123,.3); }

.svc-card {
  background:rgba(255,255,255,0.30);
  backdrop-filter:blur(20px) saturate(160%); -webkit-backdrop-filter:blur(20px) saturate(160%);
  border-radius:15px; padding:30px 24px;
  border:1px solid rgba(255,255,255,0.58);
  box-shadow:0 4px 24px rgba(3,44,124,0.07), inset 0 1px 0 rgba(255,255,255,0.80);
  transition:all .3s;
  position:relative; overflow:hidden;
}
.svc-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--core-blue),var(--azure));
  transform:scaleX(0); transform-origin:left; transition:transform .3s;
}
.svc-card:hover { border-color:rgba(255,255,255,0.90); box-shadow:0 14px 44px rgba(3,44,124,.13), inset 0 1px 0 rgba(255,255,255,0.90); transform:translateY(-3px); }
.svc-card:hover::before { transform:scaleX(1); }

/* AI card variant */
.svc-card.ai {
  background:linear-gradient(145deg, #f8fbff 0%, var(--white) 100%);
  border-color:rgba(174,227,123,.22);
}
.svc-card.ai::before { background:linear-gradient(90deg,var(--green),var(--azure)); }
.svc-card.ai:hover { border-color:rgba(174,227,123,.4); box-shadow:0 12px 40px rgba(174,227,123,.15); }

/* flagship */
.svc-card.flagship { background:var(--navy); border-color:transparent; }
.svc-card.flagship:hover { box-shadow:0 12px 40px rgba(3,44,124,.22); }
.svc-card.flagship::before { background:linear-gradient(90deg,var(--green),var(--azure)); }
.flagship-wm {
  position:absolute; bottom:-14px; right:-14px;
  width:96px; height:96px; object-fit:contain;
  opacity:.09; pointer-events:none; filter:brightness(10);
}

.svc-icon {
  display:none;
}
.svc-card.flagship .svc-icon { background:rgba(255,255,255,.10); }
.svc-card.ai .svc-icon { background:rgba(174,227,123,.18); }
.svc-title { font-size:var(--fs-sm); font-weight:700; color:var(--navy); margin-bottom:8px; }
.svc-desc { font-size:var(--fs-xs); color:var(--muted); line-height:var(--lh); }
.svc-tag {
  display:inline-block; margin-top:13px; font-size:.65rem; font-weight:700;
  text-transform:uppercase; letter-spacing:.08em; color:var(--core-blue);
  background:rgba(4,100,221,.08); padding:3px 9px; border-radius:100px;
}
.svc-card.flagship .svc-title { color:var(--white); }
.svc-card.flagship .svc-desc  { color:rgba(255,255,255,.80); }
.svc-card.flagship .svc-tag   { color:var(--green); background:rgba(174,227,123,.15); }
.svc-card.ai .svc-tag         { color:var(--green-dark); background:rgba(174,227,123,.18); }

/* ══════════════════════════════════
   MID-PAGE CTA STRIP
══════════════════════════════════ */
.strip {
  background:var(--core-blue); padding:32px 8%;
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:18px;
}
.strip h3 { font-size:1.1rem; font-weight:800; color:var(--white); letter-spacing:-.01em; }
.strip p { font-size:var(--fs-xs); color:rgba(255,255,255,.68); margin-top:3px; }

/* ══════════════════════════════════
   CASE STUDIES
══════════════════════════════════ */
.cs {
  background:
    radial-gradient(ellipse 55% 50% at 12% 28%, rgba(57,146,255,0.09) 0%, transparent 100%),
    radial-gradient(ellipse 45% 55% at 86% 68%, rgba(4,100,221,0.07) 0%, transparent 100%),
    var(--white);
}
.cs-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:48px; }
.cs-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }

.cs-card {
  background:rgba(255,255,255,0.30);
  backdrop-filter:blur(20px) saturate(160%); -webkit-backdrop-filter:blur(20px) saturate(160%);
  border-radius:18px; overflow:hidden;
  border:1px solid rgba(255,255,255,0.58);
  box-shadow:0 4px 20px rgba(3,44,124,0.07), inset 0 1px 0 rgba(255,255,255,0.80);
  transition:all .3s;
}
.cs-card:hover { box-shadow:0 16px 48px rgba(3,44,124,.14), inset 0 1px 0 rgba(255,255,255,0.90); transform:translateY(-4px); border-color:rgba(255,255,255,0.90); }

.cs-top {
  padding:24px; position:relative; overflow:hidden;
  min-height:132px; display:flex; flex-direction:column; justify-content:space-between;
  background:linear-gradient(135deg,var(--navy) 0%,var(--steel) 100%);
}
.cs-top::after { content:''; position:absolute; bottom:-26px; right:-26px; width:105px; height:105px; border-radius:50%; background:rgba(255,255,255,.05); }
.cs-wm {
  position:absolute; bottom:8px; right:8px;
  width:38px; height:38px; object-fit:contain;
  opacity:.14; filter:brightness(10); pointer-events:none;
}
.cs-ind {
  display:inline-flex; align-items:center; gap:5px;
  background:rgba(255,255,255,.11); color:rgba(255,255,255,.8);
  font-size:.65rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.08em; padding:4px 11px; border-radius:100px; align-self:flex-start;
}
.cs-title { font-size:var(--fs-sm); font-weight:800; color:var(--white); line-height:1.35; letter-spacing:-.01em; position:relative; z-index:1; }

.cs-body { padding:24px; }
.cs-desc { font-size:var(--fs-xs); color:var(--muted); line-height:var(--lh); margin-bottom:16px; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.cs-tags { display:flex; flex-wrap:wrap; gap:5px; margin-bottom:16px; }
.cs-tag { font-size:.65rem; font-weight:600; color:var(--core-blue); background:rgba(4,100,221,.08); padding:3px 9px; border-radius:100px; }
.cs-impact { padding:12px 14px; background:rgba(174,227,123,.11); border-radius:9px; border-left:3px solid var(--green); }
.cs-lbl { font-size:.62rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--green-dark); margin-bottom:2px; }
.cs-txt { font-size:var(--fs-xs); font-weight:500; color:var(--navy); line-height:1.55; }

/* ══════════════════════════════════
   WHY RTC  (3Rs + visual)
══════════════════════════════════ */
.why {
  background:var(--navy); position:relative; overflow:hidden;
}
.why-pat {
  position:absolute; top:0; right:0; width:44%; height:100%;
  background-image:var(--bg-pattern); background-size:270px auto;
  background-repeat:repeat; opacity:.042; pointer-events:none; z-index:0;
}
.why::before {
  content:''; position:absolute; top:-130px; right:-80px;
  width:540px; height:540px;
  background:radial-gradient(circle,rgba(57,146,255,.13) 0%,transparent 68%);
  pointer-events:none;
}
.why-inner { display:grid; grid-template-columns:1fr 1fr; gap:76px; align-items:center; position:relative; z-index:1; }
.why .sec-tag { color:var(--green); }
.why .sec-h   { color:var(--white); }
.why .sec-p   { color:rgba(255,255,255,.75); }

.why-items { display:flex; flex-direction:column; gap:20px; margin-top:32px; }
.why-item {
  display:flex; gap:20px; align-items:flex-start;
  padding:24px; border-radius:13px;
  background:rgba(255,255,255,0.07);
  backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.12);
  transition:all .3s;
}
.why-item:hover { background:rgba(255,255,255,0.12); border-color:rgba(174,227,123,.35); }
.why-num { font-size:1.9rem; font-weight:900; color:var(--green); letter-spacing:-.04em; line-height:1; min-width:46px; }
.why-lbl { font-size:var(--fs-sm); font-weight:800; color:var(--white); letter-spacing:-.01em; margin-bottom:4px; }
.why-desc { font-size:var(--fs-xs); color:rgba(255,255,255,.75); line-height:var(--lh); }

/* orbit visual */
.why-visual { display:flex; justify-content:center; align-items:center; height:420px; }
.circ { position:relative; width:300px; height:300px; }
.c-ring {
  position:absolute; top:50%; left:50%;
  border-radius:50%; border:1px dashed rgba(57,146,255,.27);
  animation:rot 16s linear infinite;
}
.cr1 { width:300px; height:300px; }
.cr2 { width:220px; height:220px; animation-direction:reverse; animation-duration:10s; border-color:rgba(174,227,123,.17); }
.c-center {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:200px; height:200px; border-radius:50%;
  background:rgba(4,100,221,.14); border:1px solid rgba(57,146,255,.22);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:5px;
}
.c-logo {
  width:76px; height:76px; object-fit:contain;
  background:rgba(255,255,255,.07); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:.42rem; font-weight:700; color:rgba(255,255,255,.28);
  text-align:center; padding:8px;
}
.c-logo img { width:100%; height:100%; object-fit:contain; }
.c-lbl { font-size:.62rem; font-weight:700; letter-spacing:.13em; text-transform:uppercase; color:rgba(255,255,255,.3); }
.od2 { font-size:1.05rem; }

/* ══════════════════════════════════
   PROCESS
══════════════════════════════════ */
.process {
  background:
    radial-gradient(ellipse 50% 55% at 87% 28%, rgba(4,100,221,0.08) 0%, transparent 100%),
    radial-gradient(ellipse 45% 50% at 8% 75%, rgba(57,146,255,0.07) 0%, transparent 100%),
    var(--off-white);
}
.proc-header { margin-bottom:52px; }
.proc-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; position:relative; }
.proc-steps::before {
  content:''; position:absolute; top:30px; left:11%; right:11%; height:1px;
  background:linear-gradient(90deg,transparent,rgba(4,100,221,.15),rgba(4,100,221,.15),transparent);
}
.proc-step {
  background:rgba(255,255,255,0.30);
  backdrop-filter:blur(20px) saturate(160%); -webkit-backdrop-filter:blur(20px) saturate(160%);
  border-radius:15px; padding:26px 20px;
  border:1px solid rgba(255,255,255,0.58);
  box-shadow:0 4px 20px rgba(3,44,124,0.06), inset 0 1px 0 rgba(255,255,255,0.80);
  text-align:center;
  position:relative; z-index:1; transition:all .3s;
}
.proc-step:hover { border-color:rgba(255,255,255,0.90); box-shadow:0 12px 34px rgba(3,44,124,.11), inset 0 1px 0 rgba(255,255,255,0.90); transform:translateY(-3px); }
.step-n {
  width:48px; height:48px; border-radius:50%;
  background:var(--core-blue); color:var(--white);
  font-size:1rem; font-weight:800;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 14px;
}
.step-t { font-size:var(--fs-sm); font-weight:700; color:var(--navy); margin-bottom:7px; }
.step-d { font-size:var(--fs-xs); color:var(--muted); line-height:var(--lh); }

/* ══════════════════════════════════
   PACKAGES
══════════════════════════════════ */
.packages {
  background:
    radial-gradient(ellipse 55% 50% at 4% 18%, rgba(57,146,255,0.09) 0%, transparent 100%),
    radial-gradient(ellipse 45% 55% at 90% 76%, rgba(174,227,123,0.08) 0%, transparent 100%),
    var(--white);
}
.pkg-hd { text-align:center; margin-bottom:52px; }
.pkg-hd .sec-p { margin:0 auto; }
.pkg-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }

.pkg-card {
  background:rgba(255,255,255,0.30);
  backdrop-filter:blur(20px) saturate(160%); -webkit-backdrop-filter:blur(20px) saturate(160%);
  border-radius:18px; padding:34px 26px;
  border:1px solid rgba(255,255,255,0.58);
  box-shadow:0 4px 20px rgba(3,44,124,0.07), inset 0 1px 0 rgba(255,255,255,0.80);
  transition:all .3s;
  display:flex; flex-direction:column;
}
.pkg-card:hover { border-color:rgba(255,255,255,0.90); box-shadow:0 14px 44px rgba(3,44,124,.12), inset 0 1px 0 rgba(255,255,255,0.90); transform:translateY(-3px); }
.pkg-card.featured { background:var(--navy); border-color:var(--core-blue); }
.pkg-badge {
  display:inline-block; background:var(--green); color:var(--green-dark);
  font-size:.62rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  padding:4px 11px; border-radius:100px; margin-bottom:14px;
}
.pkg-name { font-size:1.25rem; font-weight:900; color:var(--navy); letter-spacing:-.02em; margin-bottom:6px; }
.pkg-card.featured .pkg-name { color:var(--white); }
.pkg-sub { font-size:var(--fs-xs); color:var(--muted); line-height:1.65; margin-bottom:22px; }
.pkg-card.featured .pkg-sub { color:rgba(255,255,255,.78); }
.pkg-div { height:1px; background:rgba(3,44,124,.08); margin-bottom:20px; }
.pkg-card.featured .pkg-div { background:rgba(255,255,255,.10); }
.pkg-feats { list-style:none; display:flex; flex-direction:column; gap:9px; flex:1; margin-bottom:26px; }
.pkg-feats li {
  font-size:var(--fs-xs); font-weight:500; color:var(--navy);
  display:flex; align-items:flex-start; gap:9px; line-height:1.55;
}
.pkg-card.featured .pkg-feats li { color:rgba(255,255,255,.8); }
.pkg-feats li::before {
  content:'✓'; font-size:.65rem; font-weight:800; color:var(--green-dark);
  background:rgba(174,227,123,.2); border-radius:50%;
  width:17px; height:17px; display:flex; align-items:center; justify-content:center;
  flex-shrink:0; margin-top:1px;
}
.pkg-card.featured .pkg-feats li::before { color:var(--navy); background:var(--green); }
.pkg-cta {
  width:100%; text-align:center; padding:12px; border-radius:8px;
  font-size:var(--fs-xs); font-weight:700; text-decoration:none;
  transition:all .25s; border:2px solid var(--core-blue);
  color:var(--core-blue); background:transparent; display:block;
}
.pkg-cta:hover { background:var(--core-blue); color:var(--white); }
.pkg-card.featured .pkg-cta { background:var(--green); border-color:var(--green); color:var(--navy); }
.pkg-card.featured .pkg-cta:hover { background:var(--white); border-color:var(--white); }

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
.about {
  background:
    radial-gradient(ellipse 50% 55% at 82% 22%, rgba(4,100,221,0.07) 0%, transparent 100%),
    radial-gradient(ellipse 55% 45% at 12% 72%, rgba(57,146,255,0.08) 0%, transparent 100%),
    var(--off-white);
}
.about-inner { display:grid; grid-template-columns:1fr 1fr; gap:68px; align-items:start; }
.about-vals { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:28px; }
.val {
  padding:18px; border-radius:12px;
  background:rgba(255,255,255,0.30);
  backdrop-filter:blur(16px) saturate(160%); -webkit-backdrop-filter:blur(16px) saturate(160%);
  border:1px solid rgba(255,255,255,0.58);
  box-shadow:0 2px 14px rgba(3,44,124,0.05), inset 0 1px 0 rgba(255,255,255,0.80);
  transition:all .3s;
}
.val:hover { border-color:rgba(255,255,255,0.90); box-shadow:0 6px 22px rgba(3,44,124,.09), inset 0 1px 0 rgba(255,255,255,0.90); }
.val-ic { font-size:1.35rem; margin-bottom:7px; }
.val-t { font-size:var(--fs-xs); font-weight:700; color:var(--navy); margin-bottom:4px; }
.val-d { font-size:.67rem; color:var(--muted); line-height:1.65; }

.stack-card {
  background:var(--navy); border-radius:17px; padding:34px;
  color:var(--white); position:relative; overflow:hidden;
}
.stack-card::before { content:''; position:absolute; top:-48px; right:-48px; width:170px; height:170px; border-radius:50%; background:rgba(57,146,255,.12); }
.stack-card::after { content:''; position:absolute; inset:0; background-image:var(--bg-pattern); background-size:170px auto; background-repeat:repeat; opacity:.04; }
.stack-card h3 { font-size:1.15rem; font-weight:800; letter-spacing:-.02em; margin-bottom:9px; position:relative; z-index:1; }
.stack-card p { font-size:var(--fs-xs); color:rgba(255,255,255,.78); line-height:var(--lh); margin-bottom:20px; position:relative; z-index:1; }
.chips { display:flex; flex-wrap:wrap; gap:6px; position:relative; z-index:1; }
.chip {
  background:rgba(255,255,255,.10); color:rgba(255,255,255,.8);
  font-size:.65rem; font-weight:600; padding:5px 12px;
  border-radius:100px; border:1px solid rgba(255,255,255,.10);
  transition:all .2s; cursor:default;
}
.chip:hover { background:var(--core-blue); border-color:var(--core-blue); color:var(--white); }
.chip.ai-chip { background:rgba(174,227,123,.12); border-color:rgba(174,227,123,.25); color:rgba(174,227,123,.9); }
.chip.ai-chip:hover { background:var(--green); border-color:var(--green); color:var(--navy); }
.chip.soon { opacity:.42; font-style:italic; }

.mini-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:12px; }
.mini {
  background:rgba(255,255,255,0.30);
  backdrop-filter:blur(16px) saturate(160%); -webkit-backdrop-filter:blur(16px) saturate(160%);
  border-radius:12px; padding:17px;
  border:1px solid rgba(255,255,255,0.58);
  box-shadow:0 2px 12px rgba(3,44,124,0.05), inset 0 1px 0 rgba(255,255,255,0.80);
  text-align:center;
}
.mini-e { font-size:1.5rem; margin-bottom:5px; }
.mini-l { font-size:var(--fs-xs); font-weight:700; color:var(--navy); }
.mini-s { font-size:.65rem; color:var(--muted); margin-top:2px; }

/* ══════════════════════════════════
   FINAL CTA
══════════════════════════════════ */
.cta-final {
  background:linear-gradient(135deg,var(--navy) 0%,var(--core-blue) 62%,var(--steel) 100%);
  padding:96px 8%; text-align:center; position:relative; overflow:hidden;
}
.cta-pat {
  position:absolute; inset:0;
  background-image:var(--bg-pattern); background-size:250px auto;
  background-repeat:repeat; opacity:.07; mix-blend-mode:overlay; pointer-events:none;
}
.cta-glow {
  position:absolute; top:-100px; left:50%; transform:translateX(-50%);
  width:620px; height:620px; border-radius:50%;
  background:rgba(57,146,255,.09); pointer-events:none;
}
.cta-content { position:relative; z-index:1; }
.cta-final .sec-tag { color:var(--green); }
.cta-final .sec-h { color:var(--white); margin-bottom:14px; }
.cta-final .sec-p { color:rgba(255,255,255,.80); margin:0 auto 20px; }
.cta-logo-wrap { display:flex; justify-content:center; margin-bottom:26px; }
.cta-logo-img { width:64px; height:64px; object-fit:contain; opacity:.17; filter:brightness(10); }
.cta-logo-ph {
  width:64px; height:64px; border-radius:50%;
  background:rgba(255,255,255,.06);
  display:flex; align-items:center; justify-content:center;
  font-size:.42rem; font-weight:700; color:rgba(255,255,255,.22); text-align:center; padding:8px;
}
.cta-actions { display:flex; gap:13px; justify-content:center; flex-wrap:wrap; margin-bottom:16px; }
.cta-hint { font-size:var(--fs-xs); color:rgba(255,255,255,.82); }
.cta-hint a { color:rgba(255,255,255,.85); text-decoration:underline; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer { background:var(--navy); padding:56px 8% 26px; color:rgba(255,255,255,.70); position:relative; overflow:hidden; }
.ft-pat { position:absolute; inset:0; background-image:var(--bg-pattern); background-size:230px auto; background-repeat:repeat; opacity:.038; pointer-events:none; }
.ft-inner { position:relative; z-index:1; }
.ft-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; margin-bottom:44px; }
.ft-logo { display:flex; align-items:center; gap:10px; margin-bottom:13px; text-decoration:none; }
.ft-logo-img {
  width:32px; height:32px; object-fit:contain;
  background:rgba(255,255,255,.07); border-radius:5px;
  display:flex; align-items:center; justify-content:center;
  font-size:.4rem; font-weight:700; color:rgba(255,255,255,.26); text-align:center; padding:3px;
}
.ft-logo-img img { width:100%; height:100%; object-fit:contain; border-radius:5px; }
.ft-logo span { font-weight:800; font-size:.88rem; color:var(--white); }
.ft-brand p { font-size:var(--fs-xs); line-height:var(--lh); max-width:260px; }
.ft-col h4 { font-size:.65rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--white); margin-bottom:14px; }
.ft-col ul { list-style:none; display:flex; flex-direction:column; gap:8px; }
.ft-col a { font-size:var(--fs-xs); color:rgba(255,255,255,.68); text-decoration:none; transition:color .2s; }
.ft-col a:hover { color:var(--azure); }
.ft-bottom {
  border-top:1px solid rgba(255,255,255,.07); padding-top:22px;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:9px;
}
.ft-bottom p { font-size:var(--fs-xs); }
.ft-tagline { font-size:var(--fs-xs); font-weight:600; color:var(--green); letter-spacing:.04em; }

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
@keyframes fadeUp   { from { opacity:0; transform:translateY(26px); } to { opacity:1; transform:none; } }
@keyframes fadeRight{ from { opacity:0; transform:translateX(34px); } to { opacity:1; transform:none; } }
@keyframes rot      { from { transform:translate(-50%,-50%) rotate(0deg); } to { transform:translate(-50%,-50%) rotate(360deg); } }
@keyframes flt      { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-7px); } }
@keyframes pulse    { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:.5; transform:scale(.7); } }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media(max-width:980px){
  .hero{ grid-template-columns:1fr; min-height:auto; padding-top:80px; padding-bottom:52px; }
  .hero-right{ display:none; }
  .pain-inner,.why-inner,.about-inner{ grid-template-columns:1fr; gap:34px; }
  .svc-header{ grid-template-columns:1fr; gap:16px; }
  .svc-grid,.cs-grid,.pkg-grid{ grid-template-columns:1fr; }
  .proc-steps{ grid-template-columns:1fr 1fr; }
  .proc-steps::before{ display:none; }
  .stats-bar{ grid-template-columns:1fr 1fr; }
  .mini-grid,.about-vals{ grid-template-columns:1fr 1fr; }
  .ft-top{ grid-template-columns:1fr 1fr; }
  .nav-links{ display:none; }
  .nav-burger{ display:flex; }
}

/* ══════════════════════════════════
   BURGER MENU
══════════════════════════════════ */
.nav-burger {
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:8px;
  z-index:101;
}
.nav-burger span {
  display:block;
  width:26px;
  height:2.5px;
  background:var(--navy);
  border-radius:3px;
  transition:transform .3s ease, opacity .3s ease;
  transform-origin:center;
}
.nav-burger.open span:nth-child(1) { transform:translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.nav-burger.open span:nth-child(3) { transform:translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position:fixed;
  top:90px;
  left:0; right:0;
  background:rgba(245,246,250,0.98);
  backdrop-filter:blur(24px) saturate(180%);
  -webkit-backdrop-filter:blur(24px) saturate(180%);
  border-bottom:1px solid rgba(3,44,124,.10);
  box-shadow:0 12px 40px rgba(3,44,124,.14);
  padding:20px 6% 28px;
  z-index:100;
  transform:translateY(-110%);
  opacity:0;
  transition:transform .35s cubic-bezier(.4,0,.2,1), opacity .25s ease;
  pointer-events:none;
}
.mobile-menu.open {
  transform:translateY(0);
  opacity:1;
  pointer-events:all;
}
.mobile-menu ul { list-style:none; display:flex; flex-direction:column; }
.mobile-menu ul li { border-bottom:1px solid rgba(3,44,124,.07); }
.mobile-menu ul li:last-child { border-bottom:none; }
.mobile-menu ul a {
  display:block;
  padding:16px 4px;
  font-size:1rem;
  font-weight:700;
  color:var(--navy);
  text-decoration:none;
  letter-spacing:.04em;
  text-transform:uppercase;
  transition:color .2s;
}
.mobile-menu ul a:hover { color:var(--core-blue); }
.mobile-menu .mob-cta {
  display:inline-block;
  margin:18px 0 4px;
  background:var(--core-blue);
  color:var(--white) !important;
  padding:14px 32px;
  border-radius:8px;
  text-align:center;
  width:100%;
  box-sizing:border-box;
}
.mobile-menu .mob-cta:hover { background:var(--navy) !important; }

/* ══════════════════════════════════
   PAGE-SPECIFIC — SERVICES PAGE
══════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 190px 8% 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -120px; right: -100px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(57,146,255,.14) 0%, transparent 68%);
  pointer-events: none;
}
.page-hero-pat {
  position: absolute; inset: 0;
  background-image: var(--bg-pattern); background-size: 270px auto;
  background-repeat: repeat; opacity: .04; pointer-events: none;
}
.page-hero .sec-tag { color: var(--green); }
.page-hero .sec-h { color: var(--white); max-width: 680px; }
.page-hero .sec-p { color: rgba(255,255,255,.78); margin-top: 4px; max-width:600px; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: var(--fs-xs); color: rgba(255,255,255,.80);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.70); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--azure); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* Smartsheet Pricing section */
.ss-pricing { background: var(--off-white); }
.ss-pricing .sec-h { text-align: center; }
.ss-pricing .sec-p { text-align: center; margin: 0 auto 16px; }

.ss-pricing-note {
  text-align: center;
  font-size: var(--fs-xs); color: var(--muted);
  max-width: 580px; margin: 0 auto 52px;
  padding: 14px 20px;
  background: rgba(4,100,221,.05);
  border: 1px solid rgba(4,100,221,.12);
  border-radius: 10px;
  line-height: var(--lh);
}

.ss-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 48px; }

.ss-tier {
  background: var(--white); border-radius: 18px;
  border: 1.5px solid rgba(3,44,124,.07);
  overflow: hidden; display: flex; flex-direction: column;
  transition: all .3s;
}
.ss-tier:hover { box-shadow: 0 14px 44px rgba(3,44,124,.10); transform: translateY(-3px); }
.ss-tier.popular { border-color: var(--core-blue); }

.ss-tier-head {
  padding: 28px 26px 22px;
  border-bottom: 1px solid rgba(3,44,124,.06);
  position: relative;
}
.ss-tier.popular .ss-tier-head {
  background: var(--navy);
}
.ss-popular-badge {
  display: inline-block; background: var(--green); color: var(--green-dark);
  font-size: .62rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px; margin-bottom: 10px;
}
.ss-tier-label {
  font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--core-blue); margin-bottom: 4px;
}
.ss-tier.popular .ss-tier-label { color: var(--green); }
.ss-tier-name {
  font-size: 1.3rem; font-weight: 900; letter-spacing: -.02em;
  color: var(--navy); margin-bottom: 6px;
}
.ss-tier.popular .ss-tier-name { color: var(--white); }
.ss-tier-tagline {
  font-size: var(--fs-xs); color: var(--muted); line-height: 1.65;
  margin-bottom: 16px;
}
.ss-tier.popular .ss-tier-tagline { color: rgba(255,255,255,.78); }
.ss-price {
  display: flex; align-items: baseline; gap: 4px;
}
.ss-price-amt {
  font-size: 2rem; font-weight: 900; letter-spacing: -.03em; color: var(--navy);
}
.ss-tier.popular .ss-price-amt { color: var(--white); }
.ss-price-unit {
  font-size: var(--fs-xs); font-weight: 600; color: var(--muted);
}
.ss-tier.popular .ss-price-unit { color: rgba(255,255,255,.72); }
.ss-price-note {
  font-size: .65rem; color: var(--muted); margin-top: 4px;
}
.ss-tier.popular .ss-price-note { color: rgba(255,255,255,.65); }

.ss-tier-body { padding: 22px 26px; flex: 1; display: flex; flex-direction: column; }
.ss-incl-label {
  font-size: .62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted); margin-bottom: 12px;
}
.ss-feats { list-style: none; display: flex; flex-direction: column; gap: 9px; flex: 1; margin-bottom: 20px; }
.ss-feats li {
  font-size: var(--fs-xs); color: var(--navy);
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.55;
}
.ss-feats li::before {
  content: '✓'; font-size: .62rem; font-weight: 800; color: var(--green-dark);
  background: rgba(174,227,123,.2); border-radius: 50%;
  width: 16px; height: 16px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.ss-excl-label {
  font-size: .62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted); margin: 14px 0 8px;
}
.ss-excl { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.ss-excl li {
  font-size: var(--fs-xs); color: var(--muted);
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.55;
}
.ss-excl li::before {
  content: '–'; font-size: .8rem; font-weight: 700; color: #c0c8d8;
  min-width: 16px; text-align: center; flex-shrink: 0;
}
.ss-tier-cta {
  width: 100%; text-align: center; padding: 12px; border-radius: 8px;
  font-size: var(--fs-xs); font-weight: 700; text-decoration: none;
  transition: all .25s; border: 2px solid var(--core-blue);
  color: var(--core-blue); background: transparent; display: block;
}
.ss-tier-cta:hover { background: var(--core-blue); color: var(--white); }
.ss-tier.popular .ss-tier-cta { background: var(--green); border-color: var(--green); color: var(--navy); }
.ss-tier.popular .ss-tier-cta:hover { background: var(--white); border-color: var(--white); }

/* Add-ons */
.ss-addons {
  background: var(--white); border-radius: 18px;
  border: 1.5px solid rgba(3,44,124,.07); padding: 36px;
  margin-bottom: 32px;
}
.ss-addons h3 {
  font-size: 1.1rem; font-weight: 800; color: var(--navy);
  letter-spacing: -.02em; margin-bottom: 6px;
}
.ss-addons > p {
  font-size: var(--fs-xs); color: var(--muted); margin-bottom: 24px;
}
.ss-addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ss-addon-item {
  padding: 16px 18px; border-radius: 12px;
  background: var(--off-white); border: 1px solid rgba(3,44,124,.06);
  transition: all .3s;
}
.ss-addon-item:hover { border-color: rgba(4,100,221,.14); }
.ss-addon-name { font-size: var(--fs-xs); font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.ss-addon-price { font-size: .65rem; font-weight: 600; color: var(--core-blue); }

/* Pricing note box */
.ss-note-box {
  background: var(--navy); border-radius: 14px; padding: 28px 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  position: relative; overflow: hidden;
}
.ss-note-box::after {
  content: ''; position: absolute; inset: 0;
  background-image: var(--bg-pattern); background-size: 200px auto;
  background-repeat: repeat; opacity: .04; pointer-events: none;
}
.ss-note-box h4 { font-size: var(--fs-sm); font-weight: 800; color: var(--white); margin-bottom: 8px; position: relative; z-index: 1; }
.ss-note-box p { font-size: var(--fs-xs); color: rgba(255,255,255,.78); line-height: var(--lh); position: relative; z-index: 1; }

/* ══════════════════════════════════
   PAGE-SPECIFIC — ABOUT PAGE
══════════════════════════════════ */
.about-story { background: var(--white); }
.about-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-story-text .sec-p { margin-bottom: 18px; }
.about-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 16px; }
.mission-card {
  padding: 22px; border-radius: 14px;
  border: 1.5px solid rgba(3,44,124,.08); background: var(--off-white);
  transition: all .3s;
}
.mission-card:hover { border-color: rgba(4,100,221,.18); }
.mission-card h4 { font-size: var(--fs-sm); font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.mission-card p { font-size: var(--fs-xs); color: var(--muted); line-height: var(--lh); }
.mission-card .m-icon { display:none; }

.about-visual-card {
  background: var(--navy); border-radius: 20px; padding: 40px;
  position: relative; overflow: hidden;
}
.about-visual-card::before { content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; border-radius: 50%; background: rgba(57,146,255,.13); }
.about-visual-card::after { content: ''; position: absolute; inset: 0; background-image: var(--bg-pattern); background-size: 190px auto; background-repeat: repeat; opacity: .04; }
.about-visual-card h3 { font-size: 1.4rem; font-weight: 900; color: var(--white); letter-spacing: -.02em; margin-bottom: 14px; position: relative; z-index: 1; }
.about-visual-card p { font-size: var(--fs-xs); color: rgba(255,255,255,.80); line-height: var(--lh); position: relative; z-index: 1; margin-bottom: 0; }
.about-stat-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; position: relative; z-index: 1; margin-top: 24px; }
.about-stat-box { text-align: center; }
.about-stat-num { font-size: 1.6rem; font-weight: 900; color: var(--white); letter-spacing: -.02em; line-height: 1; }
.about-stat-num span { color: var(--green); }
.about-stat-lbl { font-size: .62rem; font-weight: 600; color: rgba(255,255,255,.70); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }

.about-team { background: var(--off-white); }
.about-leadership { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 8px; }
.leader-card {
  background: var(--white); border-radius: 16px; padding: 28px 24px;
  border: 1.5px solid rgba(3,44,124,.06); transition: all .3s; text-align: center;
}
.leader-card:hover { border-color: rgba(4,100,221,.14); box-shadow: 0 10px 32px rgba(3,44,124,.08); }
.leader-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--core-blue), var(--azure));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 14px;
}
.leader-name { font-size: var(--fs-sm); font-weight: 800; color: var(--navy); margin-bottom: 3px; }
.leader-role { font-size: var(--fs-xs); font-weight: 600; color: var(--core-blue); margin-bottom: 10px; }
.leader-bio { font-size: var(--fs-xs); color: var(--muted); line-height: var(--lh); }

.about-values-full { background: var(--white); }
.values-full-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.value-full-card {
  padding: 28px 22px; border-radius: 16px;
  background: var(--off-white); border: 1.5px solid rgba(3,44,124,.06);
  transition: all .3s;
}
.value-full-card:hover { border-color: rgba(4,100,221,.15); box-shadow: 0 10px 30px rgba(3,44,124,.08); transform: translateY(-3px); }
.vfc-icon { display:none; }
.vfc-title { font-size: var(--fs-sm); font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.vfc-desc { font-size: var(--fs-xs); color: var(--muted); line-height: var(--lh); }

/* ══════════════════════════════════
   PAGE-SPECIFIC — WORK PAGE
══════════════════════════════════ */
.work-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.filter-btn {
  padding: 8px 18px; border-radius: 100px;
  font-size: var(--fs-xs); font-weight: 600; text-decoration: none;
  border: 1.5px solid rgba(3,44,124,.14); color: var(--navy);
  background: transparent; cursor: pointer; transition: all .25s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--core-blue); border-color: var(--core-blue); color: var(--white);
}
.work-grid-full { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

/* ══════════════════════════════════
   RESPONSIVE ADDITIONS
══════════════════════════════════ */
@media(max-width:980px) {
  .ss-tiers { grid-template-columns: 1fr; }
  .ss-addon-grid { grid-template-columns: 1fr 1fr; }
  .ss-note-box { grid-template-columns: 1fr; gap: 20px; }
  .about-story-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-mission-grid { grid-template-columns: 1fr 1fr; }
  .about-stat-row { grid-template-columns: 1fr 1fr 1fr; }
  .about-leadership { grid-template-columns: 1fr; }
  .values-full-grid { grid-template-columns: 1fr 1fr; }
  .work-grid-full { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   PAGE-SPECIFIC — TEAM PAGE
══════════════════════════════════ */
.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.team-member-card {
  background:var(--white); border-radius:18px; padding:32px 26px;
  border:1.5px solid rgba(3,44,124,.06); transition:all .3s; text-align:center;
  display:flex; flex-direction:column; align-items:center;
}
.team-member-card:hover { border-color:rgba(4,100,221,.18); box-shadow:0 12px 36px rgba(3,44,124,.09); transform:translateY(-4px); }
.tm-avatar {
  width:88px; height:88px; border-radius:50%;
  background:linear-gradient(135deg, var(--navy), var(--core-blue));
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; font-weight:800; color:var(--white);
  letter-spacing:.04em; margin-bottom:18px;
}
.tm-name { font-size:var(--fs-sm); font-weight:800; color:var(--navy); margin-bottom:4px; }
.tm-role { font-size:var(--fs-xs); font-weight:700; color:var(--core-blue); margin-bottom:12px; text-transform:uppercase; letter-spacing:.05em; }
.tm-bio { font-size:var(--fs-xs); color:var(--muted); line-height:var(--lh); }
.tm-tags { display:flex; flex-wrap:wrap; gap:5px; justify-content:center; margin-top:14px; }
.tm-tag { font-size:.63rem; font-weight:600; color:var(--steel); background:rgba(3,44,124,.06); padding:3px 10px; border-radius:100px; }
.tm-open {
  border-style:dashed; background:rgba(3,44,124,.02);
  border-color:rgba(3,44,124,.12);
}
.tm-open .tm-avatar { background:rgba(3,44,124,.07); }
.tm-open .tm-name { color:var(--muted); font-style:italic; }
.tm-open .tm-role { color:var(--muted); }

/* ══════════════════════════════════
   PAGE-SPECIFIC — PHILOSOPHY PAGE
══════════════════════════════════ */
.phil-r-section { background:var(--navy); padding:96px 8%; position:relative; overflow:hidden; }
.phil-r-section::before {
  content:''; position:absolute; top:-120px; right:-80px;
  width:540px; height:540px;
  background:radial-gradient(circle,rgba(57,146,255,.13) 0%,transparent 68%);
  pointer-events:none;
}
.phil-r-pat { position:absolute; inset:0; background-image:var(--bg-pattern); background-size:260px auto; background-repeat:repeat; opacity:.04; pointer-events:none; }
.phil-3rs-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; position:relative; z-index:1; margin-top:52px; }
.phil-r-card {
  background:rgba(255,255,255,.07); border-radius:18px; padding:36px 28px;
  border:1px solid rgba(255,255,255,.13);
  backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  transition:all .3s;
}
.phil-r-card:hover { background:rgba(255,255,255,.12); border-color:rgba(174,227,123,.35); transform:translateY(-4px); }
.phil-r-num { font-size:3.6rem; font-weight:900; color:var(--green); letter-spacing:-.05em; line-height:1; margin-bottom:12px; }
.phil-r-title { font-size:1.4rem; font-weight:900; color:var(--white); letter-spacing:-.02em; margin-bottom:12px; }
.phil-r-desc { font-size:var(--fs-xs); color:rgba(255,255,255,.80); line-height:var(--lh); }
.phil-r-bullets { list-style:none; display:flex; flex-direction:column; gap:8px; margin-top:16px; }
.phil-r-bullets li { font-size:var(--fs-xs); color:rgba(255,255,255,.82); display:flex; gap:9px; line-height:1.55; }
.phil-r-bullets li::before { content:'→'; color:var(--green); font-weight:800; flex-shrink:0; }

.compensation-section {
  background:
    radial-gradient(ellipse 55% 50% at 8% 25%, rgba(57,146,255,.09) 0%, transparent 100%),
    radial-gradient(ellipse 45% 55% at 88% 72%, rgba(174,227,123,.07) 0%, transparent 100%),
    var(--off-white);
  padding:96px 8%;
}
.compensation-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:48px; }
.comp-card {
  background:rgba(255,255,255,0.40);
  backdrop-filter:blur(20px) saturate(160%); -webkit-backdrop-filter:blur(20px) saturate(160%);
  border-radius:15px; padding:30px 24px;
  border:1px solid rgba(255,255,255,0.58);
  box-shadow:0 4px 24px rgba(3,44,124,0.07), inset 0 1px 0 rgba(255,255,255,0.80);
  transition:all .3s;
}
.comp-card:hover { border-color:rgba(255,255,255,.90); box-shadow:0 14px 44px rgba(3,44,124,.13); transform:translateY(-3px); }
.comp-icon { display:none; }
.comp-title { font-size:var(--fs-sm); font-weight:700; color:var(--navy); margin-bottom:8px; }
.comp-desc { font-size:var(--fs-xs); color:var(--muted); line-height:var(--lh); }

/* ══════════════════════════════════
   PAGE-SPECIFIC — SERVICES NEW TIERS
══════════════════════════════════ */
.svc-category-section { padding:80px 8%; }
.svc-category-section:nth-child(odd) { background:var(--off-white); }
.svc-category-section:nth-child(even) { background:var(--white); }
.svc-category-head { display:grid; grid-template-columns:1fr 1fr; gap:52px; align-items:end; margin-bottom:52px; }
.svc-category-icon { display:none; }
.svc-tiers-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }

/* ══════════════════════════════════
   PAGE-SPECIFIC — CONTACT UPDATES
══════════════════════════════════ */
.contact-two-col { display:grid; grid-template-columns:1fr 1fr; gap:52px; align-items:start; }
.embed-card {
  background:var(--white); border-radius:20px; padding:36px;
  border:1.5px solid rgba(3,44,124,.07);
  box-shadow:0 8px 32px rgba(3,44,124,.07);
}
.embed-card h2 { font-size:1.25rem; font-weight:800; color:var(--navy); letter-spacing:-.02em; margin-bottom:6px; }
.embed-card > p { font-size:var(--fs-xs); color:var(--muted); line-height:var(--lh); margin-bottom:24px; }
.calendly-cta-card {
  background:linear-gradient(135deg, var(--navy) 0%, var(--core-blue) 100%);
  border-radius:20px; padding:40px; text-align:center;
  position:relative; overflow:hidden;
}
.calendly-cta-card::after { content:''; position:absolute; inset:0; background-image:var(--bg-pattern); background-size:200px auto; background-repeat:repeat; opacity:.05; }
.calendly-cta-card h3 { font-size:1.4rem; font-weight:900; color:var(--white); letter-spacing:-.02em; margin-bottom:10px; position:relative; z-index:1; }
.calendly-cta-card p { font-size:var(--fs-xs); color:rgba(255,255,255,.82); line-height:var(--lh); margin-bottom:8px; position:relative; z-index:1; }
.calendly-cta-card .btn { position:relative; z-index:1; margin-top:20px; }
.calendly-perks { list-style:none; display:flex; flex-direction:column; gap:8px; margin:0 0 8px; position:relative; z-index:1; }
.calendly-perks li { font-size:var(--fs-xs); color:rgba(255,255,255,.7); display:flex; gap:8px; align-items:flex-start; text-align:left; }
.calendly-perks li::before { content:'✓'; color:var(--green); font-weight:800; flex-shrink:0; }
.contact-info-col { display:flex; flex-direction:column; gap:18px; }

/* ══════════════════════════════════
   RESPONSIVE — NEW PAGES
══════════════════════════════════ */
@media(max-width:980px) {
  .team-grid { grid-template-columns:1fr 1fr; }
  .phil-3rs-grid { grid-template-columns:1fr; }
  .compensation-grid { grid-template-columns:1fr; }
  .svc-category-head { grid-template-columns:1fr; gap:16px; }
  .svc-tiers-grid { grid-template-columns:1fr; }
  .contact-two-col { grid-template-columns:1fr; }
}
