/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 30px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease-out;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--forest-green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.08;
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease-out 0.15s both;
  max-width: 820px;
}
.hero h1 .red { color: var(--swiss-red); }
.hero h1 .gold { color: var(--gold-accent); }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(248, 246, 241, 0.65);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 44px;
  animation: fadeInUp 0.9s ease-out 0.35s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.9s ease-out 0.5s both;
}
.hero-actions .btn {
  min-width: 320px;
  text-align: center;
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  animation: fadeInUp 0.9s ease-out 0.7s both;
}
.hero-stat {
  text-align: center;
}
.hero-stat .num {
  font-family: 'Space Mono', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-accent);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(248, 246, 241, 0.45);
  margin-top: 6px;
}

.scroll-arrow {
  position: absolute;
  bottom: 32px;
  animation: bounce 2.5s infinite;
  opacity: 0.4;
  font-size: 1.5rem;
}

/* ===== THREE PILLARS (CTAs) ===== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.pillar-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  transition: transform 0.3s ease;
}
.pillar-link .pillar {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pillar-link .pillar p {
  flex: 1;
}
.pillar-link:hover {
  transform: translateY(-6px);
}
.pillar-link:hover .pillar {
  border-color: rgba(255, 255, 255, 0.2);
}

.pillar {
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}

.pillar-free {
  background: linear-gradient(145deg, var(--forest-green), #1a3d28);
  border: 1px solid rgba(45, 90, 61, 0.4);
}
.pillar-ebook {
  background: linear-gradient(145deg, rgba(226, 0, 26, 0.85), var(--swiss-red-dark));
  box-shadow: 0 10px 50px rgba(226, 0, 26, 0.2);
}

.pillar-tag {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  width: fit-content;
}
.pillar-free .pillar-tag {
  background: rgba(255,255,255,0.15);
  color: #8FE5A0;
}
.pillar-ebook .pillar-tag {
  background: rgba(255,255,255,0.2);
  color: var(--gold-light);
}

.pillar-calc {
  background: linear-gradient(145deg, #1a1a2e, #16213e);
  border: 1px solid rgba(230, 57, 70, 0.3);
  box-shadow: 0 10px 50px rgba(230, 57, 70, 0.15);
}

.pillar-icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
}

.pillar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.25;
}

.pillar p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  flex-grow: 1;
  margin-bottom: 28px;
}

.pillar .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.price-tag {
  font-family: 'Space Mono', monospace;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.price-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

/* ===== WHAT YOU GET (EBOOK CONTENTS) ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.feature-card .f-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.feature-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.85rem;
  color: rgba(248, 246, 241, 0.6);
  line-height: 1.55;
}

/* ===== SAVINGS SHOWCASE ===== */
.savings-section {
  background: linear-gradient(135deg, rgba(45, 90, 61, 0.15) 0%, rgba(27, 77, 110, 0.1) 100%);
  border: 1px solid rgba(45, 90, 61, 0.2);
  border-radius: 24px;
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.savings-bars {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}
.saving-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.saving-item .s-label {
  font-size: 0.95rem;
  font-weight: 500;
  width: 160px;
  flex-shrink: 0;
  color: rgba(248, 246, 241, 0.75);
}
.saving-item .s-bar-wrap {
  flex: 1;
  height: 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 5px;
  overflow: hidden;
}
.saving-item .s-bar {
  height: 100%;
  border-radius: 5px;
  transition: width 2s ease-out;
}
.s-bar.red { background: linear-gradient(90deg, var(--swiss-red), #FF4D4D); }
.s-bar.green { background: linear-gradient(90deg, var(--forest-green), #4CAF50); }
.s-bar.blue { background: linear-gradient(90deg, var(--glacier-blue), #5BA4CF); }
.s-bar.gold { background: linear-gradient(90deg, var(--gold-accent), var(--gold-light)); }
.saving-item .s-amount {
  font-family: 'Space Mono', monospace;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-accent);
  width: 90px;
  text-align: right;
}

.savings-left {
  text-align: center;
}
.savings-right {
  text-align: left;
}

/* Currency toggle */
.currency-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.curr-btn {
  background: none;
  border: none;
  color: rgba(248, 246, 241, 0.5);
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.curr-btn:hover {
  color: rgba(248, 246, 241, 0.8);
}
.curr-btn.active {
  background: var(--gold-accent);
  color: var(--deep-navy);
  box-shadow: 0 2px 10px rgba(201, 168, 76, 0.3);
}

.group-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.group-btn {
  background: none;
  border: none;
  color: rgba(248, 246, 241, 0.5);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.group-btn:hover {
  color: rgba(248, 246, 241, 0.8);
}
.group-btn.active {
  background: var(--swiss-red);
  color: #fff;
  box-shadow: 0 2px 10px rgba(218, 41, 28, 0.3);
}

.savings-total {
  font-family: 'Space Mono', monospace;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 0 60px rgba(201, 168, 76, 0.3);
}
.savings-currency {
  font-size: 0.5em;
  opacity: 0.6;
  margin-left: 4px;
}
.savings-total-label {
  font-size: 1rem;
  color: rgba(248, 246, 241, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 8px;
}
.savings-note {
  font-size: 0.82rem;
  color: rgba(248, 246, 241, 0.4);
  margin-top: 16px;
  font-style: italic;
}

/* ===== TESTIMONIAL / QUOTE ===== */
.quote-section {
  text-align: center;
  padding: 80px 28px;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.quote-section blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.45;
  color: var(--alpine-white);
}
.quote-section .attribution {
  margin-top: 20px;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  color: var(--gold-accent);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ===== MANTRA ===== */
.mantra-section {
  padding: 60px 24px;
  text-align: center;
}
.mantra-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 40px;
  background:
    radial-gradient(ellipse at center, rgba(226, 0, 26, 0.1) 0%, transparent 60%),
    rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(226, 0, 26, 0.15);
  border-radius: 20px;
}
.mantra-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.4;
  color: var(--alpine-white);
}
.mantra-attribution {
  margin-top: 16px;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--gold-accent);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ===== ABOUT / STORY ===== */
.story-centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.story-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 40px;
}
.story-layout {
  display: flex;
  align-items: stretch;
  gap: 50px;
  text-align: left;
}
.story-image {
  flex-shrink: 0;
  display: flex;
}
.story-image img {
  width: 280px;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.story-text p {
  font-size: 1.1rem;
  color: rgba(248, 246, 241, 0.8);
  line-height: 1.8;
  margin-bottom: 18px;
}
.story-text .highlight {
  color: var(--gold-accent);
  font-weight: 600;
}

.edge-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.edge-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.edge-item .check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(45, 90, 61, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #8FE5A0;
  font-size: 0.85rem;
  font-weight: 700;
}
.edge-item .edge-text {
  font-size: 0.92rem;
  color: rgba(248, 246, 241, 0.75);
  line-height: 1.55;
}
.edge-item .edge-text strong { color: var(--alpine-white); }

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 28px;
  max-width: 700px;
  margin: 0 auto;
}
.final-cta .swiss-cross-lg {
  width: 64px;
  height: 64px;
  background: var(--swiss-red);
  border-radius: 4px;
  position: relative;
  margin: 0 auto 32px;
  box-shadow: 0 4px 30px rgba(226, 0, 26, 0.4);
  animation: pulse-cross 3s infinite;
}
.final-cta .swiss-cross-lg::before, .final-cta .swiss-cross-lg::after {
  content: '';
  position: absolute;
  background: white;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.final-cta .swiss-cross-lg::before { width: 36px; height: 10px; }
.final-cta .swiss-cross-lg::after { width: 10px; height: 36px; }

.final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.final-cta p {
  font-size: 1.05rem;
  color: rgba(248, 246, 241, 0.6);
  margin-bottom: 36px;
  line-height: 1.7;
}
.final-cta .btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== DISCOUNT BANNER ===== */
.discount-banner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: -40px auto 0;
  padding: 0 28px;
}
.discount-inner {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 16px;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.discount-inner .disc-badge {
  background: var(--swiss-red);
  color: white;
  padding: 6px 16px;
  border-radius: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.discount-inner p {
  font-size: 0.92rem;
  color: rgba(248, 246, 241, 0.8);
}
.discount-inner p strong {
  color: var(--gold-light);
}

/* ===== RESPONSIVE — HOME-SPECIFIC ===== */
@media (max-width: 968px) {
  .pillars-grid { grid-template-columns: 1fr; max-width: 480px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .savings-section { grid-template-columns: 1fr; text-align: center; padding: 48px 32px; }
  .savings-left { text-align: center; margin-bottom: 20px; }
  .savings-right { text-align: center; }
  .story-layout { flex-direction: column; text-align: center; }
  .story-image img { width: 220px; }
  .story-title { font-size: 1.8rem; }
}

@media (max-width: 768px) {
  .hero-stats { gap: 28px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .saving-item .s-label { width: 100px; font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .hero { padding: 90px 20px 60px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { min-width: unset; width: 100%; max-width: 340px; }
  .features-grid { grid-template-columns: 1fr; }
  .savings-section { padding: 36px 20px; }
  .saving-item { flex-wrap: wrap; }
  .saving-item .s-label { width: 100%; }
}
