/* ============================================================
   SICTSERV — Team B "Modern Bold"
   Self-contained stylesheet. No build step.
   Design tokens adapted from ui-ux-pro-max (glassmorphism/dark)
   + SICTSERV brand palette from master brief.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --blue: #1B4FB0;
  --blue-bright: #2C6FE0;
  --blue-deep: #0B2A66;
  --orange: #F7931E;
  --orange-soft: #FFB04E;

  /* Ink / surfaces */
  --ink: #0F1B2D;
  --ink-2: #14233a;
  --muted: #5A6B82;
  --surface: #FFFFFF;
  --surface-soft: #F4F7FC;
  --border: #E3EAF4;

  /* Dark section surfaces */
  --dark: #081226;
  --dark-2: #0c1a36;
  --dark-grad: radial-gradient(1200px 600px at 80% -10%, rgba(44,111,224,.35), transparent 60%),
               radial-gradient(900px 500px at 0% 10%, rgba(247,147,30,.18), transparent 55%),
               linear-gradient(160deg, #081226 0%, #0c1c3d 55%, #0a1730 100%);

  /* Gradients */
  --grad-brand: linear-gradient(100deg, #2C6FE0 0%, #1B4FB0 45%, #F7931E 120%);
  --grad-text: linear-gradient(92deg, #2C6FE0 0%, #6aa6ff 35%, #FFB04E 80%, #F7931E 100%);
  --grad-cta: linear-gradient(95deg, #F7931E 0%, #ff7a2f 100%);

  /* Primary CTA — Team B signature blue->orange gradient (white-text AA-safe stops) */
  --grad-btn: linear-gradient(100deg, #1F57B8 0%, #2C6FE0 26%, #C2600C 78%, #A84B05 100%);
  --grad-btn-hover: linear-gradient(100deg, #2462C7 0%, #3A7BEC 26%, #CC5F0A 72%, #B95406 100%);
  --btn-glow: 0 8px 22px rgba(44,111,224,.30), 0 8px 22px rgba(247,147,30,.22);
  --btn-glow-hover: 0 0 0 1px rgba(255,255,255,.10) inset, 0 12px 30px rgba(44,111,224,.45), 0 12px 32px rgba(247,147,30,.40);

  /* Glass */
  --glass: rgba(255,255,255,0.06);
  --glass-strong: rgba(255,255,255,0.10);
  --glass-border: rgba(255,255,255,0.14);
  --glass-light: rgba(255,255,255,0.80);

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(15,27,45,.06);
  --shadow: 0 12px 30px rgba(15,27,45,.10);
  --shadow-lg: 0 30px 70px rgba(11,42,102,.20);
  --shadow-glow: 0 0 0 1px rgba(44,111,224,.25), 0 18px 50px rgba(44,111,224,.30);

  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;

  --container: 1200px;
  --nav-h: 90px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif; color: var(--ink); line-height: 1.1; margin: 0 0 .5em; letter-spacing: -.02em; }
h1 { font-weight: 800; font-size: clamp(2.3rem, 5.2vw, 4.1rem); }
h2 { font-weight: 800; font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-weight: 700; font-size: clamp(1.2rem, 1.8vw, 1.5rem); }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }
li { list-style: none; }

/* Visible focus for keyboard users */
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--orange); color: #1a1100; font-weight: 700;
  padding: 10px 18px; border-radius: 10px; transition: top .2s var(--ease);
}
.skip-link:focus { top: 14px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--tight { padding: 64px 0; }
.dark-section { background: var(--dark-grad); color: #dce7fb; position: relative; isolation: isolate; }
.dark-section h1, .dark-section h2, .dark-section h3 { color: #fff; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); background: rgba(44,111,224,.10);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
.dark-section .eyebrow { color: var(--orange-soft); background: rgba(247,147,30,.14); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 10px var(--orange); }
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.lead { font-size: 1.15rem; color: var(--muted); }
.dark-section .lead { color: #aebfdd; }
.muted { color: var(--muted); }

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  background-size: 220% auto; animation: shimmer 7s linear infinite;
}
@keyframes shimmer { to { background-position: 220% center; } }

/* ---------- Buttons ----------
   Default = standard scale (>=44px touch target). Modifiers:
     .btn--nav  compact navbar scale     .btn--lg  prominent hero / final-CTA scale
   Primary + its secondary share the same scale within a context so heights align. */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: .98rem; line-height: 1; padding: 13px 24px; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap; text-align: center;
  min-height: 46px;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-image .18s var(--ease), background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn .btn-arrow { transition: transform .18s var(--ease); }

/* Primary = Team B signature: blue->orange gradient pill, white text, soft glow, arrow */
.btn-primary {
  background-image: var(--grad-btn);
  color: #fff; text-shadow: 0 1px 2px rgba(8,14,30,.45);
  box-shadow: var(--btn-glow);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background-image: var(--grad-btn-hover);
  box-shadow: var(--btn-glow-hover);
  transform: translateY(-2px);
  color: #fff;
}
.btn-primary:hover .btn-arrow, .btn-primary:focus-visible .btn-arrow { transform: translateX(3px); }
.btn-primary:active { transform: translateY(0); }

/* Solid blue alt (non-CTA emphasis links) */
.btn-blue { background: var(--grad-brand); color: #fff; box-shadow: 0 8px 22px rgba(27,79,176,.30); }
.btn-blue:hover { box-shadow: 0 12px 30px rgba(44,111,224,.45); transform: translateY(-2px); color:#fff; }

/* Secondary / ghost — matches primary height & padding per context for alignment */
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--surface-soft); }
.dark-section .btn-ghost { color: #fff; border-color: rgba(255,255,255,.32); }
.dark-section .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); color:#fff; }
.btn-block { width: 100%; }

/* Compact navbar scale */
.btn--nav { font-size: .9rem; padding: 9px 18px; min-height: 40px; gap: 7px; }
.btn--nav svg { width: 15px; height: 15px; }

/* Prominent hero / final-CTA scale (primary + its secondary share these) */
.btn--lg { font-size: 1.06rem; padding: 17px 32px; min-height: 56px; gap: 11px; }
.btn--lg svg { width: 19px; height: 19px; }

/* Respect reduced motion: no lift / no arrow nudge / instant state */
@media (prefers-reduced-motion: reduce) {
  .btn, .btn .btn-arrow { transition: none; }
  .btn-primary:hover, .btn-primary:focus-visible { transform: none; }
  .btn-primary:hover .btn-arrow, .btn-primary:focus-visible .btn-arrow { transform: none; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow); background: rgba(255,255,255,.92); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 18px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img {
  height: 65px; width: auto; box-sizing: content-box;
  background: #fff; padding: 5px 9px; border-radius: 14px;
  box-shadow: 0 2px 8px rgba(15,27,45,.10), 0 0 0 1px rgba(15,27,45,.05);
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: var(--ink); font-weight: 600; font-size: .96rem; padding: 9px 14px; border-radius: 10px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links a:hover { color: var(--blue); background: var(--surface-soft); }
.nav-links a.active { color: var(--blue); }
.nav-links a.active::after {
  content: ""; display: block; height: 3px; width: 22px; margin: 3px auto 0;
  background: var(--grad-cta); border-radius: 3px;
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
/* Desktop: the in-menu CTA (mobile-only) is hidden; only the .nav-cta button shows. Prevents a duplicate. */
.nav-links > .btn { display: none; }
/* Force every navbar CTA to the compact scale even if btn--nav was omitted on some pages. */
.nav-cta .btn { font-size: .9rem; padding: 9px 18px; min-height: 40px; gap: 7px; }
.nav-cta .btn svg { width: 15px; height: 15px; }
.nav-toggle {
  display: none; background: var(--surface-soft); border: 1px solid var(--border);
  width: 48px; height: 48px; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span { position: relative; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }
.nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-menu {
    position: fixed; inset: var(--nav-h) 0 auto 0; background: rgba(255,255,255,.98);
    backdrop-filter: blur(16px); border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch; gap: 4px; padding: 16px 24px 26px;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .25s var(--ease);
    box-shadow: var(--shadow-lg); max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; display: flex; }
  .nav-menu a { font-size: 1.1rem; padding: 14px 12px; border-bottom: 1px solid var(--surface-soft); }
  .nav-menu a.active::after { margin: 6px 0 0; }
  .nav-menu .btn { display: inline-flex; margin-top: 14px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: clamp(64px, 9vw, 120px) 0 clamp(70px, 8vw, 110px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { max-width: 540px; font-size: 1.2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 26px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; color: #aebfdd; font-size: .92rem; }
.hero-trust .ck { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 18px; height: 18px; color: var(--orange-soft); }

.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: auto; aspect-ratio: 4/3.4; object-fit: cover; }
.hero-float {
  position: absolute; background: rgba(12,26,54,.72); border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 16px; padding: 14px 18px; color: #fff; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px; animation: floaty 5s ease-in-out infinite;
}
.hero-float .ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--grad-cta); color:#1a1100; flex: none; }
.hero-float .ic svg { width: 22px; height: 22px; }
.hero-float strong { display: block; font-size: 1.05rem; line-height: 1.1; }
.hero-float span { font-size: .8rem; color: #aebfdd; }
.hero-float.f1 { top: 8%; left: -26px; }
.hero-float.f2 { bottom: 7%; right: -22px; animation-delay: 1.4s; }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* glowing globe motif */
.globe-deco { position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .5; }
.globe-deco .ring { position: absolute; border: 1px solid rgba(120,160,255,.18); border-radius: 50%; }
.node-dot { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 14px 2px rgba(247,147,30,.7); animation: pulse 3s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:.5; transform:scale(.85)} 50%{opacity:1; transform:scale(1.15)} }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-float.f1 { left: 8px; } .hero-float.f2 { right: 8px; }
}

/* ============================================================
   TRUST / LOGO BAR
   ============================================================ */
.trustbar { border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); padding: 30px 0; }
.trustbar p { text-align: center; color: #9fb2d6; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 22px; font-weight: 700; }
.logo-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 38px; }
.logo-row .vlogo { display: inline-flex; align-items: center; gap: 10px; color: #cdd9f2; font-weight: 600; opacity: .85; transition: opacity .2s var(--ease); font-size: .98rem; }
.logo-row .vlogo:hover { opacity: 1; }
.logo-row .vlogo svg { height: 26px; width: auto; }

/* clients we've delivered for (logo wall) */
.clients-wall { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 44px 76px; }
.client-logo { display: inline-flex; align-items: center; justify-content: center; height: 58px; }
.client-logo img { height: 100%; width: auto; max-width: 300px; object-fit: contain; filter: grayscale(1); opacity: .68; transition: filter .25s var(--ease), opacity .25s var(--ease), transform .25s var(--ease); }
.client-logo:hover img, .client-logo:focus-within img { filter: grayscale(0); opacity: 1; transform: translateY(-3px); }
@media (max-width: 600px) { .clients-wall { gap: 32px 48px; } .client-logo { height: 48px; } }
@media (prefers-reduced-motion: reduce) { .client-logo:hover img, .client-logo:focus-within img { transform: none; } }

/* stat strip inside trustbar */
.statbar { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.statbar .stat { text-align: center; }
.statbar .num { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: clamp(1.8rem,4vw,2.7rem); background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.statbar .lab { color: #aebfdd; font-size: .92rem; margin-top: 4px; }
@media (max-width: 640px){ .statbar{ grid-template-columns: repeat(2,1fr); gap: 26px; } }

/* ============================================================
   CARDS / BENTO / GRIDS
   ============================================================ */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }
@media (max-width: 980px){ .grid-3,.grid-4{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 640px){ .grid-2,.grid-3,.grid-4{ grid-template-columns: 1fr;} }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  position: relative; overflow: hidden; height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(44,111,224,.4); }
.card-icon {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(140deg, rgba(44,111,224,.14), rgba(247,147,30,.14));
  color: var(--blue); border: 1px solid var(--border);
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); margin-bottom: 14px; }
.card .feat { display: grid; gap: 9px; }
.card .feat li { display: flex; gap: 10px; align-items: flex-start; font-size: .96rem; color: #34465e; }
.card .feat svg { width: 18px; height: 18px; color: var(--orange); flex: none; margin-top: 3px; }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--blue); margin-top: 16px; }
.card-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

/* glass cards on dark */
.card-glass {
  background: var(--glass-strong); border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); color: #dce7fb;
}
.card-glass:hover { border-color: rgba(247,147,30,.5); background: rgba(255,255,255,.13); }
.card-glass h3 { color: #fff; }
.card-glass p { color: #aebfdd; }
.card-glass .card-icon { background: rgba(255,255,255,.08); border-color: var(--glass-border); color: var(--orange-soft); }
.card-glass .feat li { color: #c7d4ee; }

/* BENTO */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(180px, auto); gap: 20px; }
.bento .card { display: flex; flex-direction: column; }
.bento .b-wide { grid-column: span 2; }
.bento .b-tall { grid-row: span 2; }
.bento .b-feature { grid-column: span 2; grid-row: span 2; }
.bento .b-img { padding: 0; }
.bento .b-img img { width: 100%; height: 100%; object-fit: cover; }
.b-feature.card-glass { justify-content: flex-end; }
@media (max-width: 980px){
  .bento { grid-template-columns: repeat(2,1fr); }
  .bento .b-feature, .bento .b-wide { grid-column: span 2; }
  .bento .b-tall { grid-row: span 1; }
}
@media (max-width: 640px){ .bento{ grid-template-columns: 1fr;} .bento .b-feature,.bento .b-wide{grid-column: span 1;} }

/* ============================================================
   SPLIT / FEATURE ROWS
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width:100%; aspect-ratio: 4/3.2; object-fit: cover; }
.checklist { display: grid; gap: 14px; margin: 22px 0; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist .ic { width: 26px; height: 26px; border-radius: 8px; background: var(--grad-brand); display: grid; place-items: center; flex: none; }
.checklist .ic svg { width: 16px; height: 16px; color: #fff; }
.checklist strong { display: block; color: var(--ink); }
.checklist span { color: var(--muted); font-size: .96rem; }
.dark-section .checklist strong { color: #fff; }
.dark-section .checklist span { color: #aebfdd; }
@media (max-width: 860px){ .split{ grid-template-columns: 1fr; gap: 36px;} .split.reverse .split-media{ order: -1;} }

/* ============================================================
   PROCESS / STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px 24px; border-radius: var(--radius); background: var(--glass-strong); border: 1px solid var(--glass-border); backdrop-filter: blur(12px); }
.step .n { font-family:'Plus Jakarta Sans',sans-serif; font-weight: 800; font-size: 2.6rem; line-height:1; background: var(--grad-text); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent; margin-bottom: 12px; }
.step h3 { color:#fff; font-size: 1.15rem; }
.step p { color: #aebfdd; font-size: .95rem; margin: 0; }
@media (max-width: 900px){ .steps{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 520px){ .steps{ grid-template-columns: 1fr;} }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; align-items: stretch; }
.price-card {
  background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 34px 30px; display: flex; flex-direction: column; position: relative; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.popular { border-color: transparent; background: var(--dark-grad); color: #dce7fb; box-shadow: var(--shadow-glow); transform: scale(1.03); }
.price-card.popular h3, .price-card.popular .amount { color: #fff; }
.price-card.popular .price-feat li { color: #c7d4ee; }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--grad-cta); color: #1a1100; font-weight: 800; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; padding: 7px 16px; border-radius: 999px; box-shadow: 0 8px 20px rgba(247,147,30,.4); white-space: nowrap; }
.price-card .tier { font-size: .85rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
.price-card.popular .tier { color: var(--orange-soft); }
.price-card .pos { color: var(--muted); font-size: .95rem; margin: 6px 0 18px; }
.price-card.popular .pos { color: #aebfdd; }
.amount { font-family:'Plus Jakarta Sans',sans-serif; font-weight: 800; font-size: 2.9rem; line-height: 1; color: var(--ink); }
.amount .per { font-size: .95rem; font-weight: 600; color: var(--muted); }
.price-card.popular .amount .per { color: #aebfdd; }
.price-note { font-size: .82rem; color: var(--muted); margin: 8px 0 22px; }
.price-card.popular .price-note { color: #9fb2d6; }
.price-feat { display: grid; gap: 12px; margin-bottom: 26px; flex: 1; }
.price-feat li { display: flex; gap: 10px; align-items: flex-start; font-size: .97rem; color: #34465e; }
.price-feat svg { width: 19px; height: 19px; color: var(--orange); flex: none; margin-top: 2px; }
.price-feat .group-label { font-weight: 700; color: var(--ink); list-style: none; margin-top: 4px; }
.price-card.popular .price-feat .group-label { color:#fff; }
@media (max-width: 960px){ .pricing{ grid-template-columns: 1fr; max-width: 440px; margin: 0 auto;} .price-card.popular{ transform:none;} }

/* comparison note */
.assess-band { text-align:center; margin-top: 44px; }

/* ============================================================
   INDUSTRIES STRIP
   ============================================================ */
.ind-card { display: flex; gap: 16px; align-items: flex-start; }
.ind-card .ic { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(140deg, rgba(44,111,224,.14), rgba(247,147,30,.16)); display: grid; place-items: center; flex: none; border: 1px solid var(--border); color: var(--blue); }
.ind-card .ic svg { width: 26px; height: 26px; }
.ind-card h3 { font-size: 1.12rem; margin-bottom: 4px; }
.ind-card p { font-size: .95rem; color: var(--muted); margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quote-card { background: var(--glass-strong); border: 1px solid var(--glass-border); backdrop-filter: blur(14px); border-radius: var(--radius-lg); padding: 32px; }
.quote-card .stars { color: var(--orange); display: flex; gap: 3px; margin-bottom: 14px; }
.quote-card .stars svg { width: 18px; height: 18px; }
.quote-card blockquote { margin: 0 0 22px; font-size: 1.12rem; color: #eaf1ff; line-height: 1.6; font-weight: 500; }
.quote-author { display: flex; align-items: center; gap: 14px; }
.quote-author .av { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.quote-author strong { color: #fff; display: block; }
.quote-author span { color: #aebfdd; font-size: .9rem; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 14px; background: var(--surface); overflow: hidden; transition: border-color .2s var(--ease), box-shadow .2s; }
.faq-item.open { border-color: rgba(44,111,224,.45); box-shadow: var(--shadow); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 20px 22px; font-size: 1.08rem; font-weight: 700; color: var(--ink); display: flex; justify-content: space-between; gap: 16px; align-items: center; font-family: 'Plus Jakarta Sans', sans-serif; }
.faq-q .chev { width: 26px; height: 26px; flex: none; border-radius: 8px; background: var(--surface-soft); display: grid; place-items: center; transition: transform .25s var(--ease), background .2s; }
.faq-q .chev svg { width: 16px; height: 16px; color: var(--blue); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); background: var(--grad-cta); }
.faq-item.open .faq-q .chev svg { color: #1a1100; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a-inner { padding: 0 22px 20px; color: var(--muted); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; }
.cta-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p { color: #aebfdd; font-size: 1.12rem; margin-bottom: 28px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================================================
   FORMS (contact / support)
   ============================================================ */
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 7px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--border); border-radius: 11px;
  font: inherit; font-size: 1rem; color: var(--ink); background: var(--surface-soft); transition: border-color .2s var(--ease), box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(44,111,224,.14); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px){ .field-row{ grid-template-columns: 1fr;} }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 10px; }
.form-success { display: none; padding: 14px 18px; border-radius: 12px; background: rgba(34,160,90,.12); border: 1px solid rgba(34,160,90,.4); color: #1c6b40; font-weight: 600; margin-bottom: 18px; }
.form-success.show { display: block; }

/* contact details list */
.contact-list { display: grid; gap: 22px; }
.contact-list .row { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--grad-brand); display: grid; place-items: center; flex: none; }
.contact-list .ic svg { width: 24px; height: 24px; color: #fff; }
.contact-list strong { display: block; color: var(--ink); }
.contact-list a, .contact-list span { color: var(--muted); }
.dark-section .contact-list strong { color:#fff;}
.dark-section .contact-list a, .dark-section .contact-list span { color:#aebfdd;}
.map-embed { border: 0; width: 100%; height: 320px; border-radius: var(--radius-lg); box-shadow: var(--shadow); filter: saturate(1.05); }

/* support option tiles */
.support-tile { text-align: center; }
.support-tile .ic { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 18px; background: var(--grad-brand); display: grid; place-items: center; box-shadow: var(--shadow-glow); }
.support-tile .ic svg { width: 32px; height: 32px; color: #fff; }

/* knowledge base */
.kb-item { display: flex; gap: 14px; align-items: center; padding: 18px 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); transition: border-color .2s var(--ease), transform .2s, box-shadow .2s; }
.kb-item:hover { border-color: rgba(44,111,224,.4); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.kb-item .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--surface-soft); display: grid; place-items: center; flex: none; color: var(--blue); }
.kb-item .ic svg { width: 22px; height: 22px; }
.kb-item h3 { font-size: 1.02rem; margin: 0 0 2px; }
.kb-item p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ============================================================
   ABOUT — values / team
   ============================================================ */
.value-card .ic { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(140deg, rgba(44,111,224,.14), rgba(247,147,30,.16)); display: grid; place-items: center; margin-bottom: 16px; color: var(--blue); border: 1px solid var(--border); }
.value-card .ic svg { width: 26px; height: 26px; }

/* page hero (inner pages) */
.page-hero { padding: clamp(60px,8vw,96px) 0 clamp(50px,6vw,80px); position: relative; overflow: hidden; }
.page-hero .container { position: relative; z-index: 2; max-width: 820px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead { font-size: 1.2rem; max-width: 640px; }
.breadcrumb { font-size: .85rem; color: #9fb2d6; margin-bottom: 18px; }
.breadcrumb a { color: var(--orange-soft); }
.breadcrumb a:hover { text-decoration: underline; }

/* anchor offset for sticky nav */
:target { scroll-margin-top: calc(var(--nav-h) + 20px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #061022; color: #aebfdd; padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand img {
  height: 40px; width: auto; margin-bottom: 18px;
  background: #fff; padding: 9px 13px; border-radius: 12px; box-sizing: content-box;
  box-shadow: 0 8px 20px rgba(0,0,0,.30), 0 0 0 1px rgba(255,255,255,.07);
}
.footer-brand p { color: #8fa3c8; max-width: 320px; font-size: .96rem; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: grid; place-items: center; color: #cdd9f2; transition: background .2s var(--ease), transform .2s; }
.footer-social a:hover { background: var(--grad-cta); color: #1a1100; transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; font-family: 'Inter', sans-serif; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: #aebfdd; font-size: .96rem; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--orange-soft); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 26px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; font-size: .88rem; color: #7e92b8; }
.footer-bottom a { color: #9fb2d6; }
@media (max-width: 860px){ .footer-grid{ grid-template-columns: 1fr 1fr; gap: 32px;} }
@media (max-width: 520px){ .footer-grid{ grid-template-columns: 1fr;} }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none;} }

/* utilities */
.text-center { text-align: center; }
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.flex-cta{ display:flex; flex-wrap:wrap; gap:14px; }
.divider-wave { display:block; width:100%; height:auto; }
