/* ==========================================================================
   Hileadia — Landing Page Styles
   ========================================================================== */

:root {
  --navy-950: #0a0c1f;
  --navy-900: #12142c;
  --navy-800: #1a1d3d;
  --navy-700: #242752;
  --navy-600: #32356a;

  --purple: #7c5cfc;
  --purple-dark: #6743f0;
  --blue: #4f8dff;
  --blue-light: #6fa3ff;

  --gradient-brand: linear-gradient(135deg, #8b6bff 0%, #4f8dff 100%);

  --text-white: #f6f6fc;
  --text-muted-dark: #a6aad0;

  --bg-light: #f6f7fc;
  --bg-white: #ffffff;
  --text-dark: #161830;
  --text-muted-light: #676b93;
  --border-light: #e7e9f7;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --shadow-soft: 0 20px 50px -20px rgba(30, 25, 90, 0.18);
  --shadow-card: 0 2px 10px rgba(20, 20, 60, 0.05);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 90px; }

body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; }
p { margin: 0; line-height: 1.6; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 12px;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn-sm { padding: 9px 18px; font-size: 0.9rem; }
.btn-md { padding: 12px 24px; font-size: 0.95rem; }
.btn-lg { padding: 15px 30px; font-size: 1rem; }

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(124, 92, 252, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(124, 92, 252, 0.65); }

.btn-ghost {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }

.btn-outline {
  background: transparent;
  color: var(--purple-dark);
  border-color: var(--border-light);
}
.btn-outline:hover { border-color: var(--purple); background: rgba(124, 92, 252, 0.06); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 12, 31, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 28px;
  width: auto;
  display: block;
}
.header-inner .logo-img {
  height: 45px;
}
.footer-brand .logo-img {
  height: 24px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--text-white); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn-ghost { color: var(--text-muted-dark); border-color: rgba(255,255,255,0.18); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span { width: 16px; height: 2px; background: #fff; margin: 0 auto; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy-950);
  overflow: hidden;
  padding: 100px 0 0;
}
.hero-glow {
  position: absolute;
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 640px;
  background: radial-gradient(closest-side, rgba(124, 92, 252, 0.28), rgba(79, 141, 255, 0.14) 45%, transparent 72%);
  filter: blur(20px);
  pointer-events: none;
}

/* ---------- Hero top: copy + light beam side-by-side ---------- */
.hero-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.hero-copy {
  flex: 1 1 480px;
  max-width: 600px;
  padding-top: 8px;
}
.eyebrow {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 10px;
  background: #a855f7;
  border: 1px solid rgba(255,255,255,0.14);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero h1 {
  color: var(--text-white);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.14;
  margin-bottom: 22px;
}
.hero-sub {
  color: var(--text-muted-dark);
  font-size: 1.08rem;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trial-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-muted-dark);
}

/* ---------- Hero light beam (right column, beside the copy) ---------- */
.hero-beam-wrap {
  flex: 0 0 auto;
  width: clamp(260px, 30vw, 400px);
  height: 610px;
  pointer-events: none;
  margin-top: -40px;
  animation: beam-pulse 5s ease-in-out infinite;
}
.hero-beam { width: 100%; height: 100%; display: block; overflow: visible; }

.beam-pool { animation: beam-pulse 4s ease-in-out infinite; }

/* additive-light group: overlapping tendrils brighten each other, like real light */
.beam-additive { mix-blend-mode: screen; }

.beam-tendril {
  fill: none;
  stroke: url(#tendrilGrad);
  stroke-linecap: round;
}
.beam-tendril.wide { stroke-width: 58; opacity: .72; }
.beam-tendril.mid  { stroke-width: 38; opacity: .88; }
.beam-tendril.core { stroke-width: 20; opacity: 1; }

.beam-stray {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
  opacity: .55;
}

.beam-hotspot { animation: beam-pulse 3.4s ease-in-out infinite; }

.beam-spark {
  animation: beam-travel 3.2s linear infinite;
}

.beam-dot {
  fill: #f3e8ff;
  animation: beam-twinkle 3.4s ease-in-out infinite;
}

@keyframes beam-travel {
  0%   { transform: translateY(0);    opacity: 0; }
  8%   { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateY(590px); opacity: 0; }
}
@keyframes beam-pulse {
  0%, 100% { opacity: .8; }
  50%      { opacity: 1; }
}
@keyframes beam-twinkle {
  0%, 100% { opacity: .15; }
  50%      { opacity: .95; }
}

/* ---------- Hero screenshot: wedges + hotspot wrapping the frame ---------- */
.hero-shot-container {
  position: relative;
  z-index: 2;
  margin-top: -80px;
  padding-bottom: 0;
}
.hero-shot-wrap {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

/* triangular light wedges hugging the sides of the screenshot: /|SS|\ */
.hero-light-wedges {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
  mix-blend-mode: screen;
}
.wedge {
  position: absolute;
  top: 0;
  width: 1100px;
  height: 1100px;
  filter: blur(25px);
}
.wedge-left {
  left: 0;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 158deg at 50% 50%,
    transparent 0deg,
    rgba(168,85,247,.5) 18deg,
    rgba(224,196,255,.9) 32deg,
    rgba(168,85,247,.5) 46deg,
    transparent 64deg,
    transparent 360deg
  );
}
.wedge-right {
  right: 0;
  transform: translate(50%, -50%);
  background: conic-gradient(from 138deg at 50% 50%,
    transparent 0deg,
    rgba(168,85,247,.5) 18deg,
    rgba(224,196,255,.9) 32deg,
    rgba(168,85,247,.5) 46deg,
    transparent 64deg,
    transparent 360deg
  );
}

.wedge-pool {
  position: absolute;
  bottom: -8%;
  width: 380px;
  height: 260px;
  border-radius: 50%;
  filter: blur(34px);
  background: radial-gradient(closest-side, rgba(255,255,255,.95), rgba(192,132,252,.8) 40%, rgba(147,51,234,.4) 65%, transparent 80%);
}
.wedge-pool-left  { left: -10%; }
.wedge-pool-right { right: -10%; }

/* glow scattering behind the screenshot where the light hits it */
.hero-light-hotspot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -42%);
  width: 72%;
  height: 300px;
  background: radial-gradient(closest-side, rgba(255,255,255,.95), rgba(192,132,252,.75) 38%, rgba(147,51,234,.35) 62%, transparent 80%);
  filter: blur(20px);
  z-index: 0;
  mix-blend-mode: screen;
  animation: beam-pulse 4s ease-in-out infinite;
}

/* ---------- Starfield scattered across the whole hero ---------- */
.hero-stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.star {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #e9d5ff;
  box-shadow: 0 0 4px 1px rgba(216,180,254,.6);
  animation: beam-twinkle var(--d, 3s) ease-in-out infinite;
  animation-delay: var(--dl, 0s);
}

.hero-shot-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--navy-800);
  border: 1px solid rgba(216,180,254,.4);
  border-bottom: none;
  padding: 10px;
  padding-bottom: 0;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(216,180,254,.22),
    0 0 60px 8px rgba(168,85,247,.4),
    0 0 130px 24px rgba(147,51,234,.28);
  animation: frame-pulse 4s ease-in-out infinite;
}
@keyframes frame-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(216,180,254,.22),
      0 0 60px 8px rgba(168,85,247,.34),
      0 0 130px 24px rgba(147,51,234,.22);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(216,180,254,.36),
      0 0 75px 12px rgba(168,85,247,.5),
      0 0 150px 30px rgba(147,51,234,.34);
  }
}
.browser-bar {
  display: flex;
  gap: 7px;
  padding: 10px 14px;
}
.browser-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.hero-shot-img {
  width: 100%;
  border-radius: 12px;
  display: block;
  border: 1px solid rgba(255,255,255,0.06);
}

/* ---------- Trusted ---------- */
.trusted { background: var(--bg-light); padding: 64px 0; }
.trusted-label {
  text-align: center;
  color: var(--text-dark);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 32px;
}
.trusted-logos {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.trusted-card {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 76px;
  padding: 12px 14px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.trusted-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.trusted-card img {
  height: 28px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: filter 0.2s ease;
}
.trusted-card:hover img { filter: grayscale(0) opacity(1); }

.trusted-card.is-featured {
  border-color: var(--purple);
  background: linear-gradient(180deg, rgba(139,107,255,0.07), rgba(79,141,255,0.04));
  box-shadow: 0 10px 26px -10px rgba(124,92,252,0.4);
}
.trusted-card.is-featured img { filter: none; height: 32px; }

/* ---------- Section heads ---------- */
.section-label {
  display: inline-block;
  color: var(--purple-dark);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-label-light { color: var(--blue-light); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); max-width: 480px; }
.section-desc { color: var(--text-muted-light); max-width: 380px; font-size: 1.02rem; }

.section-head-center { flex-direction: column; align-items: center; text-align: center; }
.section-head-center .section-desc { max-width: 520px; }

/* ---------- Features ---------- */
.features { padding: 100px 0; background: var(--bg-white); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  background: var(--bg-white);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(124,92,252,0.25);
}
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(139,107,255,0.12), rgba(79,141,255,0.12));
  color: var(--purple-dark);
  margin-bottom: 18px;
}
.feature-icon svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted-light); font-size: 0.95rem; }

/* ---------- Workflow / CRM ---------- */
.workflow { background: var(--bg-light); padding: 100px 0; }
.workflow-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.workflow-copy h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 6px 0 18px; }
.workflow-copy p { color: var(--text-muted-light); margin-bottom: 26px; font-size: 1.02rem; }

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.workflow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 26px 12px;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted-light);
  transition: all 0.2s ease;
}
.workflow-item.is-active {
  background: var(--bg-white);
  color: var(--text-dark);
  box-shadow: var(--shadow-soft);
}
.workflow-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124,92,252,0.08);
  color: var(--text-muted-light);
}
.workflow-item.is-active .workflow-icon {
  background: var(--gradient-brand);
  color: #fff;
}
.workflow-icon svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- CRM mockup screenshot ---------- */
.crm-shot-container { margin-top: 56px; }
.crm-shot-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  background: var(--navy-800);
  border: 1px solid var(--border-light);
  padding: 10px;
  box-shadow: var(--shadow-soft);
}
.crm-mock-scroll { overflow-x: auto; border-radius: 12px; }
.crm-mock {
  display: flex;
  min-width: 920px;
  height: 560px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-white);
}

.crm-mock-sidebar {
  flex: 0 0 200px;
  background: var(--navy-900);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.crm-mock-logo-img { height: 20px; width: auto; }
.crm-mock-user { display: flex; align-items: center; gap: 10px; }
.crm-mock-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff; font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.crm-mock-user-info { display: flex; flex-direction: column; line-height: 1.3; overflow: hidden; }
.crm-mock-user-info strong { color: var(--text-white); font-size: 0.8rem; }
.crm-mock-user-info small { color: var(--text-muted-dark); font-size: 0.68rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.crm-mock-toggle {
  display: flex; background: rgba(255,255,255,0.06); border-radius: 8px; padding: 3px;
}
.crm-mock-toggle span {
  flex: 1; text-align: center; padding: 6px 0; font-size: 0.72rem; font-weight: 600;
  color: var(--text-muted-dark); border-radius: 6px;
}
.crm-mock-toggle span.is-active { background: var(--gradient-brand); color: #fff; }
.crm-mock-nav { display: flex; flex-direction: column; gap: 2px; }
.crm-mock-nav a {
  padding: 8px 10px; border-radius: 7px; font-size: 0.76rem; font-weight: 500;
  color: var(--text-muted-dark);
}
.crm-mock-nav a.is-active { background: var(--purple); color: #fff; }

.crm-mock-contacts {
  flex: 0 0 300px;
  border-right: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.crm-mock-contacts-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 1px solid var(--border-light);
  flex-shrink: 0;
}
.crm-mock-search {
  font-size: 0.78rem; color: var(--text-muted-light);
  background: var(--bg-light); border-radius: 8px; padding: 7px 12px;
  flex: 1; margin-right: 10px;
}
.crm-mock-count { font-size: 0.7rem; color: var(--text-muted-light); white-space: nowrap; font-weight: 600; }
.crm-contact-list { overflow-y: auto; flex: 1; min-height: 0; }
.crm-contact {
  display: flex; gap: 10px; padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  cursor: default;
}
.crm-contact.is-active { background: rgba(124,92,252,0.06); }
.crm-contact-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy-700); color: #fff; font-size: 0.68rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.crm-contact-body { flex: 1; min-width: 0; }
.crm-contact-top { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.crm-contact-top strong { font-size: 0.83rem; color: var(--text-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.crm-contact-time { font-size: 0.66rem; color: var(--text-muted-light); flex-shrink: 0; }
.crm-contact-preview {
  font-size: 0.76rem; color: var(--text-muted-light); margin: 3px 0 6px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.stage-tag {
  display: inline-block; font-size: 0.64rem; font-weight: 700; padding: 3px 9px;
  border-radius: 999px; color: var(--stage-color, var(--purple));
  background: color-mix(in srgb, var(--stage-color, var(--purple)) 14%, transparent);
}

.crm-mock-chat { flex: 1; display: flex; flex-direction: column; background: var(--bg-light); min-width: 0; }
.crm-mock-chat-head {
  display: flex; align-items: center; gap: 10px; padding: 14px 20px;
  background: var(--bg-white); border-bottom: 1px solid var(--border-light); flex-shrink: 0;
}
.crm-mock-chat-head strong { font-size: 0.9rem; color: var(--text-dark); }
.crm-mock-messages {
  flex: 1; overflow-y: auto; padding: 18px 20px; display: flex; flex-direction: column; gap: 10px;
}
.crm-msg { max-width: 68%; padding: 9px 13px; border-radius: 12px; font-size: 0.8rem; line-height: 1.4; }
.crm-msg p { margin: 0 0 4px; }
.crm-msg span { font-size: 0.62rem; opacity: .65; }
.crm-msg-client { align-self: flex-start; background: var(--bg-white); color: var(--text-dark); border-bottom-left-radius: 3px; }
.crm-msg-agent { align-self: flex-end; background: var(--gradient-brand); color: #fff; border-bottom-right-radius: 3px; }
.crm-mock-input {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; background: var(--bg-white); border-top: 1px solid var(--border-light); flex-shrink: 0;
}
.crm-mock-input span:first-child { font-size: 0.8rem; color: var(--text-muted-light); }
.crm-send { font-size: 0.78rem; font-weight: 700; color: var(--purple-dark); }

/* ---------- Revenue (dark) ---------- */
.revenue { background: var(--navy-950); padding: 100px 0; color: var(--text-white); }
.revenue-top {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.revenue-copy h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 6px 0 18px; line-height: 1.2; }
.revenue-copy p { color: var(--text-muted-dark); font-size: 1.02rem; }

.revenue-shot-frame {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.6);
}
.revenue-shot-glow {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(79,141,255,0.5), rgba(124,92,252,0));
  z-index: -1;
  filter: blur(26px);
  opacity: 0.7;
}
.revenue-shot-img { width: 100%; border-radius: 10px; border: 1px solid rgba(255,255,255,0.06); }

.revenue-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 44px;
}
.revenue-feature { display: flex; gap: 16px; }
.revenue-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
}
.revenue-icon svg { width: 21px; height: 21px; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.revenue-feature h4 { font-size: 1rem; margin-bottom: 6px; color: var(--text-white); }
.revenue-feature p { color: var(--text-muted-dark); font-size: 0.92rem; }

/* ---------- Pricing ---------- */
.pricing { padding: 100px 0; background: var(--bg-white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  position: relative;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
}
.price-card.is-popular {
  border-color: transparent;
  background: var(--navy-950);
  color: var(--text-white);
  transform: scale(1.03);
  box-shadow: 0 30px 60px -25px rgba(30,20,80,0.4);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.price-desc { color: var(--text-muted-light); font-size: 0.92rem; margin-bottom: 18px; min-height: 42px; }
.price-card.is-popular .price-desc { color: var(--text-muted-dark); }
.price-tag { font-size: 1.15rem; font-weight: 700; margin-bottom: 22px; }
.price-features { margin-bottom: 28px; flex: 1; }
.price-features li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 0.94rem;
  color: var(--text-muted-light);
}
.price-card.is-popular .price-features li { color: var(--text-muted-dark); }
.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(124,92,252,0.14);
}
.price-features li::after {
  content: "";
  position: absolute;
  left: 4.5px;
  top: 8px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--purple);
  border-bottom: 2px solid var(--purple);
  transform: rotate(-45deg);
}
.price-card.is-popular .price-features li::before { background: rgba(255,255,255,0.12); }
.price-card.is-popular .price-features li::after { border-color: var(--blue-light); }
.price-card .btn { width: 100%; }
.price-card.is-popular .btn-outline { color: var(--text-white); border-color: rgba(255,255,255,0.25); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  background: var(--navy-950);
  padding: 110px 0;
  overflow: hidden;
  text-align: center;
}
.cta-glow {
  position: absolute;
  bottom: -260px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(closest-side, rgba(79, 141, 255, 0.4), rgba(124,92,252,0.2) 45%, transparent 75%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--text-white); font-size: clamp(1.8rem, 3.4vw, 2.6rem); max-width: 640px; margin: 0 auto 16px; }
.cta-banner p { color: var(--text-muted-dark); max-width: 480px; margin: 0 auto 34px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: var(--text-muted-dark); padding: 72px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { margin-top: 14px; font-size: 0.92rem; max-width: 260px; }
.footer-col h5 { color: var(--text-white); font-size: 0.9rem; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.92rem; margin-bottom: 12px; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--text-white); }
.footer-bottom { padding: 22px 0; }
.footer-bottom p { font-size: 0.85rem; text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--navy-900);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 12px 24px 20px;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 10px 0; width: 100%; }
  .nav-toggle { display: flex; }
  .header-inner .logo-img { height: 32px; }
  .hero-beam-wrap { display: none; }
  .hero-copy { max-width: 100%; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-top { justify-content: center; }
  .hero-shot-container { margin-top: 24px; }
  .workflow-inner, .revenue-top { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.is-popular { transform: none; order: -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .revenue-features { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .header-inner .logo-img { height: 26px; }
  .trusted-logos { justify-content: flex-start; }
  .feature-grid, .workflow-grid { grid-template-columns: 1fr 1fr; }
  .header-actions .btn-sm.btn-ghost { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
}

/* ---------- Legal pages (privacy policy, etc.) ---------- */
.legal-back {
  color: var(--text-muted-dark);
  font-size: 0.9rem;
  font-weight: 500;
}
.legal-back:hover { color: var(--text-white); }
.legal-page {
  background: var(--bg-white);
  padding: 140px 0 100px;
}
.legal-container { max-width: 760px; }
.legal-page h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin: 10px 0 6px;
  color: var(--text-dark);
}
.legal-updated {
  color: var(--text-muted-light);
  font-size: 0.9rem;
  margin-bottom: 36px;
}
.legal-page h2 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin: 40px 0 14px;
}
.legal-page p {
  color: var(--text-muted-light);
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-page ul {
  margin: 0 0 18px;
  padding-left: 22px;
}
.legal-page li {
  color: var(--text-muted-light);
  line-height: 1.7;
  margin-bottom: 10px;
  list-style: disc;
}
.legal-page strong { color: var(--text-dark); }
.legal-page a { color: var(--purple-dark); font-weight: 600; }
.legal-page a:hover { text-decoration: underline; }
