/* ============================================================
   PORN IPTV — Bordeaux + Or (Luxe) Theme
   Different design language: dark hero, gold accents, ornate feel
   ============================================================ */

:root {
  /* === Theme Bordeaux + Or === */
  --bg:           #faf8f3;          /* crème très clair */
  --bg-elev:      #ffffff;
  --bg-card:      #ffffff;
  --bg-soft:      #f5e9e9;          /* bordeaux ultra léger */
  --bg-section:   #f0ebe0;          /* crème sable */
  --bg-dark:      #1a0808;          /* bordeaux nuit profond */
  --bg-dark-soft: #2a1010;
  --bg-dark-card: #3a1818;

  --primary:      #7c1d1d;          /* bordeaux deep */
  --primary-dark: #4c0d0d;
  --primary-light: #a02c2c;
  --primary-glow: rgba(124, 29, 29, 0.28);
  --primary-bg:   #f5e9e9;

  --gold:         #ffffff;          /* white accent on dark */
  --gold-light:   #faf3e1;          /* cream */
  --gold-dark:    #a02c2c;          /* bordeaux clair */
  --gold-bg:      #f5e9e9;          /* bordeaux ultra clair */

  --secondary:    #a02c2c;          /* bordeaux clair */
  --secondary-dark: #7c1d1d;

  --accent:       #1a0808;
  --accent-soft:  #2a1010;

  --text:         #1a0808;
  --text-dim:     #44241f;
  --text-muted:   #8a6e69;
  --text-light:   #c1a8a4;
  --text-on-dark: #faf3e1;

  --border:       #e8dad7;
  --border-soft:  #f0e6e3;
  --border-strong: #1a0808;

  --success:      #4a7c4a;
  --warning:      #a02c2c;
  --danger:       #b91c1c;

  --font-sans:    'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script:  'Poppins', sans-serif;

  --container: 1240px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-xs: 0 1px 2px rgba(26, 8, 8, 0.05);
  --shadow-sm: 0 2px 4px rgba(26, 8, 8, 0.07);
  --shadow:    0 8px 24px rgba(26, 8, 8, 0.1);
  --shadow-lg: 0 20px 48px rgba(26, 8, 8, 0.15);
  --shadow-bordeaux: 0 12px 28px rgba(124, 29, 29, 0.34);
  --shadow-bordeaux-lg: 0 20px 50px rgba(124, 29, 29, 0.42);
  --shadow-gold: 0 12px 28px rgba(124, 29, 29, 0.32);

  --gradient-bordeaux: linear-gradient(135deg, #7c1d1d 0%, #4c0d0d 100%);
  --gradient-gold:     linear-gradient(135deg, #a02c2c 0%, #7c1d1d 100%);
  --gradient-luxe:     linear-gradient(135deg, #a02c2c 0%, #4c0d0d 100%);
  --gradient-dark:     linear-gradient(135deg, #2a1010 0%, #1a0808 100%);
}

/* ===== Reset ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100vw; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--text);
}

/* Decorative gold lines */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 18px;
}
.gold-divider::before, .gold-divider::after {
  content: '';
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gold-divider .gd-icon {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.4em;
}

/* ============================================================
   Buttons - Square modern luxe style
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
  font-family: var(--font-sans);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gradient-bordeaux);
  color: #fff;
  box-shadow: var(--shadow-bordeaux);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-bordeaux-lg);
}
.btn-gold {
  background: var(--gradient-gold);
  color: var(--bg-dark);
  box-shadow: var(--shadow-gold);
  font-weight: 700;
}
.btn-gold:hover {
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--bg-dark);
  color: var(--gold);
  border-color: var(--gold);
}
.btn-dark:hover {
  background: var(--gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  background: var(--bg-dark);
  color: var(--gold);
  border-color: var(--bg-dark);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--bg-dark);
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-radius: 8px;
}
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 36px; font-size: 0.96rem; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

/* ============================================================
   Header — Centered luxe
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 14px rgba(124, 29, 29, 0.3));
  flex-shrink: 0;
}
.logo-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text .lt-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--text);
  letter-spacing: 0.005em;
}
.logo-text .lt-tag {
  font-weight: 500;
  font-size: 0.66rem;
  color: var(--gold-dark);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dim);
  padding: 9px 14px;
  letter-spacing: 0.02em;
  position: relative;
  transition: color .15s;
}
.nav-links a:hover {
  color: var(--primary);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all .25s ease;
  transform: translateX(-50%);
}
.nav-links a:hover::after {
  width: 80%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--bg-dark);
  color: var(--gold);
}

@media (max-width: 1020px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    align-items: stretch;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 16px; }
  .menu-toggle { display: flex; }
  .nav-cta .btn-outline { display: none; }
}

/* ============================================================
   Age verification banner
   ============================================================ */
.age-banner {
  background: var(--bg-dark);
  color: var(--gold);
  padding: 8px 0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
}
.age-banner span { color: var(--gold-light); }

/* ============================================================
   HERO — Dark luxe hero with centered content
   ============================================================ */
.hero {
  position: relative;
  padding: 90px 0 110px;
  overflow: hidden;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(124, 29, 29, 0.4) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 26px;
  border-radius: 8px;
}
.hero-tag .tag-icon { color: var(--gold); }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero h1 .text-gold {
  color: #faf3e1;
  font-weight: 700;
}
.hero h1 em {
  font-style: normal;
  font-weight: 700;
  color: #faf3e1;
}
.hero p.lead {
  font-size: 1.14rem;
  color: rgba(250, 243, 225, 0.78);
  margin: 0 auto 36px;
  line-height: 1.7;
  max-width: 680px;
  font-weight: 400;
}
.hero p.lead strong {
  color: var(--gold-light);
  font-weight: 600;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.hero-stat {
  text-align: center;
}
.hero-stat .hs-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.hero-stat .hs-label {
  font-size: 0.74rem;
  color: rgba(250, 243, 225, 0.6);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .hero { padding: 60px 0 70px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero p.lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 22px; }
  .hero-stat .hs-num { font-size: 1.8rem; }
}

/* ============================================================
   Logos / trust strip
   ============================================================ */
.logos-bar {
  background: #fff;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.logos-text {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  align-items: center;
  justify-items: center;
}
.logos-grid .logo-item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--text-light);
  letter-spacing: 0.01em;
  transition: color .2s;
}
.logos-grid .logo-item:hover { color: var(--primary); }
@media (max-width: 760px) {
  .logos-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

/* ============================================================
   Section base
   ============================================================ */
section {
  padding: 90px 0;
}
section.tight { padding: 60px 0; }
section.section-bg { background: var(--bg-section); }
section.dark-bg {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
section.dark-bg h1, section.dark-bg h2, section.dark-bg h3, section.dark-bg h4 {
  color: #fff;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-eyebrow {
  display: inline-block;
  padding: 6px 18px;
  background: var(--bg-dark);
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid var(--gold);
  border-radius: 8px;
}
section.dark-bg .section-eyebrow {
  background: rgba(255, 255, 255, 0.08);
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: -0.018em;
}
.section-head h2 .accent {
  color: var(--primary);
  font-weight: 700;
}
section.dark-bg .section-head h2 .accent {
  color: var(--gold);
}
.section-head p {
  font-size: 1.04rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}
section.dark-bg .section-head p { color: rgba(250, 243, 225, 0.7); }

.section-intro-prose {
  max-width: 880px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.8;
  text-align: center;
}
.section-intro-prose strong { color: var(--text); font-weight: 600; }

/* Scroll fade */
.scroll-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PRICING — Luxe cards with gold ribbon
   ============================================================ */
.pricing-section {
  background: var(--bg);
}
.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.pricing-toggle {
  display: inline-flex;
  background: var(--bg-dark);
  padding: 5px;
  gap: 0;
  border: 1px solid var(--gold);
  border-radius: 8px;
}
.pricing-toggle .tab-btn {
  padding: 11px 26px;
  font-weight: 600;
  font-size: 0.84rem;
  color: rgba(250, 243, 225, 0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all .25s ease;
  font-family: var(--font-sans);
  border-radius: 2px;
}
.pricing-toggle .tab-btn.active {
  background: var(--gradient-gold);
  color: var(--bg-dark);
  font-weight: 700;
}

.pricing-pane {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pricing-pane.active {
  display: grid;
}

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px 28px;
  position: relative;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 6px 6px 0 0;
  opacity: 0;
  transition: opacity .25s ease;
}
.price-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.price-card:hover::before { opacity: 1; }
.price-card.featured {
  background: var(--bg-dark);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-12px);
  box-shadow: var(--shadow-bordeaux);
}
.price-card.featured::before { opacity: 1; }
.price-card.featured:hover { transform: translateY(-16px); }
.price-card .ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--bg-dark);
  padding: 6px 18px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 3px;
  box-shadow: 0 6px 14px rgba(255, 255, 255, 0.4);
}
.price-duration {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.price-card.featured .price-duration { color: var(--gold); }

.price-amount {
  font-family: var(--font-display);
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.price-amount .num {
  font-size: 3.4rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.04em;
}
.price-card.featured .price-amount .num { color: #fff; }
.price-amount .cur {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--primary);
}
.price-card.featured .price-amount .cur { color: var(--gold); }
.price-meta {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.price-card.featured .price-meta { color: rgba(250, 243, 225, 0.6); }
.price-save {
  display: inline-block;
  background: var(--gold-bg);
  color: var(--gold-dark);
  padding: 4px 12px;
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.price-card.featured .price-save {
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold-light);
  border-color: rgba(255, 255, 255, 0.4);
}
.price-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}
.price-features li {
  font-size: 0.88rem;
  color: var(--text-dim);
  padding: 9px 0 9px 26px;
  position: relative;
  border-bottom: 1px dotted var(--border);
}
.price-card.featured .price-features li {
  color: rgba(250, 243, 225, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '✦';
  position: absolute;
  left: 4px;
  top: 9px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .pricing-pane { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-5px); }
}
@media (max-width: 580px) {
  .pricing-pane { grid-template-columns: 1fr; }
}

/* ============================================================
   FEATURES — Luxury card grid
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-luxe-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 36px 30px;
  position: relative;
  transition: all .3s ease;
  border-radius: 6px;
  text-align: center;
}
.feature-luxe-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-luxe-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  margin: 6px;
  pointer-events: none;
  border-radius: 8px;
  transition: border-color .3s ease;
}
.feature-luxe-card:hover::before {
  border-color: var(--gold);
}
.flc-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  background: var(--gradient-bordeaux);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  position: relative;
}
.flc-icon img {
  width: 28px;
  height: 28px;
  filter: invert(100%) brightness(110%);
}
.feature-luxe-card h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.feature-luxe-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}
.feature-luxe-card p strong { color: var(--primary); font-weight: 600; }

@media (max-width: 880px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   STEPS — Vertical luxe timeline (centered)
   ============================================================ */
.steps-luxe {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.steps-luxe::before {
  content: '';
  position: absolute;
  left: 38px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), var(--gold), transparent);
}
.step-luxe-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 36px;
  position: relative;
}
.step-luxe-item:last-child { margin-bottom: 0; }
.step-luxe-num {
  width: 78px;
  height: 78px;
  flex-shrink: 0;
  background: var(--bg-dark);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: #faf3e1;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 20px rgba(124, 29, 29, 0.18);
}
.step-luxe-content {
  flex: 1;
  padding: 22px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all .25s ease;
}
.step-luxe-item:hover .step-luxe-content {
  border-color: var(--gold);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.step-luxe-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.step-luxe-content p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}
.step-luxe-content p strong { color: var(--text); font-weight: 600; }

@media (max-width: 600px) {
  .steps-luxe::before { left: 28px; }
  .step-luxe-num { width: 58px; height: 58px; font-size: 1.4rem; }
  .step-luxe-item { gap: 18px; }
  .step-luxe-content { padding: 18px 22px; }
}

/* ============================================================
   ADULT BOUQUET — Featured highlight section
   ============================================================ */
.adult-feature {
  background: var(--bg-dark);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.adult-feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.adult-feature::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.adult-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.adult-feature-text .section-eyebrow {
  background: rgba(255, 255, 255, 0.08);
}
.adult-feature h2 {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 18px;
}
.adult-feature h2 .accent { color: #faf3e1; font-weight: 700; }
.adult-feature p {
  color: rgba(250, 243, 225, 0.78);
  font-size: 1.04rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.adult-feature p strong { color: var(--gold-light); font-weight: 600; }
.adult-feature ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
}
.adult-feature ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: rgba(250, 243, 225, 0.85);
  font-size: 0.96rem;
}
.adult-feature ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--gold);
}
.adult-feature ul li strong { color: var(--gold-light); }

.adult-feature-visual {
  position: relative;
  padding: 40px;
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}
.afv-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.afv-stat {
  padding: 20px 18px;
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  text-align: center;
}
.afv-stat .afv-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.afv-stat .afv-label {
  font-size: 0.74rem;
  color: rgba(250, 243, 225, 0.55);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.afv-tag {
  display: inline-block;
  margin-top: 22px;
  padding: 8px 16px;
  background: rgba(124, 29, 29, 0.4);
  color: var(--gold);
  border: 1px solid var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
}

@media (max-width: 880px) {
  .adult-feature-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   CHANNELS — Categories with gold accents
   ============================================================ */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.channel-luxe {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 26px;
  position: relative;
  transition: all .3s ease;
}
.channel-luxe:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.channel-luxe.dark-tile {
  background: var(--bg-dark);
  color: #fff;
  border-color: var(--gold);
}
.channel-luxe.dark-tile h3 { color: #fff; }
.channel-luxe.dark-tile .channel-tag {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--gold);
}
.channel-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 14px;
  gap: 12px;
}
.channel-luxe h3 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: -0.012em;
}
.channel-count {
  background: var(--gold-bg);
  color: var(--gold-dark);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 3px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.28);
  letter-spacing: 0.04em;
}
.channel-luxe.dark-tile .channel-count {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--gold-light);
}
.channel-luxe p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.channel-luxe.dark-tile p { color: rgba(250, 243, 225, 0.7); }
.channel-luxe p strong { color: var(--text); font-weight: 600; }
.channel-luxe.dark-tile p strong { color: var(--gold); }
.channel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.channel-tag {
  font-size: 0.74rem;
  font-weight: 500;
  padding: 4px 10px;
  background: var(--bg-section);
  color: var(--text-dim);
  border-radius: 3px;
  border: 1px solid var(--border);
  letter-spacing: 0.02em;
}

@media (max-width: 980px) { .channels-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .channels-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ARGUMENTS — Vertical alternating layout
   ============================================================ */
.args-alternating {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.arg-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  align-items: start;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all .3s ease;
  position: relative;
}
.arg-row:hover {
  border-color: var(--gold);
  transform: translateX(4px);
  box-shadow: var(--shadow);
}
.arg-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-bordeaux);
  border-radius: 6px 0 0 6px;
}
.arg-row.gold::before { background: var(--gradient-gold); }
.arg-icon-luxe {
  width: 90px;
  height: 90px;
  background: var(--bg-dark);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}
.arg-icon-luxe img {
  width: 36px;
  height: 36px;
  filter: invert(100%) brightness(110%);
}
.arg-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.012em;
}
.arg-content p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}
.arg-content p strong { color: var(--primary); font-weight: 600; }

@media (max-width: 600px) {
  .arg-row { grid-template-columns: 1fr; gap: 18px; padding: 22px; }
  .arg-icon-luxe { width: 72px; height: 72px; }
}

/* ============================================================
   COMPATIBILITY — Pills tabs
   ============================================================ */
.compat-section {
  background: var(--bg-section);
}
.compat-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 40px;
  background: var(--bg-dark);
  padding: 5px;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--gold);
  border-radius: 8px;
}
.compat-tab {
  padding: 11px 26px;
  font-weight: 600;
  font-size: 0.84rem;
  color: rgba(250, 243, 225, 0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: none;
  transition: all .25s ease;
  border-radius: 2px;
}
.compat-tab.active {
  background: var(--gradient-gold);
  color: var(--bg-dark);
  font-weight: 700;
}
.compat-pane { display: none; }
.compat-pane.active { display: block; }

.devices-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.device-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 22px 14px;
  text-align: center;
  transition: all .25s ease;
  border-radius: 8px;
}
.device-card:hover {
  border-color: var(--gold);
  background: var(--gold-bg);
  transform: translateY(-3px);
}
.device-img {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  opacity: 0.85;
}
.device-card:hover .device-img { opacity: 1; }
.device-name {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.app-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all .25s ease;
  border-radius: 8px;
}
.app-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.app-card-img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 8px;
}
.app-card-text { min-width: 0; flex: 1; }
.app-card-name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.app-card-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 980px) {
  .devices-grid { grid-template-columns: repeat(3, 1fr); }
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .devices-grid { grid-template-columns: repeat(2, 1fr); }
  .apps-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   REVIEWS — Quote-style cards
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-luxe {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
  transition: all .3s ease;
  position: relative;
}
.review-luxe::before {
  content: '"';
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  font-weight: 700;
}
.review-luxe:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  font-weight: 600;
}
.review-text {
  font-size: 0.96rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.review-text strong { color: var(--text); font-weight: 600; font-style: normal; }
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-bordeaux);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}
.review-author-info { font-size: 0.86rem; }
.review-author-name { font-weight: 700; color: var(--text); }
.review-author-meta { color: var(--text-muted); font-size: 0.76rem; margin-top: 2px; }

@media (max-width: 980px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ — Single column dark style
   ============================================================ */
.faq-wrap {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all .25s ease;
  margin-bottom: 14px;
}
.faq-item:hover { border-color: var(--gold); }
.faq-item.open {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 26px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  text-align: left;
  font-family: var(--font-sans);
  letter-spacing: -0.005em;
  gap: 14px;
}
.faq-q .chevron {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--bg-section);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 300;
  font-family: var(--font-display);
}
.faq-item.open .faq-q .chevron {
  background: var(--bg-dark);
  color: var(--gold);
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 26px;
  max-height: 0;
  overflow: hidden;
  transition: all .35s ease;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding-bottom: 24px;
}
.faq-a p {
  font-size: 0.96rem;
  color: var(--text-dim);
  line-height: 1.75;
}
.faq-a strong { color: var(--text); font-weight: 600; }
.faq-a a { color: var(--primary); font-weight: 600; text-decoration: underline; }

/* ============================================================
   CONTACT — Centered luxe form
   ============================================================ */
.contact-section {
  background: var(--bg-dark);
  color: #fff;
  position: relative;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.contact-section .section-head h2 { color: #fff; }
.contact-section .section-head p { color: rgba(250, 243, 225, 0.7); }
.contact-section .section-eyebrow {
  background: rgba(255, 255, 255, 0.08);
}

.contact-grid-luxe {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  max-width: 1080px;
  margin: 0 auto;
}
.contact-info-luxe {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-card {
  display: flex;
  align-items: start;
  gap: 18px;
  padding: 24px 26px;
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  transition: all .25s ease;
}
.contact-info-card:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}
.cic-icon {
  width: 46px;
  height: 46px;
  background: var(--gradient-bordeaux);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  border-radius: 8px;
}
.cic-icon svg { width: 20px; height: 20px; }
.cic-text { flex: 1; }
.cic-label {
  font-size: 0.74rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.cic-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff;
  font-weight: 600;
  word-break: break-all;
}

.contact-form-luxe {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 36px;
  border-radius: 6px;
}
.contact-form-luxe h3 {
  color: #fff;
  font-family: var(--font-display);
  margin-bottom: 6px;
  font-size: 1.4rem;
}
.contact-form-luxe p.form-intro {
  color: rgba(250, 243, 225, 0.65);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  background: var(--bg-dark);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  transition: all .15s;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}
.form-control::placeholder { color: rgba(250, 243, 225, 0.35); }
.form-control option { background: var(--bg-dark); color: #fff; }
textarea.form-control {
  min-height: 120px;
  resize: vertical;
  font-family: var(--font-sans);
}
.form-status {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(74, 124, 74, 0.18);
  color: #a3d4a3;
  border: 1px solid rgba(74, 124, 74, 0.3);
}
.form-status.error {
  display: block;
  background: rgba(185, 28, 28, 0.18);
  color: #fca5a5;
  border: 1px solid rgba(185, 28, 28, 0.3);
}

@media (max-width: 880px) {
  .contact-grid-luxe { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .contact-form-luxe { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG cards
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: all .3s ease;
}
.blog-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.blog-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.blog-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.blog-card:hover .blog-cover img { transform: scale(1.05); }
.blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  background: var(--bg-dark);
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
}
.blog-body {
  padding: 26px 28px;
}
.blog-meta {
  font-size: 0.78rem;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.blog-card h3, .blog-card h2 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.018em;
}
.blog-card h3 a, .blog-card h2 a {
  color: var(--text);
  transition: color .2s;
}
.blog-card h3 a:hover, .blog-card h2 a:hover { color: var(--primary); }
.blog-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.blog-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.blog-link:hover { gap: 10px; color: var(--gold-dark); }

@media (max-width: 760px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BLOG ARTICLE
   ============================================================ */
.blog-article {
  padding: 60px 0 80px;
}
.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 30px;
  transition: gap .2s;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.back-to-blog:hover { gap: 12px; color: var(--gold-dark); }
.article-header {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}
.article-cat {
  display: inline-block;
  padding: 5px 14px;
  background: var(--bg-dark);
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
  border-radius: 3px;
}
.article-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 16px;
  line-height: 1.15;
  font-weight: 600;
}
.article-meta {
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.article-cover {
  max-width: 1000px;
  margin: 0 auto 40px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.article-cover img { width: 100%; height: auto; display: block; }
.article-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-dim);
}
.article-body p { margin-bottom: 18px; }
.article-body p strong { color: var(--text); font-weight: 600; }
.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 38px 0 16px;
  font-weight: 600;
  color: var(--text);
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  margin: 28px 0 14px;
  font-weight: 600;
  color: var(--text);
}
.article-body ul, .article-body ol {
  margin: 0 0 22px 0;
  padding-left: 22px;
}
.article-body li {
  margin-bottom: 9px;
  color: var(--text-dim);
}
.article-body li strong { color: var(--text); }
.article-body .article-lead {
  font-size: 1.18rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.65;
  padding: 24px 28px;
  background: var(--bg-soft);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  margin-bottom: 30px;
  font-style: italic;
}
.article-body .article-lead strong { color: var(--text); font-weight: 700; font-style: normal; }
.article-body .article-table-wrap, .article-body .comparison-table {
  margin: 24px 0;
  overflow-x: auto;
}
.article-body .article-table, .article-body .comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
}
.article-body .article-table th, .article-body .comparison-table th {
  background: var(--bg-dark);
  color: var(--gold);
  text-align: left;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.article-body .article-table td, .article-body .comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.article-body .article-table tr:last-child td, .article-body .comparison-table tr:last-child td { border-bottom: none; }
.article-body .article-cta {
  margin-top: 40px;
  padding: 36px 30px;
  background: var(--gradient-dark);
  color: #fff;
  border-radius: 6px;
  text-align: center;
  border: 1px solid var(--gold);
}
.article-body .article-cta h3 { color: #fff; margin-bottom: 10px; font-size: 1.5rem; }
.article-body .article-cta p { color: rgba(250, 243, 225, 0.78); margin-bottom: 22px; }
.related-articles {
  max-width: 1000px;
  margin: 60px auto 0;
}
.related-articles h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 28px;
  text-align: center;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  display: block;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all .25s;
}
.related-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.related-cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.related-card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.4;
  color: var(--text);
}
.related-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (max-width: 880px) { .related-grid { grid-template-columns: 1fr; } }

/* Blog hero */
.blog-hero {
  background: var(--bg-dark);
  color: #fff;
  padding: 70px 0 50px;
  text-align: center;
  border-bottom: 1px solid var(--gold);
  position: relative;
}
.blog-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.blog-hero .section-eyebrow {
  background: rgba(255, 255, 255, 0.08);
}
.blog-hero h1 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 16px;
}
.blog-hero h1 .accent { color: #faf3e1; font-weight: 700; }
.blog-hero p {
  max-width: 660px;
  margin: 0 auto;
  color: rgba(250, 243, 225, 0.72);
  font-size: 1.04rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-dark);
  color: rgba(250, 243, 225, 0.6);
  padding: 70px 0 24px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-brand .logo .lt-name { color: #fff; }
.footer-brand .logo .lt-tag { color: var(--gold); }
.footer-brand p {
  margin: 18px 0 22px;
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 380px;
}
.footer-col h4 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.92rem;
  color: rgba(250, 243, 225, 0.55);
  transition: color .15s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.84rem;
  color: rgba(250, 243, 225, 0.4);
  letter-spacing: 0.04em;
}
.footer-bottom a { color: var(--gold); font-weight: 600; }
.footer-age-warning {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: rgba(250, 243, 225, 0.4);
  text-align: center;
  letter-spacing: 0.04em;
}

@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.42);
  transition: transform .2s;
  animation: wa-pulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 30px; height: 30px; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 14px 32px rgba(37, 211, 102, 0.42), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 14px 32px rgba(37, 211, 102, 0.42), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* ============================================================
   CHECKOUT page
   ============================================================ */
.checkout-page {
  padding: 50px 0 80px;
  background: var(--bg-section);
  min-height: 80vh;
}
.checkout-stepper {
  max-width: 720px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.cs-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.cs-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
}
.cs-step.done .cs-circle {
  background: var(--gradient-bordeaux);
  border-color: var(--gold);
  color: var(--gold);
}
.cs-step.active .cs-circle {
  background: var(--bg-dark);
  border-color: var(--gold);
  color: var(--gold);
}
.cs-label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: 0.06em;
}
.cs-step.done .cs-label, .cs-step.active .cs-label { color: var(--text); }
.cs-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin-top: -22px;
}
.cs-line.done { background: var(--gold); }

.checkout-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.checkout-main {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 38px;
}
.checkout-main h1 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.checkout-main > p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.96rem;
}
.checkout-fieldset {
  margin-bottom: 22px;
}
.checkout-fieldset legend {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 0;
}
.checkout-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.checkout-field {
  margin-bottom: 14px;
}
.checkout-field label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.checkout-field label .req { color: var(--primary); }
.checkout-field label .opt {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.78rem;
}
.checkout-field input {
  width: 100%;
  padding: 13px 14px;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  background: var(--bg-section);
  border: 1.5px solid transparent;
  border-radius: 8px;
  color: var(--text);
  transition: all .15s;
}
.checkout-field input:focus {
  outline: none;
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}
.checkout-field .hint {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.checkout-submit {
  width: 100%;
  padding: 17px;
  background: var(--gradient-bordeaux);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.96rem;
  font-family: var(--font-sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all .25s;
  margin-top: 8px;
  box-shadow: var(--shadow-bordeaux);
}
.checkout-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-bordeaux-lg);
}
.checkout-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}
.checkout-trust-item {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.checkout-trust-item strong { display: block; color: var(--text); font-weight: 700; margin-bottom: 2px; font-size: 0.86rem; }

.checkout-aside {
  position: sticky;
  top: 100px;
  align-self: start;
}
.summary-card {
  background: var(--bg-dark);
  color: #fff;
  border-radius: 6px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold);
}
.summary-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold);
}
.summary-card h3 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.summary-pack-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.94rem;
}
.summary-pack-line .lbl { color: rgba(250, 243, 225, 0.55); }
.summary-pack-line .val { color: #fff; font-weight: 700; }
.summary-features {
  list-style: none;
  margin: 18px 0 22px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.summary-features li {
  font-size: 0.86rem;
  color: rgba(250, 243, 225, 0.78);
  padding: 5px 0 5px 22px;
  position: relative;
}
.summary-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.summary-total .lbl {
  font-size: 0.78rem;
  color: rgba(250, 243, 225, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.summary-total .val {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.4rem;
  color: var(--gold);
  letter-spacing: -0.03em;
}
.summary-back {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(250, 243, 225, 0.55);
  font-weight: 600;
  padding: 10px 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.summary-back:hover { color: var(--gold); }
.summary-empty { text-align: center; padding: 28px 18px; }
.summary-empty h4 { font-family: var(--font-display); color: var(--gold); margin-bottom: 8px; font-size: 1.2rem; }
.summary-empty p { color: rgba(250, 243, 225, 0.55); font-size: 0.9rem; margin-bottom: 18px; }

@media (max-width: 880px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-aside { position: static; }
}

/* ============================================================
   MERCI page
   ============================================================ */
.merci-page {
  padding: 50px 0 80px;
  background: var(--bg-section);
  min-height: 80vh;
}
.merci-hero {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
  background: var(--bg-dark);
  color: #fff;
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 50px 36px;
  position: relative;
  overflow: hidden;
}
.merci-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold);
}
.merci-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
}
.merci-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
}
.merci-hero h1 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 2rem;
  margin-bottom: 16px;
}
.merci-hero p {
  color: rgba(250, 243, 225, 0.72);
  font-size: 1.04rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.merci-ref {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 30px;
  background: var(--bg-dark-card);
  border: 1px solid var(--gold);
  border-radius: 8px;
}
.merci-ref-label {
  font-size: 0.74rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.merci-ref-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

.merci-timeline {
  max-width: 760px;
  margin: 0 auto 50px;
}
.merci-timeline h2 {
  font-family: var(--font-display);
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 32px;
}
.merci-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mtl-item {
  display: flex;
  gap: 18px;
  padding: 24px 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
}
.mtl-item.completed { border-color: var(--success); background: #f0f7f0; }
.mtl-item.current { border-color: var(--gold); background: var(--gold-bg); }
.mtl-dot {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  margin-top: 6px;
}
.mtl-item.completed .mtl-dot { background: var(--success); }
.mtl-item.current .mtl-dot { background: var(--gold); box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22); }
.mtl-content { flex: 1; }
.mtl-time {
  font-size: 0.74rem;
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.mtl-content h3 { font-family: var(--font-display); font-size: 1.18rem; margin-bottom: 6px; }
.mtl-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.mtl-tip {
  margin-top: 10px;
  padding: 10px 14px;
  background: var(--bg-dark);
  color: #fff;
  font-size: 0.86rem;
  border-radius: 8px;
  border: 1px solid var(--gold);
}
.mtl-tip strong { color: var(--gold); }

.merci-contact {
  max-width: 760px;
  margin: 0 auto 36px;
  background: var(--gradient-dark);
  color: #fff;
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 30px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.merci-contact h3 { font-family: var(--font-display); color: var(--gold); font-size: 1.2rem; margin-bottom: 6px; }
.merci-contact p { color: rgba(250, 243, 225, 0.72); font-size: 0.92rem; }
.merci-contact-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.merci-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}
.merci-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: all .25s;
  letter-spacing: 0.04em;
}
.merci-link:hover {
  border-color: var(--gold);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.merci-link svg { margin-bottom: 12px; width: 26px; height: 26px; color: var(--primary); }

@media (max-width: 700px) { .merci-links { grid-template-columns: 1fr; } }

/* ============================================================
   LEGAL pages
   ============================================================ */
.legal-page {
  padding: 70px 0 80px;
  max-width: 880px;
  margin: 0 auto;
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  margin-bottom: 8px;
}
.legal-page .last-updated {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 34px;
  font-style: italic;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 32px 0 14px;
  color: var(--text);
}
.legal-content p {
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.98rem;
}
.legal-content ul, .legal-content ol {
  margin: 0 0 14px 22px;
  color: var(--text-dim);
}
.legal-content li { margin-bottom: 6px; line-height: 1.7; }
.legal-content a { color: var(--primary); font-weight: 600; text-decoration: underline; }
.legal-content strong { color: var(--text); font-weight: 700; }

/* ============================================================
   CTA block utility
   ============================================================ */
.cta-block {
  background: var(--gradient-dark);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-block::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124, 29, 29, 0.25) 0%, transparent 60%);
  pointer-events: none;
}
.cta-block > * { position: relative; z-index: 1; }
.cta-block h2 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 14px;
}
.cta-block h2 .accent { color: #faf3e1; font-weight: 700; }
.cta-block p {
  color: rgba(250, 243, 225, 0.78);
  margin-bottom: 28px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-size: 1.02rem;
}
