/* ============================================
   Stage Program System Marketing Website
   ============================================ */

:root {
  --color-primary: #6366f1;
  --color-primary-dark: #4f46e5;
  --color-secondary: #f59e0b;
  --color-dark: #0f172a;
  --color-text: #334155;
  --color-text-light: #64748b;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-border: #e2e8f0;
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
  --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-dark);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

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

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

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
  background: var(--color-bg);
  color: var(--color-dark);
  border: 2px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-block {
  width: 100%;
}

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

/* ============================================
   Navigation
   ============================================ */

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.main-nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-dark);
}

.logo-icon {
  font-size: 1.75rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.2s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(217, 70, 239, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 60% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 40%);
  z-index: 0;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  color: var(--color-primary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
}

.stat-unit {
  font-size: 1.25rem;
  font-weight: 500;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* Hero Mockup */
.hero-mockup {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  max-width: 700px;
  z-index: 1;
}

.mockup-browser {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.browser-dots {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
}

.browser-dots span:first-child { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-content {
  padding: 20px;
  background: linear-gradient(180deg, #1a1612 0%, #2d2520 100%);
  min-height: 350px;
}

.mockup-program {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 20px;
}

.mockup-header {
  text-align: center;
  margin-bottom: 20px;
}

.mockup-kicker {
  width: 80px;
  height: 8px;
  background: rgba(247, 224, 147, 0.3);
  margin: 0 auto 10px;
  border-radius: 4px;
}

.mockup-title {
  width: 180px;
  height: 24px;
  background: rgba(247, 224, 147, 0.6);
  margin: 0 auto 10px;
  border-radius: 4px;
}

.mockup-subtitle {
  width: 120px;
  height: 12px;
  background: rgba(247, 224, 147, 0.3);
  margin: 0 auto;
  border-radius: 4px;
}

.mockup-sections {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-section {
  height: 60px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
}

.mockup-section.short {
  height: 40px;
  width: 70%;
}

/* Phone mockup */
.mockup-phone {
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 140px;
  background: #1a1a1a;
  border-radius: 24px;
  padding: 8px;
  box-shadow: var(--shadow-xl);
}

.phone-notch {
  width: 60px;
  height: 20px;
  background: #000;
  margin: 0 auto 8px;
  border-radius: 0 0 12px 12px;
}

.phone-content {
  background: linear-gradient(180deg, #0a0a12 0%, #1a1a2e 100%);
  border-radius: 16px;
  padding: 12px;
  min-height: 240px;
}

.mockup-program.small .mockup-title {
  width: 80px;
  height: 16px;
}

.mockup-program.small .mockup-section {
  height: 30px;
}

.mockup-program.small .mockup-section.short {
  height: 20px;
}

/* ============================================
   Problem/Solution Section
   ============================================ */

.problem-section {
  padding: 6rem 0;
  background: var(--color-bg-alt);
}

.problem-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.problem-card {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  box-shadow: var(--shadow-md);
}

.problem-card.old {
  border: 2px solid #fee2e2;
  background: #fef2f2;
}

.problem-card.new {
  border: 2px solid #d1fae5;
  background: #ecfdf5;
}

.problem-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.problem-card h3 {
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.problem-card ul {
  list-style: none;
}

.problem-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.problem-card.old li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: bold;
}

.problem-card.new li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.problem-arrow {
  font-size: 2rem;
  color: var(--color-primary);
  font-weight: bold;
}

/* ============================================
   Section Headers
   ============================================ */

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-header p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--color-text-light);
}

/* ============================================
   Features Section
   ============================================ */

.features-section {
  padding: 6rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}

.feature-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* ============================================
   Templates Section
   ============================================ */

.templates-section {
  padding: 6rem 0;
  background: var(--color-bg-alt);
}

.templates-showcase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.template-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--color-border);
  transition: all 0.3s ease;
  cursor: pointer;
}

.template-card:hover,
.template-card.active {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.template-preview {
  height: 180px;
  padding: 12px;
  position: relative;
}

/* Classic template preview */
.template-preview.classic {
  background: linear-gradient(180deg, #f5f3ea 0%, #e8e4d9 100%);
}

.template-preview.classic .tp-header {
  height: 50px;
  background: rgba(67, 50, 28, 0.1);
  border-radius: 4px;
  margin-bottom: 8px;
}

.template-preview.classic .tp-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.template-preview.classic .tp-block {
  height: 30px;
  background: rgba(67, 50, 28, 0.08);
  border-radius: 4px;
}

/* Playbill template preview */
.template-preview.playbill {
  background: #faf9f7;
  display: flex;
}

.template-preview.playbill .tp-sidebar {
  width: 30%;
  background: #1a1a1a;
  border-radius: 4px 0 0 4px;
}

.template-preview.playbill .tp-main {
  flex: 1;
  padding: 8px;
}

.template-preview.playbill .tp-hero {
  height: 60px;
  background: linear-gradient(180deg, #e8e6e1 0%, #d8d4c9 100%);
  border-radius: 4px;
  margin-bottom: 6px;
}

.template-preview.playbill .tp-block {
  height: 25px;
  background: rgba(0,0,0,0.05);
  border-radius: 4px;
}

/* Spotlight template preview */
.template-preview.spotlight {
  background: #111;
}

.template-preview.spotlight .tp-nav {
  height: 20px;
  background: #000;
  margin-bottom: 8px;
}

.template-preview.spotlight .tp-hero {
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(230,57,70,0.3) 0%, transparent 70%);
  margin-bottom: 8px;
}

.template-preview.spotlight .tp-sections {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.template-preview.spotlight .tp-section {
  height: 25px;
  background: rgba(255,255,255,0.05);
}

.template-preview.spotlight .tp-section.alt {
  background: rgba(255,255,255,0.1);
}

/* Marquee template preview */
.template-preview.marquee {
  background: #faf8f3;
  padding: 8px;
}

.template-preview.marquee .tp-border {
  height: 100%;
  border: 3px solid #722f37;
  border-radius: 4px;
  padding: 8px;
}

.template-preview.marquee .tp-vintage-header {
  height: 50px;
  background: rgba(114, 47, 55, 0.1);
  border-radius: 4px;
  margin-bottom: 8px;
}

.template-preview.marquee .tp-vintage-content {
  height: 60px;
  background: rgba(114, 47, 55, 0.05);
  border-radius: 4px;
}

/* Neon template preview */
.template-preview.neon {
  background: #0a0a12;
}

.template-preview.neon .tp-glow-header {
  height: 60px;
  background: linear-gradient(180deg, rgba(0,255,255,0.2) 0%, transparent 100%);
  margin-bottom: 8px;
  border-bottom: 2px solid rgba(255,0,128,0.5);
  box-shadow: 0 2px 10px rgba(255,0,128,0.3);
}

.template-preview.neon .tp-glow-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.template-preview.neon .tp-glow-block {
  height: 25px;
  background: rgba(0,255,255,0.1);
  border: 1px solid rgba(0,255,255,0.2);
  border-radius: 4px;
}

.template-info {
  padding: 1rem;
  text-align: center;
}

.template-info h3 {
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
}

.template-info p {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

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

/* ============================================
   How It Works Section
   ============================================ */

.how-section {
  padding: 6rem 0;
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step h3 {
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}

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

.step-arrow {
  font-size: 1.5rem;
  color: var(--color-border);
  padding-top: 0.75rem;
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials-section {
  padding: 6rem 0;
  background: var(--color-bg-alt);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.author-info strong {
  display: block;
  color: var(--color-dark);
}

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

/* ============================================
   Pricing Section
   ============================================ */

.pricing-section {
  padding: 6rem 0;
}

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

.pricing-card {
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-xl);
  transform: scale(1.02);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.pricing-header h3 {
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: 1.25rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-dark);
}

.price-period {
  font-size: 1rem;
  color: var(--color-text-light);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.625rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.pricing-features li.muted {
  color: var(--color-text-light);
}

.pricing-features .check {
  color: #10b981;
  font-weight: bold;
}

.pricing-features .check.highlight {
  color: var(--color-primary);
}

.pricing-features .x {
  color: var(--color-border);
}

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 1rem;
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-icon {
  font-size: 2rem;
}

.guarantee-text strong {
  display: block;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}

.guarantee-text p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 0;
}

/* ============================================
   FAQ Section
   ============================================ */

.faq-section {
  padding: 6rem 0;
  background: var(--color-bg-alt);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-bg);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.faq-item h3 {
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-dark);
}

.faq-item p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   Final CTA Section
   ============================================ */

.final-cta {
  padding: 6rem 0;
  background: var(--color-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(217, 70, 239, 0.2) 0%, transparent 50%);
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.final-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  margin-bottom: 1.5rem;
}

.cta-note {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
}

.footer-links h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
  .hero-mockup {
    display: none;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

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

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

  .templates-showcase {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .problem-arrow {
    transform: rotate(90deg);
  }

  .templates-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }

  .step {
    max-width: 300px;
  }

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

  .pricing-card.featured {
    transform: none;
    order: -1;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .templates-showcase {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto 3rem;
  }

  .template-preview {
    height: 140px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-brand .nav-logo {
    justify-content: center;
  }
}
