/* ==========================================================================
   Alfacomp Code — Modern Futuristic Stylesheet
   ========================================================================== */

:root {
  --bg-dark: #09090d;
  --bg-surface: #111118;
  --bg-card: #171722;
  --bg-card-hover: #1e1e2d;
  --border: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(139, 92, 246, 0.5);
  
  --primary: #8b5cf6;
  --primary-glow: rgba(139, 92, 246, 0.4);
  --primary-gradient: linear-gradient(135deg, #8b5cf6 0%, #d946ef 50%, #f43f5e 100%);
  --cyan-gradient: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  --green: #10b981;
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-sub: #71717a;

  --font-heading: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Ambient Background Lights */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #7c3aed, transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}

.orb-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #ec4899, transparent 70%);
  top: 600px;
  left: 10%;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #06b6d4, transparent 70%);
  top: 1400px;
  right: 5%;
}

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

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(9, 9, 13, 0.75);
  border-bottom: 1px solid var(--border);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
}

.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.5);
  transition: transform 0.3s ease;
}

.brand-logo:hover .logo-img {
  transform: scale(1.08) rotate(5deg);
}

.brand-badge {
  background: var(--primary-gradient);
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #fff;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-xs {
  padding: 4px 10px;
  font-size: 0.75rem;
  border-radius: 6px;
}

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

.btn-primary {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(217, 70, 239, 0.5);
}

.btn-secondary-glow {
  background: rgba(139, 92, 246, 0.15);
  color: #c4b5fd;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.btn-secondary-glow:hover {
  background: rgba(139, 92, 246, 0.25);
  color: #fff;
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-accent {
  background: #7c3aed;
  color: #fff;
  border: none;
}

.btn-accent:hover {
  background: #6d28d9;
}

.btn-text-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-main-text {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.btn-sub-text {
  font-size: 0.75rem;
  opacity: 0.85;
  font-weight: 400;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 70px 0 60px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: #d8b4fe;
  margin-bottom: 28px;
}

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

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

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

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto 40px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}

.hero-features-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Interactive IDE Showcase Window
   ========================================================================== */
.demo-section {
  padding: 60px 0 100px;
}

.section-header {
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.ide-window {
  background: #18181f;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.7), 0 0 50px rgba(139, 92, 246, 0.15);
  overflow: hidden;
}

.ide-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #111116;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.window-controls {
  display: flex;
  gap: 8px;
}

.control-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.ide-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-sub);
  font-family: var(--font-mono);
}

.ide-title-logo {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.ide-actions {
  display: flex;
  gap: 8px;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.run-btn {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.4);
}

.run-btn:hover {
  background: #10b981;
  color: #fff;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

.ai-btn {
  background: rgba(139, 92, 246, 0.2);
  color: #c4b5fd;
  border-color: rgba(139, 92, 246, 0.4);
}

.ai-btn:hover {
  background: #8b5cf6;
  color: #fff;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

/* Tabs */
.ide-tabs {
  display: flex;
  background: #131318;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-sub);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-top: 2px solid transparent;
}

.tab:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.02);
}

.tab.active {
  background: #18181f;
  color: #fff;
  border-top: 2px solid var(--primary);
}

.tab-badge {
  font-size: 0.65rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--text-muted);
}

.tab-badge.hot {
  background: rgba(236, 72, 153, 0.2);
  color: #f472b6;
}

/* Editor Area */
.ide-body {
  position: relative;
  min-height: 420px;
  background: #18181f;
}

.tab-content {
  display: none;
  height: 100%;
}

.tab-content.active {
  display: block;
}

.editor-pane {
  display: flex;
  padding: 20px 0;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  position: relative;
}

.line-numbers {
  width: 50px;
  display: flex;
  flex-direction: column;
  color: #52525b;
  text-align: right;
  padding-right: 18px;
  user-select: none;
}

.code-area {
  flex: 1;
  padding-right: 24px;
}

.code-line {
  height: 26px;
  line-height: 26px;
  white-space: pre;
}

.indent-1 { padding-left: 24px; }
.indent-2 { padding-left: 48px; }

/* Syntax Tokens */
.token-comment { color: #6b7280; font-style: italic; }
.token-keyword { color: #f43f5e; font-weight: 600; }
.token-class { color: #38bdf8; font-weight: 600; }
.token-func { color: #a855f7; }
.token-string { color: #a3e635; }
.token-number { color: #fb923c; }
.token-var { color: #e2e8f0; }
.token-builtin { color: #facc15; }
.token-tag { color: #38bdf8; }
.token-attr { color: #c084fc; }
.token-doctype { color: #94a3b8; }

/* Ghost Text & Autocomplete Hint */
.ghost-text {
  color: #64748b;
  opacity: 0.8;
  display: inline-block;
  line-height: 24px;
  transition: all 0.3s ease;
}

.ghost-text.accepted {
  color: #f1f5f9;
  opacity: 1;
}

.tab-helper-card {
  position: absolute;
  right: 28px;
  top: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #272733;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-focus);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(139, 92, 246, 0.3);
  animation: floatCard 3s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.tab-hint-text {
  font-size: 0.82rem;
  color: #c4b5fd;
  font-family: var(--font-body);
}

kbd {
  background: #18181f;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

/* Terminal Drawer */
.terminal-drawer {
  background: #0f0f14;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  transition: max-height 0.3s ease;
  max-height: 0;
  overflow: hidden;
}

.terminal-drawer.open {
  max-height: 180px;
  padding: 14px 20px;
}

.terminal-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  color: var(--text-sub);
  font-size: 0.75rem;
}

.term-close {
  background: transparent;
  border: none;
  color: var(--text-sub);
  cursor: pointer;
}

.term-line {
  line-height: 1.8;
}

.term-path { color: #38bdf8; }
.term-success { color: #34d399; font-weight: 600; }
.term-sub { color: #71717a; font-size: 0.76rem; }

/* HTML Split View */
.split-view {
  display: flex;
  height: 420px;
}

.split-left {
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  overflow-y: auto;
}

.split-right {
  flex: 1;
  background: #0f0f13;
  display: flex;
  flex-direction: column;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #14141a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #38bdf8;
  letter-spacing: 0.5px;
}

.preview-canvas {
  flex: 1;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-box {
  background: #1c1c24;
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.preview-h1 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 10px;
  transition: all 0.2s;
}

.preview-p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.preview-btn {
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}

#htmlInputText {
  background: rgba(244, 63, 94, 0.15);
  border-bottom: 2px dashed #f43f5e;
  padding: 1px 4px;
  border-radius: 4px;
  outline: none;
  color: #a3e635;
}

/* Gemini Mock View */
.gemini-mock-view {
  padding: 30px;
  display: flex;
  justify-content: center;
}

.gemini-modal {
  background: #1e1e28;
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 650px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(139, 92, 246, 0.25);
}

.gemini-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.gemini-modal-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f1f5f9;
}

.gemini-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.option-item {
  display: flex;
  gap: 14px;
  padding: 12px 16px;
  background: #252533;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
}

.option-item.active {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.5);
}

.option-item strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
}

.option-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.gemini-input-box {
  margin-bottom: 16px;
}

.gemini-input-box label {
  font-size: 0.76rem;
  color: var(--text-sub);
  display: block;
  margin-bottom: 6px;
}

.mock-input {
  background: #14141c;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: #e2e8f0;
}

.gemini-response-box {
  background: #14141c;
  padding: 14px;
  border-radius: 8px;
  border-left: 3px solid #10b981;
}

.response-tag {
  font-size: 0.76rem;
  color: #34d399;
  font-weight: 600;
  margin-bottom: 8px;
}

.gemini-response-box pre {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #e2e8f0;
}

/* ==========================================================================
   Bento Grid Section
   ========================================================================== */
.features-section {
  padding: 90px 0;
}

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

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bento-wide {
  grid-column: span 2;
}

.card-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.violet-glow { background: rgba(139, 92, 246, 0.15); color: #a78bfa; }
.cyan-glow { background: rgba(6, 182, 212, 0.15); color: #22d3ee; }
.fuchsia-glow { background: rgba(236, 72, 153, 0.15); color: #f472b6; }
.emerald-glow { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.blue-glow { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }

.card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--text-sub);
  display: block;
  margin-bottom: 8px;
}

.card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.card-content p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Comparison Section
   ========================================================================== */
.comparison-section {
  padding: 80px 0;
}

.table-container {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comp-table th, .comp-table td {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comp-table th {
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
}

.col-vanilla {
  color: var(--text-sub);
  width: 35%;
}

.col-alfacomp {
  color: var(--primary);
  width: 35%;
  background: rgba(139, 92, 246, 0.05);
}

.comp-table td {
  font-size: 0.92rem;
}

.comp-table tbody tr:last-child td {
  border-bottom: none;
}

.status-no { color: #94a3b8; }
.status-yes { color: #34d399; font-weight: 600; }
.status-warn { color: #f59e0b; }

/* ==========================================================================
   Steps Section
   ========================================================================== */
.steps-section {
  padding: 80px 0;
}

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

.step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(139, 92, 246, 0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CTA Download Section
   ========================================================================== */
.cta-section {
  padding: 80px 0;
}

.cta-box {
  background: linear-gradient(180deg, #171724 0%, #101018 100%);
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 28px;
  padding: 70px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7), 0 0 60px rgba(139, 92, 246, 0.2);
}

.cta-glow-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 250px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.3), transparent 70%);
  pointer-events: none;
}

.cta-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: #fff;
}

.cta-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 36px;
}

.btn-cta-big {
  padding: 18px 42px;
  font-size: 1.15rem;
}

.cta-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  font-size: 0.88rem;
  color: var(--text-sub);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 70px 0;
}

.faq-container {
  max-width: 800px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s ease;
}

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

.accordion-icon {
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform 0.2s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.accordion-content p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
  padding-bottom: 20px;
}

.accordion-item.active {
  border-color: rgba(139, 92, 246, 0.4);
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.footer-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-sub);
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

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

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 992px) {
  .hero-title { font-size: 2.8rem; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
  .steps-grid { grid-template-columns: 1fr; }
  .split-view { flex-direction: column; height: auto; }
  .split-left, .split-right { height: 320px; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .main-nav { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-features-strip { flex-direction: column; gap: 12px; }
  .tab-helper-card { display: none; }
  .footer-content { flex-direction: column; text-align: center; }
}
