/**
 * Workshop Landing Page Styles - Blueprint Noir Design
 * Sales landing page for "System Zyskownej Wyceny" workshops
 */

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&family=Saira+Condensed:wght@400;500;600;700;800&family=Sora:wght@300;400;500;600;700&display=swap');

:root {
  /* Palette: Blueprint Noir */
  --bg-depth: #0B0E11;
  --bg-surface: #151920;
  --bg-card: #1A1F26;

  --accent-copper: #D4A574;
  --accent-copper-dim: #8a6b4b;
  --accent-copper-glow: rgba(212, 165, 116, 0.15);

  --text-primary: #F3F4F6;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;

  --grid-line: rgba(212, 165, 116, 0.08);
  --border-tech: rgba(212, 165, 116, 0.2);

  --success: #10B981;
  --error: #EF4444;

  /* Typography */
  --font-display: 'Saira Condensed', sans-serif;
  --font-body: 'Sora', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --section-padding: 5rem 0;
  --container-max: 1100px;
}

/* ===== RESET & BASE ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }

.workshop-landing-page {
  background-color: var(--bg-depth);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Technical Grid Background */
.blueprint-grid {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: -1;
  mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 90%);
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: var(--section-padding);
  position: relative;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; color: var(--text-primary); }
h3 { font-size: 1.25rem; font-weight: 600; color: var(--text-primary); }

.text-copper { color: var(--accent-copper); }
.text-mono { font-family: var(--font-mono); font-size: 0.9em; }

/* ===== FLASH MESSAGES ===== */
.workshop-flash-messages {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
  max-width: 400px;
}

.workshop-flash {
  padding: 1rem 1.5rem;
  margin-bottom: 0.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
  animation: slideIn 0.3s ease;
}

.workshop-flash-alert {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #FCA5A5;
}

.workshop-flash-notice {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #6EE7B7;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  border-radius: 6px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-copper) 0%, var(--accent-copper-dim) 100%);
  color: #000;
  border: 1px solid var(--accent-copper);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--accent-copper-glow);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
  white-space: normal;
  text-align: center;
}

/* Button with price on second line */
.btn:has(.btn-price) {
  flex-direction: column;
  gap: 0.25rem;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-text svg {
  vertical-align: middle;
  margin-top: -2px;
}

.btn-price {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.9;
}

/* ===== HERO SECTION ===== */
.workshop-hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, var(--bg-depth) 0%, var(--bg-surface) 100%);
  text-align: center;
  overflow-x: hidden;
}

.hero-eyebrow {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid var(--accent-copper);
  color: var(--accent-copper);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  background: var(--accent-copper-glow);
}

.hero-headline {
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

.hero-subheadline {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-cta {
  margin-bottom: 2.5rem;
}

.hero-trust-signals {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.trust-signal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.trust-signal i {
  color: var(--success);
}

/* ===== COUNTDOWN TIMER ===== */
.workshop-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.countdown-box {
  background: var(--bg-card);
  border: 1px solid var(--border-tech);
  padding: 1rem 1.25rem;
  text-align: center;
  min-width: 80px;
  border-radius: 6px;
}

.countdown-number {
  display: block;
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-copper);
  line-height: 1;
}

.countdown-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.countdown-separator {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--text-muted);
}

.countdown-context {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.countdown-context strong {
  color: var(--accent-copper);
}

@media (max-width: 600px) {
  .countdown-box {
    padding: 0.75rem 0.5rem;
    min-width: 60px;
  }

  .countdown-number {
    font-size: 1.5rem;
  }

  .countdown-separator {
    font-size: 1rem;
  }
}

/* ===== PROBLEMS SECTION ===== */
.workshop-problems {
  padding: var(--section-padding);
  background: var(--bg-surface);
  border-top: 1px solid var(--border-tech);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-intro {
  color: var(--text-secondary);
  margin-top: 1rem;
  font-size: 1.05rem;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-tech);
  border-left: 3px solid var(--error);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 6px;
}

.problem-card h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.problem-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===== SOLUTION / STORY SECTION ===== */
.workshop-solution {
  padding: var(--section-padding);
  background: var(--bg-depth);
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

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

.story-quote {
  background: var(--bg-card);
  border-left: 3px solid var(--accent-copper);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-size: 1.1rem;
  color: var(--accent-copper);
  font-style: italic;
}

.story-highlight {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 1.5rem 2rem;
  border-radius: 6px;
  margin: 2rem 0;
}

.story-highlight p {
  color: var(--text-primary);
  margin-bottom: 0;
}

/* ===== VALUE STACK SECTION ===== */
.workshop-value-stack {
  padding: var(--section-padding);
  background: var(--bg-surface);
  border-top: 1px solid var(--border-tech);
}

.value-intro {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.value-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Premium Horizontal Value Cards */
.value-card {
  background: #12172a;
  border: 1px solid var(--border-tech);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

/* Desktop: Horizontal layout with large image */
@media (min-width: 769px) {
  .value-card {
    grid-template-columns: 45% 55%;
    min-height: 380px;
  }

  /* Alternate image position for visual interest */
  .value-card:nth-child(even) {
    grid-template-columns: 55% 45%;
  }

  .value-card:nth-child(even) .value-card-image {
    order: 2;
  }

  .value-card:nth-child(even) .value-card-content {
    order: 1;
  }
}

.value-card.featured {
  border-color: var(--accent-copper);
  box-shadow: 0 0 40px var(--accent-copper-glow);
}

.value-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-copper);
  color: #000;
  padding: 0.4rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  z-index: 10;
  letter-spacing: 0.05em;
}

/* Value Card Images - Full Height Seamless */
.value-card-image {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

@media (min-width: 769px) {
  .value-card-image {
    min-height: 100%;
  }
}

.value-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Content area */
.value-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 769px) {
  .value-card-content {
    padding: 2.5rem;
  }
}

.value-card h3 {
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.value-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.value-card li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.value-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-copper);
}

.value-card-value {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-tech);
}

/* Value Table */
.value-table-wrapper {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.value-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border-tech);
  border-radius: 8px;
  overflow: hidden;
}

.value-table th,
.value-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border-tech);
}

.value-table th {
  background: rgba(212, 165, 116, 0.1);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.value-table td:last-child {
  text-align: right;
  font-family: var(--font-mono);
  color: var(--text-secondary);
}

.value-table tr:last-child td {
  border-bottom: none;
  font-weight: 700;
  color: var(--accent-copper);
  font-size: 1.1rem;
}

/* Price Box */
.price-box {
  text-align: center;
  background: var(--bg-card);
  border: 2px solid var(--accent-copper);
  border-radius: 8px;
  padding: 3rem 2rem;
  box-shadow: 0 0 40px var(--accent-copper-glow);
  max-width: 500px;
  margin: 0 auto;
}

.price-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-family: var(--font-mono);
  font-size: 4rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.price-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ===== CURRICULUM SECTION ===== */
.workshop-curriculum {
  padding: var(--section-padding);
  background: var(--bg-depth);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* Demo Video Block */
.demo-video-block {
  background: var(--bg-card);
  border: 1px solid var(--border-tech);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.demo-video-intro {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.demo-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg-depth);
}

.demo-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.demo-video-caption {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  font-family: var(--font-mono);
}

.curriculum-block {
  background: var(--bg-card);
  border: 1px solid var(--border-tech);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.curriculum-block-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-tech);
}

.curriculum-icon {
  color: var(--accent-copper);
  display: flex;
  align-items: center;
}

/* Modules */
.curriculum-modules {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.curriculum-module {
  background: var(--bg-surface);
  border: 1px solid var(--border-tech);
  border-radius: 8px;
  padding: 1.5rem;
}

.module-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.module-number {
  background: var(--accent-copper);
  color: #000;
  padding: 0.25rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
}

.module-header h4 {
  flex: 1;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 0;
}

.module-lessons {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.module-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

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

.module-lessons-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.module-lessons-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-copper);
}

.module-lessons-list li strong {
  color: var(--text-primary);
}

/* Tools */
.curriculum-tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.tool-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-tech);
  border-radius: 8px;
  padding: 1.5rem;
}

.tool-icon {
  color: var(--accent-copper);
  margin-bottom: 1rem;
}

.tool-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

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

.tool-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tool-card li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.tool-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-size: 0.8rem;
}

.tool-card li strong {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .curriculum-block {
    padding: 1.5rem;
  }

  .module-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .curriculum-tools {
    grid-template-columns: 1fr;
  }
}

/* ===== GUARANTEE SECTION ===== */
.workshop-guarantee {
  padding: var(--section-padding);
  background: var(--bg-depth);
}

/* Premium Horizontal Guarantee Card */
.guarantee-card {
  max-width: 900px;
  margin: 0 auto;
  background: #12172a;
  border: 1px solid var(--border-tech);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 769px) {
  .guarantee-card {
    grid-template-columns: 40% 60%;
    min-height: 340px;
  }
}

/* Guarantee Image - Full Height */
.guarantee-image {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

@media (min-width: 769px) {
  .guarantee-image {
    min-height: 100%;
  }
}

.guarantee-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Guarantee Content */
.guarantee-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 769px) {
  .guarantee-content {
    padding: 2.5rem;
  }
}

.guarantee-card h2 {
  margin-bottom: 1.5rem;
}

.guarantee-card p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.guarantee-card p:last-of-type {
  margin-bottom: 0;
}

.guarantee-card strong {
  color: var(--text-primary);
}

/* ===== TESTIMONIALS SECTION ===== */
.workshop-testimonials {
  padding: var(--section-padding);
  background: var(--bg-surface);
  border-top: 1px solid var(--border-tech);
}

/* Video Testimonial */
.video-testimonial {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.video-testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-tech);
  border-radius: 8px;
  overflow: hidden;
}

.video-testimonial-header {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border-tech);
}

.video-testimonial-header h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.wistia-wrapper {
  position: relative;
  aspect-ratio: 16/9;
}

.video-testimonial-caption {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author-name {
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-author-company {
  font-size: 0.9rem;
  color: var(--accent-copper);
}

.testimonial-quote-short {
  font-style: italic;
  color: var(--text-secondary);
  max-width: 400px;
}

.testimonial-logo {
  height: 40px;
  width: auto;
  opacity: 0.8;
}

/* Text Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-tech);
  border-radius: 8px;
  padding: 1.5rem;
}

.testimonial-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--accent-copper-glow);
  border: 1px solid var(--accent-copper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent-copper);
}

.testimonial-card-meta {
  flex: 1;
}

.testimonial-card-name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.testimonial-card-company {
  font-size: 0.85rem;
  color: var(--accent-copper);
}

.testimonial-card-headline {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.testimonial-card-quote {
  color: var(--text-secondary);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
}

.testimonial-card-logo {
  height: 30px;
  width: auto;
  margin-top: 1rem;
  opacity: 0.7;
}

/* ===== TRANSFORMATION SECTION ===== */
.workshop-transformation {
  padding: var(--section-padding);
  background: var(--bg-depth);
}

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

.transformation-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background: var(--border-tech);
}

.transformation-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

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

.step-marker {
  width: 42px;
  height: 42px;
  background: var(--bg-card);
  border: 2px solid var(--accent-copper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--accent-copper);
  font-size: 0.9rem;
  flex-shrink: 0;
  z-index: 1;
}

.step-content {
  flex: 1;
  padding-top: 0.5rem;
}

.step-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-copper);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.step-content h3 {
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== FAQ SECTION ===== */
.workshop-faq {
  padding: var(--section-padding);
  background: var(--bg-surface);
  border-top: 1px solid var(--border-tech);
  overflow-x: hidden;
}

/* Utility classes */
.nowrap {
  white-space: nowrap;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: inline;
  }
}

.faq-list {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-tech);
  margin-bottom: 1rem;
  border-radius: 6px;
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-copper);
  transition: transform 0.3s;
}

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

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-tech);
  margin-top: 0.5rem;
  padding-top: 1rem;
  line-height: 1.8;
}

/* Final CTA */
.final-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.urgency-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--error);
  margin-bottom: 1rem;
  font-weight: 600;
}

.closing-text {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.signature {
  margin-top: 2rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* ===== FOOTER ===== */
.workshop-footer {
  padding: 2rem 0;
  background: var(--bg-depth);
  border-top: 1px solid var(--border-tech);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  justify-content: center;
}

.footer-logo-img {
  height: 28px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

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

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

.footer-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== SUCCESS PAGE ===== */
.workshop-success {
  padding: 6rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.success-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-tech);
  border-top: 3px solid var(--success);
  border-radius: 8px;
  padding: 3rem 2rem;
}

.success-icon {
  color: var(--success);
  margin-bottom: 1.5rem;
}

.success-card h1 {
  color: var(--success);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.success-steps {
  text-align: left;
  margin: 2rem 0;
}

.success-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.success-step-number {
  width: 32px;
  height: 32px;
  background: var(--accent-copper-glow);
  border: 1px solid var(--accent-copper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--accent-copper);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.success-step-content h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.success-step-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.success-contact {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px dashed var(--border-tech);
  color: var(--text-secondary);
}

.success-contact a {
  color: var(--accent-copper);
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  :root {
    --section-padding: 3rem 0;
  }

  .hero-headline h1 {
    font-size: 1.75rem;
  }

  .hero-subheadline {
    font-size: 1rem;
  }

  .price-amount {
    font-size: 3rem;
  }

  .value-table th,
  .value-table td {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

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

  .video-testimonial-caption {
    flex-direction: column;
    text-align: center;
  }

  .transformation-timeline::before {
    left: 16px;
  }

  .step-marker {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-eyebrow {
    font-size: 0.65rem;
    padding: 0.4rem 0.75rem;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }

  .btn-large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  /* Final CTA button - prevent overflow */
  .final-cta .btn {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }

  .problem-card,
  .testimonial-card {
    padding: 1.25rem;
  }

  .value-card-content {
    padding: 1.5rem;
  }

  .value-card-image {
    min-height: 220px;
  }

  .price-box {
    padding: 2rem 1.5rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .guarantee-content {
    padding: 1.5rem;
  }

  .guarantee-image {
    min-height: 220px;
  }
}
