/* ===========================================
   Home Page — Ultra Modern, Mobile-First
   =========================================== */

/* ═══════════════════════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════════════════════ */
.home-page {
  --h-bg: #fafafa;
  --h-surface: #ffffff;
  --h-glass: rgba(255, 255, 255, .75);
  --h-ink: #111827;
  --h-muted: #6b7280;
  --h-subtle: #9ca3af;
  --h-border: rgba(0, 0, 0, .06);
  --h-gold: #c9a227;
  --h-gold-light: #f5e6c8;
  --h-gold-dark: #a88b1f;
  --h-accent: #0f172a;
  --h-success: #10b981;
  --gc-darker: #f0ede5;
  --gc-border: rgba(0, 0, 0, 0.1);

  --h-radius-sm: 12px;
  --h-radius: 20px;
  --h-radius-lg: 28px;
  --h-radius-full: 9999px;

  --h-shadow-sm: 0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.06);
  --h-shadow: 0 4px 12px rgba(0,0,0,.06), 0 2px 4px rgba(0,0,0,.04);
  --h-shadow-lg: 0 12px 40px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.05);
  --h-shadow-xl: 0 24px 60px rgba(0,0,0,.12);

  --h-ease: cubic-bezier(.4, 0, .2, 1);
  --h-spring: cubic-bezier(.34, 1.56, .64, 1);

  background: var(--h-bg);
  color: var(--h-ink);
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════════════════════════ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.gold { color: var(--h-gold); }

/* Container */
.h-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .h-container { padding: 0 32px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   BUTTONS — Pill-shaped, touch-friendly
═══════════════════════════════════════════════════════════════════════ */
.h-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  border-radius: var(--h-radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s var(--h-spring), box-shadow .2s var(--h-ease), background .15s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.h-btn:active { transform: scale(.97); }

.h-btn-primary {
  background: var(--h-ink);
  color: #fff;
  box-shadow: var(--h-shadow), 0 0 0 0 transparent;
}
.h-btn-primary:hover {
  box-shadow: var(--h-shadow-lg), 0 0 0 4px rgba(17,24,39,.1);
}

.h-btn-gold {
  background: linear-gradient(135deg, var(--h-gold) 0%, var(--h-gold-dark) 100%);
  color: #fff;
  box-shadow: var(--h-shadow), 0 0 0 0 var(--h-gold-light);
}
.h-btn-gold:hover {
  box-shadow: var(--h-shadow-lg), 0 0 0 4px var(--h-gold-light);
}

.h-btn-outline {
  background: var(--h-surface);
  color: var(--h-ink);
  box-shadow: inset 0 0 0 1.5px var(--h-border);
}
.h-btn-outline:hover {
  background: var(--h-bg);
  box-shadow: inset 0 0 0 1.5px rgba(0,0,0,.12);
}

.h-btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}

.h-btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}

.h-btn-block {
  width: 100%;
}


/* ═══════════════════════════════════════════════════════════════════════
   HERO — Split screen : texte gauche, affiche droite
═══════════════════════════════════════════════════════════════════════ */
.home-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--h-accent);
  overflow: hidden;
}

.home-hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: stretch;
  width: 100%;
  gap: 0;
  flex: 1;
  height: 100svh;
}

/* ── Colonne texte ── */
.home-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 48px;
  max-width: 700px;
  margin: 0 auto;
}

.home-hero-brand {
  font-family: 'Bebas Neue', 'Oswald', system-ui, sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1;
  background: linear-gradient(135deg, var(--h-gold) 0%, #e3c56a 50%, var(--h-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 12px;
}

.home-hero h1 {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 40px;
}

.home-hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.home-hero-actions .h-btn-primary {
  background: linear-gradient(90deg, #c9a227 60%, #e3c56a 100%);
  color: #0e0e48;
  box-shadow:
    0 4px 20px rgba(201, 162, 39, 0.55),
    0 0 40px rgba(201, 162, 39, 0.25);
  font-size: 1.05rem;
  padding: 16px 40px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.home-hero-actions .h-btn-primary:hover {
  background: linear-gradient(90deg, #e3c56a 0%, #c9a227 100%);
  box-shadow:
    0 8px 32px rgba(201, 162, 39, 0.7),
    0 0 64px rgba(201, 162, 39, 0.4);
  transform: translateY(-3px) scale(1.03);
}

/* ── Colonne image ── */
.home-hero-visual {
  overflow: hidden;
  border-left: 1px solid rgba(201, 162, 39, 0.08);
}

.home-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: none;
  display: block;
  animation: slow-zoom 3s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes slow-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}

/* ── Flèche scroll ── */
.home-hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: .4;
  animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Mobile : image en haut, texte en bas ── */
@media (max-width: 768px) {
  .home-hero-inner {
    grid-template-columns: 1fr;
    height: auto;
    gap: 0;
  }
  .home-hero-content {
    align-items: center;
    text-align: center;
    justify-content: center;
    order: 2;
    padding: 32px 24px 40px;
    max-width: 100%;
  }
  .home-hero-visual {
    order: 1;
    height: 35vh;
    border-left: none;
    border-bottom: 1px solid rgba(201, 162, 39, 0.12);
  }
  .home-hero-visual img {
    object-position: center top;
  }
  .home-hero-actions {
    justify-content: center;
  }
  .home-hero h1 {
    font-size: clamp(24px, 7vw, 36px);
  }
}


/* ═══════════════════════════════════════════════════════════════════════
   TRUST STRIP — Minimal, floating
═══════════════════════════════════════════════════════════════════════ */
.home-trust {
  position: relative;
  margin-top: -40px;
  z-index: 10;
  padding: 0 16px;
}

.home-trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 800px;
  margin: 0 auto;
  padding: 16px;
  background: var(--h-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--h-radius);
  border: 1px solid var(--h-border);
  box-shadow: var(--h-shadow-lg);
}

.home-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--h-muted);
  white-space: nowrap;
}

.home-trust-item + .home-trust-item {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.home-trust-item svg {
  width: 18px; height: 18px;
  color: var(--h-gold);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════════════
   VALUE PROP — Big visual + features
═══════════════════════════════════════════════════════════════════════ */
.home-value {
  padding: 80px 0;
}

.home-value-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .home-value-inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.home-value-media {
  position: relative;
}

.home-value-media img {
  width: 100%;
  height: auto;
  border-radius: var(--h-radius-lg);
  box-shadow: var(--h-shadow-xl);
}

.home-value-media::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: var(--h-radius-lg);
  border: 2px dashed var(--h-gold-light);
  pointer-events: none;
  z-index: -1;
}

.home-value-text h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0 0 20px;
  color: var(--h-ink);
}

.home-value-lead {
  font-size: 17px;
  color: var(--h-muted);
  line-height: 1.7;
  margin: 0 0 28px;
}

.home-value-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
}

.home-value-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--h-ink);
}

.home-value-features li::before {
  content: '';
  width: 22px; height: 22px;
  background: var(--h-gold-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4a84b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}


/* ═══════════════════════════════════════════════════════════════════════
   COLLECTION — Swipeable cards
═══════════════════════════════════════════════════════════════════════ */
.home-collection {
  padding: 64px 0 80px;
  background: var(--h-surface);
}

.home-collection-header {
  text-align: center;
  margin-bottom: 40px;
}

.home-collection-header h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0 0 8px;
}

.home-collection-header p {
  color: var(--h-muted);
  font-size: 15px;
}

/* Swiper container */
.home-collection-swiper {
  padding: 8px 0 48px;
}

.home-collection-swiper .swiper-slide {
  height: auto;
}

/* Poster card */
.home-poster-card {
  background: var(--h-surface);
  border-radius: var(--h-radius);
  border: 1px solid var(--h-border);
  overflow: hidden;
  transition: transform .25s var(--h-spring), box-shadow .25s var(--h-ease);
}

.home-poster-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--h-shadow-lg);
}

.home-poster-img {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--h-bg);
}

.home-poster-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--h-ease);
}

.home-poster-card:hover .home-poster-img img {
  transform: scale(1.05);
}

.home-poster-info {
  padding: 16px;
}

.home-poster-info h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--h-ink);
}

.home-poster-info h3 a {
  color: inherit;
  text-decoration: none;
}

.home-poster-price {
  font-size: 17px;
  font-weight: 700;
  color: var(--h-gold);
}

.home-poster-actions {
  display: flex;
  gap: 8px;
  padding: 0 16px 16px;
}

.home-poster-actions .h-btn {
  flex: 1;
  padding: 12px 8px;
  font-size: 13px;
}

/* Swiper nav */
.home-collection-swiper .swiper-button-prev,
.home-collection-swiper .swiper-button-next {
  width: 44px; height: 44px;
  background: var(--h-surface);
  border-radius: 50%;
  box-shadow: var(--h-shadow);
  color: var(--h-ink);
  transition: box-shadow .2s, transform .2s var(--h-spring);
}

.home-collection-swiper .swiper-button-prev:hover,
.home-collection-swiper .swiper-button-next:hover {
  box-shadow: var(--h-shadow-lg);
  transform: scale(1.05);
}

.home-collection-swiper .swiper-button-prev::after,
.home-collection-swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

.home-collection-swiper .swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: var(--h-border);
  opacity: 1;
}

.home-collection-swiper .swiper-pagination-bullet-active {
  background: var(--h-gold);
  width: 24px;
  border-radius: 4px;
}

.home-collection-cta {
  text-align: center;
  margin-top: 16px;
}


/* ═══════════════════════════════════════════════════════════════════════
   PROMO BANNER — Solid background
═══════════════════════════════════════════════════════════════════════ */
.home-promo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 64px 24px;
}

@media (min-width: 768px) {
  .home-promo {
    padding: 80px 32px;
  }
}

.home-promo-content {
  text-align: center;
  max-width: 700px;
}

.home-promo-content h2 {
  font-family: 'Bebas Neue', 'Oswald', system-ui, sans-serif;
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 16px;
}

.home-promo-content h2 .gold {
  color: var(--h-gold);
}

.home-promo-desc {
  font-size: clamp(15px, 2.5vw, 18px);
  color: rgba(255, 255, 255, .75);
  line-height: 1.6;
  margin: 0 0 32px;
}

.home-promo-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

@media (min-width: 480px) {
  .home-promo-actions {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
}

.home-promo-actions .h-btn-outline {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.3);
}

.home-promo-actions .h-btn-outline:hover {
  background: rgba(255,255,255,.1);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.5);
}


/* ═══════════════════════════════════════════════════════════════════════
   HOW IT WORKS — App-like steps
═══════════════════════════════════════════════════════════════════════ */
.home-how {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--h-bg) 0%, var(--h-surface) 100%);
}

.home-how-inner h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -.02em;
  text-align: center;
  margin: 0 0 48px;
}

.home-how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .home-how-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
  }
}

.home-how-step {
  position: relative;
  background: var(--h-surface);
  border-radius: var(--h-radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--h-border);
  box-shadow: var(--h-shadow-sm);
  transition: transform .25s var(--h-spring), box-shadow .25s;
}

.home-how-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--h-shadow);
}

.home-how-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 28px;
  background: var(--h-gold);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-how-icon {
  width: 56px; height: 56px;
  margin: 8px auto 20px;
  background: var(--h-gold-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-how-icon svg {
  width: 28px; height: 28px;
  color: var(--h-gold-dark);
}

.home-how-step h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--h-ink);
}

.home-how-step p {
  font-size: 14px;
  color: var(--h-muted);
  line-height: 1.6;
  margin: 0;
}

.home-how-cta {
  text-align: center;
  margin-top: 48px;
}


/* ═══════════════════════════════════════════════════════════════════════
   FEATURES — Icon grid
═══════════════════════════════════════════════════════════════════════ */
.home-features {
  padding: 0px 30px 30px;
  background: var(--h-surface);
}

.home-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .home-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (min-width: 900px) {
  .home-features-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.home-feature-card {
  text-align: center;
  padding: 24px 12px;
  background: var(--h-bg);
  border-radius: var(--h-radius-sm);
  transition: transform .2s var(--h-spring);
}

.home-feature-card:hover {
  transform: translateY(-2px);
}

.home-feature-icon {
  width: 44px; height: 44px;
  margin: 0 auto 12px;
  background: var(--h-surface);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--h-shadow-sm);
}

.home-feature-icon svg {
  width: 22px; height: 22px;
  color: var(--h-gold);
}

.home-feature-card h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--h-ink);
  margin: 0;
  line-height: 1.3;
}


/* ═══════════════════════════════════════════════════════════════════════
   YGR PROMO — Dark section
═══════════════════════════════════════════════════════════════════════ */
.home-ygr {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
}

.home-ygr-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .home-ygr-inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.home-ygr-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--h-gold);
  color: var(--h-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  border-radius: var(--h-radius-full);
  margin-bottom: 16px;
}

.home-ygr-text h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0 0 16px;
}

.home-ygr-desc {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin: 0 0 24px;
}

.home-ygr-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 10px;
}

.home-ygr-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
}

.home-ygr-features li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(212, 168, 75, .2);
  color: var(--h-gold);
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-ygr-price {
  margin-bottom: 24px;
}

.home-ygr-amount {
  font-size: 32px;
  font-weight: 700;
  color: var(--h-gold);
}

.home-ygr-media img {
  width: 100%;
  height: auto;
  border-radius: var(--h-radius);
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
}


/* ═══════════════════════════════════════════════════════════════════════
   BUNDLE PROMO
═══════════════════════════════════════════════════════════════════════ */
.ygb-promo {
  padding: 48px 20px;
  background: var(--h-gold-light);
}

.ygb-promo-box {
  max-width: 700px;
  margin: 0 auto;
  background: var(--h-surface);
  border-radius: var(--h-radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--h-shadow-lg);
  position: relative;
  overflow: hidden;
}

.ygb-promo-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--h-radius-full);
  margin-bottom: 20px;
}

.ygb-promo-content h2 {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 0 0 12px;
  color: var(--h-ink);
}

.ygb-promo-desc {
  font-size: 15px;
  color: var(--h-muted);
  margin: 0 0 20px;
  line-height: 1.6;
}

.ygb-promo-prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.ygb-price-original {
  font-size: 18px;
  color: var(--h-subtle);
}

.ygb-price-original del {
  text-decoration: line-through;
}

.ygb-price-new {
  font-size: 28px;
  font-weight: 700;
  color: var(--h-gold-dark);
}

.ygb-promo-note {
  font-size: 13px;
  color: var(--h-muted);
  margin: 0 0 24px;
}


/* ═══════════════════════════════════════════════════════════════════════
   REVIEWS — Auto-scroll marquee
═══════════════════════════════════════════════════════════════════════ */
.home-reviews {
  padding: 64px 0;
  background: var(--h-bg);
  overflow: hidden;
}

.home-reviews-header {
  text-align: center;
  margin-bottom: 32px;
}

.home-reviews-header h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0 0 16px;
}

.home-reviews-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.home-reviews-stars {
  font-size: 28px;
  color: #f59e0b;
  letter-spacing: 2px;
}

.home-reviews-score {
  font-size: 18px;
  font-weight: 700;
  color: var(--h-ink);
}

.home-reviews-count {
  font-size: 13px;
  color: var(--h-muted);
}

/* Swiper for reviews */
.home-reviews-swiper {
  padding: 8px 0 40px;
}

.home-review-card {
  background: var(--h-surface);
  border-radius: var(--h-radius);
  padding: 24px;
  border: 1px solid var(--h-border);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.home-review-stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.home-review-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--h-ink);
}

.home-review-card p {
  font-size: 14px;
  color: var(--h-muted);
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}

.home-review-card footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--h-border);
}

.home-review-avatar {
  width: 36px; height: 36px;
  background: var(--h-gold-light);
  color: var(--h-gold-dark);
  font-size: 13px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-review-author {
  font-size: 14px;
  font-weight: 500;
  color: var(--h-ink);
}

.home-review-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--h-success);
  background: rgba(16, 185, 129, .1);
  padding: 4px 8px;
  border-radius: var(--h-radius-full);
  margin-left: auto;
}


/* ═══════════════════════════════════════════════════════════════════════
   FAQ — Clean accordion
═══════════════════════════════════════════════════════════════════════ */
.home-faq {
  padding: 80px 0;
  background: var(--h-surface);
}

.home-faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

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

.home-faq-header h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0 0 8px;
}

.home-faq-header p {
  color: var(--h-muted);
  font-size: 15px;
}

.home-faq-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .home-faq-grid {
    grid-template-columns: 280px 1fr;
    gap: 60px;
  }
}

.home-faq-intro h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
}

.home-faq-intro p {
  font-size: 14px;
  color: var(--h-muted);
  line-height: 1.7;
  margin: 0 0 16px;
}

.home-faq-contact a {
  color: var(--h-gold-dark);
  text-decoration: none;
  font-weight: 600;
}

.home-faq-contact a:hover {
  text-decoration: underline;
}

/* FAQ items — using ygm-faq-* classes for JS compatibility */
.home-faq-list {
  display: grid;
  gap: 12px;
}

.ygm-faq-item {
  background: var(--h-bg);
  border-radius: var(--h-radius-sm);
  overflow: hidden;
}

.ygm-faq-toggle {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: var(--h-ink);
  transition: background .15s;
}

.ygm-faq-toggle:hover {
  background: rgba(0,0,0,.02);
}

.ygm-faq-icon {
  font-size: 20px;
  color: var(--h-muted);
  transition: transform .2s var(--h-ease);
  flex-shrink: 0;
}

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

.ygm-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s var(--h-ease);
}

.ygm-faq-panel p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--h-muted);
  line-height: 1.7;
  margin: 0;
}

.ygm-faq-panel a {
  color: var(--h-gold-dark);
  font-weight: 500;
}


/* ═══════════════════════════════════════════════════════════════════════
   SEO SECTION
═══════════════════════════════════════════════════════════════════════ */
.home-seo {
  padding: 64px 0;
  background: var(--h-bg);
  border-top: 1px solid var(--h-border);
}

.home-seo-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.home-seo-inner p {
  font-size: 14px;
  color: var(--h-muted);
  line-height: 1.8;
  margin: 0 0 16px;
}

.home-seo-inner p:last-child {
  margin-bottom: 0;
}

.home-seo-inner strong {
  color: var(--h-ink);
  font-weight: 500;
}

.home-seo-highlight {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--h-border);
  font-size: 15px;
  color: var(--h-ink);
}

.home-seo-highlight strong {
  color: var(--h-gold);
}


/* ═══════════════════════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════════════════════ */
.home-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--h-gold) 0%, var(--h-gold-dark) 100%);
  text-align: center;
}

.home-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.home-cta h2 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 12px;
  text-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.home-cta p {
  font-size: 17px;
  color: rgba(255,255,255,.9);
  margin: 0 0 32px;
}

.home-cta .h-btn-primary {
  background: var(--h-ink);
  color: #fff;
  padding: 18px 40px;
  font-size: 16px;
}

.home-cta .h-btn-primary:hover {
  background: #1e293b;
}


/* ═══════════════════════════════════════════════════════════════════════
   MOBILE OPTIMIZATIONS
═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .home-hero {
    min-height: 100svh;
    min-height: -webkit-fill-available;
  }

  .home-hero-content {
    padding-bottom: 100px;
  }

  .home-hero-actions .h-btn {
    width: 100%;
    justify-content: center;
  }

  .home-trust {
    margin-top: -24px;
  }

  .home-trust-inner {
    padding: 12px;
    gap: 4px;
  }

  .home-trust-item {
    padding: 6px 10px;
    font-size: 11px;
  }

  .home-value,
  .home-how,
  .home-faq {
    padding: 56px 0;
  }

  .home-collection,
  .home-features,
  .home-reviews {
    padding: 48px 0;
  }

  .home-ygr {
    padding: 56px 0;
  }

  .ygb-promo {
    padding: 32px 16px;
  }

  .ygb-promo-box {
    padding: 24px 20px;
  }

  .home-cta {
    padding: 56px 20px;
  }
}

/* Extra small screens */
@media (max-width: 380px) {
  .home-hero h1 {
    font-size: 32px;
  }

  .home-trust-item span {
    display: none;
  }

  .home-trust-item svg {
    width: 24px; height: 24px;
  }
}


/* ═══════════════════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════════════════ */
.animate-in {
  animation: fadeUp .5s var(--h-ease) forwards;
}

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

/* Stagger children */
.animate-in:nth-child(1) { animation-delay: 0ms; }
.animate-in:nth-child(2) { animation-delay: 50ms; }
.animate-in:nth-child(3) { animation-delay: 100ms; }
.animate-in:nth-child(4) { animation-delay: 150ms; }
.animate-in:nth-child(5) { animation-delay: 200ms; }
.animate-in:nth-child(6) { animation-delay: 250ms; }


/* ═══════════════════════════════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   OCCASIONS SECTION
═══════════════════════════════════════════════════════════════════════════ */
.gc-occasions {
  padding: 100px 0;
  background: var(--gc-darker);
}

.gc-occasions h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #1a1a2e;
  margin: 0 0 60px;
}

.gc-occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 768px) {
  .gc-occasions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gc-occasions-grid {
    grid-template-columns: 1fr;
  }
}

.gc-occasion {
  text-align: center;
  padding: 35px 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid var(--gc-border);
  transition: all 0.3s ease;
}

.gc-occasion:hover {
  border-color: rgba(201, 162, 39, 0.3);
  transform: translateY(-5px);
}

.gc-occasion-emoji {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.gc-occasion h3 {
  font-size: 1.15rem;
  color: #1a1a2e;
  margin: 0 0 10px;
}

.gc-occasion p {
  font-size: 0.9rem;
  color: var(--gc-text-muted);
  margin: 0;
  line-height: 1.5;
}