/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --christmas-red: #C41E3A;
  --christmas-red-dark: #991b1b;
  --christmas-red-light: #DC143C;
  --gold: #FFD700;
  --gold-dark: #DAA520;
  --forest-green: #228B22;
  --forest-green-dark: #166534;
  --snow-white: #FFFAFA;
  --cream: #FFF8DC;
  --dark-text: #1f2937;
  --gray-text: #4b5563;
  --light-gray: #f3f4f6;
}

.free-price {
  color: var(--forest-green) !important;
  font-weight: 800;
  animation: pulse-free 1.5s ease-in-out infinite;
}

@keyframes pulse-free {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(180deg, var(--christmas-red) 0%, var(--christmas-red-light) 50%, var(--christmas-red) 100%);
  min-height: 100vh;
  color: #fff;
  padding: 0;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Snowy Border Top */
.snow-border-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20'%3E%3Cpath fill='%23FFFAFA' d='M0 20 Q10 10 20 18 Q30 8 40 16 Q50 5 60 15 Q70 8 80 17 Q90 10 100 20 L100 0 L0 0 Z'/%3E%3C/svg%3E") repeat-x;
  background-size: 100px 40px;
  z-index: 1000;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

/* Snowy Border Bottom */
.snow-border-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20'%3E%3Cpath fill='%23FFFAFA' d='M0 0 Q10 10 20 2 Q30 12 40 4 Q50 15 60 5 Q70 12 80 3 Q90 10 100 0 L100 20 L0 20 Z'/%3E%3C/svg%3E") repeat-x;
  background-size: 100px 40px;
  z-index: 1000;
  filter: drop-shadow(0 -4px 6px rgba(0,0,0,0.1));
}

/* Animated Falling Snow */
.snow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  top: -20px;
  color: white;
  font-size: 1.5em;
  animation: fall linear infinite;
  opacity: 0.9;
  text-shadow: 0 0 5px rgba(255,255,255,0.5);
}

@keyframes fall {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0.3;
  }
}

/* Landing Page Container */
.landing-page {
  position: relative;
  z-index: 1;
  padding-top: 50px;
  padding-bottom: 60px;
}

/* Section Container */
.section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero-section {
  padding: 80px 20px 60px;
  text-align: center;
}

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

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark-text);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9em;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.hero-section h1 {
  font-size: 3.2em;
  font-weight: 800;
  color: var(--gold);
  text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.35em;
  color: var(--snow-white);
  margin-bottom: 35px;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-cta-group {
  margin-bottom: 40px;
}

.hero-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
  color: white;
  padding: 20px 50px;
  font-size: 1.3em;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(34, 139, 34, 0.5), 0 0 0 4px var(--gold);
  transition: all 0.3s ease;
}

.hero-cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(34, 139, 34, 0.6), 0 0 0 4px var(--gold), 0 0 30px var(--gold);
}

.hero-price-note {
  margin-top: 15px;
  font-size: 1.1em;
  color: var(--snow-white);
}

.hero-social-proof {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px 30px;
  display: inline-block;
  max-width: 500px;
}

.trust-avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.trust-avatars .avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9em;
  margin-left: -8px;
  border: 3px solid var(--snow-white);
}

.trust-avatars .avatar:first-child {
  margin-left: 0;
}

.hero-social-proof p {
  font-style: italic;
  font-size: 1em;
  color: var(--snow-white);
}

/* Trust Strip */
.trust-strip {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px 20px;
}

.trust-strip-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

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

.trust-icon {
  display: block;
  font-size: 1.8em;
  font-weight: 800;
  color: var(--gold);
}

.trust-text {
  font-size: 0.95em;
  color: var(--snow-white);
  font-weight: 500;
}

/* Problem Section */
.problem-section {
  padding: 70px 20px;
  background: rgba(0, 0, 0, 0.1);
}

.problem-section h2 {
  text-align: center;
  font-size: 2.4em;
  color: var(--gold);
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.problem-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.problem-icon {
  font-size: 1.1em;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 15px;
}

.problem-card p {
  color: var(--snow-white);
  font-size: 1em;
  line-height: 1.6;
}

/* Solution Section */
.solution-section {
  padding: 70px 20px;
}

.solution-section h2 {
  text-align: center;
  font-size: 2.4em;
  color: var(--gold);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.solution-intro {
  text-align: center;
  font-size: 1.2em;
  color: var(--snow-white);
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

.solution-benefits {
  max-width: 600px;
  margin: 0 auto 30px;
}

.benefit-item {
  background: rgba(34, 139, 34, 0.3);
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 12px;
  border-left: 4px solid var(--forest-green);
}

.benefit-check {
  color: var(--snow-white);
  font-weight: 600;
  font-size: 1.05em;
}

.benefit-check::before {
  content: "Check ";
  color: var(--gold);
  font-weight: 700;
  margin-right: 10px;
}

.solution-result {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.solution-result p {
  font-size: 1.15em;
  color: var(--snow-white);
  font-weight: 600;
  font-style: italic;
}

/* Demo Section */
.demo-section {
  background: rgba(255, 255, 255, 0.08);
  padding: 60px 20px;
  margin: 0;
}

.demo-section h2 {
  text-align: center;
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 2em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.demo-subtitle {
  text-align: center;
  color: var(--snow-white);
  margin-bottom: 30px;
  font-size: 1.1em;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.demo-card {
  background: linear-gradient(145deg, var(--snow-white) 0%, var(--cream) 100%);
  border-radius: 18px;
  padding: 25px;
  text-align: center;
  color: #333;
  border: 2px solid rgba(255, 215, 0, 0.5);
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.demo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  border-color: var(--gold);
}

.demo-label {
  font-weight: 700;
  color: var(--christmas-red);
  margin-bottom: 15px;
  font-size: 1em;
}

.demo-card audio {
  width: 100%;
  max-width: 100%;
  margin-bottom: 15px;
  border-radius: 8px;
}

.demo-text {
  font-size: 0.85em;
  color: #555;
  margin-bottom: 15px;
  font-style: italic;
  line-height: 1.5;
  max-height: 70px;
  overflow: hidden;
}

.use-template-btn, .use-message-btn {
  background: linear-gradient(135deg, var(--forest-green) 0%, #1e7b1e 100%);
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9em;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 12px rgba(34, 139, 34, 0.3);
}

.use-template-btn:hover, .use-message-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(34, 139, 34, 0.4);
}

.jingle-card .jingle-info {
  font-size: 0.88em;
  color: #374151;
  margin-bottom: 15px;
  text-align: left;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  padding: 12px;
  border-radius: 10px;
  line-height: 1.6;
  border-left: 3px solid var(--christmas-red);
}

.legal-disclaimer {
  background: rgba(34, 139, 34, 0.15);
  border: 2px solid var(--forest-green);
  border-radius: 14px;
  padding: 18px 22px;
  margin-top: 25px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.legal-disclaimer p {
  color: var(--snow-white);
  font-size: 0.95em;
  margin: 0;
  font-weight: 500;
}

/* How It Works Section */
.how-it-works {
  padding: 70px 20px;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2.4em;
  color: var(--gold);
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
  text-align: center;
  color: var(--snow-white);
  font-size: 1.15em;
  margin-bottom: 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  background: linear-gradient(145deg, var(--snow-white) 0%, var(--cream) 100%);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  color: #333;
  border: 3px solid var(--gold);
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--christmas-red) 0%, var(--christmas-red-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;
  font-weight: 800;
  color: white;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.step-icon-large {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: var(--forest-green);
  font-weight: 700;
}

.step-card h3 {
  color: var(--christmas-red);
  margin-bottom: 12px;
  font-size: 1.25em;
}

.step-card p {
  color: #555;
  font-size: 1em;
  line-height: 1.5;
}

/* Features Section */
.features-section {
  padding: 70px 20px;
  background: rgba(0, 0, 0, 0.1);
}

.features-section h2 {
  text-align: center;
  font-size: 2.4em;
  color: var(--gold);
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 30px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-icon-box {
  background: var(--gold);
  color: var(--dark-text);
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9em;
  margin-bottom: 15px;
}

.feature-card h3 {
  color: var(--snow-white);
  font-size: 1.2em;
  margin-bottom: 10px;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95em;
  line-height: 1.5;
}

/* Testimonials Section */
.testimonials-section {
  padding: 70px 20px;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2.4em;
  color: var(--gold);
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: linear-gradient(145deg, var(--snow-white) 0%, var(--cream) 100%);
  border-radius: 20px;
  padding: 30px;
  color: #333;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.testimonial-stars {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 1.05em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #374151;
  font-style: italic;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--christmas-red) 0%, var(--christmas-red-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2em;
}

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

.author-info strong {
  color: var(--dark-text);
  font-size: 1em;
}

.author-info span {
  color: #6b7280;
  font-size: 0.9em;
}

/* Pricing Section */
.pricing-section {
  padding: 70px 20px;
  background: rgba(0, 0, 0, 0.1);
}

.pricing-section h2 {
  text-align: center;
  font-size: 2.4em;
  color: var(--gold);
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 950px;
  margin: 0 auto;
}

.pricing-card {
  background: linear-gradient(145deg, var(--snow-white) 0%, var(--cream) 100%);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  color: #333;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured {
  border-color: var(--gold);
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2), 0 0 0 3px var(--gold);
}

.pricing-popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85em;
  box-shadow: 0 4px 15px rgba(34, 139, 34, 0.4);
}

.pricing-card h3 {
  color: var(--christmas-red);
  font-size: 1.4em;
  margin-bottom: 10px;
  margin-top: 10px;
}

.pricing-amount {
  font-size: 3em;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.pricing-desc {
  color: #6b7280;
  margin-bottom: 25px;
  font-size: 0.95em;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 25px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
  color: #374151;
  font-size: 0.95em;
}

.pricing-features li::before {
  content: "* ";
  color: var(--forest-green);
  font-weight: 700;
  margin-right: 8px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-cta {
  display: block;
  background: linear-gradient(135deg, var(--christmas-red) 0%, var(--christmas-red-dark) 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.pricing-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.pricing-cta.featured-cta {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
  box-shadow: 0 4px 15px rgba(34, 139, 34, 0.3);
}

.pricing-cta.featured-cta:hover {
  box-shadow: 0 6px 20px rgba(34, 139, 34, 0.4);
}

/* Create Section */
.create-section {
  padding: 70px 20px;
}

/* Card (Form Container) */
.card {
  background: linear-gradient(145deg, var(--snow-white) 0%, var(--cream) 100%);
  border-radius: 30px;
  padding: 45px;
  box-shadow: 
    0 25px 60px rgba(0,0,0,0.4),
    0 0 0 5px var(--gold),
    0 0 30px rgba(255, 215, 0, 0.3);
  color: #333;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

/* Product Options */
.product-options {
  margin-bottom: 25px;
}

.product-options h2 {
  text-align: center;
  color: var(--christmas-red);
  margin-bottom: 25px;
  font-size: 1.6em;
  font-weight: 700;
}

.option-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.option-label {
  display: block;
  cursor: pointer;
  background: linear-gradient(145deg, #fff 0%, #f0f0f0 100%);
  border: 3px solid #e0e0e0;
  border-radius: 16px;
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.option-label:hover {
  border-color: var(--christmas-red);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(196, 30, 58, 0.2);
}

.option-label.active {
  border-color: var(--christmas-red);
  background: linear-gradient(145deg, #fff5f5 0%, #ffe0e0 100%);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
}

.option-label.active::after {
  content: 'Selected';
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--forest-green);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.75em;
}

.option-label input {
  display: none;
}

.option-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.option-price {
  font-size: 2.2em;
  font-weight: 800;
  color: var(--christmas-red);
}

.option-title {
  font-weight: 700;
  color: #1f2937;
  font-size: 1.1em;
}

.option-desc {
  font-size: 0.85em;
  color: #666;
  line-height: 1.4;
}

/* Voice Selector */
.voice-selector {
  margin-bottom: 25px;
  padding: 20px;
  background: linear-gradient(145deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 16px;
  border: 3px solid var(--forest-green);
}

.voice-selector label {
  color: var(--forest-green-dark);
  font-size: 1.15em;
  margin-bottom: 12px;
  font-weight: 700;
}

.voice-select-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}

.voice-select-wrapper select {
  flex: 1;
}

.voice-selector select {
  width: 100%;
  padding: 14px 16px;
  font-size: 1.1em;
  border: 2px solid var(--forest-green);
  border-radius: 12px;
  background: white;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23228B22' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.voice-selector select:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(34, 139, 34, 0.25);
}

.voice-desc {
  margin-top: 12px;
  color: var(--forest-green-dark);
  font-size: 0.95em;
  font-style: italic;
  font-weight: 500;
}

.preview-button {
  background: linear-gradient(135deg, var(--forest-green) 0%, #1e7b1e 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.95em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(34, 139, 34, 0.3);
}

.preview-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(34, 139, 34, 0.4);
}

.preview-button.playing {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Input Section */
.input-section {
  margin-bottom: 25px;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1f2937;
  font-size: 1.1em;
}

textarea {
  width: 100%;
  min-height: 150px;
  padding: 18px;
  font-size: 1em;
  border: 3px solid #ddd;
  border-radius: 14px;
  resize: vertical;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fefefe;
}

textarea:focus {
  outline: none;
  border-color: var(--christmas-red);
  box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.15);
  background: white;
}

.input-section input[type="text"] {
  width: 100%;
  padding: 16px 18px;
  font-size: 1.05em;
  border: 3px solid #ddd;
  border-radius: 12px;
  margin-bottom: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fefefe;
  font-weight: 500;
}

.input-section input[type="text"]:focus {
  outline: none;
  border-color: var(--christmas-red);
  box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.15);
  background: white;
}

.input-section label {
  margin-top: 12px;
}

.char-counter {
  text-align: right;
  color: #666;
  margin-top: 10px;
  font-size: 0.95em;
  font-weight: 600;
}

#char-count {
  font-weight: 700;
  color: var(--forest-green);
}

/* CTA Button */
.cta-button {
  width: 100%;
  padding: 22px 28px;
  font-size: 1.35em;
  font-weight: 800;
  background: linear-gradient(135deg, var(--christmas-red) 0%, var(--christmas-red-dark) 100%);
  color: white;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  box-shadow: 
    0 6px 20px rgba(196, 30, 58, 0.4),
    0 0 0 3px var(--gold);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 10px 30px rgba(196, 30, 58, 0.5),
    0 0 0 3px var(--gold),
    0 0 20px var(--gold);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.button-loading {
  display: none;
}

.button-loading.active {
  display: inline;
}

/* Features in Card */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px dashed var(--christmas-red);
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.9em;
  color: #444;
  font-weight: 600;
  padding: 12px;
  background: rgba(196, 30, 58, 0.05);
  border-radius: 10px;
}

.feature-icon {
  font-size: 1.3em;
  color: var(--christmas-red);
  font-weight: 800;
}

/* Error Box */
.error-box {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  color: var(--christmas-red-dark);
  padding: 18px;
  border-radius: 12px;
  margin-top: 15px;
  border-left: 5px solid var(--christmas-red);
  font-weight: 600;
}

.hidden {
  display: none !important;
}

/* FAQ Section */
.faq-section {
  padding: 70px 20px;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.4em;
  color: var(--gold);
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 25px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.faq-item h3 {
  color: var(--gold);
  font-size: 1.1em;
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--snow-white);
  font-size: 0.95em;
  line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
  padding: 80px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.15);
}

.final-cta-section h2 {
  font-size: 2.6em;
  color: var(--gold);
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}

.final-cta-text {
  font-size: 1.25em;
  color: var(--snow-white);
  max-width: 600px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

.final-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
  color: white;
  padding: 22px 55px;
  font-size: 1.4em;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(34, 139, 34, 0.5), 0 0 0 4px var(--gold);
  transition: all 0.3s ease;
}

.final-cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(34, 139, 34, 0.6), 0 0 0 4px var(--gold), 0 0 30px var(--gold);
}

.final-cta-guarantee {
  margin-top: 20px;
  font-size: 1em;
  color: var(--snow-white);
  opacity: 0.9;
}

/* Footer */
footer {
  padding: 40px 20px;
  text-align: center;
}

.footer-content p {
  color: var(--snow-white);
  margin: 8px 0;
}

.footer-small {
  font-size: 0.9em;
  opacity: 0.8;
}

/* Success Page Specific */
.container {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 60px 20px 80px;
}

.state-container {
  text-align: center;
  padding: 25px 0;
}

.loading-animation {
  position: relative;
  height: 120px;
  margin-bottom: 25px;
}

.spinner {
  border: 5px solid rgba(196, 30, 58, 0.2);
  border-top: 5px solid var(--christmas-red);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-santa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5em;
}

.success-icon, .error-icon {
  font-size: 5em;
  margin-bottom: 20px;
}

.subtitle {
  color: #555;
  margin-bottom: 25px;
  font-size: 1.15em;
}

.audio-container {
  margin: 30px 0;
  padding: 25px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 16px;
  border: 2px solid var(--forest-green);
}

audio {
  width: 100%;
  max-width: 450px;
  outline: none;
}

.secondary-actions {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.secondary-button {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  margin-top: 15px;
  transition: all 0.3s ease;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.secondary-button:hover {
  background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.share-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px dashed #ddd;
}

.share-label {
  color: #555;
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 1.05em;
}

.share-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  padding: 12px 22px;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border: 2px solid #ddd;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95em;
  font-weight: 600;
  color: #374151;
}

.share-btn:hover {
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  transform: translateY(-3px);
  border-color: var(--christmas-red);
}

.error-details {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  padding: 18px;
  border-radius: 12px;
  margin: 20px 0;
  color: var(--christmas-red-dark);
  font-size: 0.95em;
  border-left: 4px solid var(--christmas-red);
}

/* Mobile-First Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 50px 15px 40px;
  }

  .hero-section h1 {
    font-size: 1.9em;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1em;
    padding: 0 5px;
  }

  .hero-badge {
    font-size: 0.8em;
    padding: 6px 14px;
  }

  .hero-cta-button {
    padding: 16px 30px;
    font-size: 1em;
    width: 100%;
    max-width: 300px;
  }

  .hero-social-proof {
    padding: 15px 20px;
    max-width: 100%;
  }

  .trust-strip-content {
    gap: 10px;
    flex-wrap: wrap;
  }

  .trust-item {
    flex: 1 1 40%;
    min-width: 80px;
  }

  .trust-icon {
    font-size: 1.3em;
  }

  .trust-text {
    font-size: 0.8em;
  }

  .problem-section,
  .solution-section,
  .how-it-works,
  .features-section,
  .testimonials-section,
  .pricing-section,
  .faq-section {
    padding: 40px 15px;
  }

  .problem-section h2,
  .solution-section h2,
  .how-it-works h2,
  .features-section h2,
  .testimonials-section h2,
  .pricing-section h2,
  .faq-section h2,
  .final-cta-section h2 {
    font-size: 1.6em;
  }

  .section-subtitle,
  .solution-intro {
    font-size: 1em;
  }

  .problem-grid,
  .steps-grid,
  .features-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .problem-card,
  .step-card,
  .feature-card,
  .testimonial-card,
  .pricing-card {
    padding: 20px;
  }

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

  .faq-item {
    padding: 18px;
  }

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

  .demo-section {
    padding: 40px 15px;
  }

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

  .demo-card {
    padding: 18px;
  }

  .card {
    padding: 22px 18px;
    border-radius: 20px;
    margin: 0 5px;
    box-shadow: 
      0 15px 40px rgba(0,0,0,0.3),
      0 0 0 3px var(--gold);
  }

  .product-options h2 {
    font-size: 1.3em;
  }

  .option-toggle {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .option-label {
    padding: 15px 12px;
  }

  .option-price {
    font-size: 1.8em;
  }

  .option-title {
    font-size: 1em;
  }

  .option-desc {
    font-size: 0.8em;
  }

  .voice-selector {
    padding: 15px;
    margin-bottom: 20px;
  }

  .voice-selector label {
    font-size: 1em;
  }

  .voice-select-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .voice-select-wrapper select {
    width: 100%;
  }

  .preview-button {
    width: 100%;
    padding: 12px;
  }

  textarea {
    min-height: 120px;
    padding: 14px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .input-section input[type="text"] {
    padding: 14px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .cta-button {
    font-size: 1.1em;
    padding: 18px 16px;
  }

  .features {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 18px;
    margin-top: 20px;
  }

  .feature {
    padding: 8px 4px;
    font-size: 0.75em;
  }

  .feature-icon {
    font-size: 1.1em;
  }

  .final-cta-section {
    padding: 50px 15px;
  }

  .final-cta-text {
    font-size: 1em;
  }

  .final-cta-button {
    padding: 18px 35px;
    font-size: 1.1em;
    width: 100%;
    max-width: 300px;
  }

  .landing-page {
    padding-top: 35px;
    padding-bottom: 45px;
  }

  .snow-border-top,
  .snow-border-bottom {
    height: 30px;
  }

  footer {
    padding: 30px 15px;
  }

  .footer-content p {
    font-size: 0.9em;
  }

  .footer-small {
    font-size: 0.8em;
  }
}

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 1.6em;
  }

  .hero-subtitle {
    font-size: 0.95em;
  }

  .hero-cta-button {
    padding: 14px 24px;
    font-size: 0.95em;
  }

  .hero-price-note {
    font-size: 0.95em;
  }

  .trust-avatars .avatar {
    width: 32px;
    height: 32px;
    font-size: 0.75em;
  }

  .problem-section h2,
  .solution-section h2,
  .how-it-works h2,
  .features-section h2,
  .testimonials-section h2,
  .pricing-section h2,
  .faq-section h2,
  .final-cta-section h2 {
    font-size: 1.4em;
  }

  .card {
    padding: 18px 14px;
  }

  .option-price {
    font-size: 1.6em;
  }

  .cta-button {
    font-size: 1em;
    padding: 16px 14px;
  }

  .pricing-amount {
    font-size: 2.5em;
  }

  .step-number {
    width: 38px;
    height: 38px;
    font-size: 1.2em;
  }
}

/* Animation for page load */
body {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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