/* ==========================================================================
   ATLANTE BIBLICO ILLUSTRATO - STYLESHEET
   Design Theme: Luxury Dark & Gold Glassmorphism (100% Faithful to Print)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #0a0e17;
  --bg-secondary: #111726;
  --bg-card: rgba(18, 25, 41, 0.75);
  --bg-card-hover: rgba(26, 36, 58, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.03);
  
  --gold-primary: #D4AF37;
  --gold-light: #F5E08B;
  --gold-dark: #A88622;
  --gold-gradient: linear-gradient(135deg, #F5E08B 0%, #D4AF37 50%, #AA7C11 100%);
  --gold-glow: 0 0 25px rgba(212, 175, 55, 0.35);

  --accent-red: #ef4444;
  --accent-green: #10b981;
  --accent-blue: #3b82f6;

  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;

  --border-gold: rgba(212, 175, 55, 0.28);
  --border-glass: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-serif: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;

  /* Spacing & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  --container-max: 1140px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  background: 
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 100% 40%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 0% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
    var(--bg-primary);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 92%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 0.5rem;
}

/* Typography Utilities */
.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.font-serif {
  font-family: var(--font-serif);
}

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

/* Header Urgency Bar */
.urgency-bar {
  background: linear-gradient(90deg, #78350f, #b45309, #78350f);
  color: #fff;
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245, 224, 139, 0.3);
}

.urgency-bar .timer-badge {
  background: rgba(0, 0, 0, 0.4);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  font-family: monospace;
  font-size: 1rem;
  margin-left: 0.5rem;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

/* Header Badge Pill */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.35rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

/* Hero Section */
.hero {
  padding: 3.5rem 0 4rem;
  position: relative;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.hero p.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: #d1d5db;
  max-width: 840px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  line-height: 1.6;
}

.hero-image-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 40px rgba(212, 175, 55, 0.2);
  border: 1px solid var(--border-gold);
  background: var(--bg-card);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.02);
}

/* Rating Box */
.rating-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.stars {
  color: #f59e0b;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

/* CTA Buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: var(--gold-gradient);
  color: #0b0f19;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: var(--gold-glow), 0 10px 25px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 580px;
}

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

.btn-cta:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.6), 0 15px 30px rgba(0,0,0,0.6);
}

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

.trust-seals {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Before & After Section */
.comparison-section {
  padding: 5rem 0;
  background: rgba(17, 23, 38, 0.6);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

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

.comparison-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-glass);
  position: relative;
  transition: transform 0.3s ease;
}

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

.comparison-card.negative {
  border-top: 4px solid var(--accent-red);
}

.comparison-card.positive {
  border-top: 4px solid var(--gold-primary);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, rgba(18, 25, 41, 0.85) 100%);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.comparison-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.98rem;
  color: #e5e7eb;
}

.icon-bad {
  color: var(--accent-red);
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.icon-good {
  color: var(--gold-primary);
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* 4 Circular Guarantee Badges Row */
.badges-strip {
  padding: 3.5rem 0;
  background: rgba(10, 14, 23, 0.9);
  border-bottom: 1px solid var(--border-glass);
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.badge-circle-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.badge-item h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-light);
}

.badge-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 200px;
}

/* 6 Stacked Gallery Showcase Section */
.stacked-gallery-section {
  padding: 5.5rem 0;
  background: rgba(17, 23, 38, 0.5);
}

.stacked-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 960px;
  margin: 0 auto 3.5rem;
}

.stacked-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stacked-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15);
}

.stacked-card-img-container {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  position: relative;
}

.stacked-card-img-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.stacked-card:hover .stacked-card-img-container img {
  transform: scale(1.03);
}

.stacked-card-body {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.8) 0%, rgba(11, 15, 25, 0.95) 100%);
  border-top: 1px solid var(--border-glass);
}

.stacked-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.stacked-card-body p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* 4 Feature Highlights Grid (2x2) */
.highlights-section {
  padding: 4.5rem 0;
}

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

.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s ease;
}

.highlight-card:hover {
  border-color: var(--border-gold);
}

.highlight-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.highlight-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.highlight-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* 8 Bonus Section */
.bonus-section {
  padding: 5.5rem 0;
  background: rgba(17, 23, 38, 0.3);
}

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

.bonus-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.bonus-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

.bonus-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold-gradient);
  color: #0b0f19;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.bonus-img-box {
  height: 270px;
  background: #080c14;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.bonus-img-box img {
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.6));
  transition: transform 0.4s ease;
}

.bonus-card:hover .bonus-img-box img {
  transform: scale(1.04);
}

.bonus-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.bonus-number {
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  letter-spacing: 0.5px;
}

.bonus-content h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.6rem;
}

.bonus-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.bonus-value {
  font-size: 0.88rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border-glass);
  padding-top: 0.75rem;
}

.bonus-value span {
  text-decoration: line-through;
}

/* ==========================================================================
   PRICING CARD V2 (100% Matching Screenshot)
   ========================================================================== */
.pricing-section {
  padding: 5.5rem 0;
  position: relative;
}

.pricing-box-v2 {
  max-width: 720px;
  margin: 0 auto;
  background: #090d16;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(15px);
  position: relative;
}

.pricing-top-banner {
  background: linear-gradient(90deg, #9a6616 0%, #d4af37 50%, #9a6616 100%);
  color: #0b0f19;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding: 0.75rem 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.pricing-body-v2 {
  padding: 3rem 2.5rem 2.5rem;
  text-align: center;
}

.pricing-body-v2 h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.25;
}

.timer-section-v2 {
  margin-bottom: 2.5rem;
}

.timer-section-v2 .timer-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #9ca3af;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.timer-boxes-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.timer-unit-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-number-card {
  background: #121827;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  width: 68px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold-light);
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.6), 0 4px 12px rgba(0,0,0,0.4);
}

.timer-colon {
  font-size: 1.6rem;
  font-weight: bold;
  color: #9ca3af;
  margin-bottom: 1.25rem;
}

.timer-unit-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b7280;
  margin-top: 0.4rem;
  font-weight: 600;
}

/* Inclusions Pill List */
.inclusions-pills-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.inclusion-pill-item {
  background: #111726;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.inclusion-pill-item:hover {
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateX(3px);
}

.inclusion-pill-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-align: left;
}

.inclusion-pill-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.inclusion-pill-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e5e7eb;
}

.inclusion-pill-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.inclusion-old-price {
  font-size: 0.85rem;
  color: #6b7280;
  text-decoration: line-through;
}

.inclusion-free-badge {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.35);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Pricing Hierarchy V2 */
.price-breakdown-v2 {
  margin-bottom: 2rem;
}

.total-value-label {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 0.4rem;
}

.total-value-label strong {
  color: var(--gold-light);
}

.from-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #6b7280;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.strikethrough-price-red {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 800;
  color: #f43f5e;
  text-decoration: line-through;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.for-only-label {
  font-size: 0.9rem;
  color: #d1d5db;
  margin-bottom: 0.25rem;
}

.giant-green-price {
  font-family: var(--font-sans);
  font-size: clamp(4rem, 8vw, 5.5rem);
  font-weight: 900;
  color: #10b981;
  line-height: 1;
  margin-bottom: 1.25rem;
  text-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.savings-flame-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
}

/* Big Blue CTA Button V2 */
.btn-cta-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.35rem 2rem;
  background: linear-gradient(180deg, #1e40af 0%, #1e3a8a 100%);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 14px;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.6), 0 0 25px rgba(212, 175, 55, 0.25);
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  margin-bottom: 1.75rem;
}

.btn-cta-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(30, 64, 175, 0.8), 0 0 35px rgba(212, 175, 55, 0.4);
  background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
}

/* Live Viewers Indicator */
.live-viewers-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #d1d5db;
  margin-bottom: 2rem;
}

.live-dot {
  width: 10px;
  height: 10px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* Security Badges Row V2 */
.security-badges-row-v2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.security-pill-v2 {
  background: #111726;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  color: #9ca3af;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Guarantee Card */
.guarantee-box {
  max-width: 780px;
  margin: 2.5rem auto 0;
  background: rgba(18, 25, 41, 0.6);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.guarantee-text h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.guarantee-text p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* FAQ Accordion */
.faq-section {
  padding: 5rem 0;
}

.faq-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-color: var(--border-gold);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 1.75rem;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--gold-primary);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 1.75rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.75rem 1.5rem;
}

/* Live Purchase Toast Notification (Matching Screenshot) */
.toast-notification {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #111624;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 18px;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(14px);
  z-index: 9999;
  transform: translateY(140%) scale(0.95);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
  max-width: 380px;
  width: calc(100% - 48px);
}

.toast-notification.show {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.toast-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f5d77f 0%, #c49a2a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  color: #0d121e;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.toast-details {
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toast-details strong {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: -0.2px;
}

.toast-details span {
  color: #9ca3af;
  font-size: 0.88rem;
  line-height: 1.35;
}

.toast-time {
  color: #f5c857 !important;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 3px;
}

.toast-time .bolt-icon {
  color: #f97316;
  display: inline-block;
  font-size: 0.9rem;
}

/* Footer */
footer {
  background: #060911;
  border-top: 1px solid var(--border-glass);
  padding: 3rem 0 2rem;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--gold-light);
}

/* Responsiveness */
@media (max-width: 768px) {
  .guarantee-box {
    flex-direction: column;
    text-align: center;
  }

  .pricing-box {
    padding: 2.5rem 1.25rem;
  }

  .btn-cta {
    padding: 1.1rem 1.5rem;
    font-size: 1.05rem;
  }

  .hero {
    padding: 2.5rem 0 3rem;
  }
}
