/* 
  OffScript App-Match Design System 
  Style: App Replica (Coral Accent, Deep Black)
  Fonts: Inter (UI/Body), Space Grotesk (Display)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  /* Palette 4: Modern Tech - Deep Purple-Slate, Multi-Accent */
  --bg-root: #0C0A14;
  --bg-surface: #13111C;
  --bg-surface-hover: #1C1828;

  --border-default: #2A2540;
  --border-highlight: #3A3555;

  --text-primary: #F4F2FA;
  --text-secondary: #A8A4B8;
  --text-tertiary: #6E6880;

  /* Logo accent - CORAL (reserved for logo + primary CTA only) */
  --accent-primary: #FF8B60;
  --accent-hover: #FF9E7D;
  --accent-dim: rgba(255, 139, 96, 0.10);

  /* Secondary accent - Purple (for feature highlights, tags) */
  --accent-blue: #6D28D9;
  --accent-blue-dim: rgba(109, 40, 217, 0.15);

  /* Quaternary accent - Cyan (for variety) */
  --accent-cyan: #1E40AF;
  --accent-cyan-dim: rgba(30, 64, 175, 0.15);

  /* Tertiary accent - Soft Green (for checkmarks, success) */
  --accent-green: #6EE7B7;
  --accent-green-dim: rgba(110, 231, 183, 0.15);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;

  /* Layout */
  --max-width: 1100px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--bg-root);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 80px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

/* Bottom Navigation Bar - Compact Pill Style */
.bottom-nav {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(30, 28, 38, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  padding: 8px 16px;
  gap: 8px;
}

.bottom-nav-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 10px 14px;
  border-radius: var(--radius-full);
  position: relative;
  white-space: nowrap;
}

.bottom-nav-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.bottom-nav-item span {
  font-size: 0.8rem;
  font-weight: 500;
}

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

.bottom-nav-item:hover svg {
  transform: scale(1.1);
}

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

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

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

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

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  gap: 8px;
}

.btn-primary {
  background: var(--accent-primary);
  color: #000;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Hero Section */
.hero {
  padding: 80px 0 100px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Hero Brand (Centered Logo + Name) */
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-logo-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-icon svg {
  width: 36px;
  height: 36px;
  color: #000;
}

.hero-brand h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1.05;
  margin: 0 0 24px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.hero-subheadline {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 48px;
  font-weight: 400;
  line-height: 1.6;
}

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

.sub-cta {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  margin-top: 16px;
}

/* Hero Mockup Container */
.hero-mockup {
  margin-top: 80px;
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-mockup::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(255, 139, 96, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* Floating App Window */
.app-window {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 80px rgba(255, 139, 96, 0.08);
}

.app-window-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border-default);
}

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

.window-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-tertiary);
}

.window-dot.red {
  background: #FF5F56;
}

.window-dot.yellow {
  background: #FFBD2E;
}

.window-dot.green {
  background: #27CA40;
}

.window-title {
  flex: 1;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

.app-window-content {
  padding: 24px;
  min-height: 300px;
}

/* Live Session Demo */
.live-session-demo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.session-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-default);
}

.session-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #27CA40;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.session-timer {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text-tertiary);
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-bubble {
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 85%;
}

.chat-bubble.user {
  background: var(--bg-surface-hover);
  color: var(--text-primary);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-bubble.ai {
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.2) 0%, rgba(30, 64, 175, 0.2) 100%);
  border: 1px solid rgba(109, 40, 217, 0.3);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-bubble.ai .ai-label {
  display: block;
  font-size: 0.75rem;
  color: var(--accent-blue);
  margin-bottom: 4px;
  font-weight: 600;
}

/* Comparison Section */
.comparison-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-default);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.comparison-card.old-way {
  opacity: 0.7;
}

.comparison-card.new-way {
  border-color: var(--accent-primary);
  background: linear-gradient(180deg, rgba(255, 139, 96, 0.05) 0%, transparent 100%), var(--bg-surface);
}

.comparison-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comparison-card.old-way .comparison-label {
  color: var(--text-tertiary);
}

.comparison-card.new-way .comparison-label {
  color: var(--accent-primary);
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.5;
}

.comparison-card.old-way .comparison-list li {
  color: var(--text-tertiary);
}

.comparison-card.new-way .comparison-list li {
  color: var(--text-secondary);
}

.comparison-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.comparison-card.old-way .comparison-icon {
  color: #FF5F56;
}

.comparison-card.new-way .comparison-icon {
  color: var(--accent-green);
}

/* Core Features Section */
.core-features {
  padding: 100px 0;
  border-top: 1px solid var(--border-default);
}

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

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}

.feature-card:hover {
  border-color: rgba(232, 138, 96, 0.4);
  transform: translateY(-4px);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.2),
    0 0 40px rgba(232, 138, 96, 0.15);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: rgba(232, 138, 96, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: #e88a60;
}

.feature-card:hover .feature-icon {
  background: rgba(232, 138, 96, 0.2);
  box-shadow: 0 0 24px rgba(232, 138, 96, 0.3);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Sticky CTA Bar */
.sticky-cta-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(12, 10, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-default);
  padding: 12px 24px;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.sticky-cta-bar.visible {
  transform: translateY(0);
  opacity: 1;
}

.sticky-cta-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.sticky-cta-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.sticky-cta-btn {
  background: #e88a60;
  color: #000;
  height: 40px;
  padding: 0 24px;
  font-size: 0.9rem;
}

.sticky-cta-btn:hover {
  background: #f09a70;
}

/* One Tool / Tabs Section */
.one-tool {
  padding: 120px 0;
  border-top: 1px solid var(--border-default);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  margin: 0 0 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin: 0;
}

.tabs-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--border-default);
  background: #000;
}

.tab-btn {
  flex: 1;
  padding: 24px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid var(--border-default);
}

.tab-btn:last-child {
  border-right: none;
}

.tab-btn:hover {
  color: var(--text-primary);
  background: var(--bg-surface);
}

.tab-btn.active {
  color: var(--text-primary);
  background: var(--bg-surface);
  box-shadow: inset 0 -2px 0 var(--accent-primary);
}

.tabs-content-area {
  padding: 80px;
  min-height: 500px;
  background: var(--bg-surface);
}

.tab-content {
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

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

.tab-text h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 24px;
  font-weight: 600;
}

.tab-text p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  margin-bottom: 16px;
  padding-left: 28px;
  position: relative;
  color: var(--text-secondary);
  font-size: 1rem;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--accent-blue);
  border-radius: 50%;
}

/* Mock UI */
.mock-ui {
  background: #000;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.mock-header {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-default);
  padding-bottom: 16px;
}

.msg {
  padding: 16px 24px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.msg.user {
  background: var(--bg-surface-hover);
  color: var(--text-primary);
  margin-left: 20%;
  border-bottom-right-radius: 4px;
}

.msg.ai {
  background: var(--accent-dim);
  color: var(--accent-primary);
  margin-right: 20%;
  border-bottom-left-radius: 4px;
}

.summary-line {
  padding: 12px 16px;
  background: var(--bg-surface-hover);
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-primary);
}

/* Feature Mockup Styling */
.feature-mockup {
  min-height: 280px;
}

.feature-mockup .app-window-content {
  min-height: 220px;
}

/* Summary Items */
.summary-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-surface-hover);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.summary-item svg {
  flex-shrink: 0;
}

.summary-item.done svg {
  color: var(--accent-green);
}

.summary-item.decision svg {
  color: var(--accent-blue);
}

.summary-item.synced {
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.15) 0%, rgba(30, 64, 175, 0.1) 100%);
  border: 1px solid rgba(109, 40, 217, 0.2);
}

.summary-item.synced svg {
  color: var(--accent-blue);
}

/* How it Works - Timeline Layout */
.how-it-works {
  padding: 100px 0;
  border-top: 1px solid var(--border-default);
}

.steps-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.step-item {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--accent-blue);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  width: 2px;
  height: calc(100% - 48px + 48px);
  background: var(--border-default);
}

.step-card {
  flex: 1;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: border-color 0.2s;
}

.step-card:hover {
  border-color: var(--border-highlight);
}

.step-icon {
  color: var(--accent-blue);
  flex-shrink: 0;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 12px;
  font-weight: 600;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 16px;
}

.step-feature {
  display: inline-block;
  background: var(--accent-blue-dim);
  color: var(--accent-blue);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
}

.step-item:nth-child(even) .step-number {
  background: var(--accent-cyan);
}

.step-item:nth-child(even) .step-icon {
  color: var(--accent-cyan);
}

.step-item:nth-child(even) .step-feature {
  background: var(--accent-cyan-dim);
  color: var(--accent-cyan);
}

/* Testimonials */
.testimonials-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-default);
}

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

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 32px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin: 0 0 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--bg-surface-hover);
  border-radius: 50%;
}

.author-info h4 {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* Pricing Section */
.pricing-section {
  padding: 120px 0;
  border-top: 1px solid var(--border-default);
}

/* Pricing Toggle */
.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 64px;
  background: var(--bg-surface);
  border-radius: var(--radius-full);
  padding: 6px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border-default);
}

.pricing-toggle-btn {
  flex: 1;
  padding: 14px 24px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--radius-full);
  transition: all 0.2s;
}

.pricing-toggle-btn:hover {
  color: var(--text-primary);
}

.pricing-toggle-btn.active {
  background: var(--accent-primary);
  color: #000;
}

/* Pricing Panels */
.pricing-panel {
  display: none;
}

.pricing-panel.active {
  display: block;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--accent-primary);
  background: linear-gradient(180deg, rgba(255, 139, 96, 0.05) 0%, rgba(0, 0, 0, 0) 100%), var(--bg-surface);
}

.pricing-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 8px;
}

.price {
  font-size: 3rem;
  font-weight: 600;
  font-family: var(--font-display);
  margin: 24px 0;
  color: var(--text-primary);
}

.price span {
  font-size: 1rem;
  color: var(--text-tertiary);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  flex: 1;
}

.pricing-features li {
  margin-bottom: 16px;
  color: var(--text-secondary);
  display: flex;
  gap: 12px;
  align-items: center;
}

.pricing-features li svg {
  color: var(--accent-green);
  width: 20px;
  height: 20px;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-default);
}

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

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--border-highlight);
}

.faq-question {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.1rem;
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  line-height: 1.6;
  display: none;
}

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

.faq-icon {
  transition: transform 0.3s;
}

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

/* CTA Section */
.cta-section {
  padding: 120px 0;
  border-top: 1px solid var(--border-default);
  text-align: center;
}

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

.cta-container h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin: 0 0 16px;
  font-weight: 600;
}

.cta-container p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin: 0 0 40px;
  line-height: 1.6;
}

.email-form {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  justify-content: center;
}

.email-form input {
  flex: 1;
  max-width: 320px;
  padding: 16px 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-default);
  background: var(--bg-surface);
  color: var(--text-primary);
  font-size: 1rem;
}

.email-form input::placeholder {
  color: var(--text-tertiary);
}

.email-form button {
  padding: 16px 32px;
  background: var(--accent-primary);
  color: #000;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.email-form button:hover {
  background: var(--accent-hover);
}

/* Download Buttons */
.download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
}

.download-btn svg {
  flex-shrink: 0;
}

/* Footer */
.main-footer {
  padding: 80px 0 80px;
  border-top: 1px solid var(--border-default);
  background: var(--bg-surface);
}

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

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 16px;
  color: var(--text-primary);
}

.footer-brand p {
  color: var(--text-secondary);
  max-width: 300px;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--text-primary);
  font-size: 0.9rem;
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

/* Responsive */
@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.5rem;
  }

  .tab-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tabs-nav {
    flex-direction: column;
  }

  .tab-btn {
    border-right: none;
    border-bottom: 1px solid var(--border-default);
    justify-content: flex-start;
  }

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

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

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

  .email-form {
    flex-direction: column;
    align-items: center;
  }

  .email-form input {
    max-width: 100%;
    width: 100%;
  }

  .step-item {
    flex-direction: column;
    gap: 16px;
  }

  .step-item:not(:last-child)::before {
    display: none;
  }
}
