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

:root {
  --color-text-primary: #1d1d1f;
  --color-text-secondary: #6e6e73;
  --color-text-tertiary: #86868b;
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f5f5f7;
  --color-accent: #ff6b00;
  --color-success: #30d158;
  --color-border: rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-text-primary: #f5f5f7;
    --color-text-secondary: #a1a1a6;
    --color-text-tertiary: #86868b;
    --color-bg-primary: #000000;
    --color-bg-secondary: #1d1d1f;
    --color-accent: #ff8533;
    --color-border: rgba(255, 255, 255, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);
  }
}

body {
  font-family: 'Montserrat', -apple-system, sans-serif;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  /* Improve text rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Improve scrolling on iOS */
  -webkit-overflow-scrolling: touch;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(180deg, #000 0%, #1a1a1a 100%);
  padding: 30px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-headline {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: -0.5px;
}

.hero-headline .highlight {
  color: var(--color-accent);
  display: block;
}

.hero-subheadline {
  font-size: 15px;
  color: #a1a1a6;
  margin-bottom: 0;
  font-weight: 400;
}

.main-content-section {
  background: var(--color-bg-primary);
  padding: 30px 20px 60px;
}

.main-content-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

.main-left-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  background: #000;
}

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

.contact-form-card {
  background: var(--color-bg-primary);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: 30px;
  border: none;
}

@media (prefers-color-scheme: dark) {
  .contact-form-card {
    background: #1a1a1a;
  }
}

.sidebar {
  position: sticky;
  top: 20px;
}

.sidebar-sticky {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
  padding: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--color-border);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-sticky:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.sidebar-hero {
  background: linear-gradient(135deg, #e85d00 0%, #f07020 100%);
  padding: 25px;
  text-align: center;
  color: white;
}

.sidebar-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.sidebar-hero-title {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0;
  color: white;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

.sidebar-hero-title .hero-highlight {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

.sidebar-hero-subtitle {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 12px;
}

/* Compact Features */
.sidebar-features {
  padding: 20px 25px;
  background: var(--color-bg-primary);
}

.sidebar-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.sidebar-feature-item:last-child {
  border-bottom: none;
}

.sidebar-feature-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #30d158 0%, #28a745 100%);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.sidebar-feature-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.sidebar-feature-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.sidebar-feature-content strong {
  font-size: 15px;
  color: var(--color-text-primary);
  display: block;
}

.sidebar-feature-content strong.animated-gradient {
  background: linear-gradient(
    90deg,
    #0071e3 0%,
    #00c6ff 25%,
    #0071e3 50%,
    #00c6ff 75%,
    #0071e3 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 3s linear infinite;
  filter: drop-shadow(0 2px 6px rgba(0, 113, 227, 0.3));
}

@keyframes gradientFlow {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.sidebar-feature-subitem {
  font-size: 12px;
  color: var(--color-text-tertiary);
  font-weight: 500;
  margin-top: 4px;
}

.sidebar-feature-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
  color: white;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(255, 107, 0, 0.2);
  align-self: flex-start;
}

.sidebar-feature-badge-pink {
  background: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
  box-shadow: 0 2px 4px rgba(255, 20, 147, 0.2);
}

.sidebar-feature-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-secondary);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Bonus Stack */
.sidebar-bonus-stack {
  padding: 20px 25px;
  background: linear-gradient(135deg, rgba(48, 209, 88, 0.08) 0%, rgba(48, 209, 88, 0.03) 100%);
  border-top: 2px dashed var(--color-border);
}

.sidebar-bonus-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.sidebar-bonus-badge {
  font-size: 14px;
  font-weight: 700;
  color: #30d158;
}

.sidebar-bonus-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-bonus-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-bonus-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--color-text-primary);
  padding: 8px 12px;
  background: var(--color-bg-primary);
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.sidebar-bonus-item span {
  font-weight: 700;
  color: #30d158;
  font-size: 13px;
}

/* Value Comparison Box */
.sidebar-value-box {
  padding: 25px;
  background: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  transition: filter 0.3s ease;
}

.sidebar-value-box.blurred {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}

.sidebar-value-box.blurred::after {
  content: 'Select a package to reveal pricing';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  filter: blur(0);
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.sidebar-value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.sidebar-value-row.highlight {
  padding: 15px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 107, 0, 0.05) 100%);
  border-radius: var(--radius-sm);
  margin-bottom: 15px;
}

.sidebar-value-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.sidebar-value-row.highlight .sidebar-value-label {
  color: var(--color-text-primary);
  font-size: 16px;
}

.sidebar-value-amount {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text-primary);
}

.sidebar-value-amount.strikethrough {
  text-decoration: line-through;
  color: var(--color-text-tertiary);
  font-size: 18px;
}

.sidebar-value-amount.large {
  font-size: 36px;
  color: var(--color-accent);
}

.sidebar-savings-badge {
  text-align: center;
  padding: 12px;
  background: linear-gradient(135deg, #30d158 0%, #28a745 100%);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(48, 209, 88, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 8px rgba(48, 209, 88, 0);
  }
}

/* Trust Indicators */
.sidebar-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 20px 25px;
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
}

.sidebar-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.sidebar-trust-icon {
  font-size: 24px;
}

.sidebar-trust-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-secondary);
  line-height: 1.3;
}

.faq-answer {
  padding: 0 20px 20px 20px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.faq-answer p {
  margin: 0 0 16px 0;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  margin: 12px 0 16px 0;
  padding-left: 24px;
}

.faq-answer li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.faq-answer li:last-child {
  margin-bottom: 0;
}

/* Guarantee Compact */
.sidebar-guarantee-compact {
  padding: 20px 25px;
  background: linear-gradient(135deg, rgba(48, 209, 88, 0.1) 0%, rgba(48, 209, 88, 0.05) 100%);
  display: flex;
  gap: 15px;
  align-items: start;
  border-top: 2px solid var(--color-border);
}

.sidebar-guarantee-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.sidebar-guarantee-content strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.sidebar-guarantee-content p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 0;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: 30px;
}

.books-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.bullet-list {
  list-style: none;
  margin: 30px 0;
}

.bullet-list li {
  padding: 12px 0 12px 30px;
  position: relative;
  font-size: 16px;
  color: var(--color-text-secondary);
}

.bullet-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
  font-size: 18px;
}

.form-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
  color: var(--color-text-primary);
}

.form-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: 24px;
  font-style: italic;
}

/* Form Error Message */
.form-error-message {
  display: none;
  background: linear-gradient(135deg, #ff3b30 0%, #ff6b6b 100%);
  color: white;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 4px 12px rgba(255, 59, 48, 0.3);
  animation: slideDown 0.3s ease;
}

.form-error-message.show {
  display: block;
}

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

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-8px); }
  20%, 40%, 60%, 80% { transform: translateX(8px); }
}

.form-input.error {
  border-color: #ff3b30;
  animation: shake 0.5s ease;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.form-input {
  padding: 16px 20px;
  font-size: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  transition: all 0.2s ease;
  font-family: inherit;
  /* Prevent zoom on iOS */
  -webkit-appearance: none;
  appearance: none;
  /* Better touch target */
  min-height: 48px;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.pricing-section-inline {
  margin-top: 40px;
}

.pricing-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.pricing-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card {
  position: relative;
  padding: 25px;
  border-radius: var(--radius-md);
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-bg-secondary);
  /* Better touch target */
  min-height: 48px;
  /* Prevent text selection on tap */
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  /* Performance hint */
  will-change: transform;
}

.pricing-card.premium {
  border-color: #0a84ff;
}

.pricing-card.premium-plus {
  border-color: #ff9500;
  background: linear-gradient(135deg, #fff9e6 0%, #fffaf0 100%);
}

@media (prefers-color-scheme: dark) {
  .pricing-card.premium {
    background: linear-gradient(135deg, #1a2332 0%, #1e2936 100%);
  }
  
  .pricing-card.premium-plus {
    background: linear-gradient(135deg, #3d3020 0%, #2f2618 100%);
  }
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-radio {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
  margin-right: 20px;
  transition: all 0.2s ease;
}

.pricing-card.selected .pricing-radio {
  border-color: var(--color-accent);
}

.pricing-radio::after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  display: none;
}

.pricing-card.selected .pricing-radio::after {
  display: block;
}

.pricing-content {
  flex: 1;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 30px;
  background: #dc2626;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.product-name-animated {
  font-weight: 800;
  display: inline-block;
  background: linear-gradient(
    90deg,
    #0071e3 0%,
    #00c6ff 25%,
    #0071e3 50%,
    #00c6ff 75%,
    #0071e3 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 3s linear infinite;
  filter: drop-shadow(0 2px 6px rgba(0, 113, 227, 0.3));
}

@keyframes gradientFlow {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.package-name-separator {
  display: inline-block;
  margin: 0 8px;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.package-name-regular {
  display: inline-block;
  font-weight: 600;
  color: var(--color-text-primary);
}

.pricing-savings {
  font-size: 14px;
  font-weight: 600;
  color: #30d158;
}

.pricing-price-wrapper {
  text-align: right;
}

.pricing-original {
  font-size: 16px;
  color: var(--color-text-tertiary);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.pricing-current {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

/* Checkout Section */
.checkout-section {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

.checkout-section.is-open {
  opacity: 1;
  max-height: 3000px;
}

.checkout-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text-primary);
  text-align: center;
}

.checkout-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: 24px;
  font-style: italic;
}

#whopCheckout {
  min-height: 200px;
}

.testimonials-section {
  background: var(--color-bg-secondary);
  padding: 100px 20px 80px;
}

/* Simple CTA Section */
.cta-section-simple {
  padding: 50px 20px;
  text-align: center;
  background: var(--color-bg-secondary);
}

.cta-button-simple {
  background: linear-gradient(135deg, #e85d00 0%, #f07020 100%);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  padding: 20px 80px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(232, 93, 0, 0.3);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 400px;
  /* Better touch target */
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
  font-family: inherit;
}

.cta-button-simple:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232, 93, 0, 0.4);
}

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

.cta-button-text {
  font-size: 20px;
  font-weight: 700;
  display: block;
}

.cta-button-subtext {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.9;
  font-style: italic;
  display: block;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}

.testimonials-subtitle {
  font-size: 20px;
  color: var(--color-text-secondary);
}

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

.testimonial-card {
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.testimonial-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

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

.main-testimonial {
  max-width: 900px;
  margin: 0 auto 60px;
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.faq-section {
  background: var(--color-bg-primary);
  padding: 100px 20px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}

.faq-subtitle {
  font-size: 20px;
  color: var(--color-text-secondary);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 24px 30px;
  background: none;
  border: none;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  color: var(--color-text-primary);
  /* Better touch interaction */
  -webkit-tap-highlight-color: transparent;
  min-height: 48px;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

@media (prefers-color-scheme: dark) {
  .faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }
}

.faq-icon {
  font-size: 24px;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 24px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

@media (max-width: 1024px) {
  .main-content-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .sidebar {
    position: static;
    order: 2;
  }
  
  .main-left-column {
    order: 1;
  }
}

@media (max-width: 768px) {
  .compact-header-content {
    padding: 6px 20px;
  }
  
  .compact-header-logo img {
    height: 24px;
  }
  
  .hero-section {
    padding: 20px 20px 30px;
  }
  
  .hero-headline {
    font-size: 24px;
    line-height: 1.3;
  }
  
  .hero-subheadline {
    font-size: 14px;
  }
  
  .main-content-section {
    padding: 25px 15px 40px;
  }
  
  .contact-form-card {
    padding: 25px 20px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-title {
    font-size: 20px;
  }
  
  .pricing-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }
  
  .pricing-card input[type="radio"] {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .pricing-price-wrapper {
    text-align: center;
  }
  
  .pricing-name {
    font-size: 18px;
  }
  
  .pricing-current {
    font-size: 32px;
  }
  
  .sidebar-hero {
    padding: 20px;
  }
  
  .sidebar-hero-title {
    font-size: 18px;
  }
  
  .sidebar-features,
  .sidebar-bonus-stack,
  .sidebar-value-box,
  .sidebar-trust,
  .sidebar-guarantee-compact {
    padding: 15px 20px;
  }
  
  .sidebar-trust {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .sidebar-trust-item {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
  
  .sidebar-value-amount.large {
    font-size: 28px;
  }
  
  .sidebar-savings-badge {
    font-size: 14px;
    padding: 10px;
  }
  
  .cta-button-simple {
    min-width: auto;
    width: 100%;
    max-width: 400px;
    padding: 18px 40px;
  }
  
  .testimonials-title {
    font-size: 32px;
  }
  
  .testimonials-subtitle {
    font-size: 16px;
  }
  
  .faq-title {
    font-size: 32px;
  }
  
  .faq-subtitle {
    font-size: 16px;
  }
  
  .faq-question {
    font-size: 17px;
    padding: 20px 20px;
  }
  
  .faq-answer {
    padding: 0 20px 20px 20px;
  }
}

/* Additional mobile optimization for very small screens */
@media (max-width: 480px) {
  .hero-headline {
    font-size: 20px;
  }
  
  .pricing-name {
    font-size: 16px;
  }
  
  .pricing-current {
    font-size: 28px;
  }
  
  .sidebar-hero-title {
    font-size: 16px;
  }
  
  .testimonials-title,
  .faq-title {
    font-size: 28px;
  }
}
