/* ListIt Website Design System & Styling */

:root {
  /* Surfaces — dark theme */
  --bg:            #0d0b14;  /* page background, near-black violet */
  --surface:       #16131f;  /* cards, sections */
  --surface-2:     #1f1b2e;  /* raised cards, FAQ items */
  --border:        #2a2540;  /* hairlines */

  /* Brand */
  --primary:       #7c3aed;  /* buttons, key accents */
  --primary-hover: #6d28d9;
  --accent:        #a78bfa;  /* accent text, links, eyebrows */
  --magenta:       #c026d3;  /* gradient mid-stop (matches wordmark) */
  --green:         #22c55e;  /* gradient end-stop (matches wordmark "It") */

  /* Text */
  --text:          #f4f2fb;  /* primary text */
  --text-muted:    #b3aecb;  /* secondary text */
  --text-faint:    #7d7796;  /* captions, footer */

  /* Brand gradient (wordmark + hero highlights) */
  --grad: linear-gradient(90deg, #7c3aed 0%, #c026d3 55%, #22c55e 100%);

  /* Effects */
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 10px 40px rgba(124, 58, 237, .12);
  --shadow-hover: 0 15px 45px rgba(124, 58, 237, .22);
  --maxw:      1120px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg);
  color: var(--text);
}

body {
  font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Accessibility settings */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
  *, *::before, *::after {
    animation-delay: -1ms !important;
    animation-duration: -1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 650;
}

p {
  color: var(--text-muted);
  font-size: 1.0625rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

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

/* Layout Utilities */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section {
  padding: clamp(60px, 10vw, 120px) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header .eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 700;
  display: block;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
}

/* Gradient Text Helper */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* Buttons & Badges */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text);
  box-shadow: var(--shadow);
}

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

.btn-primary:active {
  transform: translateY(0);
}

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

.btn-ghost:hover {
  border-color: var(--accent);
  background-color: rgba(124, 58, 237, 0.05);
  transform: translateY(-2px);
}

/* Google Play Badge Custom Styling */
.play-badge {
  display: inline-flex;
  align-items: center;
  background: #000;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 8px 16px;
  color: #fff;
  font-family: sans-serif; /* matches Play style */
  font-size: 11px;
  line-height: 1.2;
  cursor: not-allowed;
  user-select: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.play-badge::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.15), transparent 60%);
  pointer-events: none;
}

.play-badge:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.2);
}

.play-badge .badge-icon {
  width: 26px;
  height: 26px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-badge .badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.play-badge .badge-subtitle {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #a0a0a0;
}

.play-badge .badge-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 11, 20, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header-scrolled {
  padding: 12px 0;
  background: rgba(13, 11, 20, 0.9);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}

.logo img {
  height: 32px;
  width: 32px;
  object-fit: contain;
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

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

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

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
  z-index: 1010;
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 999;
  padding: 100px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-links a {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
}

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

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Hero Section */
.hero {
  padding-top: 140px;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.08), transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(192, 38, 211, 0.05), transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

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

.hero-content .eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.hero-content h1 {
  margin-bottom: 24px;
}

.hero-content .subhead {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-trust {
  font-size: 0.85rem;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust span {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
}

/* Phone Mockup Styling */
.mockup-container {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  width: 310px;
  height: 630px;
  background: #000;
  border: 12px solid #1c1829;
  border-radius: 40px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8),
              0 0 0 1px rgba(255, 255, 255, 0.05),
              0 0 40px rgba(124, 58, 237, 0.15);
  position: relative;
  overflow: hidden;
}

/* Notch */
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 24px;
  background: #1c1829;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 10;
}

/* Speaker & Camera */
.phone-mockup::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: #2a2540;
  border-radius: 2px;
  z-index: 11;
}

/* Phone Screen Content */
.phone-screen {
  width: 100%;
  height: 100%;
  background: #0d0b14;
  padding: 32px 16px 16px;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  overflow: hidden;
  user-select: none;
}

/* Simulated App Header */
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.app-title {
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.app-user {
  background: rgba(124, 58, 237, 0.1);
  padding: 3px 8px;
  border-radius: 99px;
  font-size: 9px;
  color: var(--accent);
}

/* Simulated Content - Steps displayer */
.sim-step {
  display: none;
  flex-direction: column;
  flex: 1;
  animation: fadeIn 0.4s ease forwards;
}

.sim-step.active {
  display: flex;
}

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

/* Step 1 Content: Camera HUD */
.sim-camera {
  flex: 1;
  background: #110f1a;
  border-radius: 12px;
  border: 1px dashed var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.camera-grid {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.camera-grid::before, .camera-grid::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
}

.camera-grid::before {
  top: 33.3%; bottom: 33.3%; left: 0; right: 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.05);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.camera-grid::after {
  left: 33.3%; right: 33.3%; top: 0; bottom: 0;
  border-left: 1px dashed rgba(255, 255, 255, 0.05);
  border-right: 1px dashed rgba(255, 255, 255, 0.05);
}

.camera-overlay-svg {
  width: 48px;
  height: 48px;
  color: var(--text-faint);
  margin-bottom: 16px;
}

.camera-hint {
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 12px;
  border-radius: 99px;
  border: 1px solid var(--border);
}

.camera-hud-bottom {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  margin-top: 16px;
}

.cam-btn-small {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.cam-trigger {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--primary);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
}

/* Step 2 Content: AI Draft */
.sim-draft {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sim-loader {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.15);
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--accent);
  font-size: 10px;
}

.spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(167, 139, 250, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.sim-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px;
  border-radius: 8px;
}

.sim-label {
  font-size: 8px;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.sim-val {
  font-size: 11px;
  color: var(--text);
  font-weight: 500;
}

.sim-price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sim-bar {
  height: 6px;
  background: var(--surface-2);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 4px;
}

.sim-bar-fill {
  height: 100%;
  background: var(--grad);
  width: 85%;
}

/* Step 3 Content: Review */
.sim-review {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-badge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 8px;
  border-radius: 8px;
  color: var(--green);
  font-size: 10px;
  font-weight: 600;
}

.sim-editable-field {
  border: 1px solid var(--primary);
  background: rgba(124, 58, 237, 0.03);
  padding: 10px;
  border-radius: 8px;
  position: relative;
}

.sim-editable-field::after {
  content: '✎';
  position: absolute;
  right: 10px;
  top: 10px;
  color: var(--accent);
  font-size: 10px;
}

.sim-btn-row {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.sim-btn {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 10px;
  border: 1px solid transparent;
}

.sim-btn-ghost {
  border-color: var(--border);
  color: var(--text-muted);
}

.sim-btn-primary {
  background: var(--primary);
  color: #fff;
}

/* Step 4 Content: Publish */
.sim-publish {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  gap: 16px;
}

.success-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 28px;
  animation: scaleUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleUp {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.publish-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.publish-sub {
  font-size: 10px;
  color: var(--text-muted);
  max-width: 180px;
}

.sim-ebay-card {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.sim-ebay-img {
  width: 32px;
  height: 32px;
  background: var(--border);
  border-radius: 6px;
  background-size: cover;
  background-position: center;
}

.sim-ebay-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.sim-ebay-title {
  font-weight: 600;
  font-size: 10px;
  color: var(--text);
  text-align: left;
}

.sim-ebay-price {
  font-weight: 700;
  color: var(--green);
  font-size: 10px;
}

/* Interactive phone controller buttons */
.mockup-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.ctrl-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.ctrl-btn:hover, .ctrl-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.4);
}

/* How It Works Section */
.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 20px;
}

/* Horizontal connectors on desktop */
@media (min-width: 769px) {
  .steps-container::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--magenta), var(--green));
    opacity: 0.25;
    z-index: 1;
  }
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: var(--shadow);
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  background: var(--surface-2);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(124, 58, 237, 0.15);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2px;
}

.feature-card h3 {
  margin-bottom: 12px;
}

/* Why Free Callout Band */
.why-free {
  background: radial-gradient(circle at 10% 20%, rgba(192, 38, 211, 0.06), transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(34, 197, 94, 0.06), transparent 50%),
              var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-free-content h2 {
  margin-bottom: 20px;
}

.why-free-content p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.why-free-sub {
  font-size: 0.88rem;
  color: var(--text-faint);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.why-free-visual {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.3);
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.flow-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.flow-arrow {
  display: flex;
  justify-content: center;
  color: var(--text-faint);
  font-size: 14px;
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.faq-item:hover {
  border-color: rgba(124, 58, 237, 0.25);
  background: var(--surface-2);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 650;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  outline: none;
}

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

.faq-item summary .chevron {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  stroke-width: 2px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] summary .chevron {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 24px 20px;
  border-top: 1px solid transparent;
  color: var(--text-muted);
}

.faq-item[open] .faq-content {
  border-top-color: var(--border);
  animation: slideDown 0.25s ease forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Final CTA Band */
.cta-band {
  background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.05)),
              var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  text-align: center;
  padding: 80px 40px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band h2 {
  margin-bottom: 16px;
  font-size: 2.25rem;
}

.cta-band p {
  margin-bottom: 32px;
  font-size: 1.15rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background-color: #08060d;
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  font-size: 0.9rem;
  color: var(--text-faint);
}

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

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-faint);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

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

.footer-links a {
  color: var(--text-muted);
  font-weight: 500;
}

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

.footer-contact {
  color: var(--text-muted);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-disclaimer {
  line-height: 1.5;
  font-size: 0.8rem;
  max-width: 800px;
}

.footer-copyright-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-free {
    grid-template-columns: 1fr;
    padding: 40px;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 8px 0;
  }
  
  .nav-links, .nav-actions .btn {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .step-card {
    text-align: center;
    padding: 32px 20px;
  }
  
  .step-num {
    margin: 0 auto 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cta-band {
    padding: 60px 20px;
  }
  
  .cta-band h2 {
    font-size: 1.75rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links-col {
    align-items: flex-start;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-copyright-row {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* Privacy Policy Layout Specifics */
.privacy-page {
  padding-top: 120px;
}

.privacy-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 0;
}

.privacy-container h1 {
  font-size: 2.25rem;
  margin-bottom: 8px;
}

.privacy-meta {
  color: var(--text-faint);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.privacy-content h2 {
  font-size: 1.35rem;
  margin-top: 40px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

.privacy-content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.privacy-content ul {
  margin-bottom: 24px;
  padding-left: 24px;
}

.privacy-content li {
  margin-bottom: 10px;
  color: var(--text-muted);
}

.privacy-content strong {
  color: var(--text);
}
