/* =========================
   VARIABLES GLOBALES
   Palette principale du site
========================= */
:root {
  --bordeaux: #3a0d1f;
  --prune: #5c1535;
  --gold: #d4af6d;
  --soleil: #fff017;
  --cream: #fff5e6;
  --dark: #14021a;
  --dark-2: #0b0010;
  --pink: #ff00a8;
}

/* =========================
   RESET DE BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   BASE GÉNÉRALE
========================= */
body {
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(135deg, #1a0410, #3a0d1f, #5c1535);
  color: var(--cream);
}

/* Conteneur global */
.container {
  width: 100%;
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 40px;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: absolute;
  width: 100%;
  padding: 30px 0;
  z-index: 20;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  font-weight: 800;
  letter-spacing: 1px;
}

/* Navigation */
nav ul {
  display: flex;
  gap: 35px;
  list-style: none;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

nav a:hover {
  opacity: 0.8;
}

/* =========================
   BOUTONS
========================= */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.btn-primary {
  background: var(--soleil);
  color: black;
  margin-top: 10px;
  padding: 14px 28px;
}

.btn-nav {
  background: var(--gold);
  color: black;
  font-weight: bold;
}

.btn-secondary {
  margin-left: 10px;
}

/* Groupe de boutons du hero */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

/* =========================
   HERO
========================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

/* Grille principale du hero */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* Colonne gauche */
.hero-left h1 {
  font-size: 60px;
  margin-bottom: 25px;
  line-height: 1.1;
}

.hero-left h1 span {
  font-family: "Great Vibes", cursive;
  color: var(--gold);
}

.hero-left p {
  margin-bottom: 25px;
  max-width: 480px;
  line-height: 1.6;
}

/* Badge */
.badge {
  display: inline-block;
  margin-bottom: 25px;
  color: var(--gold);
  font-weight: 700;
}

/* =========================
   COUNTDOWN
========================= */
.countdown {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.countdown div {
  background: rgba(255, 255, 255, 0.08);
  padding: 15px 18px;
  border-radius: 12px;
  text-align: center;
  min-width: 70px;
}

.countdown strong {
  color: var(--gold);
  font-size: 22px;
}

.count {
  margin-right: 5px;
}

/* =========================
   INFOS PRATIQUES
========================= */
.infos {
  display: flex;
  gap: 25px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.infos span {
  display: block;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 5px;
}

/* =========================
   HERO DROITE / VISUEL
========================= */
.hero-right {
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Halo lumineux central */
.circle-bg {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent);
  border-radius: 50%;
}

/* Personnages */
.person {
  position: absolute;
  text-align: center;
}

.miriam {
  z-index: 3;
  left: 70%;
  transform: translateX(-50%);
}

.miriam img {
  max-height: 480px;
}

.melissa {
  z-index: 2;
  left: 0;
  bottom: 0;
}

.melissa img {
  max-height: 350px;
}

/* Infos sous les personnages */
.person-info {
  margin-top: 10px;
}

.person-info span {
  display: block;
  color: var(--gold);
  margin-top: 4px;
}

/* Texte décoratif géant */
.big-text {
  position: absolute;
  bottom: 30px;
  right: 0;
  font-size: 90px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  opacity: 0.4;
  line-height: 0.95;
  text-align: right;
}

/* =========================
   SECTION PRÉSENTATION
========================= */
.presentation {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);

  /* Fond inspiré du logo */
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 180, 60, 0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 80, 0, 0.12), transparent 40%),
    linear-gradient(180deg, #0b0010 0%, #14021a 100%);
}

/* Halo lumineux haut gauche */
.presentation::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.25), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

/* Halo lumineux bas droite */
.presentation::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.2), transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

/* On remet le contenu au-dessus des halos */
.presentation .container {
  position: relative;
  z-index: 2;
}

/* Grille de la section présentation */
.presentation-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 80px;
}

/* =========================
   BLOC VISUEL À GAUCHE
========================= */
.presentation-left {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
}

/* Cercle image */
.presentation-visual {
  position: relative;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  padding: 12px;
  background: linear-gradient(135deg, #ff7a18, #d4af6d, #62f5d0);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.presentation-visual img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 8px solid #18041a;
}

/* Bouton play */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 95px;
  height: 95px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--pink);
  color: white;
  text-decoration: none;
  font-size: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 15px 35px rgba(255, 0, 168, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 18px 40px rgba(255, 0, 168, 0.5);
}

/* Points décoratifs */
.floating-dot {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8f3d, #62f5d0);
  opacity: 0.95;
}

.dot-one {
  width: 52px;
  height: 52px;
  top: 90px;
  right: 40px;
}

.dot-two {
  width: 22px;
  height: 22px;
  bottom: 110px;
  left: 40px;
}

/* =========================
   BLOC TEXTE À DROITE
========================= */
.presentation-right {
  max-width: 720px;
}

.section-tag {
  display: inline-block;
  margin-bottom: 20px;
  color: #ff3fb4;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 1.4;
}

.presentation-right h2 {
  font-size: 58px;
  line-height: 1.08;
  margin-bottom: 25px;
  color: var(--cream);
}

.presentation-right p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 245, 230, 0.82);
  margin-bottom: 20px;
}

/* Liste des bénéfices */
.presentation-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 18px 35px;
  margin: 35px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: var(--cream);
}

.feature-icon {
  color: var(--pink);
  font-size: 20px;
  line-height: 1;
}

/* =========================
   RESPONSIVE TABLETTE
========================= */
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 24px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .hero-left {
    margin: 0 auto;
  }

  .hero-left p {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .countdown,
  .infos {
    justify-content: center;
  }

  .hero-right {
    height: 500px;
  }

  .melissa {
    left: 10%;
  }

  .big-text {
    font-size: 70px;
  }

  .presentation-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .presentation-left,
  .presentation-right {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .presentation-left {
    order: 1;
    min-height: auto;
  }

  .presentation-right {
    order: 2;
  }

  .presentation-features {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .feature-item {
    justify-content: center;
  }

  .presentation-visual {
    width: 380px;
    height: 380px;
  }

  .dot-one {
    right: 30px;
    top: 30px;
  }

  .dot-two {
    left: 30px;
    bottom: 30px;
  }
}

/* =========================
   RESPONSIVE MOBILE
========================= */
@media (max-width: 640px) {
  .site-header {
    padding: 20px 0;
  }

  .nav-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero {
    padding: 160px 0 70px;
  }

  .hero-left h1 {
    font-size: 40px;
  }

  .hero-right {
    height: 380px;
  }

  .miriam {
    left: 58%;
  }

  .miriam img {
    max-height: 280px;
  }

  .melissa {
    left: 0;
    bottom: 0;
  }

  .melissa img {
    max-height: 220px;
  }

  .big-text {
    font-size: 46px;
    bottom: 10px;
  }

  .presentation {
    padding: 80px 0;
  }

  .presentation-right h2 {
    font-size: 38px;
  }

  .presentation-right p,
  .feature-item {
    font-size: 16px;
  }

  .presentation-visual {
    width: 290px;
    height: 290px;
  }

  .play-btn {
    width: 75px;
    height: 75px;
    font-size: 26px;
  }

  .dot-one {
    width: 38px;
    height: 38px;
    top: 10px;
    right: 10px;
  }

  .dot-two {
    width: 18px;
    height: 18px;
    left: 10px;
    bottom: 10px;
  }
}

/* =========================
   SECTION ORATEURS
========================= */
.speakers {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 109, 0.18);
  border-bottom: 1px solid rgba(212, 175, 109, 0.1);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 0, 168, 0.10), transparent 30%),
    radial-gradient(circle at 85% 75%, rgba(212, 175, 109, 0.12), transparent 35%),
    linear-gradient(180deg, #14021a 0%, #0b0010 100%);
}

.speakers::before {
  content: "";
  position: absolute;
  top: -140px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(212, 175, 109, 0.14), transparent 70%);
  filter: blur(70px);
  z-index: 0;
}

.speakers::after {
  content: "";
  position: absolute;
  bottom: -160px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 0, 168, 0.14), transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

.speakers .container {
  position: relative;
  z-index: 2;
}

/* En-tête */
.speakers-heading {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.speakers-heading h2 {
  font-size: 52px;
  line-height: 1.08;
  margin-bottom: 18px;
  color: var(--cream);
}

.speakers-heading p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 245, 230, 0.82);
}

/* Grille */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

/* Carte */
.speaker-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(92, 21, 53, 0.82), rgba(20, 2, 26, 0.96));
  border: 1px solid rgba(212, 175, 109, 0.18);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.speaker-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 0, 168, 0.35);
  box-shadow:
    0 25px 55px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(255, 0, 168, 0.08);
}

/* Partie image */
.speaker-image-wrap {
  position: relative;
  height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px 20px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,0.08), transparent 45%),
    linear-gradient(135deg, rgba(212, 175, 109, 0.14), rgba(255, 0, 168, 0.12));
}

.speaker-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(212, 175, 109, 0.22), rgba(255, 0, 168, 0.08), transparent 72%);
  filter: blur(12px);
}

.speaker-image-wrap img {
  position: relative;
  z-index: 2;
  max-height: 300px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* Contenu */
.speaker-content {
  padding: 26px 24px 24px;
  text-align: center;
}

.speaker-role {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 0, 168, 0.12);
  border: 1px solid rgba(255, 0, 168, 0.2);
  color: #ff4ebd;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.speaker-content h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--cream);
}

.speaker-content p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 245, 230, 0.78);
  margin-bottom: 22px;
}

/* Réseaux sociaux */
.speaker-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.speaker-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--cream);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 109, 0.18);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.speaker-socials a:hover {
  transform: translateY(-3px);
  background: rgba(255, 0, 168, 0.14);
  border-color: rgba(255, 0, 168, 0.28);
}

/* =========================
   RESPONSIVE ORATEURS
========================= */
@media (max-width: 1200px) {
  .speakers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .speakers {
    padding: 80px 0;
  }

  .speakers-heading h2 {
    font-size: 38px;
  }

  .speakers-heading p {
    font-size: 16px;
  }

  .speakers-grid {
    grid-template-columns: 1fr;
  }

  .speaker-image-wrap {
    height: 290px;
  }

  .speaker-image-wrap img {
    max-height: 270px;
  }

  .speaker-content h3 {
    font-size: 22px;
  }
}

/* =========================
   PROGRAM SECTION
========================== */
.program {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 109, 0.18);
  border-bottom: 1px solid rgba(212, 175, 109, 0.1);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 0, 168, 0.10), transparent 30%),
    radial-gradient(circle at 85% 75%, rgba(212, 175, 109, 0.12), transparent 35%),
    linear-gradient(180deg, #14021a 0%, #0b0010 100%);
}

.program::before {
  content: "";
  position: absolute;
  top: -140px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(212, 175, 109, 0.14), transparent 70%);
  filter: blur(70px);
  z-index: 0;
}

.program::after {
  content: "";
  position: absolute;
  bottom: -160px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 0, 168, 0.14), transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

.program .container {
  position: relative;
  z-index: 2;
}

.program-heading {
  text-align: center;
  margin-bottom: 60px;
}

.program-heading h2 {
  font-size: 52px;
  line-height: 1.08;
  margin-bottom: 18px;
  color: var(--cream);
}

.program-heading p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 245, 230, 0.82);
  max-width: 600px;
  margin: 0 auto;
}

.program-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.program-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--border-color);
}

.program-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}

.program-item:nth-child(odd) {
  direction: rtl;
}

.program-item:nth-child(odd) > * {
  direction: ltr;
}

.program-time {
  text-align: center;
  font-weight: 600;
  color: var(--gold);
  padding-top: 15px;
  font-size: 13px;
}

.program-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  padding: 20px;
  border-radius: 10px;
  position: relative;
  border: 1px solid rgba(212, 175, 109, 0.18);
}

.program-card::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--gold);
  border-radius: 50%;
  top: 25px;
  left: -32px;
  border: 3px solid var(--dark-2);
}

.program-item:nth-child(odd) .program-card::before {
  left: auto;
  right: -32px;
}

.program-label {
  display: inline-block;
  color: var(--pink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.program-card h3 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--cream);
}

.program-card p {
  font-size: 13px;
  color: rgba(255, 245, 230, 0.78);
}

.program-item.featured .program-card {
  background: linear-gradient(135deg, rgba(212, 175, 109, 0.2), rgba(255, 0, 168, 0.15));
  border-color: rgba(212, 175, 109, 0.3);
  color: var(--cream);
}

.program-item.featured .program-label,
.program-item.featured h3 {
  color: var(--cream);
}

.program-item.pause .program-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 109, 0.12);
}

.program-item.closing .program-card {
  background: linear-gradient(135deg, rgba(255, 0, 168, 0.15), rgba(212, 175, 109, 0.1));
  color: var(--cream);
  border-color: rgba(255, 0, 168, 0.2);
}

.program-item.closing .program-label {
  color: var(--gold);
}

.program-item.closing h3 {
  color: var(--cream);
}

/* =========================
   PARTNERS SECTION
========================== */
.partners {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 109, 0.18);
  border-bottom: 1px solid rgba(212, 175, 109, 0.1);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 0, 168, 0.10), transparent 30%),
    radial-gradient(circle at 85% 75%, rgba(212, 175, 109, 0.12), transparent 35%),
    linear-gradient(180deg, #14021a 0%, #0b0010 100%);
}

.partners::before {
  content: "";
  position: absolute;
  top: -140px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(212, 175, 109, 0.14), transparent 70%);
  filter: blur(70px);
  z-index: 0;
}

.partners::after {
  content: "";
  position: absolute;
  bottom: -160px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 0, 168, 0.14), transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

.partners .container {
  position: relative;
  z-index: 2;
}

.partners-heading {
  text-align: center;
  margin-bottom: 60px;
}

.partners-heading h2 {
  font-size: 52px;
  line-height: 1.08;
  margin-bottom: 18px;
  color: var(--cream);
}

.partners-heading p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 245, 230, 0.82);
  max-width: 600px;
  margin: 0 auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  align-items: center;
}

.partner-logo {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  border: 1px solid rgba(212, 175, 109, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 0, 168, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.partner-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

.partners-cta {
  text-align: center;
}

/* =========================
   PRICING SECTION
========================== */
.pricing {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 109, 0.18);
  border-bottom: 1px solid rgba(212, 175, 109, 0.1);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 0, 168, 0.10), transparent 30%),
    radial-gradient(circle at 85% 75%, rgba(212, 175, 109, 0.12), transparent 35%),
    linear-gradient(180deg, #14021a 0%, #0b0010 100%);
}

.pricing::before {
  content: "";
  position: absolute;
  top: -140px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(212, 175, 109, 0.14), transparent 70%);
  filter: blur(70px);
  z-index: 0;
}

.pricing::after {
  content: "";
  position: absolute;
  bottom: -160px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 0, 168, 0.14), transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

.pricing .container {
  position: relative;
  z-index: 2;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pricing-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 109, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.30);
}

.pricing-badge {
  display: inline-block;
  background: rgba(255, 0, 168, 0.12);
  border: 1px solid rgba(255, 0, 168, 0.2);
  color: #ff4ebd;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--cream);
}

.price {
  font-size: 48px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 5px;
}

.price-sub {
  font-size: 14px;
  color: rgba(255, 245, 230, 0.78);
  margin-bottom: 30px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 10px 0;
  color: rgba(255, 245, 230, 0.78);
  font-size: 14px;
  border-bottom: 1px solid rgba(212, 175, 109, 0.1);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-content h2 {
  font-size: 52px;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--cream);
}

.pricing-content p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 245, 230, 0.82);
  margin-bottom: 20px;
}

.pricing-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.highlight {
  display: flex;
  gap: 15px;
}

.highlight span {
  font-size: 24px;
  flex-shrink: 0;
}

.highlight p {
  font-size: 14px;
  color: rgba(255, 245, 230, 0.78);
}

/* =========================
   CONTACT SECTION
========================== */
.contact {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 109, 0.18);
  border-bottom: 1px solid rgba(212, 175, 109, 0.1);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 0, 168, 0.10), transparent 30%),
    radial-gradient(circle at 85% 75%, rgba(212, 175, 109, 0.12), transparent 35%),
    linear-gradient(180deg, #14021a 0%, #0b0010 100%);
}

.contact::before {
  content: "";
  position: absolute;
  top: -140px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(212, 175, 109, 0.14), transparent 70%);
  filter: blur(70px);
  z-index: 0;
}

.contact::after {
  content: "";
  position: absolute;
  bottom: -160px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 0, 168, 0.14), transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

.contact .container {
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-intro h2 {
  font-size: 52px;
  line-height: 1.08;
  margin-bottom: 15px;
  color: var(--cream);
}

.contact-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 245, 230, 0.82);
}

.contact-intro strong {
  color: var(--gold);
  font-weight: 700;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid rgba(212, 175, 109, 0.18);
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 245, 230, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.form-group textarea {
  resize: vertical;
  font-size: 14px;
}

.contact-form .btn {
  margin-top: 10px;
}

.contact-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(212, 175, 109, 0.18);
}

.contact-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}