/* DesignDesk — Styles */

:root {
  --primary: #6366f1;
  --primary-light: #818cf8;
  --primary-dark: #4f46e5;
  --accent: #a855f7;
  --bg: #fafafa;
  --bg-dark: #0f0f14;
  --surface: #ffffff;
  --surface-dark: #18181b;
  --text: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.08);
  --shadow-xl: 0 25px 80px rgba(0,0,0,.12);
}

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

html { scroll-behavior: smooth; }

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

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

/* Typography */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 4px 14px rgba(99,102,241,.3);
}
.btn-primary:hover { box-shadow: 0 6px 20px rgba(99,102,241,.4); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-ghost { background: transparent; color: var(--text-secondary); }
.btn-ghost:hover { color: var(--primary); }

/* Country Selector */
.country-selector { position: relative; }
.country-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  font-size: 18px;
  transition: all .2s;
}
.country-btn:hover { border-color: var(--primary); }
.country-btn svg { color: var(--text-muted); }
.country-flag { font-size: 20px; line-height: 1; }
.country-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  z-index: 200;
  padding: 6px;
  max-height: 320px;
  overflow-y: auto;
}
.country-dropdown.open { display: block; }
.country-option {
  display: block;
  width: 100%;
  padding: 8px 12px;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  border-radius: 6px;
  color: var(--text);
  transition: background .15s;
}
.country-option:hover { background: var(--border-light); }
.country-option.active { background: #eef2ff; color: var(--primary); font-weight: 600; }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: var(--radius); }
.btn-block { width: 100%; justify-content: center; }

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250,250,250,.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all .3s;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-text { font-weight: 800; font-size: 20px; color: var(--text); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.mobile-menu { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu span { display: block; width: 20px; height: 2px; background: var(--text); margin: 4px 0; transition: all .3s; }

/* Hero */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99,102,241,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .3;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(99,102,241,.08);
  border: 1px solid rgba(99,102,241,.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; margin-bottom: 40px; }
.hero-social-proof { display: flex; align-items: center; gap: 14px; }
.avatar-stack { display: flex; }
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.hero-social-proof p { font-size: 14px; color: var(--text-secondary); }

/* App Preview */
.app-preview {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}
.app-preview-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--border-light);
  border-bottom: 1px solid var(--border);
}
.window-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }
.app-preview-title { font-size: 11px; color: var(--text-muted); }
.app-preview-body { display: flex; height: 380px; overflow: hidden; }

/* Dashboard Sidebar */
.dash-sidebar {
  width: 160px;
  flex-shrink: 0;
  padding: 12px 8px;
  border-right: 1px solid var(--border);
  background: var(--border-light);
}
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 11px;
  color: var(--text-secondary);
  border-radius: 6px;
  cursor: pointer;
  transition: all .15s;
}
.dash-nav-item:hover { background: rgba(99,102,241,.05); color: var(--text); }
.dash-nav-item.active { background: rgba(99,102,241,.1); color: var(--primary); font-weight: 600; }

/* Dashboard Main */
.dash-main { flex: 1; padding: 16px; overflow: hidden; }
.dash-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.dash-title { font-size: 16px; font-weight: 700; }
.dash-subtitle { font-size: 11px; color: var(--text-muted); }
.dash-header-actions { display: flex; align-items: center; gap: 12px; }
.status-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}
.status-badge.in-progress { background: rgba(99,102,241,.1); color: var(--primary); }
.dash-profit { font-size: 12px; color: var(--text-secondary); }

/* Stats */
.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 16px; }
.stat-card {
  background: var(--border-light);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}
.stat-label { font-size: 10px; color: var(--text-muted); display: block; }
.stat-value { font-size: 16px; font-weight: 700; display: block; }
.stat-change { font-size: 10px; color: var(--text-muted); }
.stat-change.positive { color: var(--success); }

/* Dashboard Cards */
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dash-card {
  background: var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px;
}
.dash-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}
.dash-card-link { font-size: 10px; color: var(--primary); text-decoration: none; font-weight: 500; }

/* Orders */
.order-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  padding: 6px 0;
  font-size: 10px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.order-row:last-child { border: none; }
.order-supplier { font-weight: 600; }
.order-item { color: var(--text-secondary); }
.order-status {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
}
.order-status.delivered { background: #d1fae5; color: #065f46; }
.order-status.shipped { background: #dbeafe; color: #1e40af; }
.order-status.pending { background: #fef3c7; color: #92400e; }

/* Schedule */
.schedule-row {
  display: flex;
  gap: 10px;
  padding: 5px 0;
  font-size: 10px;
  border-bottom: 1px solid var(--border);
}
.schedule-row:last-child { border: none; }
.schedule-day { font-weight: 700; color: var(--primary); width: 28px; }
.schedule-task { color: var(--text-secondary); }

/* Pain Points */
.pain-points { padding: 60px 0; }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pain-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .2s;
}
.pain-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.pain-icon { font-size: 28px; margin-bottom: 14px; }
.pain-card h3 { font-size: 16px; margin-bottom: 8px; }
.pain-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
  margin-bottom: 14px;
}
.section-title { font-size: clamp(28px, 4vw, 44px); letter-spacing: -.02em; }
.section-subtitle { font-size: 17px; color: var(--text-secondary); margin-top: 12px; }

/* Features */
.features { padding: 100px 0; }

/* Feature Tabs */
.feature-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.feature-tab {
  padding: 10px 20px;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s;
}
.feature-tab:hover { color: var(--text); }
.feature-tab.active {
  background: var(--surface);
  color: var(--primary);
  font-weight: 600;
  box-shadow: var(--shadow);
}

/* Feature Panels */
.feature-panel { display: none; }
.feature-panel.active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.feature-panel-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.feature-panel-text h3 { font-size: 28px; margin-bottom: 12px; }
.feature-desc { color: var(--text-secondary); margin-bottom: 28px; line-height: 1.7; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; line-height: 1.5; }
.feature-list li .check { flex-shrink: 0; margin-top: 2px; }

/* Mock UIs */
.feature-panel-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Mock Procurement */
.mock-procurement { padding: 16px; font-size: 12px; }
.mock-table-header {
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 0.8fr 0.8fr 0.6fr 0.8fr;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 2px solid var(--border);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.mock-table-row {
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 0.8fr 0.8fr 0.6fr 0.8fr;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
}
.margin-good { color: var(--success); font-weight: 600; }
.status-tag {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  text-align: center;
}
.status-tag.delivered { background: #d1fae5; color: #065f46; }
.status-tag.shipped { background: #dbeafe; color: #1e40af; }
.status-tag.pending { background: #fef3c7; color: #92400e; }
.mock-summary {
  display: flex;
  justify-content: space-between;
  padding: 12px 0 4px;
  margin-top: 8px;
  border-top: 2px solid var(--border);
  font-size: 12px;
  font-weight: 600;
}

/* Mock Schedule */
.mock-schedule { padding: 20px; position: relative; }
.schedule-header-row {
  display: grid;
  grid-template-columns: 120px repeat(4, 1fr);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.gantt-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  padding: 6px 0;
}
.gantt-label { font-size: 11px; font-weight: 500; }
.gantt-bar {
  height: 20px;
  border-radius: 4px;
  opacity: .8;
}
.gantt-today {
  position: absolute;
  top: 42px;
  bottom: 10px;
  width: 2px;
  background: var(--primary);
}
.gantt-today span {
  position: absolute;
  top: -16px;
  left: -14px;
  font-size: 8px;
  font-weight: 700;
  color: var(--primary);
}

/* Mock Invoices */
.mock-invoices { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.mock-invoice { padding: 20px; font-size: 12px; }
.mock-invoice.client { background: var(--surface); }
.mock-invoice.trade { background: var(--border-light); }
.invoice-header { display: flex; justify-content: space-between; margin-bottom: 16px; }
.invoice-type { font-weight: 700; font-size: 14px; }
.invoice-no { color: var(--text-muted); font-size: 11px; }
.invoice-line { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--border); }
.invoice-total {
  display: flex;
  justify-content: space-between;
  padding: 10px 0 6px;
  font-weight: 700;
  border-top: 2px solid var(--text);
  margin-top: 4px;
}
.invoice-footer { font-size: 10px; color: var(--text-muted); margin-top: 12px; font-style: italic; }
.margin-tag { color: var(--success); font-style: normal; font-weight: 600; font-size: 10px; }

/* Mock Suppliers */
.mock-suppliers { padding: 20px; }
.supplier-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.supplier-card {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  transition: all .2s;
}
.supplier-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.supplier-name { font-weight: 600; font-size: 13px; display: flex; align-items: center; gap: 8px; }
.supplier-tag {
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(99,102,241,.1);
  color: var(--primary);
  font-weight: 600;
}
.supplier-tag.new { background: rgba(16,185,129,.1); color: var(--success); }
.supplier-meta { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.supplier-rating { font-size: 11px; color: #f59e0b; margin-top: 6px; }
.supplier-rating span { color: var(--text-muted); }

/* Mock Mood Board */
.mock-moodboard { }
.moodboard-canvas {
  position: relative;
  height: 320px;
  background: #f8f6f3;
  overflow: hidden;
}
.mb-item {
  position: absolute;
  border-radius: 6px;
  display: flex;
  align-items: flex-end;
  padding: 8px;
  transition: all .2s;
  cursor: pointer;
}
.mb-item:hover { transform: scale(1.02); box-shadow: 0 8px 24px rgba(0,0,0,.15); z-index: 2; }
.mb-label {
  font-size: 9px;
  color: white;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.moodboard-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  font-weight: 500;
}
.mb-actions { display: flex; gap: 12px; }
.mb-action { color: var(--primary); font-weight: 600; cursor: pointer; font-size: 11px; }

/* Mock Floor Plan */
.mock-floorplan { padding: 16px; background: #fafaf8; }
.floorplan-svg { width: 100%; height: auto; }

/* Mock Client Portal */
.mock-client-portal { font-size: 12px; }
.portal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
}
.portal-logo { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 14px; }
.portal-client { font-size: 11px; opacity: .8; }
.portal-nav { display: flex; gap: 0; border-bottom: 1px solid var(--border); }
.portal-tab {
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
}
.portal-tab.active { color: var(--primary); border-bottom: 2px solid var(--primary); }
.portal-content { padding: 16px; }
.portal-card { background: var(--border-light); border-radius: var(--radius-sm); padding: 14px; margin-bottom: 10px; }
.portal-card h4 { font-size: 12px; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.badge-count {
  font-size: 10px;
  background: var(--primary);
  color: white;
  padding: 1px 7px;
  border-radius: 100px;
}
.progress-bar { height: 6px; background: var(--border); border-radius: 100px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 100px; }
.progress-label { font-size: 10px; color: var(--text-muted); margin-top: 4px; display: block; }
.approval-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 11px;
  border-bottom: 1px solid var(--border);
}
.approval-item:last-child { border: none; }
.approve-btn {
  padding: 3px 12px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
}
.milestone-text { font-size: 13px; font-weight: 600; color: var(--text); }

/* Mock AI */
.mock-ai { padding: 20px; }
.ai-chat { display: flex; flex-direction: column; gap: 14px; }
.ai-msg { max-width: 100%; }
.ai-msg.user {
  background: var(--border-light);
  padding: 12px 16px;
  border-radius: 12px 12px 4px 12px;
  font-size: 12px;
  line-height: 1.5;
  align-self: flex-end;
}
.ai-msg.assistant {
  display: flex;
  gap: 10px;
}
.ai-avatar {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}
.ai-text { font-size: 12px; line-height: 1.5; }
.ai-suggestion {
  background: var(--border-light);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin: 8px 0;
  border-left: 3px solid var(--primary);
  font-size: 11px;
}
.ai-suggestion em { color: var(--text-muted); font-size: 10px; }

/* Mock Accounting */
.mock-accounting { padding: 20px; }
.accounting-integrations { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.integration-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.integration-card.connected { border-color: var(--success); background: rgba(16,185,129,.03); }
.integration-logo {
  width: 36px;
  height: 36px;
  background: #0f8045;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 12px;
}
.integration-logo.xero { background: #13B5EA; }
.integration-logo.sage { background: #00D639; }
.integration-logo.qb { background: #2CA01C; }
.integration-info { flex: 1; }
.integration-info strong { font-size: 12px; display: block; }
.integration-status { font-size: 10px; color: var(--text-muted); }
.integration-status.connected { color: var(--success); }
.integration-sync { font-size: 10px; color: var(--text-muted); }
.vat-summary { background: var(--border-light); border-radius: var(--radius-sm); padding: 16px; }
.vat-summary h4 { font-size: 13px; margin-bottom: 10px; }
.vat-line { display: flex; justify-content: space-between; padding: 5px 0; font-size: 12px; border-bottom: 1px solid var(--border); }
.vat-line.total { font-weight: 700; border-top: 2px solid var(--text); border-bottom: none; padding-top: 8px; }
.vat-status { display: block; margin-top: 8px; font-size: 10px; color: var(--success); font-weight: 600; }

/* How It Works */
.how-it-works { padding: 100px 0; background: var(--surface); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.step { text-align: center; }
.step-number {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.step h3 { font-size: 18px; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* Comparison */
.comparison { padding: 100px 0; }
.comparison-table-wrapper { overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.comparison-table th, .comparison-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
  background: var(--border-light);
}
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; }
.comparison-table th.highlight, .comparison-table td.highlight {
  background: rgba(99,102,241,.04);
}
.comparison-table th.highlight { background: rgba(99,102,241,.1); color: var(--primary); }
.check-mark { color: var(--success); font-weight: 700; font-size: 16px; }
.x-mark { color: #cbd5e1; font-size: 16px; }
.partial { color: var(--warning); font-weight: 700; font-size: 16px; }
.price-row { font-weight: 600; background: var(--border-light); }

/* Pricing */
.pricing { padding: 100px 0; background: var(--surface); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: all .2s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg);
}
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}
.pricing-header { margin-bottom: 20px; }
.pricing-header h3 { font-size: 22px; }
.pricing-desc { font-size: 13px; color: var(--text-secondary); margin-top: 4px; }
.pricing-price { margin-bottom: 28px; }
.price-amount { font-size: 48px; font-weight: 900; letter-spacing: -.03em; }
.price-period { font-size: 14px; color: var(--text-secondary); }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* Testimonials */
.testimonials { padding: 100px 0; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author strong { display: block; font-size: 14px; }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

/* FAQ */
.faq { padding: 100px 0; background: var(--border-light); }
.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%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}
.faq-question:hover { color: var(--primary); }
.faq-chevron { flex-shrink: 0; transition: transform .2s; color: var(--text-muted); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 24px 20px; font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.faq-answer a { color: var(--primary); text-decoration: none; font-weight: 500; }
.faq-answer a:hover { text-decoration: underline; }

/* Trust Signals */
.trust-signals { padding: 40px 0; }
.trust-grid { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--text-secondary); }

/* Waitlist */
.waitlist { padding: 100px 0; }
.waitlist-card {
  background: linear-gradient(135deg, var(--bg-dark), #1e1b4b);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  color: white;
}
.waitlist-card h2 { font-size: 36px; margin-bottom: 14px; }
.waitlist-card p { font-size: 16px; opacity: .8; max-width: 560px; margin: 0 auto 32px; line-height: 1.7; }
.waitlist-form { max-width: 520px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.waitlist-form input, .waitlist-form select {
  padding: 14px 16px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  color: white;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
}
.waitlist-form input::placeholder, .waitlist-form select { color: rgba(255,255,255,.5); }
.waitlist-form select option { color: var(--text); background: var(--surface); }
.waitlist-form .btn { margin-top: 8px; }
.form-note { font-size: 12px; opacity: .5; margin-top: 12px; }

/* Demo */
.demo { padding: 80px 0; }
.demo-content {
  text-align: center;
  background: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 60px;
}
.demo-content h2 { font-size: 32px; margin-bottom: 12px; }
.demo-content p { font-size: 16px; color: var(--text-secondary); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* Footer */
.footer { padding: 60px 0 32px; background: var(--bg-dark); color: white; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand p { font-size: 13px; opacity: .6; margin-top: 14px; line-height: 1.6; }
.footer-brand .logo-text { color: white; }
.footer-links h4 { font-size: 13px; font-weight: 700; margin-bottom: 16px; opacity: .5; text-transform: uppercase; letter-spacing: .05em; }
.footer-links a { display: block; font-size: 13px; color: rgba(255,255,255,.7); text-decoration: none; padding: 4px 0; transition: color .2s; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; text-align: center; }
.footer-bottom p { font-size: 12px; opacity: .4; }

/* Responsive */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-panel-content { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  .hero { padding: 100px 0 60px; }
  .hero-cta { flex-direction: column; }
  .pain-grid { grid-template-columns: 1fr; }
  .feature-tabs { gap: 0; }
  .comparison-table { font-size: 11px; }
  .comparison-table th, .comparison-table td { padding: 10px 8px; }
  .steps { grid-template-columns: 1fr; }
  .waitlist-card { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-grid { gap: 24px; }
  .trust-item { font-size: 12px; }
  .faq-question { font-size: 14px; padding: 16px 20px; }
  .faq-answer p { padding: 0 20px 16px; font-size: 13px; }
}
