/* ============================================================
   SView360 — Enterprise Marketing Website v2.0
   SEPLE NovaEdge Pvt. Ltd.
   ============================================================ */

:root {
  --navy: #07111f;
  --panel: #0d1b2a;
  --panel-2: #13283f;
  --blue: #0a84ff;
  --orange: #ff6d00;
  --light: #f4f7fb;
  --white: #ffffff;
  --muted: #6b7c8f;
  --muted-light: #8fa8c0;
  --border: #d8e1ec;
  --border-dark: #1e3a5a;
  --green: #22c55e;
  --amber: #f59e0b;
  --red: #ef4444;
  --shadow-card: 0 12px 32px rgba(0, 0, 0, 0.08);
  --ease: 0.25s ease;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px; font-weight: 400; line-height: 1.7;
  color: var(--white); background: var(--navy);
  overflow-x: hidden; max-width: 100vw;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Focus states ---------- */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px; box-sizing: border-box; }

.section { padding: 96px 0; position: relative; overflow: hidden; }
.section-tight { padding-top: 0; }
.section-dark { background: var(--panel); color: var(--white); }
.section-darkest { background: var(--navy); color: var(--white); }
.section-light { background: var(--light); color: var(--panel); }

/* ---------- Typography ---------- */
h1 { font-size: 64px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; color: var(--white); }
h2 { font-size: 42px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; color: var(--panel); }
h2.white { color: var(--white); }
h3 { font-size: 22px; font-weight: 600; line-height: 1.3; }

.kicker {
  display: inline-block; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue); margin-bottom: 8px;
}
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-intro { color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 680px; margin: 16px auto 0; }
.section-intro.muted-body { color: var(--muted-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; border-radius: 6px; padding: 14px 28px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform var(--ease), background var(--ease), box-shadow var(--ease), border-color var(--ease);
  white-space: nowrap; font-family: inherit;
}
.hero .btn { font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 15px; }
.btn-block { width: 100%; margin-top: 8px; }
.btn-cta { background: var(--orange); color: var(--white); }
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255, 109, 0, 0.35); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10, 132, 255, 0.3); }
.btn-outline { border: 1px solid rgba(255, 255, 255, 0.25); color: var(--white); background: transparent; }
.btn-outline:hover { border-color: rgba(255, 255, 255, 0.6); background: rgba(255, 255, 255, 0.05); }

.btn-row { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.btn-row-center { justify-content: center; }
.center-cta { text-align: center; margin-top: 48px; }

/* ---------- Pills / Badges ---------- */
.pill {
  display: inline-block; font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 24px;
}
.pill-blue { border: 1px solid var(--blue); color: var(--blue); background: rgba(10, 132, 255, 0.08); }
.pill-orange { border: 1px solid var(--orange); color: var(--orange); background: rgba(255, 109, 0, 0.12); }

/* ---------- Dot grid & glow ---------- */
.dot-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(circle, var(--border-dark) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}
.hero-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 900px 500px at 50% 40%, rgba(10, 132, 255, 0.07) 0%, transparent 70%);
}

/* ---------- Check icon ---------- */
.check { display: inline-block; width: 18px; height: 18px; flex-shrink: 0; position: relative; }
.check::after {
  content: ""; position: absolute; left: 4px; top: 1px;
  width: 6px; height: 11px; border: solid var(--blue);
  border-width: 0 2px 2px 0; transform: rotate(45deg);
}

/* ---------- Shared card icon ---------- */
.card-ico {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(10, 132, 255, 0.1); color: var(--blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.card-ico svg { width: 24px; height: 24px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 68px;
  background: rgba(7, 17, 31, 0);
  transition: background 0.3s ease, border-bottom 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(7, 17, 31, 0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
}

/* Logo block */
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo-icon { width: 30px; height: 30px; flex-shrink: 0; }
.nav-logo-icon svg { width: 30px; height: 30px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-name { font-size: 18px; font-weight: 700; color: white; letter-spacing: -0.01em; }
.nav-logo-sub { font-size: 10px; color: var(--muted); font-weight: 400; }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; flex: 1; justify-content: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: rgba(255, 255, 255, 0.75); text-decoration: none; transition: color 0.2s ease; white-space: nowrap; }
.nav-links a:hover { color: white; }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-btn-demo { padding: 9px 20px; border: 1.5px solid rgba(255, 255, 255, 0.3); color: white; background: transparent; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; transition: all 0.2s ease; white-space: nowrap; }
.nav-btn-demo:hover { border-color: white; background: rgba(255, 255, 255, 0.06); }
.nav-btn-login { padding: 9px 20px; background: var(--orange); color: white; border: none; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; transition: background 0.2s ease; white-space: nowrap; }
.nav-btn-login:hover { background: #e56200; }

/* Hamburger — mobile */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: all 0.25s ease; }

/* Mobile menu */
.nav-mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; background: rgba(7, 17, 31, 0.98); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-dark); padding: 24px 32px; z-index: 999; flex-direction: column; gap: 0; }
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu > a { display: block; padding: 14px 0; font-size: 16px; font-weight: 500; color: rgba(255, 255, 255, 0.8); text-decoration: none; border-bottom: 1px solid var(--border-dark); transition: color 0.2s ease; }
.nav-mobile-menu > a:last-of-type { border-bottom: none; }
.nav-mobile-menu > a:hover { color: white; }
.nav-mobile-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.nav-mobile-actions a { border: none; padding: 13px; text-align: center; border-radius: 6px; font-weight: 600; font-size: 15px; text-decoration: none; }
.nav-mobile-demo { border: 1.5px solid rgba(255, 255, 255, 0.3) !important; color: white; background: transparent; }
.nav-mobile-login { background: var(--orange); color: white; }

/* Navbar responsive */
@media (max-width: 1024px) {
  .nav-links { gap: 20px; }
  .navbar { padding: 0 24px; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-btn-demo { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 480px) {
  .navbar { padding: 0 16px; }
}

/* Body offset for fixed navbar */
body { padding-top: 68px; }
.hero, #hero, .hero-section { margin-top: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center; position: relative; padding: 120px 0 80px;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
.hero-content h1 { margin-bottom: 24px; }
.hero-sub { font-size: 18px; color: var(--muted-light); line-height: 1.7; max-width: 560px; }

.trust-strip { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-top: 32px; }
.trust-strip li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted-light); }

/* ---------- Mockup base ---------- */
.mockup {
  background: var(--panel); border: 1px solid var(--border-dark);
  border-radius: 12px; padding: 18px; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.mockup-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mock-brand { color: var(--white); font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.ai-brand svg { width: 18px; height: 18px; }
.mock-top-right { display: flex; align-items: center; gap: 12px; }
.mock-time { color: var(--muted); font-size: 11px; }

.live-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--green);
  background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 3px 10px; border-radius: 100px; letter-spacing: 0.05em;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

/* ---------- VMS mockup ---------- */
.hero-mockup { perspective: 1200px; }
.vms-mockup { transform: perspective(1200px) rotateY(-8deg) rotateX(3deg); transition: transform 0.5s ease; }
.vms-mockup:hover { transform: perspective(1200px) rotateY(-4deg) rotateX(1deg); }

.cam-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.cam-cell {
  background: var(--navy); border: 1px solid #1a2d42; border-radius: 6px;
  height: 76px; position: relative; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px; overflow: hidden;
}
.cam-cell::before {
  content: ""; position: absolute; inset: 0; opacity: 0.4;
  background: repeating-linear-gradient(0deg, transparent, transparent 4px, rgba(255,255,255,0.015) 4px, rgba(255,255,255,0.015) 5px);
}
.cam-ico { width: 22px; height: 16px; border: 1.5px solid rgba(255,255,255,0.55); border-radius: 3px; position: relative; }
.cam-ico::after {
  content: ""; position: absolute; width: 7px; height: 7px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.55); top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.cam-label { font-size: 10px; color: var(--muted-light); position: relative; z-index: 1; }
.cam-alert { border-color: var(--orange); }
.cam-badge {
  position: absolute; top: 6px; right: 6px; font-size: 8px; font-weight: 700;
  background: var(--orange); color: var(--white); padding: 2px 6px; border-radius: 4px; letter-spacing: 0.05em; z-index: 2;
}

.alarm-queue { margin-bottom: 12px; }
.queue-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 8px; }
.alert-row {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: var(--navy); border: 1px solid #1a2d42; border-radius: 6px;
  padding: 8px 10px; font-size: 10px; margin-bottom: 6px;
}
.alert-left { display: flex; align-items: center; gap: 7px; color: var(--muted-light); }
.alert-time { color: var(--muted); font-size: 10px; flex-shrink: 0; }
.dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dot-red { background: var(--red); }
.dot-orange { background: var(--orange); }
.dot-amber { background: var(--amber); }
.dot-blue { background: var(--blue); }

.metrics-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.metric-pill { background: var(--panel-2); border: 1px solid var(--border-dark); border-radius: 6px; padding: 8px 6px; text-align: center; }
.metric-num { display: block; font-size: 16px; font-weight: 800; color: var(--white); }
.metric-tag { display: block; font-size: 8px; color: var(--muted); letter-spacing: 0.05em; margin-top: 2px; }

/* ============================================================
   ENTERPRISE VALUE STRIP
   ============================================================ */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
  background: var(--panel-2); border: 1px solid var(--border-dark);
  border-radius: 12px; padding: 28px 32px; transition: transform var(--ease), box-shadow var(--ease);
}
.value-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35); }
.value-card h3 { color: var(--white); font-size: 18px; margin: 18px 0 10px; }
.value-card p { color: var(--muted); font-size: 15px; }

/* ============================================================
   GRID-3 CARDS (Platform / Solutions / Governance / etc.)
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.feature-card, .card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 32px; transition: transform var(--ease), box-shadow var(--ease);
}
.feature-card:hover, .card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.card-label { display: block; font-size: 11px; text-transform: uppercase; color: var(--blue); letter-spacing: 0.08em; font-weight: 600; margin-top: 20px; }
.feature-card h3 { font-size: 18px; font-weight: 600; color: var(--panel); margin: 8px 0 10px; }
.feature-card p, .card p { font-size: 15px; color: var(--muted); }
.card h3 { font-size: 18px; color: var(--panel); margin: 18px 0 14px; }

/* Solution card feature list (light bg) */
.solution-card .feat-list li { color: var(--panel); }

/* Governance cards (dark bg) */
.gov-card {
  background: var(--panel-2); border: 1px solid var(--border-dark);
  border-radius: 12px; padding: 32px; transition: transform var(--ease), box-shadow var(--ease);
}
.gov-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35); }
.gov-card h3 { color: var(--white); font-size: 18px; margin: 18px 0 10px; }
.gov-card p { color: var(--muted); font-size: 15px; }

/* Generic feature list */
.feat-list { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.feat-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted-light); }
.feat-list .check { margin-top: 2px; }

/* ============================================================
   AI ANALYTICS / SINSIGHT
   ============================================================ */
.split-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.split-text h2 { margin-bottom: 18px; }
.muted-body { color: var(--muted-light); font-size: 16px; }

.module-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin: 28px 0 18px; }
.module-list { display: flex; flex-direction: column; gap: 12px; }
.module-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--white); }

.ai-disclaimer {
  font-size: 13px; color: var(--muted); font-style: italic;
  border-left: 2px solid var(--border-dark); padding-left: 16px; margin-top: 24px;
}

/* ---------- AI mockup ---------- */
.alert-card {
  background: var(--navy); border: 1px solid var(--border-dark); border-radius: 10px;
  padding: 16px; margin-bottom: 14px;
}
.alert-card-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.alert-card-title { display: block; font-size: 20px; font-weight: 700; color: var(--white); margin: 4px 0 2px; }
.alert-card-cam { display: block; font-size: 12px; color: var(--muted-light); margin-bottom: 12px; }
.alert-card-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.status-pill { font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 100px; }
.conf-high { background: rgba(255, 109, 0, 0.15); color: var(--orange); border: 1px solid rgba(255, 109, 0, 0.4); }
.status-review { background: rgba(245, 158, 11, 0.15); color: var(--amber); border: 1px solid rgba(245, 158, 11, 0.4); }

.op-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.op-btn {
  font-size: 12px; font-weight: 600; padding: 10px 6px; border-radius: 6px;
  cursor: pointer; font-family: inherit; transition: transform var(--ease), background var(--ease);
}
.op-btn:hover { transform: translateY(-2px); }
.op-ack { background: transparent; border: 1px solid var(--blue); color: var(--blue); }
.op-dismiss { background: transparent; border: 1px solid var(--muted); color: var(--muted-light); }
.op-escalate { background: var(--orange); border: 1px solid var(--orange); color: var(--white); }

.ai-timeline { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.tl-row {
  display: flex; align-items: center; gap: 8px;
  background: var(--navy); border: 1px solid var(--border-dark); border-radius: 8px;
  padding: 8px 10px; font-size: 11px;
}
.tl-text { color: var(--muted-light); flex: 1; }
.tl-time { color: var(--muted); font-weight: 600; flex-shrink: 0; }
.ai-status { font-size: 11px; color: var(--muted); text-align: center; border-top: 1px solid var(--border-dark); padding-top: 12px; }

/* ============================================================
   COMMAND CENTER WORKFLOW
   ============================================================ */
.workflow { display: flex; align-items: stretch; justify-content: center; gap: 8px; flex-wrap: nowrap; }
.step {
  flex: 1; background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 32px; transition: transform var(--ease), box-shadow var(--ease);
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--blue); color: var(--white); font-weight: 800; font-size: 16px; margin-bottom: 16px;
}
.step h3 { font-size: 18px; color: var(--panel); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); }
.step-arrow { color: var(--blue); font-size: 22px; display: flex; align-items: center; flex-shrink: 0; }

.tag-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 40px; }
.tag {
  font-size: 13px; font-weight: 500; color: var(--panel);
  background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: 8px 18px;
}

/* ============================================================
   DEPLOYMENT
   ============================================================ */
.deploy-grid { align-items: stretch; }
.deploy-card {
  background: var(--panel-2); border: 1px solid var(--border-dark);
  border-radius: 14px; padding: 32px; position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
}
.deploy-card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35); }
.deploy-featured { border-top: 3px solid var(--blue); }
.featured-tag {
  position: absolute; top: -12px; left: 40px;
  background: var(--blue); color: var(--white); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 12px; border-radius: 100px;
}
.deploy-ico { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.deploy-ico svg { width: 26px; height: 26px; }
.deploy-ico.blue { background: rgba(10, 132, 255, 0.12); color: var(--blue); }
.deploy-ico.orange { background: rgba(255, 109, 0, 0.12); color: var(--orange); }
.deploy-card h3 { color: var(--white); margin-bottom: 10px; }
.deploy-desc { color: var(--muted-light); font-size: 15px; margin-bottom: 20px; }
.on-request { display: inline-block; margin-top: 18px; font-size: 12px; font-style: italic; color: var(--muted); }

/* ============================================================
   CAMERA COMPATIBILITY
   ============================================================ */
.brand-badges { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; max-width: 880px; margin: 0 auto; }
.brand-badge {
  font-size: 15px; font-weight: 600; color: var(--panel);
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 22px; transition: transform var(--ease), box-shadow var(--ease);
}
.brand-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.compat-note { text-align: center; font-size: 13px; color: var(--muted); font-style: italic; margin-top: 32px; max-width: 720px; margin-left: auto; margin-right: auto; }

/* ============================================================
   PRICING
   ============================================================ */
#pricing .container {
  max-width: 1200px; margin: 0 auto; padding: 0 32px; width: 100%; box-sizing: border-box;
}
.pricing-subtitle { max-width: 720px; margin-bottom: 48px; }

/* ---------- Deployment model tabs ---------- */
.deploy-tabs {
  display: flex; gap: 4px; width: fit-content; max-width: 100%; margin: 0 auto 40px;
  background: #e8edf2; border: 1px solid var(--border); border-radius: 8px; padding: 4px; flex-wrap: wrap;
}
.deploy-tab {
  font-family: inherit; font-size: 14px; font-weight: 600; color: var(--muted);
  background: transparent; border: none; cursor: pointer; padding: 10px 18px;
  border-radius: 6px; transition: background var(--ease), color var(--ease), box-shadow var(--ease);
}
.deploy-tab:hover { color: var(--panel); }
.deploy-tab.is-active { background: var(--white); color: var(--panel); box-shadow: 0 1px 3px rgba(13, 27, 42, 0.1); }

/* ---------- Panels ---------- */
.pricing-panel[hidden] { display: none; }

/* ---------- Billing toggle ---------- */
.billing-toggle {
  display: flex; gap: 4px; width: fit-content; margin: 0 auto 32px;
  background: #e8edf2; border: 1px solid var(--border); border-radius: 100px; padding: 4px;
}
.bt-opt {
  font-family: inherit; font-size: 14px; font-weight: 600; color: var(--muted);
  background: transparent; border: none; cursor: pointer; padding: 8px 20px; border-radius: 100px;
  transition: background var(--ease), color var(--ease);
}
.bt-opt:hover { color: var(--panel); }
.bt-opt.is-active { background: var(--blue); color: var(--white); }

/* ---------- Cloud plan grid ---------- */
.cloud-pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 16px;
  width: 100%;
}
@media (max-width: 1400px) {
  .cloud-pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .cloud-pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .cloud-pricing-grid { grid-template-columns: 1fr; }
}
.pricing-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 32px; display: flex; flex-direction: column; position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
  min-width: 0; word-break: break-word; overflow-wrap: break-word;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.pricing-featured { border-top: 3px solid var(--blue); box-shadow: 0 12px 32px rgba(10, 132, 255, 0.14); }
.popular-tag {
  position: absolute; top: -12px; right: 20px;
  background: var(--blue); color: var(--white); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; padding: 4px 14px; border-radius: 100px; white-space: nowrap;
}
.plan-name { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 600; margin-bottom: 12px; }
.plan-price { font-size: clamp(28px, 3vw, 40px); font-weight: 800; color: var(--panel); line-height: 1; letter-spacing: -0.02em; }
.plan-unit { font-size: 14px; font-weight: 500; color: var(--muted); letter-spacing: 0; margin-left: 2px; }
.plan-price-custom { font-size: 40px; }
.min-note { font-size: 13px; color: var(--muted); margin-top: 10px; margin-bottom: 20px; }
.annual-line { font-size: 13px; color: var(--green); font-weight: 600; margin-top: -12px; margin-bottom: 20px; display: none; }
.annual-line-empty { min-height: 0; }
.show-annual .annual-line { display: block; }
.show-annual .annual-line-empty { display: block; min-height: 19px; }
.pricing-card .feat-list { flex: 1; margin-bottom: 18px; }
.pricing-card .feat-list li { color: var(--panel); font-size: 14px; padding: 6px 0; }

/* ---------- Outline-blue button (pricing) ---------- */
.btn-outline-blue { background: transparent; border: 1px solid var(--blue); color: var(--blue); }
.btn-outline-blue:hover { transform: translateY(-2px); background: rgba(10, 132, 255, 0.06); box-shadow: 0 8px 20px rgba(10, 132, 255, 0.18); }

/* ---------- Hybrid / On-Prem model blocks ---------- */
.model-block { max-width: 1000px; margin: 0 auto; }
.model-lead { text-align: center; font-size: 16px; color: var(--muted); max-width: 760px; margin: 0 auto 40px; }
.model-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.model-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 32px;
  transition: transform var(--ease), box-shadow var(--ease);
}
.model-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.model-card h3 { font-size: 18px; color: var(--panel); margin: 18px 0 10px; }
.model-card p { font-size: 15px; color: var(--muted); }
.model-note { text-align: center; font-size: 13px; color: var(--muted); font-style: italic; margin-top: 32px; }

.pricing-footnote { text-align: center; font-size: 13px; color: var(--muted); font-style: italic; margin-top: 32px; max-width: 820px; margin-left: auto; margin-right: auto; }

/* ---------- Hybrid tab — detailed pricing ---------- */
.hybrid-block { max-width: 1080px; }

.hybrid-explainer {
  background: var(--panel); border: 1px solid var(--border-dark); border-radius: 14px;
  padding: 32px; margin-bottom: 32px;
}
.he-title { color: var(--white); font-size: 20px; font-weight: 600; margin-bottom: 14px; }
.he-body { color: var(--muted-light); font-size: 15px; margin-bottom: 14px; }
.he-body:last-of-type { margin-bottom: 0; }
.hybrid-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.he-pill {
  font-size: 12px; font-weight: 600; color: var(--blue);
  background: rgba(10, 132, 255, 0.1); border: 1px solid rgba(10, 132, 255, 0.3);
  border-radius: 100px; padding: 6px 14px;
}

/* Comparison strip */
.compare-strip {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 28px 32px; margin-bottom: 32px;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.compare-col { padding: 0 28px; }
.compare-col:first-child { padding-left: 0; }
.compare-col:last-child { padding-right: 0; }
.compare-col:not(:last-child) { border-right: 1px solid #e8edf2; }
.compare-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); font-weight: 600; margin-bottom: 8px; }
.compare-ico svg { width: 24px; height: 24px; }
.compare-ico.blue { color: var(--blue); }
.compare-ico.orange { color: var(--orange); }
.compare-body { font-size: 14px; color: var(--panel); line-height: 1.6; margin-top: 8px; }
.compare-price { margin-top: 12px; font-size: 15px; font-weight: 700; color: var(--panel); }
.compare-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Price blocks + tables */
.price-block { margin-bottom: 40px; }
.block-title { font-size: 20px; font-weight: 600; color: var(--panel); margin-bottom: 8px; }
.block-sub { font-size: 14px; color: var(--muted); margin-bottom: 8px; max-width: 780px; }
.matrix-callout {
  font-size: 14px; background: #f0f7ff; border-left: 3px solid var(--blue);
  padding: 12px 16px; border-radius: 0 6px 6px 0; margin: 16px 0 24px; color: var(--panel);
}
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 12px; -webkit-overflow-scrolling: touch; }
.price-table { width: 100%; border-collapse: collapse; min-width: 680px; background: var(--white); }
.price-table th {
  background: var(--light); font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--muted); font-weight: 600; padding: 12px 16px; border: 1px solid var(--border); text-align: left;
}
.price-table td { font-size: 14px; color: var(--panel); padding: 14px 16px; border: 1px solid var(--border); vertical-align: top; }
.price-table .row-highlight { background: #f0f7ff; }
.cell-strong { font-weight: 700; }
.cell-green { font-size: 12px; color: var(--green); }
.cell-green-block { display: block; font-size: 12px; color: var(--green); }
.cell-sub { display: block; font-size: 12px; color: var(--muted); font-weight: 400; }
.table-note { font-size: 13px; font-style: italic; color: var(--muted); margin-top: 16px; }

/* Scenario cards */
.scenario-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.scenario-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 32px; transition: transform var(--ease), box-shadow var(--ease); }
.scenario-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.scenario-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue); font-weight: 600; margin-bottom: 8px; }
.scenario-title { font-size: 17px; font-weight: 600; color: var(--panel); margin-bottom: 18px; }
.scenario-lines { margin-bottom: 16px; }
.sline { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 14px; color: var(--panel); padding: 6px 0; }
.sline span:last-child { font-weight: 600; white-space: nowrap; }
.sline-sub { font-size: 12px; color: var(--muted); margin: -4px 0 2px; }
.scenario-total {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: #f0f7ff; border: 1px solid rgba(10, 132, 255, 0.2); border-radius: 8px;
  padding: 14px 16px; font-weight: 800; color: var(--panel); font-size: 15px;
}
.scenario-total span:last-child { white-space: nowrap; }
.scenario-vs { font-size: 13px; color: var(--green); font-weight: 600; margin-top: 10px; }
.scenario-use { font-size: 13px; color: var(--muted); margin-top: 14px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-inner { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-h2 { font-size: 48px; margin-bottom: 18px; }
.cta-body { color: var(--muted-light); font-size: 18px; max-width: 600px; margin: 0 auto; }
.contact-line { font-size: 14px; color: var(--muted); margin-top: 32px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); border-top: 1px solid var(--border-dark); padding: 56px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 3fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .brand-name { color: var(--white); font-size: 18px; font-weight: 700; }
.footer-tagline { color: var(--muted); font-size: 13px; margin-top: 8px; max-width: 280px; }
.footer-sub { color: var(--muted); font-size: 13px; margin-top: 4px; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-col h4 { color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; font-weight: 600; }
.footer-col a { display: block; color: var(--muted); font-size: 14px; margin-bottom: 10px; transition: color var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid var(--border-dark); padding-top: 16px;
}
.footer-copy { color: var(--muted); font-size: 13px; }
.footer-note { color: #4a5568; font-size: 13px; max-width: 500px; text-align: right; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%; border: none;
  background: var(--orange); cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity var(--ease), transform var(--ease), box-shadow var(--ease);
  box-shadow: 0 8px 24px rgba(255, 109, 0, 0.35);
}
.back-to-top svg { width: 22px; height: 22px; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(255, 109, 0, 0.45); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .live-dot { animation: none; }
  .vms-mockup { transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  h1 { font-size: 52px; }
  h2, .section-head h2 { font-size: 36px; }
  .cta-h2 { font-size: 40px; }
  .hero-grid { gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .vms-mockup { transform: none; }
  .vms-mockup:hover { transform: translateY(-3px); }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  /* Workflow stacks */
  .workflow { flex-direction: column; align-items: stretch; }
  .step-arrow { transform: rotate(90deg); justify-content: center; padding: 2px 0; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  h1 { font-size: 40px; }
  h2, .section-head h2 { font-size: 30px; }
  .cta-h2 { font-size: 32px; }
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-sub { max-width: none; }
  .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .deploy-grid { grid-template-columns: 1fr; }
  .model-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .deploy-tabs { width: 100%; }
  .deploy-tab { flex: 1; min-width: 0; padding: 10px 8px; font-size: 13px; }
  /* Hybrid tab: stack comparison strip + scenarios */
  .compare-strip { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .compare-col { padding: 0; }
  .compare-col:not(:last-child) { border-right: none; border-bottom: 1px solid #e8edf2; padding-bottom: 24px; }
  .scenario-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-copy { text-align: center; }
  .footer-note { text-align: center; max-width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  #pricing .container { padding: 0 16px; }
  .footer-cols { grid-template-columns: 1fr; }
  h1 { font-size: 34px; }
  .hero-sub { font-size: 16px; }
  .grid-4 { grid-template-columns: 1fr; }
  .module-cols { grid-template-columns: 1fr; }
  .btn-row .btn { width: 100%; }
  .cam-label { font-size: 9px; }
  .back-to-top { bottom: 18px; right: 18px; width: 42px; height: 42px; }
}

/* ============================================================
   NEW SECTIONS (v3) — problem/solution, industries, comparison,
   FAQ, trust strip, ROI estimator
   ============================================================ */
.section-white { background: var(--white); color: var(--panel); }

#comparison .container { max-width: 1200px; }
#roi .container { max-width: 900px; }
#faq .container { max-width: 900px; }
#trust .container { max-width: 1200px; }

/* ── PROBLEM / SOLUTION ── */
.problem-solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.problem-card { background: #fff5f5; border: 1px solid #fecdd3; border-radius: 14px; padding: 32px; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.sol-card { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 14px; padding: 32px; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.problem-card:hover, .sol-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.ps-head { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.ps-badge { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ps-badge svg { width: 15px; height: 15px; }
.ps-badge.red { background: #fee2e2; color: #dc2626; }
.ps-badge.green { background: #dcfce7; color: #16a34a; }
.ps-label { font-size: 16px; font-weight: 700; }
.ps-label.red { color: #dc2626; }
.ps-label.green { color: #16a34a; }
.ps-list { list-style: none; padding: 0; margin: 0; }
.ps-list li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid #fecdd3; font-size: 14px; color: #374151; line-height: 1.5; }
.sol-card .ps-list li { border-bottom-color: #bbf7d0; }
.ps-list li:last-child { border-bottom: none; }
.ps-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.ps-dot.red { background: #dc2626; }
.ps-dot.green { background: #16a34a; }

/* ── INDUSTRY SECTION ── */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.industry-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 32px; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.industry-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.industry-num { width: 36px; height: 36px; border-radius: 50%; background: rgba(10,132,255,0.08); color: var(--blue); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.industry-card h3 { font-size: 18px; font-weight: 700; color: var(--panel); margin-bottom: 8px; }
.industry-scale { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.industry-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 6px; }
.industry-label.blue { color: var(--blue); }
.industry-text { font-size: 14px; color: #374151; line-height: 1.6; margin-bottom: 16px; }
.industry-link { font-size: 14px; color: var(--blue); font-weight: 600; }
.industry-link:hover { text-decoration: underline; }

/* ── COMPARISON TABLE ── */
.comparison-wrap { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 720px; background: var(--white); }
.comparison-table th { background: var(--panel); color: var(--white); padding: 16px 20px; font-size: 14px; font-weight: 600; text-align: center; vertical-align: middle; }
.comparison-table th:first-child { text-align: left; min-width: 200px; }
.comparison-table th.sview-col { background: #0a1f35; border-left: 2px solid var(--blue); border-right: 2px solid var(--blue); font-weight: 800; }
.comparison-table td { padding: 14px 20px; font-size: 14px; text-align: center; border-bottom: 1px solid #f0f4f8; color: #374151; }
.comparison-table td:first-child { text-align: left; font-weight: 500; color: var(--panel); }
.comparison-table td.sview-col { background: rgba(10,132,255,0.04); border-left: 2px solid var(--blue); border-right: 2px solid var(--blue); font-weight: 600; }
.comparison-table tbody tr:nth-child(even) td { background: #f9fbfd; }
.comparison-table tbody tr:nth-child(even) td.sview-col { background: rgba(10,132,255,0.06); }
.c-yes { color: #16a34a; font-size: 18px; }
.c-no { color: #dc2626; }
.c-warn { color: var(--amber); }
.comparison-recommend { display: block; width: fit-content; margin: 4px auto 0; background: var(--orange); color: var(--white); font-size: 9px; font-weight: 700; padding: 3px 10px; border-radius: 10px; text-transform: uppercase; letter-spacing: 0.04em; }
.comparison-footer td { background: #f4f7fb !important; font-size: 13px; color: var(--muted); font-weight: 600; padding: 14px 20px; }
.comparison-footer td.sview-col { color: var(--blue) !important; font-weight: 600 !important; background: rgba(10,132,255,0.06) !important; }
.comparison-disclaimer { text-align: center; font-size: 13px; color: var(--muted); font-style: italic; margin-top: 16px; }

/* ── FAQ SECTION ── */
.faq-list { list-style: none; padding: 0; margin: 0; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--panel); user-select: none; }
.faq-chevron { flex-shrink: 0; transition: transform 0.25s ease; color: var(--muted); display: flex; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner { padding: 16px 24px 20px; font-size: 15px; color: var(--muted); line-height: 1.7; border-top: 1px solid #f0f4f8; }

/* ── TRUST STRIP (infrastructure) ── */
.trust-section { background: var(--white); padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-bar { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.trust-bar-label { font-size: 13px; font-weight: 600; color: var(--muted); text-align: center; white-space: nowrap; }
.trust-items { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.trust-ico svg { width: 32px; height: 32px; }
.trust-item-name { font-size: 12px; color: var(--muted); font-weight: 600; }
.trust-item-sub { font-size: 11px; color: #9aabb8; }

/* ── ROI CALCULATOR ── */
.roi-card { background: var(--panel-2); border: 1px solid var(--border-dark); border-radius: 14px; padding: 48px; }
.roi-grid { display: grid; grid-template-columns: 45% 55%; gap: 48px; align-items: start; }
.roi-input-group { margin-bottom: 24px; }
.roi-label { display: block; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 8px; }
.roi-input, .roi-select { width: 100%; padding: 12px 16px; border: 1px solid var(--border-dark); border-radius: 8px; background: var(--panel); color: var(--white); font-size: 15px; box-sizing: border-box; font-family: inherit; transition: border-color 0.2s ease; }
.roi-input:focus, .roi-select:focus { border-color: var(--blue); outline: none; }
.roi-helper { font-size: 12px; color: var(--muted); margin-top: 6px; line-height: 1.5; }
.roi-results { background: var(--navy); border: 1px solid var(--border-dark); border-radius: 12px; padding: 32px; }
.roi-results-title { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); font-weight: 600; margin-bottom: 24px; }
.roi-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border-dark); }
.roi-row:last-of-type { border-bottom: none; }
.roi-row-label { font-size: 14px; color: var(--muted-light); }
.roi-row-value { font-size: 18px; font-weight: 700; color: var(--white); white-space: nowrap; }
.roi-row-value.green { color: var(--green); }
.roi-highlight { background: rgba(10,132,255,0.08); border-radius: 8px; padding: 14px; margin-top: 8px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.roi-highlight .roi-row-label { color: var(--blue); font-weight: 600; }
.roi-highlight .roi-row-value { font-size: 22px; font-weight: 800; }
.roi-license-note { font-size: 13px; font-style: italic; color: var(--muted); margin-top: 16px; }
.roi-disclaimer { font-size: 13px; font-style: italic; color: #4a6080; text-align: center; margin-top: 16px; }

/* ── Responsive for new sections ── */
@media (max-width: 1024px) {
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .problem-solution-grid { grid-template-columns: 1fr; }
  .roi-grid { grid-template-columns: 1fr; gap: 32px; }
  .roi-card { padding: 32px; }
  .trust-bar { justify-content: center; text-align: center; }
  .trust-items { gap: 28px; justify-content: center; }
}
@media (max-width: 600px) {
  .industry-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION RHYTHM OVERRIDES (v3 audit)
   ============================================================ */
/* Metrics / value strip — tighter band */
.value-strip { padding: 64px 0; }

/* AI Analytics — distinct dark shade so it differs from ROI above */
#analytics { background: var(--panel-2); }

/* Deployment — converted from dark to light; restyle its dark cards */
#deployment { background: var(--light); color: var(--panel); }
#deployment .deploy-card { background: var(--white); border-color: var(--border); }
#deployment .deploy-card:hover { box-shadow: var(--shadow-card); }
#deployment .deploy-card h3 { color: var(--panel); }
#deployment .deploy-desc { color: var(--muted); }
#deployment .feat-list li { color: var(--muted); }
#deployment .on-request { color: var(--muted); }

/* ============================================================
   GLOBAL CONSISTENCY OVERRIDES
   ============================================================ */

/* Standardize all section H2 headings centered */
section h2 { text-align: center; }

/* Exception: hero H1 stays left-aligned */
.hero h1, #hero h1, .hero-section h1 { text-align: left; }

/* Standardize card transitions */
.industry-card, .pricing-card, .feature-card,
.problem-card, .sol-card, .scenario-card,
.deploy-card, .model-card, .gov-card, .value-card, .step {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Remove orphaned button-size rule (no longer used) */
.btn-sm { font-size: 14px; }
