:root {
  --bg: #fbf7ef;
  --text: #121212;
  --muted: #5b5b5b;
  --card: #ffffff;
  --accent: #d6a312;
  --accent2: #f4c6a6;
  --line: rgba(0,0,0,.08);
  --shadow: 0 16px 40px rgba(0,0,0,.08);
  --radius: 18px;
  --max: 1200px;
  --font: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 15% 0%, rgba(244,198,166,.35), transparent 55%),
    radial-gradient(900px 500px at 95% 10%, rgba(214,163,18,.18), transparent 50%),
    var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  padding: 60px 0 40px;
  text-align: center;
}

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

.urgency-badge {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

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

.hero-headline {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-subheadline {
  font-size: 20px;
  color: var(--muted);
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Price Box */
.price-box {
  background: rgba(255,255,255,.85);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 30px;
  margin: 30px 0;
  box-shadow: var(--shadow);
}

.price-label {
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.price-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  margin: 10px 0;
}

.price-currency {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
}

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

.price-original {
  font-size: 18px;
  color: var(--muted);
  margin: 10px 0 5px;
}

.strikethrough {
  text-decoration: line-through;
  text-decoration-color: #ff6b6b;
  text-decoration-thickness: 2px;
}

.price-save {
  font-size: 20px;
  color: #10b981;
  font-weight: 700;
  margin-top: 10px;
}

/* Countdown Timer */
.countdown-timer {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 2px dashed var(--line);
}

.countdown-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-display {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 15px 0;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-value {
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
  min-width: 60px;
  background: rgba(214,163,18,.1);
  padding: 10px;
  border-radius: 8px;
}

.countdown-unit {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-sep {
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
}

.countdown-warning {
  font-size: 14px;
  color: #ef4444;
  font-weight: 600;
  margin-top: 10px;
}

/* Trust Signals */
.trust-signals {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 25px 0;
  font-size: 14px;
}

.trust-item {
  padding: 8px 16px;
  background: rgba(255,255,255,.6);
  border: 1px solid var(--line);
  border-radius: 50px;
  font-weight: 600;
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #f1b41a);
  color: #111;
  box-shadow: 0 16px 40px rgba(214,163,18,.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(214,163,18,.4);
}

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

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.cta-buttons {
  margin: 30px 0;
}

/* Hero Image */
.hero-image {
  margin-top: 50px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Section */
.section {
  padding: 80px 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.6);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Pain Points */
.section-pain {
  background: rgba(255,255,255,.5);
  text-align: center;
}

.pain-points-list {
  max-width: 800px;
  margin: 0 auto;
}

.pain-point-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 15px;
  text-align: left;
  font-size: 18px;
  transition: transform 0.2s ease;
}

.pain-point-item:hover {
  transform: translateX(5px);
}

.pain-icon {
  font-size: 24px;
  flex-shrink: 0;
}

/* Solution */
.section-solution {
  text-align: center;
}

/* Modules */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.module-card {
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  transition: transform 0.2s ease;
}

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

.module-number {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(214,163,18,.15);
  color: var(--accent);
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 15px;
}

.module-title {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.module-description {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

.module-value {
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}

/* Bonuses */
.bonuses-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px dashed var(--line);
}

.bonuses-title {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 800;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.bonus-card {
  background: linear-gradient(135deg, rgba(244,198,166,.2), rgba(255,255,255,.8));
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 25px;
  position: relative;
}

.bonus-badge {
  display: inline-block;
  padding: 6px 12px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 15px;
}

.bonus-title {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
}

.bonus-description {
  color: var(--muted);
  margin-bottom: 15px;
}

.bonus-value {
  color: #10b981;
  font-weight: 700;
}

/* Value Stack */
.value-stack {
  max-width: 600px;
  margin: 50px auto 0;
  background: rgba(255,255,255,.9);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.value-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 16px;
}

.value-divider {
  height: 2px;
  background: var(--line);
  margin: 15px 0;
}

.value-total {
  font-size: 20px;
  font-weight: 700;
}

.value-price {
  font-size: 24px;
  font-weight: 800;
}

.value-price .highlight {
  color: var(--accent);
}

.value-savings {
  font-size: 18px;
  color: #10b981;
  font-weight: 700;
}

.value-savings .savings {
  font-size: 24px;
}

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

.testimonial-card {
  background: rgba(255,255,255,.8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

.testimonial-rating {
  font-size: 20px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.testimonial-name {
  font-weight: 700;
  font-size: 16px;
}

.testimonial-role {
  font-size: 14px;
  color: var(--muted);
}

.testimonial-result {
  font-size: 13px;
  color: #10b981;
  font-weight: 600;
  margin-top: 5px;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.step-card {
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #f1b41a);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  margin: 0 auto 20px;
}

.step-title {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.step-description {
  color: var(--muted);
  font-size: 15px;
}

/* Order Form */
.section-order {
  background: rgba(255,255,255,.3);
}

.order-box {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255,255,255,.95);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.order-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px dashed var(--line);
}

.order-header h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.order-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.benefit-item {
  font-size: 14px;
  font-weight: 600;
  color: #10b981;
}

/* Form */
.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 15px;
}

.form-group input {
  width: 100%;
  padding: 14px;
  border: 2px solid var(--line);
  border-radius: 10px;
  font-size: 16px;
  font-family: var(--font);
  transition: border-color 0.2s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

/* Payment Methods */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 2px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.payment-option:hover {
  border-color: var(--accent);
  background: rgba(214,163,18,.05);
}

.payment-option input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.payment-option input[type="radio"]:checked + .payment-label {
  color: var(--accent);
}

.payment-label {
  flex: 1;
}

.payment-label strong {
  display: block;
  margin-bottom: 3px;
  font-size: 16px;
}

.payment-label small {
  color: var(--muted);
  font-size: 13px;
}

.form-security {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
}

/* Guarantee */
.guarantee-box {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  background: rgba(255,255,255,.9);
  border: 2px solid #10b981;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.guarantee-badge {
  flex-shrink: 0;
}

.guarantee-badge-inner {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #10b981;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(16,185,129,.1), rgba(16,185,129,.05));
}

.guarantee-days {
  font-size: 36px;
  font-weight: 900;
  color: #10b981;
}

.guarantee-text {
  font-size: 14px;
  font-weight: 700;
  color: #10b981;
}

.guarantee-subtext {
  font-size: 12px;
  font-weight: 700;
  color: #10b981;
}

.guarantee-content h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.guarantee-content p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.guarantee-highlight {
  color: #10b981 !important;
  font-weight: 700 !important;
  font-size: 18px !important;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  cursor: pointer;
}

.faq-question {
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  list-style: none;
}

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

.faq-answer {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.7;
}

/* Final CTA */
.final-cta-box {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(214,163,18,.15), rgba(244,198,166,.15));
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 50px;
  text-align: center;
  box-shadow: var(--shadow);
}

.final-cta-box h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.final-cta-text {
  font-size: 20px;
  color: var(--muted);
  margin-bottom: 30px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.choice-card {
  background: rgba(255,255,255,.9);
  border-radius: var(--radius);
  padding: 30px;
  text-align: left;
}

.choice-bad {
  border: 2px solid #ef4444;
}

.choice-good {
  border: 2px solid #10b981;
}

.choice-card h3 {
  margin-bottom: 20px;
  font-size: 20px;
}

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

.choice-card li {
  padding: 8px 0;
  color: var(--muted);
}

.final-cta-button {
  margin: 40px 0 30px;
}

.final-cta-ps {
  font-size: 16px;
  color: var(--muted);
  font-style: italic;
}

/* Footer */
.footer {
  background: rgba(255,255,255,.5);
  border-top: 1px solid var(--line);
  padding: 40px 0;
  text-align: center;
}

.footer-content {
  color: var(--muted);
  font-size: 14px;
}

.footer-content p {
  margin: 8px 0;
}

.footer-brand {
  font-size: 13px;
  color: #888;
  font-style: italic;
}

.footer-content a {
  color: var(--muted);
  text-decoration: underline;
}

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

/* Sticky Mobile CTA */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--accent);
  padding: 12px 20px;
  z-index: 1000;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}

.sticky-mobile-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  max-width: var(--max);
  margin: 0 auto;
}

.sticky-price-label {
  font-size: 12px;
  color: var(--muted);
}

.sticky-price-amount {
  font-size: 24px;
  font-weight: 900;
  color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-headline {
    font-size: 32px;
  }

  .hero-subheadline {
    font-size: 18px;
  }

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

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

  .countdown-value {
    font-size: 28px;
    min-width: 50px;
  }

  .modules-grid,
  .bonuses-grid,
  .testimonials-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .order-benefits {
    grid-template-columns: 1fr;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
  }

  .sticky-mobile-cta {
    display: block;
  }

  .btn-large {
    padding: 16px 30px;
    font-size: 16px;
  }
}

/* Loading State */
.btn-loader {
  display: none;
}

.btn.loading .btn-text {
  display: none;
}

.btn.loading .btn-loader {
  display: inline;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ===== NEW DESIGN ENHANCEMENTS ===== */

/* Typography Extensions */
:root {
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 30px;
  --font-size-4xl: 36px;
  --font-size-5xl: 48px;
  --font-size-6xl: 56px;
  --font-size-7xl: 64px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
}

/* Feature Cards Section */
.section-features {
  padding: 60px 0;
}

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

.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(214, 163, 18, 0.15);
  border-color: var(--accent);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(214, 163, 18, 0.1), rgba(244, 198, 166, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 48px;
  height: 48px;
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-description {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* Stats Dashboard */
.stats-section {
  padding: 60px 0;
  background: rgba(255, 255, 255, 0.5);
}

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

.stat-card {
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(214, 163, 18, 0.1);
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-unit {
  font-size: 24px;
  font-weight: 600;
  color: var(--muted);
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-stars {
  font-size: 20px;
  margin-top: 8px;
}

.stat-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.badge-icon {
  font-size: 32px;
  width: 60px;
  height: 60px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.badge-text {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

/* Hero Visual Enhancements */
.hero-visual {
  margin-top: 40px;
  position: relative;
}

.hero-mockup {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.hero-mockup:hover {
  transform: scale(1.02);
}

/* Module Card Preview Images */
.module-preview {
  width: 100%;
  margin-bottom: 20px;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  border: 2px solid var(--accent);
}

.module-preview img {
  width: 100%;
  height: auto;
  display: block;
}

/* Enhanced Hover Effects */
.module-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.module-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(214, 163, 18, 0.2);
  border-color: var(--accent);
}

.testimonial-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Button Ripple Effect */
.btn-large {
  position: relative;
  overflow: hidden;
}

.btn-large::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-large:hover::before {
  width: 300px;
  height: 300px;
}

/* Section Divider */
.section-divider {
  text-align: center;
  margin: 80px auto;
  max-width: 600px;
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--line) 20%,
    var(--line) 80%,
    transparent
  );
}

.divider-icon {
  position: relative;
  background: var(--bg);
  padding: 0 20px;
  font-size: 24px;
  z-index: 1;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Lazy Load Image Effect */
.lazy-load {
  filter: blur(10px);
  transition: filter 0.3s;
}

.lazy-load.loaded {
  filter: blur(0);
}

/* Asymmetric Testimonials Grid */
.testimonials-grid .testimonial-card:nth-child(2n) {
  transform: translateY(20px);
}

.testimonials-grid .testimonial-card:nth-child(2n):hover {
  transform: translateY(15px);
}

/* Drop Cap for Testimonials */
.testimonial-text.drop-cap::first-letter {
  font-size: 3.5em;
  font-weight: 800;
  line-height: 0.9;
  float: left;
  margin: 0.05em 0.1em 0 0;
  color: var(--accent);
}

/* Badge Images */
.badge-image {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.badge-image-small {
  width: 100%;
  max-width: 150px;
  height: auto;
}

/* Trust Badges Container */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0;
}

/* Content Reading Width */
.content-text {
  font-size: 18px;
  line-height: 1.8;
  max-width: 70ch;
  margin: 0 auto;
}

.content-text p + p {
  margin-top: 1.5em;
}

/* Responsive Updates for New Elements */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

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

  .stat-number {
    font-size: 36px;
  }

  .hero-visual {
    margin-top: 30px;
  }

  .testimonials-grid .testimonial-card:nth-child(2n) {
    transform: none;
  }

  .testimonial-text.drop-cap::first-letter {
    font-size: 2.5em;
  }

  .section-divider {
    margin: 60px auto;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
  }

  .feature-icon img {
    width: 40px;
    height: 40px;
  }
}

/* ===== HOMEPAGE STYLES ===== */

/* Homepage Hero */
.homepage-hero {
  padding: 80px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(244,198,166,0.1) 0%, transparent 100%);
}

.eyebrow-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(214,163,18,0.1), rgba(244,198,166,0.1));
  border: 2px solid var(--accent);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}

.homepage-title {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.homepage-subtitle {
  font-size: 20px;
  color: var(--muted);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.homepage-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.homepage-trust .trust-item {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 10px 20px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Category Section */
.category-section {
  padding: 60px 0;
}

.category-section:nth-child(even) {
  background: rgba(255,255,255,0.3);
}

.category-header {
  text-align: center;
  margin-bottom: 50px;
}

.category-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.category-emoji {
  font-size: 48px;
}

.category-description {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  max-width: var(--max);
  margin: 0 auto;
}

/* Product Card */
.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(214, 163, 18, 0.15);
  border-color: var(--accent);
}

.product-card-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, rgba(244,198,166,0.2), rgba(214,163,18,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-icon {
  font-size: 80px;
  opacity: 0.3;
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: white;
  padding: 8px 15px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(238, 90, 111, 0.4);
}

.product-card-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--text);
}

.product-card-description {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

.product-card-features {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}

.product-card-features li {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 8px;
  padding-left: 5px;
}

.product-card-features .more-features {
  color: var(--accent);
  font-weight: 600;
}

.product-card-pricing {
  margin: auto 0 20px 0;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.price-group {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 5px;
}

.price-current {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
}

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

.price-value {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

.btn-block {
  width: 100%;
  text-align: center;
}

/* Homepage Trust Section */
.homepage-trust-section {
  padding: 80px 0;
  background: rgba(255,255,255,0.5);
}

.trust-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: var(--max);
  margin: 50px auto 0;
}

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

.trust-feature-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.trust-feature h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.trust-feature p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* Responsive Homepage */
@media (max-width: 768px) {
  .homepage-title {
    font-size: 36px;
  }

  .homepage-subtitle {
    font-size: 18px;
  }

  .homepage-trust {
    flex-direction: column;
    gap: 10px;
  }

  .category-title {
    font-size: 28px;
  }

  .category-emoji {
    font-size: 32px;
  }

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

  .trust-features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
