/* ============================================================
   ProOrbit.in — Shared Design System
   One stylesheet powering the entire multi-product SaaS site.
   Ported & consolidated from the original landing page theme.
   ============================================================ */

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

:root {
  --night:    #04080f;
  --deep:     #080e1c;
  --card-bg:  #0c1220;
  --blue:     #2563ff;
  --blue-lt:  #4d83ff;
  --indigo:   #4f35d8;
  --cyan:     #00d4ff;
  --gold:     #f5a623;
  --green:    #0fd68a;
  --purple:   #a78bfa;
  --pink:     #f472b6;
  --white:    #ffffff;
  --off:      #f4f7ff;
  --muted:    #6b7a99;
  --border:   rgba(255,255,255,0.08);
  --grad-main: linear-gradient(135deg, #2563ff 0%, #4f35d8 100%);
  --grad-cyan: linear-gradient(135deg, #00d4ff 0%, #2563ff 100%);
  --glow-blue: 0 0 60px rgba(37,99,255,0.35);
  --glow-sm:   0 0 30px rgba(37,99,255,0.2);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--night);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 70px;
  background: rgba(4, 8, 15, 0.75);
  backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s;
}
.navbar.scrolled { background: rgba(4, 8, 15, 0.97); }

.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 900; font-size: 22px; letter-spacing: -0.5px;
  background: var(--grad-cyan);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.logo-img {
  height: 42px; width: auto;
  filter: brightness(0) invert(1) saturate(1.8) hue-rotate(190deg);
  object-fit: contain; flex-shrink: 0;
}

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-size: 13.5px; font-weight: 600;
  padding: 8px 16px; border-radius: 100px;
  color: rgba(255,255,255,0.65); transition: all 0.2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-links a.active { color: var(--cyan); }

.nav-cta {
  background: var(--grad-main) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  box-shadow: 0 4px 20px rgba(37,99,255,0.35);
}
.nav-ghost {
  border: 1px solid rgba(255,255,255,0.18) !important;
  color: rgba(255,255,255,0.85) !important;
}

/* ── Dropdown ── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 5px;
  font-size: 13.5px; font-weight: 600;
  padding: 8px 16px; border-radius: 100px;
  color: rgba(255,255,255,0.65);
  cursor: pointer; transition: all 0.2s; user-select: none; list-style: none;
}
.nav-dropdown-toggle:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-dropdown-toggle .dd-arrow { font-size: 9px; opacity: 0.5; transition: transform 0.25s; display: inline-block; }
.nav-dropdown:hover .dd-arrow { transform: rotate(180deg); opacity: 1; }

.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  padding-top: 12px;
  opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(4px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 999; min-width: 300px;
}
.nav-dropdown-menu-inner {
  background: rgba(8,14,28,0.97);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px; padding: 10px;
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.5), 0 0 0 1px rgba(37,99,255,0.12);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }

.dd-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: 12px;
  transition: background 0.18s; cursor: pointer;
}
.dd-item:hover { background: rgba(37,99,255,0.12); }
.dd-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  background: rgba(37,99,255,0.15); border: 1px solid rgba(37,99,255,0.25);
}
.dd-icon.blue   { background: rgba(37,99,255,0.15);  border-color: rgba(37,99,255,0.25); }
.dd-icon.green  { background: rgba(15,214,138,0.12); border-color: rgba(15,214,138,0.22); }
.dd-icon.purple { background: rgba(167,139,250,0.12); border-color: rgba(167,139,250,0.22); }
.dd-icon.gold   { background: rgba(245,166,35,0.12); border-color: rgba(245,166,35,0.22); }
.dd-icon.cyan   { background: rgba(0,212,255,0.10); border-color: rgba(0,212,255,0.20); }
.dd-icon.pink   { background: rgba(244,114,182,0.12); border-color: rgba(244,114,182,0.22); }
.dd-text-wrap { flex: 1; }
.dd-label { font-size: 13.5px; font-weight: 700; color: rgba(255,255,255,0.88); line-height: 1; margin-bottom: 3px; display:flex; align-items:center; gap:7px; }
.dd-desc  { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.4; }
.dd-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 6px 4px; }
.dd-tag { font-size: 9px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; padding: 2px 7px; border-radius: 100px; }
.dd-tag.live { background: rgba(15,214,138,0.15); color: var(--green); }
.dd-tag.soon { background: rgba(245,166,35,0.13); color: var(--gold); }
.dd-foot { padding: 8px 14px 4px; }
.dd-foot a { font-size: 12px; font-weight: 700; color: var(--cyan); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.7); border-radius: 2px; transition: 0.3s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14.5px; font-weight: 700;
  cursor: pointer; border: none; transition: all 0.25s; white-space: nowrap;
}
.btn-primary { background: var(--grad-main); color: #fff; box-shadow: 0 6px 28px rgba(37,99,255,0.4); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(37,99,255,0.5); }
.btn-secondary { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.85); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-arrow { display: inline-block; transition: transform 0.2s; }
.btn-primary:hover .btn-arrow, .btn-secondary:hover .btn-arrow { transform: translateX(4px); }

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section { padding: 70px 5%; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.bg-deep { background: var(--deep); }
.bg-night { background: var(--night); }

.s-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 18px;
}
.s-eyebrow::before { content: ''; display: inline-block; width: 22px; height: 2px; background: var(--cyan); border-radius: 2px; }
.s-eyebrow.center { justify-content: center; }
.s-title { font-size: clamp(30px, 3.8vw, 50px); font-weight: 900; line-height: 1.1; letter-spacing: -0.5px; }
.s-sub { font-size: 16.5px; line-height: 1.8; color: rgba(255,255,255,0.5); max-width: 620px; margin-top: 16px; }
.section-head.center { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section-head.center .s-sub { margin-left: auto; margin-right: auto; }

.gradient-text { background: var(--grad-cyan); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* ============================================================
   HERO (generic, reusable)
   ============================================================ */
.hero {
  min-height: auto; padding: 118px 5% 72px;
  position: relative; overflow: hidden; display: flex; align-items: flex-start;
}
.hero.compact { padding: 128px 5% 60px; }
.hero-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 65% 55% at 68% 38%, rgba(79,53,216,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 15% 75%, rgba(37,99,255,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 35% 35% at 85% 85%, rgba(0,212,255,0.10) 0%, transparent 50%),
    var(--night);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-orb {
  position: absolute; top: -150px; right: -100px; z-index: 0;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,53,216,0.22) 0%, transparent 70%);
  filter: blur(40px); animation: orbPulse 8s ease-in-out infinite;
}
@keyframes orbPulse { 0%,100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.12); opacity: 1; } }

.hero-inner { position: relative; z-index: 2; max-width: 1300px; margin: 0 auto; width: 100%; }
.hero-inner.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: start; }
.hero-inner.center { text-align: center; max-width: 900px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 18px; border-radius: 100px;
  background: rgba(0, 212, 255, 0.08); border: 1px solid rgba(0, 212, 255, 0.25);
  font-size: 12px; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 30px;
  animation: fadeSlideUp 0.8s ease both;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); animation: blink 1.6s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.hero-h1 {
  font-size: clamp(40px, 5.3vw, 70px); font-weight: 900; line-height: 1.06;
  letter-spacing: -1.5px; margin-bottom: 24px; animation: fadeSlideUp 0.8s 0.1s ease both;
}
.hero-h1 .line2 { background: var(--grad-cyan); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block; }
.hero-sub { font-size: 17px; line-height: 1.85; color: rgba(255,255,255,0.58); max-width: 540px; margin-bottom: 38px; animation: fadeSlideUp 0.8s 0.2s ease both; }
.hero-inner.center .hero-sub { margin-left: auto; margin-right: auto; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; animation: fadeSlideUp 0.8s 0.3s ease both; }
.hero-inner.center .hero-ctas { justify-content: center; }

/* trust / brand pills */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; animation: fadeSlideUp 0.8s 0.4s ease both; }
.hero-inner.center .pill-row { justify-content: center; }
.pill {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 15px; border-radius: 100px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.65); transition: all 0.2s;
}
.pill:hover { background: rgba(37,99,255,0.1); border-color: rgba(37,99,255,0.3); color: #fff; }
.pill-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.pill-dot.blue { background: var(--blue-lt); } .pill-dot.purple { background: var(--purple); }
.pill-dot.green { background: var(--green); } .pill-dot.gold { background: var(--gold); }
.pill-dot.cyan { background: var(--cyan); } .pill-dot.pink { background: var(--pink); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--deep); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 44px 5%; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-block { text-align: center; padding: 20px; border-right: 1px solid var(--border); }
.stat-block:last-child { border-right: none; }
.stat-num { font-family: 'Outfit', sans-serif; font-size: 46px; font-weight: 900; line-height: 1; background: var(--grad-cyan); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 8px; }
.stat-lbl { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.4); letter-spacing: 0.5px; }

/* ============================================================
   SERVICE CARDS (grid of products)
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.svc-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.svc-cat { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 12px; }

.svc-card {
  border-radius: 24px; overflow: hidden; border: 1px solid var(--border);
  background: var(--card-bg); transition: all 0.35s; display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 32px 72px rgba(0,0,0,0.4), var(--glow-sm); border-color: rgba(37,99,255,0.35); }
.svc-card.featured { border-color: rgba(37,99,255,0.4); box-shadow: 0 0 0 1px rgba(37,99,255,0.15), 0 20px 60px rgba(0,0,0,0.3); }

.svc-top { padding: 30px 28px 24px; position: relative; overflow: hidden; }
.svc-top.theme-blue   { background: linear-gradient(145deg, #060d22, #0d1f4a); }
.svc-top.theme-purple { background: linear-gradient(145deg, #0a0618, #1e1060); }
.svc-top.theme-green  { background: linear-gradient(145deg, #041812, #093a26); }
.svc-top.theme-gold   { background: linear-gradient(145deg, #120d06, #3a2a10); }
.svc-top.theme-cyan   { background: linear-gradient(145deg, #04161c, #08323f); }
.svc-top.theme-pink   { background: linear-gradient(145deg, #1c0612, #4a0d2c); }

.svc-icon-wrap {
  width: 60px; height: 60px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 18px; position: relative; z-index: 1;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
}
.svc-status { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 100px; font-size: 10.5px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 14px; }
.svc-status.live { background: rgba(15,214,138,0.12); color: var(--green); border: 1px solid rgba(15,214,138,0.25); }
.svc-status.soon { background: rgba(245,166,35,0.1); color: var(--gold); border: 1px solid rgba(245,166,35,0.22); }
.svc-status.upcoming { background: rgba(0,212,255,0.08); color: var(--cyan); border: 1px solid rgba(0,212,255,0.18); }
.svc-status-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.svc-status.live .svc-status-dot { animation: blink 1.4s infinite; }
.svc-top h3 { font-size: 21px; font-weight: 800; margin-bottom: 10px; position: relative; z-index: 1; }
.svc-top p { font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,0.5); position: relative; z-index: 1; }

.svc-body { padding: 22px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.svc-feat { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.5; }
.svc-feat:last-of-type { border: none; }
.svc-check { font-size: 13px; flex-shrink: 0; margin-top: 1px; color: var(--blue-lt); }
.svc-btn { display: block; text-align: center; margin-top: auto; padding: 12px; border-radius: 100px; font-size: 13.5px; font-weight: 700; transition: all 0.25s; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.svc-btn:hover { background: var(--grad-main); color: #fff; border-color: transparent; box-shadow: 0 6px 24px rgba(37,99,255,0.3); }
.svc-btn.solid { background: var(--grad-main); color: #fff; border-color: transparent; box-shadow: 0 4px 20px rgba(37,99,255,0.35); }
.svc-btn.solid:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,99,255,0.55); }
.svc-btns { margin-top: auto; display: flex; gap: 10px; padding-top: 18px; }
.svc-btns .svc-btn { margin-top: 0; flex: 1; }

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.feat-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 22px; padding: 32px; transition: all 0.35s; position: relative; overflow: hidden; }
.feat-card:hover { border-color: rgba(37,99,255,0.35); transform: translateY(-7px); box-shadow: 0 24px 60px rgba(0,0,0,0.3), var(--glow-sm); }
.feat-icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(37,99,255,0.12); border: 1px solid rgba(37,99,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; transition: all 0.3s; }
.feat-card:hover .feat-icon { background: rgba(37,99,255,0.2); box-shadow: var(--glow-sm); }
.feat-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feat-card p { font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,0.45); }

/* feature group heading */
.feat-group-title { font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); margin: 50px 0 4px; }

/* ============================================================
   STEPS / HOW IT WORKS
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; position: relative; }
.steps-grid::after { content: ''; position: absolute; top: 38px; left: 13%; right: 13%; height: 1px; background: linear-gradient(90deg, transparent, rgba(37,99,255,0.4), rgba(79,53,216,0.4), transparent); z-index: 0; }
.step-item { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num { width: 76px; height: 76px; border-radius: 50%; background: var(--card-bg); border: 1px solid rgba(37,99,255,0.35); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; transition: all 0.3s; }
.step-item:hover .step-num { background: rgba(37,99,255,0.12); box-shadow: var(--glow-blue); border-color: var(--blue); }
.step-num .sn { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 900; background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.step-item h4 { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.step-item p { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.42); }

/* ============================================================
   SPLIT (why / about) + ICON LIST
   ============================================================ */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.icon-list { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.icon-item { display: flex; gap: 18px; padding: 22px; border-radius: 18px; background: var(--card-bg); border: 1px solid var(--border); transition: all 0.3s; }
.icon-item:hover { border-color: rgba(37,99,255,0.3); transform: translateX(8px); box-shadow: -4px 0 0 var(--blue), 0 8px 30px rgba(0,0,0,0.2); }
.ii-icon { width: 46px; height: 46px; border-radius: 13px; background: rgba(37,99,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.ii-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.ii-text p { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.6; }

/* ============================================================
   INDUSTRIES / BENEFITS chips
   ============================================================ */
.chip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
.chip-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 18px; padding: 26px 22px; text-align: center; transition: all 0.3s; }
.chip-card:hover { border-color: rgba(37,99,255,0.3); transform: translateY(-5px); }
.chip-card .ci { font-size: 30px; margin-bottom: 12px; }
.chip-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.chip-card p { font-size: 12.5px; color: rgba(255,255,255,0.42); line-height: 1.6; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; align-items: stretch; }
.pricing-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.price-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 24px; padding: 34px 30px; display: flex; flex-direction: column; transition: all 0.35s; position: relative; }
.price-card:hover { transform: translateY(-8px); border-color: rgba(37,99,255,0.3); box-shadow: 0 28px 70px rgba(0,0,0,0.35); }
.price-card.popular { border-color: rgba(37,99,255,0.5); box-shadow: 0 0 0 1px rgba(37,99,255,0.2), 0 24px 60px rgba(0,0,0,0.4); }
.popular-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-main); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 6px 18px; border-radius: 100px; box-shadow: 0 6px 20px rgba(37,99,255,0.45); }
.price-name { font-size: 19px; font-weight: 800; margin-bottom: 6px; }
.price-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 22px; min-height: 40px; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.price-amount .cur { font-size: 22px; font-weight: 700; color: rgba(255,255,255,0.8); }
.price-amount .val { font-family: 'Outfit', sans-serif; font-size: 44px; font-weight: 900; background: var(--grad-cyan); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.price-amount .per { font-size: 14px; color: rgba(255,255,255,0.4); font-weight: 600; }
.price-note { font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 24px; }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.price-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,0.62); line-height: 1.5; }
.price-feats li .pf-check { color: var(--green); flex-shrink: 0; margin-top: 1px; }
.price-feats li.muted { color: rgba(255,255,255,0.28); }
.price-feats li.muted .pf-check { color: rgba(255,255,255,0.2); }
.price-btn { display: block; text-align: center; padding: 14px; border-radius: 100px; font-size: 14px; font-weight: 700; transition: all 0.25s; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); color: #fff; }
.price-btn:hover { background: rgba(255,255,255,0.1); }
.price-btn.solid { background: var(--grad-main); border-color: transparent; box-shadow: 0 6px 24px rgba(37,99,255,0.4); }
.price-btn.solid:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,99,255,0.55); }

/* pricing-model badges (software dev) */
.model-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
.model-chip { display: flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 100px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin: 44px auto 0; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color 0.25s; }
.faq-item:hover { border-color: rgba(37,99,255,0.25); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; cursor: pointer; font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.9); list-style: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: transform 0.25s; color: var(--cyan); }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 24px 22px; font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.5); }

/* ============================================================
   SCREENSHOTS / GALLERY
   ============================================================ */
.shot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.shot-card { border-radius: 18px; overflow: hidden; border: 1px solid var(--border); background: var(--card-bg); transition: all 0.35s; }
.shot-card:hover { transform: translateY(-6px); border-color: rgba(37,99,255,0.3); box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
.shot-thumb { aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; font-size: 48px; background: linear-gradient(145deg, #0a1228, #11183a); border-bottom: 1px solid var(--border); }
.shot-cap { padding: 16px 20px; }
.shot-cap h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 4px; }
.shot-cap p { font-size: 12.5px; color: rgba(255,255,255,0.42); line-height: 1.5; }

/* ============================================================
   CTA / TRIAL
   ============================================================ */
.cta-section { padding: 80px 5%; background: var(--night); text-align: center; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(37,99,255,0.14) 0%, transparent 65%), var(--night); }
.cta-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.cta-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; border-radius: 100px; background: rgba(37,99,255,0.1); border: 1px solid rgba(37,99,255,0.3); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cyan); margin-bottom: 26px; }
.cta-inner h2 { font-size: clamp(30px, 4.2vw, 50px); font-weight: 900; letter-spacing: -0.5px; margin-bottom: 16px; }
.cta-inner p { font-size: 16.5px; color: rgba(255,255,255,0.52); line-height: 1.8; margin-bottom: 38px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   FORMS (demo / contact)
   ============================================================ */
.form-wrap { max-width: 640px; margin: 0 auto; background: var(--card-bg); border: 1px solid var(--border); border-radius: 24px; padding: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.7); }
.form-field input, .form-field select, .form-field textarea {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 13px 16px; color: #fff; font-size: 14px;
  font-family: inherit; transition: all 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--blue); background: rgba(37,99,255,0.06); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field select option { background: var(--deep); color: #fff; }
.form-msg { padding: 14px 18px; border-radius: 12px; margin-bottom: 22px; font-size: 14px; font-weight: 600; }
.form-msg.success { background: rgba(15,214,138,0.12); color: var(--green); border: 1px solid rgba(15,214,138,0.3); }
.form-msg.error { background: rgba(244,114,182,0.1); color: var(--pink); border: 1px solid rgba(244,114,182,0.3); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 22px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb .sep { opacity: 0.4; }

/* sub-nav for a single product (Overview / Features / Pricing / Demo) */
.prod-subnav { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 28px; }
.prod-subnav a { padding: 9px 18px; border-radius: 100px; font-size: 13.5px; font-weight: 700; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.65); transition: all 0.2s; }
.prod-subnav a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.prod-subnav a.active { background: var(--grad-main); color: #fff; border-color: transparent; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #020509; padding: 56px 5% 28px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-brand .logo-f { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 22px; background: var(--grad-cyan); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; line-height: 1.8; color: rgba(255,255,255,0.35); max-width: 300px; }
.footer-contact { margin-top: 20px; font-size: 12.5px; line-height: 2.1; color: rgba(255,255,255,0.3); }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.65); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 11px; transition: color 0.2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { padding-top: 30px; text-align: center; font-size: 12.5px; color: rgba(255,255,255,0.2); }

/* ============================================================
   ANIMATIONS / REVEAL
   ============================================================ */
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid, .pricing-grid.cols-4 { grid-template-columns: 1fr 1fr; }
  .chip-grid { grid-template-columns: 1fr 1fr; }
  .shot-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .hero-inner.split { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { display: none; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-block { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-block:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-block:last-child, .stat-block:nth-last-child(2) { border-bottom: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .steps-grid::after { display: none; }
  .split-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 4px; align-items: stretch;
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(4,8,15,0.98); padding: 16px 5%;
    border-bottom: 1px solid var(--border); z-index: 9998;
    max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .nav-dropdown-menu { position: static; opacity: 1; pointer-events: all; transform: none; padding-top: 0; min-width: unset; }
  .nav-dropdown-menu-inner { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; margin: 4px 0 8px; }
  .features-grid { grid-template-columns: 1fr; }
  .svc-grid, .svc-grid.cols-2 { grid-template-columns: 1fr; }
  .pricing-grid, .pricing-grid.cols-4 { grid-template-columns: 1fr; }
  .chip-grid { grid-template-columns: 1fr 1fr; }
  .shot-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px 22px; }
  .hero { padding: 110px 5% 60px; }
}


/* ---- Fine-tuning for small phones (<= 600px) ---- */
@media (max-width: 600px) {
  html { font-size: 15px; }
  .navbar { padding: 0 18px; height: 62px; }
  .logo { font-size: 18px; }
  .logo-img { height: 34px; }
  .nav-links.open { top: 62px; }
  .section { padding: 50px 18px; }
  .hero { padding: 92px 18px 46px; min-height: auto; }
  .hero.compact { padding: 96px 18px 40px; }
  .hero-h1 { font-size: clamp(30px, 8.5vw, 42px); letter-spacing: -0.5px; }
  .hero-sub { font-size: 15px; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn { width: 100%; justify-content: center; }
  .chip-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-num { font-size: 36px; }
  .prod-subnav { gap: 6px; }
  .prod-subnav a { padding: 8px 14px; font-size: 12.5px; }
  .price-card { padding: 28px 22px; }
  .price-amount .val { font-size: 38px; }
  .form-wrap { padding: 22px 16px; }
  .model-row { gap: 8px; }
  .model-chip { font-size: 12px; padding: 8px 14px; }
  /* tighten product detail hero on phones */
  .hero-inner.split { gap: 36px; }
}

/* Prevent any accidental horizontal scroll on phones */
@media (max-width: 768px) {
  body { overflow-x: hidden; }
  .section-inner, .hero-inner { width: 100%; }
}
