/* style.css - PromptAprovado Premium Design System */

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

:root {
  /* Color Palette */
  --bg-primary: #080c14;
  --bg-secondary: #0d1321;
  --bg-card: rgba(22, 30, 49, 0.4);
  --bg-card-hover: rgba(28, 39, 64, 0.6);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-hover: rgba(0, 242, 254, 0.3);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --gradient-secondary: linear-gradient(135deg, #b5179e 0%, #7209b7 100%);
  --gradient-glow: linear-gradient(135deg, rgba(0, 242, 254, 0.15) 0%, rgba(138, 43, 226, 0.15) 100%);
  --gradient-gold: linear-gradient(135deg, #ffe259 0%, #ffa751 100%);

  /* Accent Colors */
  --accent-cyan: #00f2fe;
  --accent-blue: #4facfe;
  --accent-purple: #8a2be2;
  --accent-pink: #ff007f;
  --accent-gold: #ffd700;
  --accent-green: #10b981;
  --accent-red: #ef4444;

  /* Typography */
  --font-headings: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout & Spacing */
  --container-width: 1140px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 0 20px rgba(0, 242, 254, 0.25);
  --shadow-glow-purple: 0 0 20px rgba(138, 43, 226, 0.25);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Background Glowing Blobs */
.glow-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.12) 0%, rgba(79, 172, 254, 0.05) 50%, transparent 100%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.glow-blob-1 {
  top: 10%;
  left: -150px;
}

.glow-blob-2 {
  top: 45%;
  right: -150px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.12) 0%, rgba(255, 0, 127, 0.05) 50%, transparent 100%);
}

.glow-blob-3 {
  bottom: 10%;
  left: 20%;
}

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

/* Header */
header {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-color);
  background: rgba(8, 12, 20, 0.8);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 28px;
  height: 28px;
  background: var(--gradient-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #080c14;
}

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

.header-badge {
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.2);
  color: var(--accent-cyan);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.5;
  }
}

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--border-radius-md);
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #080c14;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(45deg);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.4);
}

.btn-primary:hover::after {
  transform: translate(50%, 50%) rotate(45deg);
}

.btn-large {
  padding: 20px 40px;
  font-size: 18px;
  border-radius: var(--border-radius-md);
  width: 100%;
  max-width: 650px;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 80px 0 60px 0;
  overflow: hidden;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-tagline {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-pink);
}

.hero-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-primary);
}

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

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hero-subtitle strong {
  color: var(--text-primary);
}

.hero-ctas {
  margin-top: 12px;
}

.hero-benefits {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}

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

.benefit-item svg {
  color: var(--accent-cyan);
  flex-shrink: 0;
}

/* Interactive Simulator Widget in Hero */
.simulator-widget {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  backdrop-filter: blur(12px);
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.simulator-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
}

.sim-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.sim-tabs {
  display: flex;
  gap: 8px;
}

.sim-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.sim-tab-btn.active {
  background: var(--gradient-primary);
  color: #080c14;
  border-color: transparent;
  font-weight: 700;
}

.sim-window {
  background: rgba(5, 8, 15, 0.6);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sim-terminal-header {
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.term-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.term-dot-red {
  background-color: #ff5f56;
}

.term-dot-yellow {
  background-color: #ffbd2e;
}

.term-dot-green {
  background-color: #27c93f;
}

.term-title {
  margin-left: auto;
  margin-right: auto;
  font-size: 11px;
  color: var(--text-muted);
  font-family: monospace;
}

.sim-terminal-body {
  padding: 16px;
  font-family: monospace;
  font-size: 13px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 300px;
  overflow-y: auto;
}

.sim-message {
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.4s forwards cubic-bezier(0.4, 0, 0.2, 1);
}

.sim-msg-user {
  align-items: flex-end;
}

.sim-msg-ai {
  align-items: flex-start;
}

.sim-bubble {
  padding: 10px 14px;
  border-radius: var(--border-radius-md);
  max-width: 90%;
  line-height: 1.4;
}

.sim-msg-user .sim-bubble {
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.2);
  color: #cffafe;
  border-top-right-radius: 2px;
}

.sim-msg-ai .sim-bubble {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-top-left-radius: 2px;
}

.sim-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sim-msg-user .sim-label {
  color: var(--accent-cyan);
}

.sim-msg-ai .sim-label {
  color: var(--accent-purple);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Trust Proof Metrics Bar */
.metrics-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(13, 19, 33, 0.5);
}

.metrics-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.metric-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.metric-number {
  font-family: var(--font-headings);
  font-size: 32px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-number-purple {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Story Section */
.story-section {
  padding: 100px 0;
  position: relative;
}

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

.section-badge {
  display: inline-block;
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid rgba(138, 43, 226, 0.2);
  color: #d8b4fe;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
}

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

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

.story-visual {
  position: relative;
}

.timeline-container {
  border-left: 2px solid var(--border-color);
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.timeline-item {
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: -43px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 4px solid var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
  transition: var(--transition-smooth);
}

.timeline-item.fail .timeline-dot {
  border-color: var(--accent-red);
  box-shadow: 0 0 10px var(--accent-red);
}

.timeline-item.success .timeline-dot {
  border-color: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green);
}

.timeline-year {
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 800;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.timeline-item.fail .timeline-year {
  color: #fca5a5;
}

.timeline-item.success .timeline-year {
  color: #6ee7b7;
}

.timeline-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
  color: var(--text-secondary);
}

.story-content p strong {
  color: var(--text-primary);
}

.story-content blockquote {
  border-left: 4px solid var(--accent-purple);
  padding: 12px 20px;
  background: rgba(138, 43, 226, 0.05);
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  font-style: italic;
  color: var(--text-primary);
  margin: 12px 0;
}

/* Secret/Method Section */
.secret-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

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

.secret-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.secret-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
}

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

.secret-desc {
  color: var(--text-secondary);
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.secret-desc strong {
  color: var(--text-primary);
}

.interactive-demo {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  backdrop-filter: blur(12px);
  position: relative;
}

.demo-header {
  margin-bottom: 24px;
}

.demo-tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-cyan);
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 8px;
}

.demo-title {
  font-size: 20px;
  font-weight: 700;
}

.demo-chat {
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: var(--font-body);
  font-size: 14px;
}

.chat-bubble {
  display: flex;
  gap: 14px;
}

.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  flex-shrink: 0;
}

.avatar-user {
  background: rgba(0, 242, 254, 0.15);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 242, 254, 0.3);
}

.avatar-ai {
  background: rgba(138, 43, 226, 0.15);
  color: #d8b4fe;
  border: 1px solid rgba(138, 43, 226, 0.3);
}

.chat-bubble-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.chat-name {
  font-weight: 700;
  font-size: 12px;
  color: var(--text-muted);
}

.chat-text {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) var(--border-radius-md);
  color: var(--text-secondary);
}

.chat-bubble-user .chat-text {
  background: rgba(0, 242, 254, 0.05);
  border-color: rgba(0, 242, 254, 0.1);
  color: var(--text-primary);
}

.chat-bubble-ai .chat-text {
  background: rgba(138, 43, 226, 0.05);
  border-color: rgba(138, 43, 226, 0.1);
}

.feedback-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  margin-top: 8px;
}

.feedback-success {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.feedback-warning {
  background: rgba(245, 158, 11, 0.1);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Product Section - Modules */
.product-section {
  padding: 100px 0;
  position: relative;
}

.modules-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.module-card:hover {
  border-color: var(--border-color-hover);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.module-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.module-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.module-badge {
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.2);
  color: var(--accent-cyan);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.module-title {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-headings);
}

.module-toggle-icon {
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.module-card.active .module-toggle-icon {
  transform: rotate(180deg);
  color: var(--accent-cyan);
}

.module-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid transparent;
}

.module-card.active .module-content {
  max-height: 500px;
  border-top-color: var(--border-color);
}

.module-inner-content {
  padding: 24px 24px 32px 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

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

.module-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.module-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
}

.module-feature-item svg {
  color: var(--accent-cyan);
  flex-shrink: 0;
  margin-top: 3px;
}

.module-preview-box {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preview-title {
  font-family: monospace;
  font-size: 11px;
  color: var(--accent-purple);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.preview-code {
  font-family: monospace;
  font-size: 12px;
  color: #cbd5e1;
  background: rgba(0, 0, 0, 0.3);
  padding: 12px;
  border-radius: 4px;
  white-space: pre-wrap;
  border: 1px solid rgba(255, 255, 255, 0.02);
  max-height: 180px;
  overflow-y: auto;
}

.preview-btn {
  margin-top: auto;
  background: transparent;
  border: 1px dashed rgba(0, 242, 254, 0.3);
  color: var(--accent-cyan);
  padding: 8px 12px;
  border-radius: 6px;
  font-family: var(--font-headings);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.preview-btn:hover {
  background: rgba(0, 242, 254, 0.05);
  border-style: solid;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.pricing-card {
  background: var(--bg-card);
  border: 2px solid rgba(0, 242, 254, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
}

.pricing-card::before {
  content: 'OFERTA DE LANÇAMENTO';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #080c14;
  font-family: var(--font-headings);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 20px;
  border-radius: 50px;
  letter-spacing: 1px;
}

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

.countdown-timer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
}

.timer-nums {
  font-family: monospace;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--accent-red);
  animation: pulse 1s infinite;
}

.price-box {
  text-align: center;
  margin-bottom: 32px;
}

.price-original {
  font-size: 18px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
  display: block;
}

.price-current-container {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.price-currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-gold);
}

.price-amount {
  font-family: var(--font-headings);
  font-size: 64px;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.price-period {
  font-size: 16px;
  color: var(--text-secondary);
}

.pricing-cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.price-subtext {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.pricing-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-feature svg {
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.pricing-feature strong {
  color: var(--text-primary);
}

/* Payment & Trust badges in footer / pricing */
.payment-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.trust-icons {
  display: flex;
  gap: 16px;
  opacity: 0.6;
}

.trust-icons img {
  height: 20px;
  filter: grayscale(1) brightness(2);
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  position: relative;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

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

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-title {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-headings);
}

.faq-toggle-icon {
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-card.active .faq-toggle-icon {
  transform: rotate(180deg);
  color: var(--accent-cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-card.active .faq-answer {
  max-height: 300px;
}

.faq-inner-answer {
  padding: 0 24px 24px 24px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* Guarantee badge */
.guarantee-box {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(0, 242, 254, 0.03);
  border: 1px solid rgba(0, 242, 254, 0.1);
  padding: 24px;
  border-radius: var(--border-radius-md);
  margin-top: 48px;
}

.guarantee-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 242, 254, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 32px;
  flex-shrink: 0;
}

.guarantee-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.guarantee-text p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Sticky Footer CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: rgba(8, 12, 20, 0.9);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-color);
  padding: 16px 0;
  z-index: 99;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}

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

.sticky-cta-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.sticky-cta-info {
  display: flex;
  flex-direction: column;
}

.sticky-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.sticky-price {
  font-size: 13px;
  color: var(--accent-gold);
  font-weight: 600;
}

.sticky-price span {
  text-decoration: line-through;
  color: var(--text-muted);
  margin-right: 6px;
}

/* Footer */
footer {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  background: #05080e;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
}

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

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

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--accent-cyan);
}

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

/* Responsive Queries */
@media (max-width: 992px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

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

  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .secret-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .module-inner-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 80px;
  }

  h1 {
    font-size: 26px;
    line-height: 1.35;
  }

  .hero-title {
    font-size: 26px;
    line-height: 1.35;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
  }

  .section-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .secret-title {
    font-size: 22px;
    line-height: 1.3;
  }

  .hero {
    padding: 40px 0;
  }

  .story-section,
  .secret-section,
  .product-section,
  .pricing-section,
  .faq-section {
    padding: 60px 0;
  }

  .container {
    padding: 0 20px;
  }

  .metrics-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .pricing-card {
    padding: 32px 20px;
  }

  .price-amount {
    font-size: 48px;
  }

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

  .sticky-cta {
    display: block;
    /* Show sticky CTA on mobile */
    padding: 12px 0;
  }

  .sticky-cta .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  .sticky-cta-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0;
  }

  .sticky-cta-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
  }

  .sticky-title {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sticky-price {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #sticky-cta-action-btn {
    padding: 10px 16px !important;
    font-size: 13px !important;
    width: auto !important;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .btn-large {
    font-size: 14px;
    padding: 14px 20px;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  body {
    padding-bottom: 120px;
  }

  h1 {
    font-size: 22px;
  }

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

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

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

  .secret-title {
    font-size: 18px;
  }

  .module-title {
    font-size: 16px;
  }

  .faq-title {
    font-size: 15px;
  }

  .hero {
    padding: 30px 0;
  }

  .story-section,
  .secret-section,
  .product-section,
  .pricing-section,
  .faq-section {
    padding: 40px 0;
  }

  .container {
    padding: 0 16px;
  }

  .metrics-layout {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    font-size: 14px;
    padding: 12px 18px;
  }

  .btn-large {
    font-size: 14px;
    padding: 14px 20px;
  }

  .timeline-container {
    padding-left: 20px;
  }

  .timeline-dot {
    left: -31px;
  }

  .sticky-cta {
    padding: 10px 0;
  }

  .sticky-cta .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 16px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  .sticky-cta-layout {
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .sticky-cta-info {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2px;
    flex-wrap: nowrap;
    min-width: 0;
    flex: 1;
  }

  .sticky-title {
    font-size: 12px;
    max-width: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sticky-price {
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #sticky-cta-action-btn {
    width: auto !important;
    max-width: none;
    padding: 10px 14px !important;
    font-size: 12px !important;
    flex-shrink: 0;
    white-space: nowrap;
  }

  /* Compact widget and demo paddings */
  .simulator-widget {
    padding: 16px;
  }

  .sim-terminal-body {
    padding: 12px;
    font-size: 12px;
  }

  .sim-bubble {
    padding: 8px 12px;
  }

  .interactive-demo {
    padding: 16px;
  }

  .demo-chat {
    padding: 12px;
    font-size: 13px;
  }

  .chat-text {
    padding: 10px 12px;
  }

  .pricing-card {
    padding: 24px 16px;
  }

  .price-amount {
    font-size: 40px;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 16px;
    gap: 16px;
  }
}