/* ===========================================
   Orbric Premium Landing Page Styles
   =========================================== */

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

:root {
  --bg: #090A17;
  --surface: #13162A;
  --card: #1A1F38;
  --card-hover: #202645;
  --border: rgba(122, 90, 248, 0.18);
  --border-light: rgba(255, 255, 255, 0.06);
  --primary: #7A5AF8;
  --primary-light: #9B7EFB;
  --primary-dark: #5B3EE0;
  --accent: #22D3EE;
  --accent-dark: #0EB6D2;
  --success: #22C55E;
  --warning: #F59E0B;
  --danger: #EF4444;
  --text-primary: #F3F5FF;
  --text-secondary: #A7B0D6;
  --text-muted: #586283;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --shadow-glow: 0 0 40px rgba(122, 90, 248, 0.25), 0 0 80px rgba(122, 90, 248, 0.1);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.legal-page-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(122, 90, 248, 0.2), transparent 35%),
    linear-gradient(180deg, #090A17 0%, #0F1224 100%);
}

h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  line-height: 1.2;
}

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

img {
  max-width: 100%;
  height: auto;
}

#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.25;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.legal-page {
  padding: 80px 0;
}

.legal-container {
  max-width: 900px;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.legal-back:hover {
  color: var(--text-primary);
}

.legal-card {
  background: rgba(19, 22, 42, 0.88);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.legal-title {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 12px;
}

.legal-updated {
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.legal-section + .legal-section {
  margin-top: 28px;
}

.legal-section h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.legal-section p {
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.legal-section a {
  color: var(--accent);
}

/* --- TYPOGRAPHY UTILITIES --- */
@keyframes reveal-letter-blur {
  0% {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
  }
}

.animate-letter {
  display: inline-block;
  opacity: 0;
}

.in-view .animate-letter {
  animation: reveal-letter-blur 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.word-wrapper {
  display: inline-block;
  margin-right: 0.25em;
  white-space: nowrap;
}

.grad-text {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 24px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 1.7;
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(122, 90, 248, 0.4);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(122, 90, 248, 0.6);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  transform: translateY(-2px);
  background: rgba(122, 90, 248, 0.08);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: transparent;
  color: var(--text-secondary);
  border: none;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(9, 10, 23, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}

/* Make header logo look bigger without increasing header height */
.header .logo-icon {
  transform: scale(1.8);
  transform-origin: left center;
}

.footer-brand .logo-icon {
  transform: scale(1.8);
  transform-origin: left center;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
}

.logo-mark-sm {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  margin-right: 6px;
  vertical-align: middle;
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links a {
  padding: 8px 14px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.mobile-menu-btn span {
  display: block;
  height: 1.5px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- HERO --- */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(122, 90, 248, 0.35) 0%, transparent 70%);
  top: -150px;
  right: -100px;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.2) 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
  animation-delay: -4s;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.7;
  }

  33% {
    transform: scale(1.1) translate(20px, -20px);
    opacity: 1;
  }

  66% {
    transform: scale(0.9) translate(-10px, 10px);
    opacity: 0.6;
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(122, 90, 248, 0.12);
  border: 1px solid rgba(122, 90, 248, 0.3);
  border-radius: 40px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-headline {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  backdrop-filter: blur(4px);
}

.chip-icon {
  font-size: 14px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* --- DASHBOARD MOCK --- */
.hero-right {
  position: relative;
}

.dashboard-mock {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  animation: float 7s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.02);
}

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

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

.mock-dots span:nth-child(1) {
  background: #ef4444;
}

.mock-dots span:nth-child(2) {
  background: #f59e0b;
}

.mock-dots span:nth-child(3) {
  background: #22c55e;
}

.mock-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  flex: 1;
}

.mock-meta {
  font-size: 11px;
  font-weight: 600;
  color: var(--success);
  padding: 2px 8px;
  background: rgba(34, 197, 94, 0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}

.mock-body {
  padding: 16px;
}

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

.kpi-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
}

.kpi-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.kpi-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}

.kpi-trend {
  font-size: 10px;
  margin-top: 4px;
}

.kpi-trend.up {
  color: var(--success);
}

.kpi-trend.neutral {
  color: var(--text-muted);
}

.mock-task-header {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mock-task {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.025);
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.mock-task:hover {
  background: rgba(255, 255, 255, 0.05);
}

.task-info {
  flex: 1;
  min-width: 0;
}

.task-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.task-meta {
  font-size: 11px;
  color: var(--text-muted);
}

.task-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.task-status-dot.approved {
  background: var(--success);
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
}

.task-status-dot.review {
  background: var(--warning);
  box-shadow: 0 0 6px rgba(245, 158, 11, 0.6);
}

.task-status-dot.progress {
  background: var(--accent);
  box-shadow: 0 0 6px rgba(34, 211, 238, 0.6);
}

.task-status-dot.draft {
  background: var(--text-muted);
}

.task-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}

.task-badge.approved {
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
}

.task-badge.review {
  background: rgba(245, 158, 11, 0.15);
  color: var(--warning);
}

.task-badge.progress {
  background: rgba(34, 211, 238, 0.15);
  color: var(--accent);
}

.task-badge.draft {
  background: rgba(88, 98, 131, 0.2);
  color: var(--text-muted);
}

/* Floating notification cards */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(19, 22, 42, 0.92);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  max-width: 260px;
}

.float-icon-wrap {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 10px;
  color: var(--success);
  flex-shrink: 0;
}

.float-a {
  bottom: -20px;
  left: -50px;
  animation: floatB 8s ease-in-out infinite;
}

.float-b {
  top: 30px;
  right: -40px;
  animation: floatB 8s ease-in-out infinite 2s;
}

@keyframes floatB {

  0%,
  100% {
    transform: translateY(0px) rotate(-1deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

.float-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.float-text {
  flex: 1;
}

.float-text strong {
  display: block;
  font-size: 13px;
  color: var(--text-primary);
}

.float-text span {
  font-size: 11px;
  color: var(--text-secondary);
}

/* --- FOUNDING AGENCIES STRIP --- */
.founding-strip {
  padding: 72px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.founding-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(122, 90, 248, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.founding-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* Left */
.founding-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-light);
  background: rgba(122, 90, 248, 0.1);
  border: 1px solid rgba(122, 90, 248, 0.25);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.founding-left h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 16px;
}

.founding-left p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Right */
.founding-perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.perk-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(122, 90, 248, 0.1);
  border: 1px solid rgba(122, 90, 248, 0.2);
  border-radius: 10px;
  color: var(--primary-light);
  flex-shrink: 0;
}

.perk-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.perk-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.founding-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.founding-spots {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.founding-spots strong {
  color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 900px) {
  .founding-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}



/* --- PROBLEM SECTION --- */
.problem-section {
  padding: 100px 0;
}

.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Left: Big statement */
.problem-statement .section-label {
  margin-bottom: 16px;
}

.problem-statement h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.problem-lead {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.problem-stat-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.prob-stat {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(239, 68, 68, 0.05);
  border-left: 3px solid rgba(239, 68, 68, 0.5);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.prob-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--danger);
  line-height: 1;
  flex-shrink: 0;
}

.prob-label {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-top: 4px;
}

/* Right: Raw pain list */
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-light);
}

.pain-item {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition);
}

.pain-item:hover {
  background: rgba(255, 255, 255, 0.015);
}

.pain-bar {
  width: 3px;
  flex-shrink: 0;
  background: var(--border-light);
  transition: background var(--transition);
  border-radius: 0;
  margin: 0 0 0 0;
}

.pain-item:hover .pain-bar {
  background: var(--primary);
}

.pain-content {
  padding: 24px 0 24px 24px;
  flex: 1;
}

.pain-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.pain-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.pain-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- WORKFLOW - ALTERNATING TIMELINE --- */
.workflow-section {
  padding: 100px 0;
}

.workflow-timeline {
  margin-top: 64px;
}

.wf-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 40px 0;
}

.wf-step-right .wf-step-visual {
  order: 0;
}

.wf-step-right .wf-step-content {
  order: 1;
}

.wf-step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.wf-step-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.wf-step-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.wf-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wf-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.wf-checklist li svg {
  color: var(--success);
  flex-shrink: 0;
}

/* Step visual card */
.wf-visual-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.wf-visual-card:hover {
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(122, 90, 248, 0.2);
}

.wf-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Brief form-style fields */
.wf-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  gap: 16px;
}

.wf-field:last-child {
  border-bottom: none;
}

.wf-field-key {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  flex-shrink: 0;
}

.wf-field-val {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: right;
}

.wf-field-val.due-warning {
  color: var(--warning);
}

/* Assignee rows */
.wf-assignee {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.wf-assignee:last-child {
  border-bottom: none;
}

.assignee-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.av-blue {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.av-purple {
  background: rgba(122, 90, 248, 0.2);
  color: var(--primary-light);
}

.av-teal {
  background: rgba(34, 211, 238, 0.2);
  color: var(--accent);
}

.assignee-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.assignee-task {
  font-size: 11px;
  color: var(--text-muted);
}

/* Approval chain */
.approval-stage {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.approval-stage:last-child {
  border-bottom: none;
}

.approval-stage.done svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 1px;
}

.approval-stage.active svg {
  color: var(--warning);
  flex-shrink: 0;
  margin-top: 1px;
}

.ap-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.ap-meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Delivery summary */
.delivery-summary {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.del-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  gap: 12px;
}

.del-row:last-child {
  border-bottom: none;
}

.del-key {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  flex-shrink: 0;
}

.del-val {
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
  text-align: right;
}

.del-val.sla-ok {
  color: var(--success);
}

.del-val.audit-link {
  color: var(--primary-light);
  cursor: pointer;
}

/* Divider between steps */
.wf-divider {
  display: flex;
  justify-content: center;
  padding: 4px 0;
}

.wf-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(122, 90, 248, 0.5) 0%, rgba(34, 211, 238, 0.3) 100%);
}

/* Responsive */
@media (max-width: 1024px) {
  .problem-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .wf-step {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .wf-step-right .wf-step-visual {
    order: 1;
  }

  .wf-step-right .wf-step-content {
    order: 0;
  }

  .wf-step-num {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .prob-num {
    font-size: 28px;
  }

  .prob-stat {
    gap: 14px;
    padding: 16px 18px;
  }
}


/* --- FEATURES --- */
.features-section {
  padding: 100px 0;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
  margin-top: 56px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: left;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}

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

.feature-card:hover::before {
  opacity: 1;
}

.feature-large {
  grid-column: span 2;
}

.feat-icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(122, 90, 248, 0.08);
  border: 1px solid rgba(122, 90, 248, 0.16);
  border-radius: 12px;
  margin-bottom: 18px;
  color: var(--primary-light);
}

/* Inline feature check icons */
.feat-icon-inline {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.feat-icon-inline.ok {
  color: var(--success);
}

.feat-icon-inline.in-progress {
  color: var(--warning);
}

.feat-icon-inline.muted {
  color: var(--text-muted);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.feat-tags {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.feat-tags span {
  font-size: 12px;
  padding: 4px 10px;
  background: rgba(122, 90, 248, 0.1);
  border: 1px solid rgba(122, 90, 248, 0.25);
  border-radius: 6px;
  color: var(--primary-light);
  font-weight: 500;
}

/* --- BENTO FEATURE ROWS --- */
.feat-row-hero {
  margin-top: 56px;
}

.feat-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.feat-row-three {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

/* Hero feature card: icon+text on left, board mock on right */
.feat-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px 40px;
}

.feat-hero-left .feat-icon-wrap {
  margin-bottom: 20px;
}

.feat-hero-left h3 {
  font-size: 22px;
}

.feat-hero-left p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Mini campaign board mock inside hero card */
.feat-mini-board {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 13px;
}

.mini-board-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 0.7fr;
  gap: 8px;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.2s ease;
}

.mini-board-row:last-child {
  border-bottom: none;
}

.mini-board-row:not(.header-row):hover {
  background: rgba(255, 255, 255, 0.025);
}

.mini-board-row.header-row {
  background: rgba(255, 255, 255, 0.03);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 16px;
}

.mini-board-row span:first-child {
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-board-row span:nth-child(2) {
  color: var(--text-secondary);
  font-size: 12px;
}

.status-chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 5px;
  white-space: nowrap;
}

.status-chip.approved {
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
}

.status-chip.review {
  background: rgba(245, 158, 11, 0.15);
  color: var(--warning);
}

.status-chip.progress {
  background: rgba(34, 211, 238, 0.15);
  color: var(--accent);
}

.status-chip.draft {
  background: rgba(88, 98, 131, 0.15);
  color: var(--text-muted);
}

.due-date {
  font-size: 12px;
  color: var(--text-secondary);
}

.due-date.overdue {
  color: var(--danger);
  font-weight: 600;
}

/* Responsive for bento grid */
@media (max-width: 1024px) {
  .feat-hero {
    grid-template-columns: 1fr;
  }

  .feat-hero-right {
    display: none;
  }

  .feat-row-two {
    grid-template-columns: 1fr;
  }

  .feat-row-three {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .feat-row-three {
    grid-template-columns: 1fr;
  }

  .feat-hero {
    padding: 28px;
  }
}


/* --- COMPARISON / QUESTIONS CAROUSEL --- */
.comparison-section {
  padding: 100px 0;
  text-align: center;
}

.section-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* Carousel wrapper */
.q-carousel {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: left;
}

/* Slide track — clips the slides */
.q-track {
  position: relative;
  min-height: 340px;
}

/* Individual slide */
.q-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.q-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  position: relative;
}

/* Left pane — the question */
.q-slide-left {
  padding: 48px 48px 40px;
  border-right: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.q-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-light);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.q-num span {
  color: var(--text-muted);
  font-weight: 400;
}

.q-quote {
  font-size: 80px;
  font-weight: 900;
  line-height: 0.8;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
  font-family: Georgia, serif;
}

.q-question {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.45;
  flex: 1;
  margin: 12px 0 24px;
}

.q-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-light);
  background: rgba(122, 90, 248, 0.08);
  border: 1px solid rgba(122, 90, 248, 0.2);
  padding: 5px 12px;
  border-radius: 6px;
  align-self: flex-start;
}

/* Right pane — the answer */
.q-slide-right {
  padding: 48px 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.q-ans {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.q-ans-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--success);
  padding: 14px 18px;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-md);
}

.q-ans-note svg {
  flex-shrink: 0;
}

/* Controls bar */
.q-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-top: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.015);
}

.q-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(122, 90, 248, 0.08);
  border: 1px solid rgba(122, 90, 248, 0.2);
  border-radius: 50%;
  color: var(--primary-light);
  cursor: pointer;
  transition: var(--transition);
}

.q-btn:hover {
  background: rgba(122, 90, 248, 0.18);
  border-color: var(--primary);
}

.q-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.q-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.q-dot.active {
  background: var(--primary);
  width: 22px;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 900px) {
  .q-slide {
    grid-template-columns: 1fr;
  }

  .q-slide-left {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 32px 28px 24px;
  }

  .q-slide-right {
    padding: 24px 28px 32px;
    justify-content: flex-start;
  }

  .q-question {
    font-size: 18px;
  }

  .q-track {
    min-height: unset;
  }
}

@media (max-width: 600px) {

  .q-slide-left,
  .q-slide-right {
    padding: 24px 20px;
  }

  .q-controls {
    padding: 16px 20px;
  }

  .q-question {
    font-size: 16px;
  }

  .q-ans {
    font-size: 15px;
  }
}




/* --- INTEGRATIONS --- */
.integrations-section {
  padding: 100px 0;
  text-align: center;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.integration-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.integration-card:hover {
  transform: translateY(-2px);
  border-color: var(--border);
}

.integration-logo {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.integration-info {
  text-align: left;
}

.integration-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.integration-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}

.live-badge {
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
}

.beta-badge {
  background: rgba(245, 158, 11, 0.15);
  color: var(--warning);
}

.coming-badge {
  background: rgba(88, 98, 131, 0.15);
  color: var(--text-muted);
}

.integration-note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --- MOBILE SECTION --- */
.mobile-section {
  padding: 100px 0;
}

.mobile-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mobile-left h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.mobile-left p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}

.mobile-features {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
}

.mobile-feat em {
  font-style: normal;
  color: var(--text-muted);
  font-size: 13px;
}

/* legacy — replaced by feat-icon-inline */

.phone-mock {
  width: 280px;
  margin: 0 auto;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 40px;
  padding: 16px;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  animation: float 7s ease-in-out infinite 1s;
}

.phone-screen {
  background: var(--bg);
  border-radius: 28px;
  overflow: hidden;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
  border-bottom: 1px solid var(--border-light);
}

.phone-notch {
  width: 60px;
  height: 6px;
  background: var(--card);
  border-radius: 4px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.phone-body {
  padding: 14px;
}

.phone-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.phone-task {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--surface);
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
}

.phone-notif {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  background: rgba(122, 90, 248, 0.1);
  border: 1px solid rgba(122, 90, 248, 0.3);
  border-radius: var(--radius-md);
  font-size: 11px;
}

.phone-notif strong {
  display: block;
  font-size: 12px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.phone-notif p {
  color: var(--text-secondary);
}

/* --- PRICING --- */
.pricing-section {
  padding: 100px 0;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  align-items: start;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  text-align: left;
  transition: var(--transition);
  position: relative;
}

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

.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 40px rgba(122, 90, 248, 0.2);
  background: linear-gradient(160deg, rgba(122, 90, 248, 0.12) 0%, var(--card) 60%);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.plan-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 8px;
}

.plan-period {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
}

.plan-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.feat-muted {
  color: var(--text-muted);
}

/* --- FAQ --- */
.faq-section {
  padding: 100px 0;
  text-align: center;
}

.faq-list {
  max-width: 720px;
  margin: 56px auto 0;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-light);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  gap: 16px;
  user-select: none;
}

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

.faq-item summary::after {
  content: '+';
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item[open] summary::after {
  content: '−';
  color: var(--primary);
}

.faq-item[open] summary {
  color: var(--primary-light);
}

.faq-answer {
  padding-bottom: 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* --- FINAL CTA --- */
.final-cta {
  padding: 100px 0;
}

.cta-inner {
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(122, 90, 248, 0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-inner h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  max-width: 700px;
  margin: 16px auto 20px;
}

.cta-inner p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- FOOTER --- */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-light);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 56px;
}

.footer-brand .logo {
  margin-bottom: 14px;
  display: inline-flex;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 240px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--text-primary);
  border-color: var(--border);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-link-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.footer-link-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-link-col a:hover {
  color: var(--text-secondary);
}

.small-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--warning);
  vertical-align: middle;
  margin-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--text-secondary);
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.reveal-delay.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-sub {
    max-width: 560px;
  }

  .hero-right {
    display: none;
  }

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

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

  .feature-large {
    grid-column: span 2;
  }

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

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

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

  .mobile-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(9, 10, 23, 0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border-light);
    z-index: 999;
  }

  .nav-links.open+.nav-actions {
    display: flex;
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    flex-direction: column;
    z-index: 999;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .workflow-steps {
    flex-direction: column;
    align-items: stretch;
  }

  .workflow-connector {
    display: none;
  }

  .workflow-step {
    max-width: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-large {
    grid-column: span 1;
  }

  .integrations-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-inner {
    padding: 48px 24px;
  }

  .comparison-table thead th,
  .comparison-table td {
    padding: 14px 16px;
    font-size: 13px;
  }
}
