/* ================================================
   DIVASPIN FRANCE - Styles Premium
   Fichier: css/divaspin-fr.css
   ================================================ */

:root {
  --cpf-gold: #d4a574;
  --cpf-gold-bright: #e8c9a0;
  --cpf-gold-deep: #b8956a;
  --cpf-violet: #1a0a2e;
  --cpf-violet-mid: #2d1b4e;
  --cpf-violet-soft: #432874;
  --cpf-magenta: #9333ea;
  --cpf-magenta-light: #a855f7;
  --cpf-success: #10b981;
  --cpf-danger: #ef4444;
  --cpf-light: #ffffff;
  --cpf-neutral-100: #f8f9fa;
  --cpf-neutral-200: #e9ecef;
  --cpf-neutral-600: #6c757d;
  --cpf-neutral-800: #343a40;
  --cpf-curve: 16px;
  --cpf-curve-sm: 8px;
  --cpf-curve-lg: 24px;
  --cpf-depth: 0 10px 40px rgba(0,0,0,0.3);
  --cpf-glow: 0 0 30px rgba(212, 165, 116, 0.3);
  --cpf-motion: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(180deg, var(--cpf-violet) 0%, #0f051a 100%);
  color: var(--cpf-light);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

.cpf-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================================================
   HEADER
   ================================================ */
.cpf-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 10, 46, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
  padding: 15px 0;
}

.cpf-header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cpf-brand img {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(212, 165, 116, 0.5));
  transition: var(--cpf-motion);
}

.cpf-brand:hover img {
  filter: drop-shadow(0 0 20px rgba(212, 165, 116, 0.8));
}

.cpf-header__nav {
  display: flex;
  gap: 12px;
}

/* ================================================
   BUTTONS
   ================================================ */
.cpf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--cpf-motion);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.cpf-btn--ghost {
  background: transparent;
  border: 2px solid var(--cpf-gold);
  color: var(--cpf-gold);
}

.cpf-btn--ghost:hover {
  background: var(--cpf-gold);
  color: var(--cpf-violet);
  transform: translateY(-2px);
}

.cpf-btn--shine {
  background: linear-gradient(135deg, var(--cpf-gold) 0%, var(--cpf-gold-deep) 100%);
  color: var(--cpf-violet);
  box-shadow: var(--cpf-glow);
}

.cpf-btn--shine:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
}

.cpf-btn--mega {
  background: linear-gradient(135deg, var(--cpf-gold) 0%, #f0d78c 50%, var(--cpf-gold-deep) 100%);
  color: var(--cpf-violet);
  font-size: 18px;
  padding: 20px 50px;
  box-shadow: 0 0 50px rgba(212, 165, 116, 0.5);
  animation: cpfPulse 2s infinite;
}

@keyframes cpfPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(212, 165, 116, 0.4); }
  50% { box-shadow: 0 0 60px rgba(212, 165, 116, 0.7); }
}

.cpf-btn--mega:hover {
  transform: translateY(-4px) scale(1.02);
}

/* ================================================
   MAIN CONTENT
   ================================================ */
.cpf-content {
  padding-top: 100px;
}

/* ================================================
   BANNER / HERO
   ================================================ */
.cpf-banner {
  position: relative;
  padding: 80px 0 100px;
  text-align: center;
  overflow: hidden;
}

.cpf-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(147, 51, 234, 0.15) 0%, transparent 60%);
  animation: cpfRotate 30s linear infinite;
}

@keyframes cpfRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cpf-banner__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(212, 165, 116, 0.1));
  border: 1px solid rgba(212, 165, 116, 0.3);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  color: var(--cpf-gold-bright);
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  position: relative;
}

.cpf-banner__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--cpf-gold-bright) 0%, var(--cpf-gold) 50%, var(--cpf-gold-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-shadow: 0 0 80px rgba(212, 165, 116, 0.3);
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

.cpf-banner__tagline {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-weight: 300;
  position: relative;
}

.cpf-banner__action {
  margin-bottom: 50px;
  position: relative;
}

/* ================================================
   BADGES
   ================================================ */
.cpf-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
  position: relative;
}

.cpf-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--cpf-curve);
  backdrop-filter: blur(10px);
  transition: var(--cpf-motion);
}

.cpf-badge:hover {
  background: rgba(212, 165, 116, 0.1);
  border-color: rgba(212, 165, 116, 0.3);
  transform: translateY(-5px);
}

.cpf-badge__icon {
  font-size: 28px;
}

.cpf-badge__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ================================================
   METRICS / STATS
   ================================================ */
.cpf-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: -50px auto 60px;
  position: relative;
  z-index: 10;
}

.cpf-metric {
  background: linear-gradient(145deg, rgba(45, 27, 78, 0.8), rgba(26, 10, 46, 0.9));
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: var(--cpf-curve);
  padding: 30px 20px;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: var(--cpf-motion);
}

.cpf-metric:hover {
  transform: translateY(-8px);
  border-color: var(--cpf-gold);
  box-shadow: var(--cpf-glow);
}

.cpf-metric__num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--cpf-gold);
  margin-bottom: 8px;
}

.cpf-metric__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ================================================
   BLOCKS / SECTIONS
   ================================================ */
.cpf-block {
  padding: 80px 0;
  position: relative;
}

.cpf-block--dark {
  background: linear-gradient(180deg, rgba(45, 27, 78, 0.3) 0%, transparent 100%);
}

.cpf-block--accent {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(212, 165, 116, 0.05) 100%);
  border-top: 1px solid rgba(212, 165, 116, 0.1);
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.cpf-block__head {
  text-align: center;
  margin-bottom: 60px;
}

.cpf-block__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--cpf-light);
  margin-bottom: 15px;
}

.cpf-block__intro {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

/* ================================================
   CARDS
   ================================================ */
.cpf-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.cpf-card {
  background: linear-gradient(145deg, rgba(45, 27, 78, 0.6), rgba(26, 10, 46, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--cpf-curve-lg);
  padding: 35px 30px;
  transition: var(--cpf-motion);
  position: relative;
  overflow: hidden;
}

.cpf-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cpf-gold), var(--cpf-magenta));
  transform: scaleX(0);
  transition: var(--cpf-motion);
}

.cpf-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 165, 116, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.cpf-card:hover::before {
  transform: scaleX(1);
}

.cpf-card__symbol {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.cpf-card__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--cpf-light);
  margin-bottom: 15px;
}

.cpf-card__info {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

/* ================================================
   SLOTS / GAMES
   ================================================ */
.cpf-slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.cpf-slot {
  background: linear-gradient(145deg, rgba(45, 27, 78, 0.7), rgba(26, 10, 46, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--cpf-curve);
  overflow: hidden;
  transition: var(--cpf-motion);
}

.cpf-slot:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.cpf-slot__visual {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--cpf-violet-soft), var(--cpf-magenta));
}

.cpf-slot__visual--emerald {
  background: linear-gradient(135deg, #059669, #10b981);
}

.cpf-slot__visual--amber {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}

.cpf-slot__visual--ruby {
  background: linear-gradient(135deg, #dc2626, #f87171);
}

.cpf-slot__icon {
  font-size: 64px;
}

.cpf-slot__tag {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.cpf-slot__tag--fire {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}

.cpf-slot__tag--fresh {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.cpf-slot__tag--pulse {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  animation: cpfBlink 2s infinite;
}

@keyframes cpfBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.cpf-slot__details {
  padding: 20px;
}

.cpf-slot__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--cpf-light);
  margin-bottom: 5px;
}

.cpf-slot__maker {
  font-size: 13px;
  color: var(--cpf-gold);
  margin-bottom: 15px;
}

.cpf-slot__link {
  display: block;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--cpf-gold), var(--cpf-gold-deep));
  color: var(--cpf-violet);
  text-align: center;
  text-decoration: none;
  border-radius: var(--cpf-curve-sm);
  font-weight: 600;
  transition: var(--cpf-motion);
}

.cpf-slot__link:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(212, 165, 116, 0.4);
}

/* ================================================
   ARTICLE / CONTENT BOX
   ================================================ */
.cpf-article {
  background: linear-gradient(145deg, rgba(45, 27, 78, 0.5), rgba(26, 10, 46, 0.7));
  border: 1px solid rgba(212, 165, 116, 0.15);
  border-radius: var(--cpf-curve-lg);
  padding: 50px;
  margin: 40px 0;
}

.cpf-article h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--cpf-gold);
  margin-bottom: 25px;
}

.cpf-article h3 {
  font-size: 22px;
  color: var(--cpf-gold-bright);
  margin: 35px 0 18px;
}

.cpf-article p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 18px;
  font-size: 16px;
}

/* ================================================
   VIP TIERS
   ================================================ */
.cpf-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.cpf-tier {
  background: linear-gradient(145deg, rgba(45, 27, 78, 0.7), rgba(26, 10, 46, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--cpf-curve);
  padding: 30px 25px;
  text-align: center;
  transition: var(--cpf-motion);
  position: relative;
}

.cpf-tier:hover {
  transform: translateY(-10px);
  border-color: var(--cpf-gold);
}

.cpf-tier--star {
  border-color: var(--cpf-gold);
  background: linear-gradient(145deg, rgba(212, 165, 116, 0.15), rgba(26, 10, 46, 0.9));
}

.cpf-tier--star::before {
  content: 'POPULAIRE';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cpf-gold);
  color: var(--cpf-violet);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}

.cpf-tier__emblem {
  font-size: 50px;
  margin-bottom: 15px;
  display: block;
}

.cpf-tier__level {
  font-size: 20px;
  font-weight: 700;
  color: var(--cpf-light);
  margin-bottom: 8px;
}

.cpf-tier__condition {
  font-size: 13px;
  color: var(--cpf-gold);
  margin-bottom: 20px;
  display: block;
}

.cpf-tier__perks {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
}

.cpf-tier__perks li {
  padding: 8px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cpf-tier__perks li::before {
  content: '✓';
  color: var(--cpf-success);
  font-weight: bold;
}

.cpf-tier__cap {
  background: rgba(212, 165, 116, 0.1);
  padding: 12px;
  border-radius: var(--cpf-curve-sm);
  margin-top: 15px;
}

.cpf-tier__cap-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 5px;
}

.cpf-tier__cap-amount {
  font-size: 18px;
  font-weight: 700;
  color: var(--cpf-gold);
}

/* ================================================
   VERSUS / COMPARISON
   ================================================ */
.cpf-versus {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 50px;
}

.cpf-versus__box {
  background: linear-gradient(145deg, rgba(45, 27, 78, 0.7), rgba(26, 10, 46, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--cpf-curve-lg);
  padding: 40px;
  text-align: center;
}

.cpf-versus__box--champ {
  border-color: var(--cpf-gold);
  background: linear-gradient(145deg, rgba(212, 165, 116, 0.1), rgba(26, 10, 46, 0.9));
}

.cpf-versus__icon {
  font-size: 60px;
  margin-bottom: 15px;
  display: block;
}

.cpf-versus__name {
  font-size: 24px;
  font-weight: 700;
  color: var(--cpf-light);
  margin-bottom: 15px;
}

.cpf-versus__speed {
  font-size: 36px;
  font-weight: 800;
  color: var(--cpf-success);
  margin-bottom: 10px;
  display: block;
}

.cpf-versus__speed--slow {
  color: var(--cpf-danger);
}

.cpf-versus__note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.cpf-versus__divider {
  font-size: 28px;
  font-weight: 800;
  color: var(--cpf-gold);
  background: rgba(212, 165, 116, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================================================
   PROCESS / STEPS
   ================================================ */
.cpf-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.cpf-process::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--cpf-gold), var(--cpf-magenta), var(--cpf-gold));
  z-index: 0;
}

.cpf-process__step {
  background: linear-gradient(145deg, rgba(45, 27, 78, 0.7), rgba(26, 10, 46, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--cpf-curve-lg);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: var(--cpf-motion);
}

.cpf-process__step:hover {
  transform: translateY(-10px);
  border-color: var(--cpf-gold);
}

.cpf-process__num {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--cpf-gold), var(--cpf-gold-deep));
  color: var(--cpf-violet);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

.cpf-process__icon {
  font-size: 50px;
  margin: 20px 0;
  display: block;
}

.cpf-process__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--cpf-light);
  margin-bottom: 12px;
}

.cpf-process__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* ================================================
   OFFERS / PROMOS
   ================================================ */
.cpf-offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.cpf-offer {
  background: linear-gradient(145deg, rgba(45, 27, 78, 0.7), rgba(26, 10, 46, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--cpf-curve-lg);
  padding: 35px;
  transition: var(--cpf-motion);
}

.cpf-offer:hover {
  transform: translateY(-8px);
  border-color: var(--cpf-gold);
}

.cpf-offer__icon {
  font-size: 50px;
  margin-bottom: 20px;
  display: block;
}

.cpf-offer__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--cpf-light);
  margin-bottom: 15px;
}

.cpf-offer__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 25px;
  line-height: 1.7;
}

.cpf-offer__btn {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  border: 2px solid var(--cpf-gold);
  color: var(--cpf-gold);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--cpf-motion);
}

.cpf-offer__btn:hover {
  background: var(--cpf-gold);
  color: var(--cpf-violet);
}

/* ================================================
   JACKPOTS
   ================================================ */
.cpf-jackpot-main {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(147, 51, 234, 0.1));
  border-radius: var(--cpf-curve-lg);
  border: 1px solid rgba(212, 165, 116, 0.2);
}

.cpf-jackpot-main__label {
  display: block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.cpf-jackpot-main__sum {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--cpf-gold);
  text-shadow: 0 0 40px rgba(212, 165, 116, 0.5);
}

.cpf-jackpots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.cpf-jackpot {
  background: linear-gradient(145deg, rgba(45, 27, 78, 0.7), rgba(26, 10, 46, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--cpf-curve);
  padding: 25px;
  text-align: center;
  transition: var(--cpf-motion);
}

.cpf-jackpot:hover {
  transform: scale(1.05);
  border-color: var(--cpf-gold);
}

.cpf-jackpot__icon {
  font-size: 40px;
  margin-bottom: 12px;
  display: block;
}

.cpf-jackpot__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--cpf-light);
  margin-bottom: 10px;
}

.cpf-jackpot__prize {
  font-size: 24px;
  font-weight: 700;
  color: var(--cpf-gold);
  margin-bottom: 5px;
  display: block;
}

.cpf-jackpot__sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ================================================
   STUDIOS / PROVIDERS
   ================================================ */
.cpf-studios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.cpf-studio {
  background: linear-gradient(145deg, rgba(45, 27, 78, 0.5), rgba(26, 10, 46, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--cpf-curve);
  padding: 25px 20px;
  text-align: center;
  transition: var(--cpf-motion);
}

.cpf-studio:hover {
  border-color: var(--cpf-gold);
  transform: translateY(-5px);
}

.cpf-studio__icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.cpf-studio__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--cpf-light);
  margin-bottom: 5px;
}

.cpf-studio__desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ================================================
   REVIEWS / TESTIMONIALS
   ================================================ */
.cpf-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.cpf-review {
  background: linear-gradient(145deg, rgba(45, 27, 78, 0.7), rgba(26, 10, 46, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--cpf-curve-lg);
  padding: 35px;
  position: relative;
}

.cpf-review::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 60px;
  color: var(--cpf-gold);
  opacity: 0.3;
  font-family: serif;
  line-height: 1;
}

.cpf-review__rating {
  color: var(--cpf-gold);
  font-size: 20px;
  margin-bottom: 18px;
  letter-spacing: 3px;
}

.cpf-review__content {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.cpf-review__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cpf-review__avatar {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--cpf-gold), var(--cpf-gold-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.cpf-review__name {
  font-weight: 600;
  color: var(--cpf-light);
  font-size: 15px;
  display: block;
}

.cpf-review__city {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ================================================
   FAQ
   ================================================ */
.cpf-faq {
  max-width: 900px;
  margin: 0 auto;
}

.cpf-faq__item {
  background: linear-gradient(145deg, rgba(45, 27, 78, 0.5), rgba(26, 10, 46, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--cpf-curve);
  margin-bottom: 15px;
  overflow: hidden;
}

.cpf-faq__trigger {
  width: 100%;
  padding: 22px 25px;
  background: transparent;
  border: none;
  color: var(--cpf-light);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--cpf-motion);
  font-family: inherit;
}

.cpf-faq__trigger:hover {
  color: var(--cpf-gold);
}

.cpf-faq__arrow {
  transition: var(--cpf-motion);
  color: var(--cpf-gold);
}

.cpf-faq__item.open .cpf-faq__arrow {
  transform: rotate(180deg);
}

.cpf-faq__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.cpf-faq__item.open .cpf-faq__content {
  max-height: 300px;
}

.cpf-faq__content p {
  padding: 0 25px 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
}

/* ================================================
   FINALE / CTA
   ================================================ */
.cpf-finale {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(180deg, transparent, rgba(212, 165, 116, 0.1));
  border-top: 1px solid rgba(212, 165, 116, 0.1);
}

.cpf-finale__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--cpf-light);
  margin-bottom: 20px;
}

.cpf-finale__text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================================
   FOOTER
   ================================================ */
.cpf-footer {
  background: rgba(15, 5, 26, 0.95);
  border-top: 1px solid rgba(212, 165, 116, 0.15);
  padding: 60px 0 30px;
}

.cpf-footer__upper {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  margin-bottom: 50px;
}

.cpf-footer__about {
  max-width: 350px;
}

.cpf-footer__logo {
  height: 45px;
  margin-bottom: 20px;
}

.cpf-footer__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 25px;
}

.cpf-footer__social {
  display: flex;
  gap: 12px;
}

.cpf-footer__social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: var(--cpf-motion);
}

.cpf-footer__social a:hover {
  background: var(--cpf-gold);
  border-color: var(--cpf-gold);
}

.cpf-footer__menus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.cpf-footer__menu h4 {
  color: var(--cpf-gold);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.cpf-footer__menu ul {
  list-style: none;
}

.cpf-footer__menu li {
  margin-bottom: 12px;
}

.cpf-footer__menu a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: var(--cpf-motion);
}

.cpf-footer__menu a:hover {
  color: var(--cpf-gold);
}

.cpf-footer__lower {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  text-align: center;
}

.cpf-footer__lower p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.cpf-footer__pay {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 992px) {
  .cpf-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .cpf-versus {
    grid-template-columns: 1fr;
  }

  .cpf-versus__divider {
    margin: 20px auto;
  }

  .cpf-process {
    grid-template-columns: 1fr;
  }

  .cpf-process::before {
    display: none;
  }

  .cpf-footer__upper {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .cpf-header__wrap {
    padding: 0 15px;
  }

  .cpf-brand img {
    height: 35px;
  }

  .cpf-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .cpf-banner__heading {
    font-size: 28px;
  }

  .cpf-banner__tagline {
    font-size: 18px;
  }

  .cpf-block__title {
    font-size: 28px;
  }

  .cpf-article {
    padding: 30px 20px;
  }

  .cpf-article h2 {
    font-size: 24px;
  }

  .cpf-tiers {
    grid-template-columns: 1fr;
  }

  .cpf-footer__menus {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

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

  .cpf-badges {
    flex-direction: column;
    align-items: center;
  }

  .cpf-header__nav {
    gap: 8px;
  }

  .cpf-btn--ghost {
    display: none;
  }

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