@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* Worklucent AI — High-Professional Enterprise SaaS Stylesheet */

:root {
  --navy: #0b0f19;
  --navy-alt: #131b2e;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-card: #ffffff;
  --border: #e2e8f0;
  --border-focus: #6366f1;
  --text: #0f172a;
  --text-muted: #475569;
  --primary: #4f46e5;
  --primary-2: #7c3aed;
  --primary-glow: rgba(99, 102, 241, 0.25);
  --primary-dark: #4338ca;
  --accent: #10b981;
  --danger: #ef4444;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.12);
  --max-width: 1536px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Outfit", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

:root[data-theme="dark"] {
  --navy: #07090e;
  --navy-alt: #0d111d;
  --bg: #090c15;
  --bg-alt: #0e1220;
  --bg-card: #141a29;
  --border: #1e2638;
  --border-focus: #818cf8;
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --primary: #6366f1;
  --primary-2: #a855f7;
  --primary-glow: rgba(168, 85, 247, 0.3);
  --primary-dark: #818cf8;
  --accent: #34d399;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.6);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.25s ease, color 0.25s ease;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.18;
  margin: 0 0 0.6em;
  letter-spacing: -0.015em;
  font-weight: 700;
}

p {
  margin: 0 0 1em;
  color: var(--text-muted);
}

.container {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(79, 70, 229, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.gradient-text {
  background: linear-gradient(120deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 10px 24px rgba(79, 70, 229, 0.32);
}

.btn-primary:hover {
  box-shadow: 0 14px 32px rgba(79, 70, 229, 0.42);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-light {
  background: #fff;
  color: var(--navy);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-light:hover {
  border-color: #fff;
}

.btn-block {
  width: 100%;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.btn-icon:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.btn-icon svg {
  width: 18px;
  height: 18px;
}

.btn-icon .icon-moon {
  display: none;
}

:root[data-theme="dark"] .btn-icon .icon-sun {
  display: none;
}

:root[data-theme="dark"] .btn-icon .icon-moon {
  display: block;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

:root[data-theme="dark"] .site-header.scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  flex-shrink: 0;
}

.brand .logo-badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.35);
}

.brand .logo-badge svg {
  width: 20px;
  height: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  position: relative;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s ease;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(120deg, var(--primary), var(--primary-2));
  transition: right 0.25s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  right: 0;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ---------- Page Hero (inner pages: About/Features/Pricing/Security/Contact) ----------
   Single definition - this used to be declared twice in this file (here, and again further
   down under "Page header (inner pages)"), with the later block overriding some but not all
   properties of this one. The two never agreed on centering: the later block added
   `margin: 0 auto` to .page-hero p but never to .page-hero h1, so the heading's own
   width-constrained box sat flush-left in a wide container (its text centered *within* that
   off-center box) while the paragraph below it centered correctly - a visible left-shift of
   the heading relative to the paragraph on any viewport wider than the h1's max-width. */

.page-hero {
  position: relative;
  padding: 72px 0 64px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: var(--text);
  max-width: 780px;
  margin: 0 auto 16px;
  text-wrap: balance;
}

.page-hero p {
  font-size: 1.18rem;
  max-width: 620px;
  line-height: 1.65;
  margin: 0 auto;
  text-wrap: balance;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-alt);
  padding: 100px 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  pointer-events: none;
  animation: float 14s ease-in-out infinite;
}

.hero-blob.one {
  width: 540px;
  height: 540px;
  top: -160px;
  left: -80px;
  background: radial-gradient(circle, var(--primary), transparent 70%);
}

.hero-blob.two {
  width: 480px;
  height: 480px;
  top: -60px;
  right: -100px;
  background: radial-gradient(circle, var(--primary-2), transparent 70%);
  animation-delay: -6s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, 30px) scale(1.06); }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1.25fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero h1 {
  font-size: clamp(2.8rem, 4.8vw, 4.2rem);
  color: var(--text);
  max-width: 100%;
  line-height: 1.1;
}

.hero-lede {
  font-size: 1.2rem;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Hero visual: mock dashboard card */

.hero-visual {
  position: relative;
  background: linear-gradient(165deg, var(--navy), var(--navy-alt));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.hero-visual .window-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}

.hero-visual .window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.hero-visual .window-dots .live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: auto;
  height: auto;
  background: none;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-visual .window-dots .live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.6);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(45, 212, 191, 0); }
  100% { box-shadow: 0 0 0 0 rgba(45, 212, 191, 0); }
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 14px;
  transition: background 0.2s ease;
}

.hero-stat .num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

.hero-stat .label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero-bars {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
}

.hero-bars i {
  flex: 1;
  background: linear-gradient(180deg, var(--accent), var(--primary));
  border-radius: 6px 6px 2px 2px;
  opacity: 0.9;
  transform-origin: bottom;
  animation: grow-bar 1s var(--ease) both;
}

@keyframes grow-bar {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.hero-float-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  box-shadow: var(--shadow);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float-badge 6s ease-in-out infinite;
}

.hero-float-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  flex-shrink: 0;
}

.hero-float-badge.badge-1 {
  top: -18px;
  right: 24px;
  animation-delay: -1s;
}

.hero-float-badge.badge-2 {
  bottom: -16px;
  left: -18px;
  animation-delay: -3s;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- Stat strip ---------- */

.stat-strip {
  padding: 0 0 32px;
}

.stat-strip .container {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-tile {
  text-align: center;
}

.stat-tile .stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text);
}

.stat-tile .stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---------- Sections ---------- */

section {
  padding: 96px 0;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text);
}

.alt-bg {
  background: var(--bg-alt);
}

/* ---------- Feature grid ---------- */

.grid {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border));
}

/* Generic icon badge for any .card variant (feature-card, value-card, ...) - without this, a
   card's <svg> (no explicit width/height attributes) falls back to the browser's default
   replaced-element size for SVG, 300x150px, and renders with no visible stroke - a large blank
   box, not a missing icon. .feature-card's own rule below is equal specificity but later in
   source order, so it still wins for feature-card elements exactly as before; this just gives
   every other .card variant (e.g. security.html's value-card icons) the same correct sizing.
   stroke: currentColor (rather than a hardcoded color) lets a card set its own icon color via
   e.g. style="color: var(--accent)" on the .icon div, instead of every icon being one flat hue. */
.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 16%, transparent), color-mix(in srgb, var(--primary-2) 16%, transparent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--primary);
}

.card .icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.feature-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 16%, transparent), color-mix(in srgb, var(--primary-2) 16%, transparent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-card .icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

.feature-card h3 {
  font-size: 1.12rem;
  color: var(--text);
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 8px;
}

.step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(79, 70, 229, 0.3);
}

.step h3 {
  color: var(--text);
  font-size: 1.1rem;
}

/* ---------- Compliance / trust list ---------- */

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text);
  padding: 14px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.check-list li:hover {
  background: var(--bg-alt);
}

.check-list svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  stroke: var(--accent);
}

/* ---------- CTA banner ---------- */

.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-alt));
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  text-align: center;
  color: #fff;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 80% at 50% 0%, rgba(124, 58, 237, 0.35), transparent 70%);
  pointer-events: none;
}

.cta-banner > * {
  position: relative;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin: 0 auto 28px;
}

.cta-banner .hero-actions {
  justify-content: center;
}

/* ---------- Pricing ---------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.price-card.featured::before {
  content: "Most popular";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, var(--primary), var(--primary-2));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.price-card h3 {
  color: var(--text);
  font-size: 1.2rem;
}

.price-card .price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.price-card .price small {
  font-family: var(--font);
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.price-card ul {
  margin: 22px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.price-card li {
  display: flex;
  gap: 10px;
  font-size: 0.92rem;
  align-items: flex-start;
}

.price-card li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--accent);
  margin-top: 2px;
}

/* ---------- FAQ ---------- */

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--primary);
  transition: transform 0.2s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 14px;
}

/* ---------- Forms ---------- */

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.16);
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.form-success {
  display: none;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #0f766e;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

:root[data-theme="dark"] .form-success {
  color: #5eead4;
}

.form-success.visible {
  display: block;
}

/* ---------- Contact info cards ---------- */

.info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-list .info-item {
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.info-list .info-item h3 {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 4px;
}

.info-list .info-item p {
  margin: 0;
  font-size: 0.92rem;
}

/* ---------- Legal pages ---------- */

.legal-doc h2 {
  color: var(--text);
  margin-top: 2em;
  font-size: 1.3rem;
}

.legal-doc h2:first-of-type {
  margin-top: 0;
}

.legal-doc p,
.legal-doc li {
  color: var(--text-muted);
}

.legal-doc ul {
  margin: 0 0 1em 1.2em;
  list-style: disc;
}

.legal-doc ul li {
  margin-bottom: 6px;
}

.legal-note {
  background: #fff7ed;
  background: color-mix(in srgb, #f97316 12%, var(--bg-card));
  border: 1px solid #fdba74;
  color: #9a3412;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

:root[data-theme="dark"] .legal-note {
  color: #fdba74;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* ---------- About values ---------- */

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  padding: 64px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand {
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- Back to top ---------- */

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, border-color 0.2s ease;
  z-index: 90;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .steps,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    row-gap: 32px;
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 18px;
    transform: translateY(-130%);
    transition: transform 0.2s ease;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta .btn-ghost {
    display: none;
  }

  .grid-3,
  .grid-2,
  .steps,
  .pricing-grid,
  .check-list,
  .value-grid,
  .form-row,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  section {
    padding: 64px 0;
  }

  .cta-banner {
    padding: 40px 24px;
  }

  .hero-float-badge {
    display: none;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }
}

/* ==========================================================================
   Worklucent Enterprise Components
   ========================================================================== */

/* ---------- Interactive Showcase Tabs Component ---------- */
.showcase-wrapper {
  margin-top: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.showcase-tabs-nav {
  display: flex;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}

.showcase-tabs-nav::-webkit-scrollbar {
  display: none;
}

.showcase-tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s var(--ease);
}

.showcase-tab-btn:hover {
  color: var(--text);
  background: rgba(99, 102, 241, 0.05);
}

.showcase-tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: var(--bg-card);
}

.showcase-tab-btn svg {
  width: 18px;
  height: 18px;
}

.showcase-content-area {
  padding: 32px;
}

.showcase-panel {
  display: none;
  animation: fadeIn 0.4s var(--ease);
}

.showcase-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.preview-mockup-window {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}

.preview-mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mockup-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.mockup-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
}

.preview-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.mockup-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.mockup-stat-val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

.mockup-stat-lbl {
  font-size: 0.82rem;
  color: #94a3b8;
  margin-top: 4px;
}

.app-usage-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.app-usage-name {
  width: 140px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #cbd5e1;
}

.app-usage-bar-track {
  flex: 1;
  height: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  overflow: hidden;
}

.app-usage-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  transition: width 1s var(--ease);
}

.app-usage-pct {
  width: 50px;
  text-align: right;
  font-size: 0.82rem;
  font-weight: 600;
  color: #94a3b8;
}

/* ---------- Interactive Pricing Calculator ---------- */
.pricing-calculator-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 48px;
}

.pricing-calc-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-calc-controls {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 680px;
  margin: 0 auto;
}

.seat-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.seat-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.seat-count-display {
  color: var(--primary);
  font-size: 1.4rem;
}

.seat-range-input {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: var(--border);
  outline: none;
  accent-color: var(--primary);
  cursor: pointer;
}

.billing-switch-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px;
  background: var(--bg-alt);
  border-radius: 999px;
  border: 1px solid var(--border);
}

.billing-opt {
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--text-muted);
}

.billing-opt.active {
  color: var(--text);
}

.billing-toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  background: var(--primary);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.billing-toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s var(--ease);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.billing-toggle-switch.annual .billing-toggle-knob {
  transform: translateX(22px);
}

.discount-tag {
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent);
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}

.pricing-estimate-output {
  margin-top: 24px;
  padding: 24px;
  background: rgba(79, 70, 229, 0.04);
  border: 1px solid rgba(79, 70, 229, 0.15);
  border-radius: var(--radius);
  text-align: center;
}

.estimate-price-val {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
}

.estimate-price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---------- FAQ Accordion Component ---------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 840px;
  margin: 40px auto 0;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s var(--ease);
  color: var(--primary);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Lead Capture / Book Demo Modal ---------- */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 15, 25, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.94) translateY(20px);
  transition: transform 0.3s var(--ease);
}

.modal-backdrop.open .modal-dialog {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.modal-header {
  padding: 32px 32px 16px;
}

.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.modal-body {
  padding: 0 32px 32px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

/* ---------- Toast Notification ---------- */
.toast-notification {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--navy);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 2000;
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-icon {
  color: #34d399;
}

/* ==========================================================================
   Hyper-Futuristic Enterprise SaaS Upgrades
   ========================================================================== */

/* ---------- Aurora Glow & Hero Enhancements ---------- */
.hero-aurora-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, rgba(99, 102, 241, 0.18) 40%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-glow {
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.45);
  animation: glowPulse 3s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.35); }
  100% { box-shadow: 0 0 38px rgba(168, 85, 247, 0.6); }
}

/* ---------- Ultra 3D Device Frame ---------- */
.hero-device-container {
  position: relative;
  perspective: 1200px;
}

.hero-device-frame {
  background: #0d111d;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.5), 0 0 40px rgba(99, 102, 241, 0.2);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.hero-device-frame:hover {
  transform: translateY(-6px) rotateX(1.5deg) rotateY(-1deg);
  box-shadow: 0 35px 80px -10px rgba(0, 0, 0, 0.6), 0 0 50px rgba(168, 85, 247, 0.35);
}

.device-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.device-dots {
  display: flex;
  gap: 6px;
}

.device-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.device-dots span:nth-child(1) { background: #ef4444; }
.device-dots span:nth-child(2) { background: #f59e0b; }
.device-dots span:nth-child(3) { background: #10b981; }

.device-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.04em;
}

.device-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #34d399;
  font-weight: 600;
}

.pulse-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px #34d399;
  animation: pulse-dot 2s infinite;
}

.hero-mockup-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Floating Telemetry Badges */
.float-badge-left {
  position: absolute;
  top: 18%;
  left: -28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatLeft 6s ease-in-out infinite alternate;
  z-index: 10;
}

.float-badge-right {
  position: absolute;
  bottom: 12%;
  right: -24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatRight 7s ease-in-out infinite alternate;
  z-index: 10;
}

@keyframes floatLeft {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

@keyframes floatRight {
  0% { transform: translateY(0); }
  100% { transform: translateY(14px); }
}

.badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-icon.green {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

.badge-icon.purple {
  background: rgba(168, 85, 247, 0.12);
  color: #a855f7;
}

.badge-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.badge-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---------- Trust Ticker Section ---------- */
.trust-ticker-section {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.ticker-label {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.brand-ticker-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  opacity: 0.75;
  transition: opacity 0.25s ease;
}

.ticker-item:hover {
  opacity: 1;
  color: var(--primary);
}

/* ---------- Showcase Split View ---------- */
.showcase-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: center;
}

.showcase-info h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.showcase-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
}

.bullet-item .check-icon {
  color: #10b981;
  font-weight: 800;
}

.showcase-feature-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

/* Privacy Boxes */
.privacy-card-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
  border-radius: 10px;
}

.privacy-title {
  color: #34d399;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.privacy-desc {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* High-Converting CTA Banner Section */
.cta-banner-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-alt));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-banner-section .cta-banner {
  background: transparent;
  padding: 0;
}

