/* LoricaVallo Marketing Light Theme
 * Clean SaaS design: 80% light surfaces, 20% dark accents
 * Uses design tokens from styles/theme.css
 */

:root {
  /* Neutrals */
  --bg: #F7F8FB;
  --surface: #FFFFFF;
  --surface-2: #F1F5F9;
  --text: #0B1220;
  --muted: #5B6475;
  --border: #E5E7EB;

  /* Brand */
  --primary: #2563EB;
  --primary-hover: #1D4ED8;
  --primary-contrast: #FFFFFF;

  /* Accent */
  --accent: #B8872F;
  --accent-2: #0F172A;

  /* States */
  --success: #16A34A;
  --warning: #F59E0B;
  --danger: #DC2626;

  /* Layout */
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  --shadow-soft: 0 6px 18px rgba(2, 6, 23, 0.06);
  --shadow-lg: 0 20px 50px rgba(2, 6, 23, 0.12);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVIGATION - Light with subtle border
   ============================================ */
.navbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), #D4A84B);
  color: #0F172A;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
}

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

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

.btn-primary {
  background: var(--primary);
  color: var(--primary-contrast);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-secondary,
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover,
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 17px;
  border-radius: 12px;
}

.btn-block {
  width: 100%;
}

.btn-white {
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.btn-white:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

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

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
}

/* ============================================
   HERO - Light with whitespace
   ============================================ */
.hero {
  background: var(--bg);
  padding: 80px 0 100px;
  text-align: center;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.hero-content {
  margin-bottom: 48px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-highlight {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 19px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 16px;
}

.hero-tagline {
  font-size: 17px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
}

.stat-divider {
  width: 1px;
  background: var(--border);
}

/* Hero Visual - hide complex mockups in light theme, show simple illustration */
.hero-visual {
  display: none;
}

/* ============================================
   COMPACT HERO LAYOUT (Vibemap-style)
   ============================================ */
.hero-compact {
  padding: 120px 0 60px;
  text-align: left;
}

.hero-compact .container {
  max-width: 1200px;
}

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

.hero-left {
  text-align: left;
}

.hero-left .hero-title {
  font-size: 42px;
  margin-bottom: 16px;
}

.hero-left .hero-subtitle {
  margin: 0 0 24px;
  max-width: 500px;
}

.hero-left .hero-cta {
  justify-content: flex-start;
  margin-bottom: 0;
}

/* Hero Badge (replaces urgency banner) */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #DC2626;
  margin-bottom: 20px;
}

.badge-urgent {
  font-size: 14px;
}

.badge-countdown {
  font-weight: 700;
  background: #DC2626;
  color: white;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 11px;
}

/* Inline Stats */
.hero-stats-inline {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.stat-inline {
  text-align: left;
}

.stat-inline .stat-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.stat-inline .stat-label {
  font-size: 13px;
  color: var(--muted);
}

/* Workflow Card (compact visual) */
.workflow-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.workflow-header {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.workflow-animation-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.workflow-animation-compact .workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.3;
  transition: all 0.4s ease;
}

.workflow-animation-compact .workflow-step.active {
  opacity: 1;
  transform: scale(1.1);
}

.workflow-animation-compact .workflow-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: var(--bg);
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.workflow-animation-compact .workflow-step.active .workflow-icon {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.25);
}

.workflow-animation-compact .workflow-step.active .workflow-icon.idea {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  border-color: #F59E0B;
}

.workflow-animation-compact .workflow-step.active .workflow-icon.strategic {
  background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
  border-color: #3B82F6;
}

.workflow-animation-compact .workflow-step.active .workflow-icon.blueprint {
  background: linear-gradient(135deg, #E0E7FF, #C7D2FE);
  border-color: #6366F1;
}

.workflow-animation-compact .workflow-step.active .workflow-icon.growth {
  background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
  border-color: #10B981;
}

.workflow-animation-compact .workflow-step span:last-child {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
}

.workflow-animation-compact .workflow-step.active span:last-child {
  color: var(--text);
}

.workflow-animation-compact .workflow-arrow {
  font-size: 16px;
  color: var(--muted);
  opacity: 0.4;
}

.workflow-link {
  display: block;
  text-align: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.workflow-link:hover {
  color: var(--primary-dark);
}

/* ============================================
   SOCIAL PROOF - Clean logos bar
   ============================================ */
.social-proof {
  background: var(--surface);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.proof-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.logo-item {
  font-size: 18px;
  font-weight: 700;
  color: var(--muted);
  opacity: 0.6;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--surface-2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   PAIN SECTION - Card Grid
   ============================================ */
.pain-section {
  background: var(--bg);
  padding: 80px 0;
}

.pain-header {
  text-align: center;
  margin-bottom: 48px;
}

.pain-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--danger);
  margin-bottom: 16px;
}

.pain-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}

.pain-highlight {
  color: var(--danger);
}

.pain-intro {
  font-size: 18px;
  color: var(--muted);
}

.pain-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.pain-icon-wrapper {
  margin-bottom: 20px;
}

.pain-icon {
  width: 56px;
  height: 56px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--muted);
}

.pain-time {
  display: none;
}

.pain-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.pain-content .pain-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.pain-subtitle {
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 12px;
}

.pain-description {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.pain-description strong {
  color: var(--text);
}

/* Hide complex pain visuals in light theme */
.pain-visual,
.pain-stat,
.pain-solution {
  display: none;
}

.pain-cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.pain-cta-text {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 24px;
}

.pain-cta-text strong {
  color: var(--text);
}

/* ============================================
   ETYMOLOGY - Simple two column
   ============================================ */
.etymology-section {
  background: var(--surface);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.etymology-header {
  text-align: center;
  margin-bottom: 48px;
}

.etymology-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--surface-2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}

.etymology-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}

.etymology-title .highlight {
  color: var(--accent);
}

.etymology-intro {
  font-size: 18px;
  color: var(--muted);
}

.etymology-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.etymology-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.etymology-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

.etymology-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent);
}

.etymology-card h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.etymology-origin {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 16px;
  display: block;
}

.etymology-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.etymology-card p strong {
  color: var(--text);
}

.etymology-visual {
  display: none;
}

.etymology-combined {
  text-align: center;
  margin-bottom: 48px;
}

.combined-equation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.combined-equation .term {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}

.combined-equation .plus,
.combined-equation .equals {
  font-size: 24px;
  color: var(--muted);
}

.combined-equation .result {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

.combined-narrative {
  font-size: 17px;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

.combined-narrative strong {
  color: var(--text);
}

.etymology-why {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px;
}

.etymology-why h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  text-align: center;
}

.why-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  font-size: 24px;
}

.why-point strong {
  display: block;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 4px;
}

.why-point p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* ============================================
   TIME PROTECTION - Feature Cards Grid
   ============================================ */
.time-protection {
  background: var(--bg);
  padding: 80px 0;
  position: relative;
}

.protection-bg {
  display: none;
}

.protection-badge {
  text-align: center;
  margin-bottom: 24px;
}

.protection-badge span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-star {
  color: var(--accent);
}

.protection-headline {
  text-align: center;
  margin-bottom: 48px;
}

.protection-headline h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.text-danger {
  color: var(--danger);
}

.headline-sub {
  font-size: 18px;
  color: var(--muted);
}

.time-thieves {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 48px;
}

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

.skull-icon {
  font-size: 32px;
  margin-bottom: 8px;
  display: block;
}

.thieves-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.thieves-header p {
  font-size: 15px;
  color: var(--muted);
}

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

.thief-item {
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
}

.thief-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 8px;
}

.thief-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.thief-cost {
  font-size: 13px;
  color: var(--danger);
  font-weight: 500;
}

.solution-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.solution-badge {
  padding: 8px 20px;
  background: var(--primary);
  color: var(--primary-contrast);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.protection-features {
  text-align: center;
  margin-bottom: 48px;
}

.features-headline {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.features-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 40px;
}

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

.protection-feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: left;
  box-shadow: var(--shadow-soft);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.feature-icon-wrap.red { background: rgba(220, 38, 38, 0.1); }
.feature-icon-wrap.orange { background: rgba(245, 158, 11, 0.1); }
.feature-icon-wrap.green { background: rgba(22, 163, 74, 0.1); }
.feature-icon-wrap.purple { background: rgba(139, 92, 246, 0.1); }
.feature-icon-wrap.blue { background: rgba(37, 99, 235, 0.1); }
.feature-icon-wrap.yellow { background: rgba(245, 158, 11, 0.1); }

.protection-feature h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.protection-feature p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.feature-stat {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.stat-big {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.feature-stat .stat-label {
  font-size: 13px;
  color: var(--muted);
}

.protection-cta {
  text-align: center;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.cta-message {
  margin-bottom: 24px;
}

.cta-top {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 8px;
}

.cta-message h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
}

.btn-cta-large {
  display: inline-flex;
  flex-direction: column;
  padding: 20px 48px;
  background: var(--primary);
  color: var(--primary-contrast);
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  transition: all 0.2s;
}

.btn-cta-large:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.cta-main {
  font-size: 18px;
  font-weight: 700;
}

.cta-sub {
  font-size: 13px;
  opacity: 0.9;
}

/* ============================================
   APP SHOWCASE - Simplified
   ============================================ */
.app-showcase {
  background: var(--surface);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.showcase-header {
  text-align: center;
  margin-bottom: 48px;
}

.showcase-container {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.phone-wrapper {
  flex: 0 0 300px;
  position: sticky;
  top: 100px;
}

.phone-mockup {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.phone-notch {
  width: 100px;
  height: 24px;
  background: var(--text);
  border-radius: 12px;
  margin: 0 auto 12px;
}

.phone-screen {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  min-height: 500px;
}

.app-screen {
  display: none;
  padding: 16px;
}

.app-screen.active {
  display: block;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 12px;
  color: var(--muted);
}

.screen-title {
  font-weight: 600;
  color: var(--text);
}

.screen-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 11px;
}

.screen-nav span {
  padding: 6px 10px;
  background: var(--surface-2);
  border-radius: 6px;
  color: var(--muted);
}

.screen-nav span.active {
  background: var(--primary);
  color: var(--primary-contrast);
}

.showcase-panels {
  flex: 1;
}

.showcase-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}

.panel-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--border);
  margin-bottom: 16px;
}

.showcase-panel h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.showcase-panel p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 20px;
}

.panel-features {
  list-style: none;
}

.panel-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.panel-features li:last-child {
  border-bottom: none;
}

.phone-home-bar {
  width: 100px;
  height: 4px;
  background: var(--text);
  border-radius: 2px;
  margin: 12px auto 0;
  opacity: 0.3;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
  background: var(--bg);
  padding: 80px 0;
}

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

.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.problem-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution-section {
  background: var(--surface);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

/* Hide complex slider in light theme */
.app-slider {
  display: none;
}

/* Blueprint Explainer */
.blueprint-explainer {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 48px;
}

.blueprint-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.blueprint-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--surface);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}

.blueprint-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}

.gold-text {
  color: var(--accent);
}

.blueprint-description {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 24px;
}

.blueprint-description strong {
  color: var(--text);
}

.blueprint-solves h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.solves-list {
  list-style: none;
}

.solves-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.solves-list li:last-child {
  border-bottom: none;
}

.solve-icon {
  font-size: 20px;
}

.solve-content strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}

.solve-content p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.blueprint-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.blueprint-demo {
  font-size: 13px;
}

.demo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.demo-badge {
  padding: 4px 10px;
  background: var(--primary);
  color: var(--primary-contrast);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}

.demo-date {
  color: var(--muted);
}

.demo-nn {
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 16px;
}

.demo-nn-title {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nn-star {
  color: var(--accent);
}

.demo-nn-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--muted);
}

.nn-num {
  width: 20px;
  height: 20px;
  background: var(--primary);
  color: var(--primary-contrast);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
}

.demo-timeline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.demo-block {
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  padding: 12px;
  border-left: 3px solid var(--border);
}

.demo-block.power {
  border-left-color: var(--primary);
  background: rgba(37, 99, 235, 0.05);
}

.demo-block.focus {
  border-left-color: var(--success);
}

.demo-block.recovery {
  border-left-color: var(--accent);
  background: rgba(184, 135, 47, 0.05);
}

.demo-block.meeting {
  border-left-color: var(--muted);
}

.block-badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--primary);
  color: var(--primary-contrast);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 4px;
}

.demo-block.recovery .block-badge {
  background: var(--accent);
}

.block-range {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.block-task {
  color: var(--muted);
}

.demo-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.footer-stat {
  font-size: 12px;
  color: var(--muted);
}

.footer-stat strong {
  color: var(--text);
}

.footer-stat.protected strong {
  color: var(--success);
}

/* Views Row */
.views-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.view-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.view-icon {
  width: 40px;
  height: 40px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
}

.view-header.strategic .view-icon svg { stroke: var(--success); }
.view-header.ideas .view-icon svg { stroke: var(--warning); }
.view-header.growth .view-icon svg { stroke: var(--accent); }

.view-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.view-description {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 20px;
}

.view-features {
  list-style: none;
  margin-bottom: 20px;
}

.view-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--muted);
}

.feature-check {
  color: var(--success);
  font-weight: bold;
}

.view-mini-preview {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.strategic-preview {
  display: flex;
  gap: 4px;
}

.mini-column {
  flex: 1;
  background: var(--surface-2);
  border-radius: 4px;
  padding: 8px;
  font-size: 10px;
  text-align: center;
  color: var(--muted);
}

.mini-column.focus { background: rgba(22, 163, 74, 0.1); color: var(--success); }
.mini-column.done { background: rgba(37, 99, 235, 0.1); color: var(--primary); }
.mini-column.stop { background: rgba(220, 38, 38, 0.1); color: var(--danger); }

.ideas-preview {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mini-idea {
  background: var(--surface-2);
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 11px;
  color: var(--muted);
}

.mini-idea.starred {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
}

.mini-idea.new {
  border: 1px dashed var(--border);
  background: transparent;
}

.growth-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-win {
  background: var(--surface-2);
  border-radius: 4px;
  padding: 8px;
  font-size: 11px;
  color: var(--accent);
}

.mini-metrics {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mini-bar {
  height: 6px;
  background: linear-gradient(90deg, var(--primary) var(--w), var(--surface-2) var(--w));
  border-radius: 3px;
}

.mini-bar.low {
  background: linear-gradient(90deg, var(--success) var(--w), var(--surface-2) var(--w));
}

/* ============================================
   FOCUS FEATURE
   ============================================ */
.focus-feature {
  background: var(--bg);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.focus-feature .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.focus-content .section-tag {
  margin-bottom: 16px;
}

.focus-content .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.focus-description {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 24px;
}

.focus-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.benefit-icon {
  font-size: 20px;
}

.focus-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.focus-demo {
  text-align: center;
}

.demo-overlay {
  background: linear-gradient(180deg, #0B1220 0%, #0F172A 100%);
  border-radius: var(--radius);
  padding: 48px;
  color: #F8FAFC;
}

.focus-badge-demo {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 24px;
}

.focus-timer-demo {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.focus-task-demo {
  font-size: 16px;
  color: #CBD5E1;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--surface);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--primary-contrast);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: var(--muted);
}

.step-connector {
  width: 2px;
  height: 24px;
  background: var(--border);
  margin-left: 23px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--bg);
  padding: 80px 0;
}

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

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.testimonial-card.featured {
  grid-column: span 2;
  border-color: var(--primary);
  border-width: 2px;
}

.testimonial-rating {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 17px;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--surface-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.author-info strong {
  display: block;
  font-size: 15px;
  color: var(--text);
}

.author-info span {
  font-size: 13px;
  color: var(--muted);
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  background: var(--surface);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.pricing-toggle-wrapper {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-toggle-tabs {
  display: inline-flex;
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 4px;
  position: relative;
}

.pricing-tab {
  padding: 12px 24px;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  position: relative;
}

.pricing-tab.active {
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.tab-badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--success);
  color: white;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  margin-left: 8px;
}

.tab-badge.founders {
  background: var(--accent);
}

.tab-indicator {
  display: none;
}

.lifetime-lock-hint,
.lifetime-banner {
  display: none;
}

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

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  position: relative;
}

.pricing-card.popular {
  background: var(--surface);
  border: 2px solid var(--primary);
  transform: scale(1.02);
  box-shadow: var(--shadow);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--primary);
  color: var(--primary-contrast);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}

.team-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--accent);
  color: white;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

.pricing-amount {
  margin-bottom: 24px;
}

.currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  vertical-align: top;
}

.price {
  font-size: 56px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

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

.yearly-breakdown {
  font-size: 14px;
  color: var(--success);
  margin-top: 4px;
}

.lifetime-tag {
  display: none;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features .check {
  color: var(--success);
  font-weight: bold;
}

.pricing-features .check.highlight {
  color: var(--primary);
}

.pricing-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

.pricing-guarantee {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.guarantee-main {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 8px;
}

.guarantee-lifetime {
  display: none;
}

.pricing-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.trust-icon {
  font-size: 18px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--bg);
  padding: 80px 0;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

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

.faq-icon {
  font-size: 24px;
  color: var(--muted);
  transition: transform 0.2s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================
   FINAL CTA - Dark Band
   ============================================ */
.final-cta {
  background: linear-gradient(180deg, #0B1220 0%, #0F172A 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 40px;
  font-weight: 800;
  color: #F8FAFC;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: #CBD5E1;
  margin-bottom: 32px;
}

.cta-buttons {
  margin-bottom: 16px;
}

.cta-note {
  font-size: 14px;
  color: #94A3B8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

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

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

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

.social-links a {
  width: 36px;
  height: 36px;
  background: var(--surface-2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--primary-contrast);
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .pain-cards,
  .thieves-grid,
  .features-grid,
  .problem-grid,
  .views-row,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-points {
    grid-template-columns: 1fr;
  }

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

  .blueprint-content,
  .focus-feature .container {
    grid-template-columns: 1fr;
  }

  .showcase-container {
    flex-direction: column;
  }

  .phone-wrapper {
    position: static;
    max-width: 300px;
    margin: 0 auto 32px;
  }

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

/* ============================================
   HOW IT WORKS PAGE STYLES
   ============================================ */

/* Hero Section */
.how-hero {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.how-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.how-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.how-hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

.how-hero-subtitle {
  font-size: 20px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Overview Section */
.how-overview {
  padding: 80px 0 100px;
  background: var(--surface);
}

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

.overview-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.overview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.overview-card:hover {
  border-color: transparent;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.overview-card:hover::before {
  transform: scaleX(1);
}

.overview-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.overview-card:hover .overview-icon {
  transform: scale(1.1);
}

.overview-icon.blueprint-icon {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(37, 99, 235, 0.05) 100%);
  color: var(--primary);
}

.overview-icon.strategic-icon {
  background: linear-gradient(135deg, rgba(184, 135, 47, 0.15) 0%, rgba(184, 135, 47, 0.05) 100%);
  color: var(--accent);
}

.overview-icon.ideas-icon {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.15) 0%, rgba(22, 163, 74, 0.05) 100%);
  color: var(--success);
}

.overview-icon.growth-icon {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.05) 100%);
  color: #8B5CF6;
}

.overview-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.overview-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* How Section (each view) */
.how-section {
  padding: 100px 0;
  border-bottom: none;
  position: relative;
}

.how-section#blueprint {
  background: linear-gradient(180deg, var(--bg) 0%, #F0F4FF 100%);
}

.how-section#strategic {
  background: linear-gradient(180deg, #FDF8F0 0%, var(--bg) 100%);
}

.how-section#ideas {
  background: linear-gradient(180deg, var(--bg) 0%, #F0FDF4 100%);
}

.how-section#growth {
  background: linear-gradient(180deg, #FAF5FF 0%, var(--bg) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-number {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(37, 99, 235, 0.05) 100%);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.how-section .section-title {
  font-size: 40px;
}

/* Pain Point Callout */
.pain-callout {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
  border: none;
  border-left: 4px solid #F59E0B;
  border-radius: 0 16px 16px 0;
  padding: 28px 36px;
  margin-bottom: 56px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.1);
}

.pain-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.pain-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: #B45309;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pain-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #78350F;
}

/* Screenshot Tabs */
.screenshot-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 32px;
  background: var(--surface);
  padding: 6px;
  border-radius: 12px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.screenshot-tab {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.screenshot-tab:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.04);
}

.screenshot-tab.active {
  color: white;
  background: var(--primary);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Screenshot Container - Browser Mockup */
.screenshot-container {
  max-width: 960px;
  margin: 0 auto 64px;
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.screenshot-container::before {
  content: '';
  display: block;
  background: linear-gradient(180deg, #F8F9FA 0%, #E9ECEF 100%);
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background-image:
    radial-gradient(circle at 20px 50%, #FF5F57 6px, transparent 6px),
    radial-gradient(circle at 44px 50%, #FEBC2E 6px, transparent 6px),
    radial-gradient(circle at 68px 50%, #28C840 6px, transparent 6px);
}

.screenshot-container.single {
  margin-bottom: 64px;
}

.screenshot-container img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-wrapper {
  display: none;
}

.screenshot-wrapper.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 56px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.feature-number {
  position: absolute;
  top: -12px;
  left: 24px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary) 0%, #1D4ED8 100%);
  color: white;
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.feature-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 8px;
  color: var(--text);
}

.feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* Pro Tip */
.pro-tip {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border: none;
  border-left: 4px solid var(--primary);
  border-radius: 0 16px 16px 0;
  padding: 24px 32px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.tip-label {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--primary) 0%, #1D4ED8 100%);
  padding: 8px 14px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.pro-tip p {
  font-size: 15px;
  line-height: 1.7;
  color: #1E40AF;
  font-style: italic;
}

/* Workflow Section */
.how-workflow {
  padding: 100px 0;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.how-workflow::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 135, 47, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.how-workflow .section-title {
  color: white;
  font-size: 40px;
}

.how-workflow .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.workflow-steps {
  max-width: 560px;
  margin: 56px auto;
  position: relative;
}

.workflow-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}

.workflow-step:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(184, 135, 47, 0.3);
  transform: translateX(8px);
}

.workflow-step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent) 0%, #D4A84B 100%);
  color: #0F172A;
  font-size: 20px;
  font-weight: 800;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(184, 135, 47, 0.3);
}

.workflow-step-content h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.workflow-step-content p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 14px;
}

.workflow-view-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(184, 135, 47, 0.15);
  padding: 6px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.workflow-connector {
  display: flex;
  justify-content: center;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.2);
}

.workflow-summary {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.workflow-summary strong {
  color: var(--accent);
  font-weight: 600;
}

/* CTA Section */
.how-cta {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  text-align: center;
  position: relative;
}

.how-cta::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cta-content > p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.cta-buttons .btn-primary {
  padding: 16px 36px;
  font-size: 16px;
}

.cta-buttons .btn-outline {
  padding: 16px 36px;
  font-size: 16px;
}

.cta-note {
  font-size: 14px;
  color: var(--muted);
}

/* Active nav link */
.nav-links a.active {
  color: var(--primary);
}

@media (max-width: 968px) {
  /* Compact hero responsive */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-left {
    text-align: center;
  }

  .hero-left .hero-title {
    font-size: 32px;
  }

  .hero-left .hero-subtitle {
    margin: 0 auto 24px;
  }

  .hero-badge {
    justify-content: center;
  }

  .hero-left .hero-cta {
    justify-content: center;
  }

  .hero-stats-inline {
    justify-content: center;
  }

  .workflow-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

  .nav-links {
    display: none;
  }

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

  .pain-cards,
  .thieves-grid,
  .features-grid,
  .problem-grid,
  .views-row,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card.featured {
    grid-column: span 1;
  }

  .pricing-card.popular {
    transform: none;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* How It Works responsive - 768px */
  .how-hero {
    padding: 70px 0 50px;
  }

  .how-hero-title {
    font-size: 40px;
  }

  .how-hero-subtitle {
    font-size: 17px;
  }

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

  .overview-card {
    padding: 28px 24px;
  }

  .how-section {
    padding: 70px 0;
  }

  .how-section .section-title {
    font-size: 32px;
  }

  .pain-callout {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-radius: 0 12px 12px 0;
  }

  .screenshot-tabs {
    flex-wrap: wrap;
    padding: 4px;
  }

  .screenshot-tab {
    padding: 10px 16px;
    font-size: 13px;
  }

  .screenshot-container {
    border-radius: 12px;
    margin-bottom: 48px;
  }

  .screenshot-container::before {
    padding: 12px 16px;
    background-image:
      radial-gradient(circle at 16px 50%, #FF5F57 5px, transparent 5px),
      radial-gradient(circle at 36px 50%, #FEBC2E 5px, transparent 5px),
      radial-gradient(circle at 56px 50%, #28C840 5px, transparent 5px);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  .feature-card {
    padding: 28px 24px;
  }

  .pro-tip {
    flex-direction: column;
    gap: 14px;
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
  }

  .how-workflow {
    padding: 70px 0;
  }

  .how-workflow .section-title {
    font-size: 32px;
  }

  .workflow-step {
    padding: 24px;
  }

  .how-cta {
    padding: 70px 0;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-left .hero-title {
    font-size: 26px;
  }

  /* Compact hero mobile */
  .hero-compact {
    padding: 100px 0 48px;
  }

  .hero-stats-inline {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

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

  .hero-badge {
    flex-wrap: wrap;
    justify-content: center;
  }

  .workflow-animation-compact {
    flex-wrap: wrap;
    gap: 8px;
  }

  .workflow-animation-compact .workflow-arrow {
    display: none;
  }

  .workflow-animation-compact .workflow-step {
    width: 45%;
  }

  .section-title {
    font-size: 28px;
  }

  .pricing-toggle-tabs {
    flex-direction: column;
    width: 100%;
  }

  .pricing-tab {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: span 1;
  }

  /* How It Works responsive - 480px */
  .how-hero {
    padding: 56px 0 40px;
  }

  .how-hero-title {
    font-size: 32px;
  }

  .how-hero-subtitle {
    font-size: 15px;
  }

  .how-overview {
    padding: 60px 0;
  }

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .overview-card {
    padding: 24px 20px;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 16px;
  }

  .overview-icon {
    margin: 0;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
  }

  .overview-card h3 {
    font-size: 17px;
    margin-bottom: 4px;
  }

  .how-section {
    padding: 56px 0;
  }

  .how-section .section-title {
    font-size: 26px;
  }

  .section-number {
    font-size: 12px;
    padding: 6px 14px;
  }

  .pain-callout {
    padding: 20px;
  }

  .pain-icon {
    width: 40px;
    height: 40px;
  }

  .pain-content p {
    font-size: 14px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .feature-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
    top: -10px;
    left: 20px;
  }

  .screenshot-tabs {
    gap: 4px;
    padding: 4px;
  }

  .screenshot-tab {
    padding: 8px 14px;
    font-size: 12px;
  }

  .screenshot-container {
    border-radius: 10px;
  }

  .screenshot-container::before {
    padding: 10px 14px;
    background-image:
      radial-gradient(circle at 14px 50%, #FF5F57 4px, transparent 4px),
      radial-gradient(circle at 30px 50%, #FEBC2E 4px, transparent 4px),
      radial-gradient(circle at 46px 50%, #28C840 4px, transparent 4px);
  }

  .pro-tip {
    padding: 16px 20px;
  }

  .tip-label {
    font-size: 10px;
    padding: 6px 10px;
  }

  .pro-tip p {
    font-size: 14px;
  }

  .how-workflow {
    padding: 56px 0;
  }

  .how-workflow .section-title {
    font-size: 26px;
  }

  .workflow-step {
    padding: 20px;
  }

  .workflow-step-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .workflow-step-content h3 {
    font-size: 16px;
  }

  .workflow-step-content p {
    font-size: 14px;
  }

  .how-cta {
    padding: 56px 0;
  }

  .cta-content h2 {
    font-size: 26px;
  }

  .cta-content > p {
    font-size: 15px;
  }
}

/* ============================================
   INTEGRATIONS SECTION
   ============================================ */
.integrations-section {
  padding: 80px 0;
  background: var(--surface);
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.integration-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.integration-icon {
  margin-bottom: 16px;
}

.integration-icon svg {
  width: 48px;
  height: 48px;
}

.integration-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.integration-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.integration-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  background: var(--surface-2);
  color: var(--muted);
}

.integration-status.connected {
  background: rgba(22, 163, 74, 0.1);
  color: var(--success);
}

.integrations-note {
  text-align: center;
  margin-top: 32px;
  color: var(--muted);
  font-size: 14px;
}

/* Footer Contact */
.footer-contact {
  margin: 16px 0;
}

.footer-contact a {
  color: var(--primary);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Responsive Integrations */
@media (max-width: 768px) {
  .integrations-section {
    padding: 56px 0;
  }
  
  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .integration-card {
    padding: 24px 16px;
  }
  
  .integration-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .integration-card h4 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .integrations-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   AI SECTION STYLES
   ============================================ */

.ai-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #F7F8FB 0%, #FFFFFF 100%);
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.ai-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #E5E7EB;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.ai-card.premium {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  border: 2px solid #D4AF37;
}

.ai-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.ai-icon {
  font-size: 32px;
}

.ai-card-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.ai-badge {
  background: #E5E7EB;
  color: #374151;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-left: auto;
}

.ai-badge.premium {
  background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
  color: #1a1a2e;
}

.ai-tagline {
  font-size: 16px;
  color: #6B7280;
  margin-bottom: 24px;
}

.ai-card.premium .ai-tagline {
  color: #D4AF37;
}

.ai-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.ai-features li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.ai-feature-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.ai-features li strong {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}

.ai-features li p {
  margin: 0;
  font-size: 14px;
  color: #6B7280;
}

.ai-card.premium .ai-features li p {
  color: #9CA3AF;
}

.ai-cta-note {
  text-align: center;
  color: #6B7280;
  font-size: 14px;
  margin: 0;
}

/* Enterprise Pricing Card */
.pricing-card.enterprise {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  border: 2px solid #D4AF37;
}

.pricing-card.enterprise .pricing-header h3 {
  color: white;
}

.pricing-card.enterprise .pricing-desc {
  color: #9CA3AF;
}

.pricing-card.enterprise .pricing-features li {
  color: #E5E7EB;
}

.pricing-card.enterprise .check {
  color: #D4AF37;
}

.enterprise-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
  color: #1a1a2e;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.price-custom {
  font-size: 36px;
  font-weight: 800;
  color: #D4AF37;
}

.pricing-card.enterprise .btn {
  background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
  color: #1a1a2e;
  border: none;
}

.pricing-card.enterprise .btn:hover {
  background: linear-gradient(135deg, #F4D03F 0%, #D4AF37 100%);
}

.pricing-card.enterprise .pricing-note {
  color: #9CA3AF;
}

/* Responsive AI Section */
@media (max-width: 768px) {
  .ai-grid {
    grid-template-columns: 1fr;
  }
  
  .ai-card {
    padding: 24px;
  }
}

/* 4-column pricing grid for all tiers */
@media (min-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1199px) and (min-width: 769px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
