/* ═══════════════════════════════════════════════════
   ODEX CLOUD TECHNOLOGIES — SALESFORCE DESIGN SYSTEM
   Fonts: Noto Sans (Salesforce Sans closest match)
   Colors: Exact Salesforce token values
═══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Salesforce Core Colors */
  --sf-navy:      #032D60;
  --sf-navy-lt:   #043A76;
  --sf-blue:      #0176D3;
  --sf-blue-dk:   #0160B9;
  --sf-sky:       #1B96FF;
  --sf-teal:      #06A59A;
  --sf-teal-dk:   #047C76;
  --sf-teal-lt:   #0B9E94;

  /* Salesforce Backgrounds */
  --sf-white:     #FFFFFF;
  --sf-cloud:     #F3F2EF;
  --sf-cloud2:    #FAFAF9;
  --sf-teal-bg:   #F0FAFA;
  --sf-blue-bg:   #EEF4FF;
  --sf-navy-bg:   #E8EDF3;
  --sf-sky-bg:    #EAF5FF;

  /* Salesforce Borders & Text */
  --sf-border:    #DDDBDA;
  --sf-border2:   #C9C7C5;
  --sf-ink:       #181818;
  --sf-ink2:      #3E3E3C;
  --sf-muted:     #706E6B;
  --sf-ph:        #AEAEAC;

  /* Salesforce Status */
  --sf-green:     #2E844A;
  --sf-green-bg:  #EEF6EC;
  --sf-orange:    #CA8501;
  --sf-orange-bg: #FEF6E4;
  --sf-red:       #BA0517;
  --sf-red-bg:    #FFDEDE;

  /* Odex Brand Wordmark Colors */
  --od-o: #fbb944;
  --od-d: #0bd1c0;
  --od-e: #2fbcfa;
  --od-x: #985183;

  /* Typography */
  --font: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Radius */
  --r4:  4px;
  --r8:  8px;
  --r12: 12px;
  --r16: 16px;
  --r24: 24px;

  /* Shadows (Salesforce elevation tokens) */
  --sh1: 0 2px 4px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --sh2: 0 4px 12px rgba(0,0,0,.09), 0 2px 4px rgba(0,0,0,.06);
  --sh3: 0 8px 24px rgba(0,0,0,.11), 0 4px 8px rgba(0,0,0,.07);
  --sh4: 0 16px 48px rgba(0,0,0,.13), 0 8px 16px rgba(0,0,0,.08);
  --sh5: 0 24px 72px rgba(0,0,0,.16), 0 12px 24px rgba(0,0,0,.10);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--sf-cloud); color: var(--sf-ink); overflow-x: hidden; line-height: 1.5; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--font); cursor: pointer; }

/* ══════════════════════════════════
   ODEX WORDMARK
══════════════════════════════════ */
.wm { font-family: var(--font); font-weight: 800; letter-spacing: -0.03em; line-height: 1; display: inline-flex; align-items: baseline; user-select: none; }
.wm .o { color: var(--od-o); }
.wm .d { color: var(--od-d); }
.wm .e { color: var(--od-e); }
.wm .x { color: var(--od-x); }

/* ══════════════════════════════════
   NAVIGATION — Salesforce global nav
══════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  height: 52px; background: var(--sf-navy);
  display: flex; align-items: center; padding: 0 5%;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-brand { display: flex; flex-direction: column; padding-right: 20px; border-right: 1px solid rgba(255,255,255,.15); margin-right: 8px; flex-shrink: 0; cursor: pointer; }
.nav-brand .wm { font-size: 1.4rem; }
.nav-brand-sub { font-size: .55rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-top: 1px; }
.nav-links { display: flex; flex: 1; overflow: hidden; }
.nav-links a { display: flex; align-items: center; height: 52px; padding: 0 12px; font-size: .79rem; font-weight: 600; color: rgba(255,255,255,.7); border-bottom: 3px solid transparent; transition: all .15s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: #fff; border-bottom-color: var(--sf-teal); }
.nav-right { display: flex; gap: 8px; align-items: center; margin-left: auto; flex-shrink: 0; }

/* Dropdown */
.nav-dd { position: relative; }
.nav-dd-menu { display: none; position: absolute; top: 52px; left: 0; background: white; border: 1px solid var(--sf-border); border-radius: var(--r8); box-shadow: var(--sh4); min-width: 220px; padding: 8px 0; z-index: 100; }
.nav-dd:hover .nav-dd-menu { display: block; }
.nav-dd-menu a { display: flex; align-items: center; gap: 8px; padding: 9px 16px; font-size: .84rem; font-weight: 500; color: var(--sf-ink2); border-bottom: none !important; height: auto; transition: background .15s; }
.nav-dd-menu a:hover { background: var(--sf-cloud); color: var(--sf-navy); }

/* ══════════════════════════════════
   BUTTONS — Odex button styles
══════════════════════════════════ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; font-family: var(--font); font-weight: 600; border-radius: var(--r4); border: 1.5px solid transparent; cursor: pointer; transition: all .18s; white-space: nowrap; line-height: 1; }
.btn-xs  { font-size: .75rem;  padding: 0 12px; height: 28px; }
.btn-sm  { font-size: .79rem;  padding: 0 14px; height: 32px; }
.btn-md  { font-size: .875rem; padding: 0 20px; height: 38px; }
.btn-lg  { font-size: .9375rem;padding: 0 28px; height: 46px; }
.btn-xl  { font-size: 1.0625rem;padding: 0 36px; height: 52px; }

.btn-teal   { background: var(--sf-teal); color: #fff; border-color: var(--sf-teal); }
.btn-teal:hover { background: var(--sf-teal-dk); box-shadow: 0 4px 16px rgba(6,165,154,.35); transform: translateY(-1px); }
.btn-blue   { background: var(--sf-blue); color: #fff; border-color: var(--sf-blue); }
.btn-blue:hover { background: var(--sf-blue-dk); box-shadow: 0 4px 16px rgba(1,118,211,.3); transform: translateY(-1px); }
.btn-navy   { background: var(--sf-navy); color: #fff; border-color: var(--sf-navy); }
.btn-navy:hover { background: #021d40; transform: translateY(-1px); }
.btn-white  { background: #fff; color: var(--sf-navy); border-color: #fff; font-weight: 700; }
.btn-white:hover { background: #eef4ff; transform: translateY(-1px); box-shadow: var(--sh2); }
.btn-neutral { background: #fff; color: var(--sf-ink); border-color: var(--sf-border2); }
.btn-neutral:hover { background: #f4f3f2; border-color: #aeaeac; }
.btn-ghost-teal { background: transparent; color: var(--sf-teal); border-color: var(--sf-teal); }
.btn-ghost-teal:hover { background: var(--sf-teal-bg); }
.btn-ghost-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ══════════════════════════════════
   PAGE WRAPPER
══════════════════════════════════ */
.page-body { padding-top: 52px; }

/* ══════════════════════════════════
   SECTION LAYOUT
══════════════════════════════════ */
.sec  { padding: 80px 5%; }
.sec-sm { padding: 56px 5%; }
.sec-lg { padding: 100px 5%; }
.sec-inner { max-width: 1260px; margin: 0 auto; }
.sec-center { text-align: center; }
.sec-center .sf-sub { margin: 0 auto; }
.sec-white  { background: var(--sf-white); }
.sec-cloud  { background: var(--sf-cloud); }
.sec-cloud2 { background: var(--sf-cloud2); }
.sec-navy   { background: var(--sf-navy); }
.sec-teal   { background: var(--sf-teal); }

/* ══════════════════════════════════
   TYPOGRAPHY — Salesforce patterns
══════════════════════════════════ */
.sf-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--sf-teal); margin-bottom: 12px; }
.sf-eyebrow::before { content: ''; width: 16px; height: 2px; background: var(--sf-teal); border-radius: 2px; flex-shrink: 0; }
.sf-eyebrow-white { color: rgba(255,255,255,.7); }
.sf-eyebrow-white::before { background: var(--sf-teal); }

.sf-h1 { font-size: clamp(2.4rem, 4.2vw, 3.8rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; color: #fff; margin-bottom: 20px; }
.sf-h2 { font-size: clamp(1.85rem, 3.2vw, 2.65rem); font-weight: 800; letter-spacing: -.025em; line-height: 1.15; color: var(--sf-navy); margin-bottom: 14px; }
.sf-h2-white { color: #fff; }
.sf-h3 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.2; color: var(--sf-navy); margin-bottom: 10px; }
.sf-lead { font-size: 1.0625rem; line-height: 1.75; color: rgba(255,255,255,.72); margin-bottom: 32px; max-width: 520px; }
.sf-sub { font-size: 1rem; line-height: 1.75; color: var(--sf-muted); max-width: 560px; margin-bottom: 0; }
.sf-sub-white { color: rgba(255,255,255,.65); }
.sf-label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sf-muted); }

/* ══════════════════════════════════
   HERO LAYOUTS
══════════════════════════════════ */
.hero-main {
  background: var(--sf-navy);
  min-height: calc(100vh - 52px);
  padding: 72px 5% 60px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-main::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 65% at 85% 40%, rgba(6,165,154,.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 55% at 15% 70%, rgba(27,150,255,.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-main::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 52%; height: 100%;
  background: linear-gradient(160deg, #043A76 0%, #054F9E 50%, #065FA8 100%);
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.hero-inner { max-width: 1260px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }

/* Page hero (non-home) */
.page-hero {
  background: var(--sf-navy);
  padding: 72px 5% 56px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 45% 60% at 90% 50%, rgba(6,165,154,.18) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1260px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 3.6vw, 3.1rem); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -.03em; margin-bottom: 16px; }
.page-hero p { font-size: 1.0625rem; color: rgba(255,255,255,.7); max-width: 600px; line-height: 1.75; margin-bottom: 28px; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: rgba(255,255,255,.5); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.7); transition: color .15s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span.sep { color: rgba(255,255,255,.35); }

/* Pill badge */
.hero-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(6,165,154,.15); border: 1px solid rgba(6,165,154,.4); border-radius: 100px; padding: 5px 14px 5px 8px; font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.9); margin-bottom: 24px; }
.pill-dot { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--sf-teal), var(--sf-sky)); display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }

/* ══════════════════════════════════
   STATS BAND
══════════════════════════════════ */
.stats-band { background: rgba(6,165,154,.12); border: 1px solid rgba(6,165,154,.25); border-radius: var(--r12); display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden; }
.stat-cell { padding: 18px 20px; text-align: center; border-right: 1px solid rgba(6,165,154,.2); }
.stat-cell:last-child { border-right: none; }
.stat-n { font-size: 1.95rem; font-weight: 800; letter-spacing: -.04em; line-height: 1; margin-bottom: 5px; }
.stat-cell:nth-child(1) .stat-n { color: var(--sf-teal); }
.stat-cell:nth-child(2) .stat-n { color: #98DCFF; }
.stat-cell:nth-child(3) .stat-n { color: #7EC9C5; }
.stat-cell:nth-child(4) .stat-n { color: var(--sf-sky); }
.stat-l { font-size: .74rem; color: rgba(255,255,255,.6); font-weight: 500; }

/* ══════════════════════════════════
   TRUST BAR
══════════════════════════════════ */
.trust-bar { background: var(--sf-white); padding: 28px 5%; border-bottom: 1px solid var(--sf-border); }
.trust-inner { max-width: 1260px; margin: 0 auto; }
.trust-lbl { text-align: center; font-size: .71rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sf-muted); margin-bottom: 16px; }
.trust-logos { display: flex; justify-content: center; align-items: center; gap: 44px; flex-wrap: wrap; }
.trust-co { font-size: .88rem; font-weight: 800; color: #C0BDB9; letter-spacing: .02em; transition: color .2s; cursor: default; }
.trust-co:hover { color: var(--sf-ink2); }

/* ══════════════════════════════════
   CARDS
══════════════════════════════════ */
.card { background: var(--sf-white); border: 1px solid var(--sf-border); border-radius: var(--r12); padding: 28px; transition: all .22s; }
.card-hover:hover { box-shadow: var(--sh4); transform: translateY(-5px); border-color: transparent; }

/* Top accent bar (Salesforce card pattern) */
.card-accent { padding-top: 32px; }
.card-accent::before { content: ''; display: block; height: 4px; border-radius: var(--r12) var(--r12) 0 0; margin: -28px -28px 24px; }
.card-teal::before  { background: var(--sf-teal); }
.card-blue::before  { background: var(--sf-blue); }
.card-navy::before  { background: var(--sf-navy); }
.card-sky::before   { background: var(--sf-sky); }
.card-od-o::before  { background: var(--od-o); }
.card-od-x::before  { background: var(--od-x); }

/* Sol tag */
.sol-tag { display: inline-flex; align-items: center; gap: 6px; padding: 3px 10px; border-radius: 100px; font-size: .7rem; font-weight: 700; margin-bottom: 14px; }
.sol-tag-teal { background: var(--sf-teal-bg); color: var(--sf-teal-dk); }
.sol-tag-blue { background: var(--sf-blue-bg); color: #0052A3; }
.sol-tag-navy { background: var(--sf-navy-bg); color: var(--sf-navy); }
.sol-tag-sky  { background: var(--sf-sky-bg);  color: #0052A3; }

/* ══════════════════════════════════
   SOLUTION CARD
══════════════════════════════════ */
.sol-card { background: var(--sf-white); border: 1px solid var(--sf-border); border-radius: var(--r12); padding: 30px 26px; position: relative; overflow: visible; transition: all .22s; cursor: default; }
.sol-card .acc-bar { position: absolute; top: 0; left: 0; right: 0; height: 4px; border-radius: var(--r12) var(--r12) 0 0; }
.sol-card:hover { transform: translateY(-5px); box-shadow: var(--sh5); border-color: transparent; }
.sol-h { font-size: 1.15rem; font-weight: 800; color: var(--sf-navy); letter-spacing: -.02em; margin-bottom: 8px; }
.sol-p { font-size: .875rem; color: var(--sf-muted); line-height: 1.7; margin-bottom: 16px; }
.sol-feats { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.sol-feats li { display: flex; align-items: flex-start; gap: 8px; font-size: .875rem; color: var(--sf-ink2); font-weight: 500; }
.chk { width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 900; flex-shrink: 0; color: #fff; margin-top: 1px; }
.chk-teal { background: var(--sf-teal); }
.chk-blue { background: var(--sf-blue); }
.chk-navy { background: var(--sf-navy); }
.chk-sky  { background: var(--sf-sky); }
.sol-link { font-size: .875rem; font-weight: 700; display: inline-flex; align-items: center; gap: 4px; transition: gap .18s; cursor: pointer; }
.sol-card:hover .sol-link { gap: 10px; }

/* ══════════════════════════════════
   INDUSTRY CARD
══════════════════════════════════ */
.ind-card { background: var(--sf-cloud2); border: 1px solid var(--sf-border); border-radius: var(--r12); padding: 28px 16px; text-align: center; transition: all .2s; cursor: pointer; }
.ind-card:hover { border-color: var(--sf-teal); background: var(--sf-teal-bg); transform: translateY(-3px); box-shadow: var(--sh2); }
.ind-em { font-size: 2.4rem; display: block; margin-bottom: 12px; }
.ind-nm { font-size: .9rem; font-weight: 700; color: var(--sf-navy); margin-bottom: 4px; }
.ind-ct { font-size: .72rem; color: var(--sf-muted); }

/* ══════════════════════════════════
   PROCESS STEPS
══════════════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.steps::before { content: ''; position: absolute; top: 27px; left: calc(12.5% + 27px); right: calc(12.5% + 27px); height: 1px; background: linear-gradient(90deg, var(--sf-teal), var(--sf-sky), rgba(255,255,255,.15)); z-index: 0; }
.step { text-align: center; padding: 0 18px; }
.step-num { width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; font-weight: 800; background: var(--sf-navy); border: 2px solid; position: relative; z-index: 1; transition: all .22s; }
.step:hover .step-num { transform: scale(1.12); box-shadow: 0 0 0 10px rgba(6,165,154,.12); }
.step h4 { font-size: .92rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step p  { font-size: .82rem; color: rgba(255,255,255,.58); line-height: 1.65; }

/* ══════════════════════════════════
   BENEFIT ROW
══════════════════════════════════ */
.ben-row { display: flex; gap: 15px; align-items: flex-start; }
.ben-ic { width: 44px; height: 44px; border-radius: var(--r8); display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.ben-ic-teal { background: var(--sf-teal-bg); }
.ben-ic-blue { background: var(--sf-blue-bg); }
.ben-ic-navy { background: var(--sf-navy-bg); }
.ben-ic-sky  { background: var(--sf-sky-bg); }
.ben-h { font-size: .975rem; font-weight: 700; color: var(--sf-navy); margin-bottom: 4px; }
.ben-p { font-size: .875rem; color: var(--sf-muted); line-height: 1.65; }

/* ══════════════════════════════════
   PERFORMANCE PANEL
══════════════════════════════════ */
.perf-panel { background: var(--sf-white); border: 1px solid var(--sf-border); border-radius: var(--r12); padding: 26px; box-shadow: var(--sh2); }
.perf-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.perf-title { font-size: .875rem; font-weight: 700; color: var(--sf-navy); }
.live-badge { display: flex; align-items: center; gap: 5px; background: var(--sf-green-bg); border-radius: 100px; padding: 3px 10px; font-size: .64rem; font-weight: 700; color: var(--sf-green); }
.live-pip { width: 6px; height: 6px; border-radius: 50%; background: var(--sf-green); animation: pip 2s infinite; }
@keyframes pip { 0%,100%{opacity:1} 50%{opacity:.35} }
.prog { margin-bottom: 14px; }
.prog-hd { display: flex; justify-content: space-between; margin-bottom: 5px; }
.prog-nm { font-size: .78rem; font-weight: 600; color: var(--sf-ink2); }
.prog-pct { font-size: .78rem; font-weight: 800; }
.prog-track { height: 8px; background: var(--sf-border); border-radius: 4px; overflow: hidden; }
.prog-fill { height: 100%; border-radius: 4px; transition: width 1.4s cubic-bezier(.4,0,.2,1); }
.prog-teal  .prog-pct { color: var(--sf-teal); } .prog-teal  .prog-fill { background: var(--sf-teal); }
.prog-blue  .prog-pct { color: var(--sf-blue); } .prog-blue  .prog-fill { background: var(--sf-blue); }
.prog-navy  .prog-pct { color: var(--sf-navy); } .prog-navy  .prog-fill { background: var(--sf-navy); }
.prog-sky   .prog-pct { color: var(--sf-sky);  } .prog-sky   .prog-fill { background: var(--sf-sky);  }
.agent-rows { display: flex; flex-direction: column; gap: 7px; }
.agent-row { display: flex; align-items: center; gap: 9px; padding: 8px 11px; background: var(--sf-cloud); border: 1px solid var(--sf-border); border-radius: var(--r4); font-size: .76rem; }
.a-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; animation: pip 2s infinite; }
.a-txt { flex: 1; color: var(--sf-ink2); }
.a-time { font-size: .64rem; color: var(--sf-muted); }

/* ══════════════════════════════════
   TESTIMONIAL CARD
══════════════════════════════════ */
.testi-card { background: var(--sf-cloud2); border: 1px solid var(--sf-border); border-radius: var(--r12); padding: 26px; transition: all .2s; }
.testi-card:hover { box-shadow: var(--sh3); transform: translateY(-3px); background: var(--sf-white); }
.testi-stars { color: #F5A623; font-size: 13px; letter-spacing: 1px; margin-bottom: 12px; }
.testi-qm { font-size: 2.5rem; line-height: 1; font-weight: 800; color: var(--sf-teal); margin-bottom: 4px; }
.testi-q { font-size: .875rem; color: var(--sf-ink2); line-height: 1.75; margin-bottom: 18px; }
.testi-divider { height: 1px; background: var(--sf-border); margin-bottom: 14px; }
.testi-auth { display: flex; align-items: center; gap: 11px; }
.testi-av { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .82rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.testi-nm { font-size: .875rem; font-weight: 700; color: var(--sf-navy); }
.testi-rl { font-size: .73rem; color: var(--sf-muted); margin-top: 1px; }
.testi-lc { font-size: .68rem; color: var(--sf-teal); font-weight: 600; margin-top: 2px; }

/* ══════════════════════════════════
   PRICING CARD
══════════════════════════════════ */
.plan { background: var(--sf-white); border: 1px solid var(--sf-border); border-radius: var(--r12); padding: 32px 24px; position: relative; transition: all .22s; }
.plan:hover { box-shadow: var(--sh4); transform: translateY(-5px); }
.plan.featured { border: 2px solid var(--sf-teal); box-shadow: 0 0 0 4px rgba(6,165,154,.1), var(--sh3); }
.plan-ribbon { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--sf-teal); color: #fff; font-size: .68rem; font-weight: 700; padding: 4px 16px; border-radius: 100px; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.plan-tier { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sf-muted); margin-bottom: 14px; }
.plan-price { font-size: 2.9rem; font-weight: 800; letter-spacing: -.04em; line-height: 1; color: var(--sf-navy); margin-bottom: 4px; }
.plan-price sup { font-size: 1.1rem; vertical-align: super; font-weight: 500; color: var(--sf-muted); }
.plan-period { font-size: .78rem; color: var(--sf-muted); margin-bottom: 24px; }
.plan-feats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-feats li { display: flex; align-items: flex-start; gap: 8px; font-size: .875rem; color: var(--sf-ink2); }
.plan-feats li.off { opacity: .35; }
.pf { width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 900; flex-shrink: 0; margin-top: 2px; color: #fff; }
.pf-on { background: var(--sf-teal); }
.pf-off { background: var(--sf-border); color: var(--sf-muted); }

/* ══════════════════════════════════
   CTA BAND
══════════════════════════════════ */
.cta-band { background: var(--sf-teal); padding: 72px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 70% at 80% 50%, rgba(255,255,255,.1) 0%, transparent 60%), radial-gradient(ellipse 40% 55% at 20% 50%, rgba(3,45,96,.12) 0%, transparent 60%); pointer-events: none; }
.cta-band h2 { font-size: clamp(1.95rem, 3.5vw, 2.85rem); font-weight: 800; color: #fff; letter-spacing: -.025em; margin-bottom: 14px; position: relative; z-index: 2; }
.cta-band p { font-size: 1rem; color: rgba(255,255,255,.82); max-width: 520px; margin: 0 auto 32px; line-height: 1.75; position: relative; z-index: 2; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* Navy CTA variant */
.cta-navy { background: var(--sf-navy); }
.cta-navy::before { background: radial-gradient(ellipse 55% 70% at 85% 50%, rgba(6,165,154,.2) 0%, transparent 60%), radial-gradient(ellipse 40% 55% at 10% 60%, rgba(27,150,255,.1) 0%, transparent 60%); }

/* ══════════════════════════════════
   INTEGRATION TILE
══════════════════════════════════ */
.int-tile { background: var(--sf-cloud2); border: 1px solid var(--sf-border); border-radius: var(--r12); padding: 20px 12px; text-align: center; transition: all .2s; cursor: default; }
.int-tile:hover { border-color: var(--sf-teal); background: var(--sf-teal-bg); transform: translateY(-3px); box-shadow: var(--sh2); }
.int-ic { font-size: 1.7rem; display: block; margin-bottom: 7px; }
.int-nm { font-size: .75rem; font-weight: 600; color: var(--sf-ink2); }

/* ══════════════════════════════════
   BLOG CARD
══════════════════════════════════ */
.blog-card { background: var(--sf-white); border: 1px solid var(--sf-border); border-radius: var(--r12); overflow: hidden; transition: all .22s; cursor: pointer; }
.blog-card:hover { box-shadow: var(--sh3); transform: translateY(-4px); }
.blog-img { height: 150px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.blog-body { padding: 20px 22px; }
.blog-cat { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--sf-teal); margin-bottom: 8px; }
.blog-h { font-size: 1rem; font-weight: 800; color: var(--sf-navy); line-height: 1.3; margin-bottom: 8px; letter-spacing: -.01em; }
.blog-p { font-size: .82rem; color: var(--sf-muted); line-height: 1.65; margin-bottom: 14px; }
.blog-meta { font-size: .72rem; color: var(--sf-muted); display: flex; gap: 14px; }
.blog-read-more { font-size: .82rem; font-weight: 700; color: var(--sf-teal); display: inline-flex; align-items: center; gap: 4px; margin-top: 12px; }

/* ══════════════════════════════════
   CASE STUDY CARD
══════════════════════════════════ */
.cs-card { background: var(--sf-white); border: 1px solid var(--sf-border); border-radius: var(--r12); overflow: hidden; transition: all .22s; cursor: pointer; }
.cs-card:hover { box-shadow: var(--sh4); transform: translateY(-5px); }
.cs-header { padding: 28px 26px; position: relative; overflow: hidden; }
.cs-flag { position: absolute; top: 16px; right: 16px; font-size: 2rem; opacity: .9; }
.cs-big { font-size: 3rem; font-weight: 800; letter-spacing: -.04em; line-height: 1; margin-bottom: 4px; color: #fff; }
.cs-big-lbl { font-size: .8rem; color: rgba(255,255,255,.72); font-weight: 500; }
.cs-body { padding: 20px 26px; }
.cs-ind { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--sf-teal); margin-bottom: 8px; }
.cs-title { font-size: 1rem; font-weight: 800; color: var(--sf-navy); letter-spacing: -.01em; margin-bottom: 8px; line-height: 1.3; }
.cs-quote { font-size: .82rem; color: var(--sf-muted); line-height: 1.65; font-style: italic; }

/* ══════════════════════════════════
   LOCATION CARD
══════════════════════════════════ */
.loc-card { background: var(--sf-white); border: 1px solid var(--sf-border); border-radius: var(--r12); padding: 20px 18px; display: flex; align-items: center; gap: 14px; transition: all .2s; cursor: default; }
.loc-card:hover { border-color: var(--sf-teal); box-shadow: var(--sh2); transform: translateY(-3px); }
.loc-flag { font-size: 2.3rem; flex-shrink: 0; }
.loc-nm { font-size: .9rem; font-weight: 700; color: var(--sf-navy); }
.loc-lb { font-size: .72rem; color: var(--sf-muted); margin-top: 1px; }
.loc-ct { font-size: .69rem; color: var(--sf-teal); font-weight: 700; margin-top: 3px; }

/* ══════════════════════════════════
   APP MOCKUP
══════════════════════════════════ */
.app-mock { background: var(--sf-white); border-radius: var(--r16); overflow: hidden; box-shadow: var(--sh5), 0 0 0 1px rgba(255,255,255,.06); }
.mock-bar { background: #1B1B1B; height: 36px; display: flex; align-items: center; padding: 0 14px; gap: 12px; }
.mac-dots { display: flex; gap: 5px; }
.mac-dots span { width: 11px; height: 11px; border-radius: 50%; }
.mac-dots span:nth-child(1){background:#FF5F57;} .mac-dots span:nth-child(2){background:#FFBD2E;} .mac-dots span:nth-child(3){background:#28CA41;}
.mock-url { flex: 1; background: rgba(255,255,255,.08); border-radius: 3px; height: 22px; display: flex; align-items: center; padding: 0 10px; font-size: .65rem; color: rgba(255,255,255,.35); font-family: monospace; }
.mock-body { display: grid; grid-template-columns: 175px 1fr; min-height: 290px; }
.mock-side { background: #F8F8F8; border-right: 1px solid var(--sf-border); padding: 12px 10px; }
.mock-logo-area { padding-bottom: 11px; margin-bottom: 11px; border-bottom: 1px solid var(--sf-border); }
.sb { display: flex; align-items: center; gap: 7px; padding: 6px 8px; border-radius: var(--r4); font-size: .72rem; font-weight: 500; color: var(--sf-muted); margin-bottom: 2px; cursor: default; transition: background .15s; }
.sb:hover { background: #eee; color: var(--sf-ink); }
.sb.on { background: var(--sf-blue-bg); color: var(--sf-blue); font-weight: 600; border-left: 3px solid var(--sf-blue); padding-left: 5px; }
.mock-main { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.kpi-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; }
.kpi { background: var(--sf-cloud); border: 1px solid var(--sf-border); border-radius: var(--r4); padding: 9px 8px; }
.kpi-l { font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--sf-muted); margin-bottom: 4px; }
.kpi-v { font-size: 1.25rem; font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.kpi:nth-child(1) .kpi-v{color:var(--sf-teal);} .kpi:nth-child(2) .kpi-v{color:var(--sf-blue);} .kpi:nth-child(3) .kpi-v{color:var(--sf-navy);} .kpi:nth-child(4) .kpi-v{color:#7B5EA7;}
.kpi-chg { font-size: .59rem; color: var(--sf-green); font-weight: 600; margin-top: 2px; }
.feed-box { background: var(--sf-cloud); border: 1px solid var(--sf-border); border-radius: var(--r4); padding: 11px; }
.feed-hd { display: flex; justify-content: space-between; align-items: center; margin-bottom: 9px; }
.feed-t { font-size: .73rem; font-weight: 700; color: var(--sf-ink); }
.feed-live { display: flex; align-items: center; gap: 4px; font-size: .62rem; font-weight: 700; color: var(--sf-green); }
.feed-pip { width: 5px; height: 5px; border-radius: 50%; background: var(--sf-green); animation: pip 2s infinite; }
.feed-row { display: flex; align-items: flex-start; gap: 7px; padding: 6px 7px; background: var(--sf-white); border: 1px solid var(--sf-border); border-radius: var(--r4); margin-bottom: 4px; font-size: .68rem; color: var(--sf-ink2); }
.feed-ic { width: 20px; height: 20px; border-radius: var(--r4); display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; }
.fi-t{background:var(--sf-teal-bg);} .fi-b{background:var(--sf-blue-bg);} .fi-n{background:var(--sf-navy-bg);}
.feed-txt { flex: 1; line-height: 1.35; }
.feed-txt b { font-weight: 700; color: var(--sf-ink); }
.feed-ts { font-size: .59rem; color: var(--sf-muted); }
.type-row { display: flex; align-items: center; gap: 7px; padding: 6px 7px; border-radius: var(--r4); border: 1px dashed var(--sf-teal); background: var(--sf-teal-bg); font-size: .68rem; color: var(--sf-ink2); }
.blink { display: inline-block; width: 2px; height: 10px; background: var(--sf-teal); border-radius: 1px; vertical-align: middle; animation: bc 1s step-end infinite; }
@keyframes bc{0%,100%{opacity:1}50%{opacity:0}}

/* ══════════════════════════════════
   DEMO PANELS
══════════════════════════════════ */
.demo-tabs { display: flex; border-bottom: 2px solid var(--sf-border); margin-bottom: 28px; gap: 0; overflow-x: auto; }
.demo-tab-btn { padding: 10px 20px; font-size: .875rem; font-weight: 600; color: var(--sf-muted); border-bottom: 2px solid transparent; cursor: pointer; margin-bottom: -2px; transition: all .15s; background: none; border-top: none; border-left: none; border-right: none; font-family: var(--font); white-space: nowrap; }
.demo-tab-btn.on { color: var(--sf-teal); border-bottom-color: var(--sf-teal); }
.demo-panel { display: none; }
.demo-panel.on { display: block; }
.demo-window { background: var(--sf-cloud2); border: 1px solid var(--sf-border); border-radius: var(--r12); padding: 28px; }
.chat-wrap { display: flex; flex-direction: column; gap: 13px; }
.chat-msg { display: flex; gap: 10px; }
.chat-msg.user { flex-direction: row-reverse; }
.bubble { max-width: 75%; padding: 10px 14px; border-radius: 12px; font-size: .875rem; line-height: 1.55; }
.bubble.bot { background: var(--sf-white); border: 1px solid var(--sf-border); color: var(--sf-ink); }
.bubble.user { background: var(--sf-teal); color: #fff; }
.chat-av { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.chat-av.bot { background: var(--sf-teal-bg); border: 1px solid var(--sf-border); }
.chat-av.user { background: var(--sf-blue); color: white; font-size: 11px; font-weight: 700; }

/* ══════════════════════════════════
   FORMS
══════════════════════════════════ */
.fl { font-size: .76rem; font-weight: 700; color: var(--sf-ink2); display: block; margin-bottom: 5px; }
.fi, .fsel, .fta { font-family: var(--font); font-size: .875rem; color: var(--sf-ink); background: var(--sf-white); border: 1px solid var(--sf-border2); border-radius: var(--r4); padding: 9px 12px; transition: border-color .15s, box-shadow .15s; outline: none; width: 100%; }
.fi:focus, .fsel:focus, .fta:focus { border-color: var(--sf-teal); box-shadow: 0 0 0 3px rgba(6,165,154,.15); }
.fta { resize: vertical; min-height: 100px; }
.fgrid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer { background: var(--sf-navy); padding: 52px 5% 32px; }
.ft-inner { max-width: 1260px; margin: 0 auto; }
.ft-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 28px; }
.ft-brand .wm { font-size: 1.4rem; }
.ft-brand-sub { font-size: .55rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-top: 2px; }
.ft-brand-p { font-size: .84rem; color: rgba(255,255,255,.48); margin-top: 14px; line-height: 1.7; max-width: 260px; }
.ft-col h5 { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.42); margin-bottom: 14px; }
.ft-col a { display: block; font-size: .875rem; color: rgba(255,255,255,.58); margin-bottom: 9px; transition: color .15s; cursor: pointer; }
.ft-col a:hover { color: #fff; }
.ft-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.ft-copy { font-size: .76rem; color: rgba(255,255,255,.35); }
.lang-row { display: flex; gap: 7px; }
.lang-btn { font-family: var(--font); font-size: .74rem; font-weight: 600; background: transparent; border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.42); border-radius: var(--r4); padding: 4px 12px; cursor: pointer; transition: all .15s; }
.lang-btn:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.lang-btn.on { color: var(--sf-teal); border-color: var(--sf-teal); }

/* ══════════════════════════════════
   GRIDS
══════════════════════════════════ */
.g2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.gauto3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 14px; }
.gauto4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px,1fr)); gap: 11px; }
.g2-1 { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: center; }
.g1-2 { display: grid; grid-template-columns: 1.15fr 1fr; gap: 72px; align-items: center; }

/* ══════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════ */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.rv.show { opacity: 1; transform: none; }
.d1{transition-delay:.08s;} .d2{transition-delay:.16s;} .d3{transition-delay:.24s;} .d4{transition-delay:.32s;} .d5{transition-delay:.4s;}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media(max-width:1024px){
  .hero-inner{grid-template-columns:1fr;} .hero-mock-col{display:none;}
  .g2-1,.g1-2{grid-template-columns:1fr;gap:36px;}
  .g3{grid-template-columns:1fr 1fr;}
  .ft-grid{grid-template-columns:1fr 1fr;}
  .steps{grid-template-columns:1fr 1fr;} .steps::before{display:none;}
}
@media(max-width:768px){
  .nav-links{display:none;}
  .g3{grid-template-columns:1fr;}
  .g4{grid-template-columns:1fr 1fr;}
  .stats-band{grid-template-columns:1fr 1fr;}
  .fgrid2{grid-template-columns:1fr;}
  .ft-grid{grid-template-columns:1fr;gap:28px;}
  .ft-bottom{flex-direction:column;align-items:flex-start;}
}
@media(max-width:480px){
  .g4{grid-template-columns:1fr;}
  .gauto4{grid-template-columns:repeat(2,1fr);}
}
