/* ============================================================
   TIAMOO / ICHVERLIEBT.DE — Premium Dating CSS
   Fonts: Cormorant Garamond (headings) · DM Sans (body)
   ============================================================ */

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

:root {
  --rose:        #f45f70;
  --rose-dark:   #d9435d;
  --rose-glow:   rgba(244,95,112,.28);
  --gold:        #f3a5b2;
  --gold-light:  #ffd1d8;
  --gold-dim:    rgba(243,165,178,.15);
  --dark:        #21131b;
  --dark-2:      #2b1923;
  --dark-3:      #35212c;
  --dark-4:      #422b37;
  --white:       #ffffff;
  --muted:       rgba(255,255,255,.48);
  --muted-2:     rgba(255,255,255,.28);
  --border:      rgba(255,255,255,.07);
  --border-gold: rgba(243,165,178,.24);
  --shadow-sm:   0 4px 16px rgba(0,0,0,.2);
  --shadow-md:   0 12px 40px rgba(0,0,0,.35);
  --shadow-lg:   0 24px 64px rgba(0,0,0,.5);
  --r-sm:        10px;
  --r-md:        16px;
  --r-lg:        24px;
  --r-xl:        32px;
  --ease:        cubic-bezier(.4,0,.2,1);
  --t:           .26s var(--ease);
}

html, body {
  margin: 0 !important;
  padding: 0 !important;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700; letter-spacing: -.01em; }
a { text-decoration: none; }
img { display: block; max-width: 100%; }

/* Noise overlay — muss UNTER der Navbar bleiben */
body::after {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 9997;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .022;
}


/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  z-index: 9998 !important;
  padding-top: calc(.85rem + env(safe-area-inset-top)) !important;
  padding-bottom: .85rem !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
  background: var(--dark) !important;
  border-bottom: 1px solid var(--border);
  transition: padding var(--t);
}

/* Kill any Bootstrap padding on body */
html, body { padding-top: 0 !important; margin-top: 0 !important; }

/* Remove any gap between navbar */
html, body {
  margin: 0;
  padding: 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem; font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-dot {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-nav .nav-link {
  color: var(--muted); font-size: .88rem; font-weight: 500;
  transition: color var(--t); padding: .4rem .7rem;
}
.navbar-nav .nav-link:hover { color: var(--white); }

.btn-nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark) !important;
  padding: .5rem 1.5rem !important; border-radius: 50px;
  font-weight: 700 !important; font-size: .85rem !important;
  transition: var(--t) !important;
  -webkit-text-fill-color: var(--dark) !important;
}
.btn-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(244,95,112,.35); }

.navbar-toggler { border: none; background: none; color: var(--white); font-size: 1.4rem; }
.navbar-toggler:focus { box-shadow: none; }


/* ─── HERO ───────────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  padding: calc(7rem + env(safe-area-inset-top)) 0 5rem;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 55% at 75% 35%, rgba(244,95,112,.2) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(243,165,178,.11) 0%, transparent 60%),
    linear-gradient(180deg, var(--dark) 0%, #291720 100%);
}

/* Floating orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
  animation: orb-float 9s ease-in-out infinite;
}
.hero-orb-1 { width: 520px; height: 520px; background: rgba(244,95,112,.14); top: -140px; right: -100px; }
.hero-orb-2 { width: 380px; height: 380px; background: rgba(243,165,178,.1); bottom: 40px; left: -80px; animation-delay: -4s; }
.hero-orb-3 { width: 220px; height: 220px; background: rgba(244,95,112,.1); top: 45%; left: 42%; animation-delay: -7s; }
@keyframes orb-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-28px)} }

/* Live badge */
.live-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px; padding: .38rem .95rem; margin-bottom: 1.4rem;
  font-size: .76rem; font-weight: 600; color: var(--muted);
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: #4caf50; box-shadow: 0 0 8px #4caf50;
  animation: pulse-live 1.6s ease-in-out infinite;
}
@keyframes pulse-live { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.55;transform:scale(1.5)} }
.live-badge strong { color: var(--white); }

.hero-title {
  font-size: clamp(2.6rem, 4.8vw, 4rem);
  line-height: 1.1; margin-bottom: 1.2rem; color: var(--white);
}
.hero-title .underline-word {
  position: relative; display: inline-block;
}
.hero-title .underline-word::after {
  content: '';
  position: absolute; bottom: 2px; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  border-radius: 2px; transform-origin: left;
  animation: line-grow .9s .5s both;
}
@keyframes line-grow { from{transform:scaleX(0)} to{transform:scaleX(1)} }

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.05rem; color: var(--muted); line-height: 1.7;
  margin-bottom: 2rem; max-width: 510px;
}

.hero-stats {
  display: flex; gap: 2.2rem; margin-bottom: 1.8rem;
}
.stat-item { display: flex; flex-direction: column; gap: .12rem; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, #fff, var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label { font-size: .72rem; color: var(--muted-2); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

.hero-features { list-style: none; margin-bottom: 1.8rem; display: flex; flex-direction: column; gap: .5rem; }
.hero-features li {
  display: flex; align-items: center; gap: .65rem;
  font-size: .9rem; color: rgba(255,255,255,.72);
}
.hero-features li i { color: var(--gold); font-size: .95rem; flex-shrink: 0; }

/* Social proof strip */
.proof-strip {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: .65rem 1.1rem;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: 12px;
}
.proof-avatars { display: flex; }
.proof-avatars span {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--dark); margin-right: -8px;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: .62rem; font-weight: 800; color: var(--white);
}
.proof-strip p { font-size: .76rem; color: var(--muted); }
.proof-strip strong { color: var(--white); }


/* ─── FORM CARD ──────────────────────────────────────────────── */
#form-wrapper { position: sticky; top: 86px; align-self: flex-start; }

.form-wrapper {
  background: rgba(43,25,35,.97);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  padding: 1.6rem 1.5rem 1.35rem;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.03);
}

.form-header { text-align: center; margin-bottom: 1.1rem; }
.form-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: .18rem;
}
.form-subtitle { font-size: .76rem; color: var(--muted); }

/* Progress */
.progress-wrapper { margin-bottom: 1.1rem; }
.progress-steps {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: .6rem;
}
.step-dot {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  flex: 1; position: relative; cursor: default;
}
.step-dot:not(:last-child)::after {
  content: '';
  position: absolute; top: 13px; left: 50%; width: 100%;
  height: 2px; background: var(--border);
  transition: background .4s ease; z-index: 0;
}
.step-dot.done:not(:last-child)::after { background: var(--gold); }

.dot-num {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; position: relative; z-index: 1;
  background: rgba(255,255,255,.1); color: var(--muted);
  transition: var(--t);
}
.step-dot.active .dot-num { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--dark); }
.step-dot.done   .dot-num { background: rgba(243,165,178,.2); color: var(--gold); }

.dot-label {
  font-size: .58rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .05em; color: var(--muted-2); transition: var(--t);
}
.step-dot.active .dot-label { color: var(--gold); }

.progress-bar-custom {
  height: 2px; background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transition: width .4s ease;
}

/* Form steps */
.form-step { display: flex; flex-direction: column; gap: .52rem; }

.step-title {
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .05rem;
}

.f-label {
  display: block; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: rgba(255,255,255,.38); margin-bottom: .3rem;
}

/* Radio groups */
.radio-group { display: flex; gap: .5rem; }
.radio-group input[type="radio"] { display: none; }
.radio-group label {
  flex: 1; padding: .6rem .5rem;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm); text-align: center;
  cursor: pointer; color: rgba(255,255,255,.6);
  font-size: .88rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: .35rem;
  transition: var(--t);
}
.radio-group label:hover { border-color: var(--border-gold); background: var(--gold-dim); }
.radio-group input[type="radio"]:checked + label {
  border-color: var(--gold);
  background: rgba(243,165,178,.1);
  color: var(--gold);
}

/* Input fields */
.input-field { position: relative; }
.input-field input {
  width: 100%;
  padding: .62rem .85rem .62rem 2.35rem;
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: .9rem;
  transition: var(--t);
}
.input-field input::placeholder { color: rgba(255,255,255,.28); }
.input-field input:focus {
  outline: none; border-color: var(--gold);
  background: rgba(255,255,255,.08);
}
.input-field input.valid   { border-color: #4caf50 !important; }
.input-field input.invalid { border-color: #ff6b6b !important; }

.input-icon {
  position: absolute; left: .75rem; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,.3); font-size: .95rem; pointer-events: none;
  transition: color var(--t);
}
.input-field input:focus ~ .input-icon { color: var(--gold); }

.password-toggle {
  position: absolute; right: .75rem; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,.35); cursor: pointer; font-size: 1.05rem; z-index: 2;
  transition: color var(--t);
}
.password-toggle:hover { color: var(--gold); }

.field-hint {
  font-size: .68rem; color: rgba(255,255,255,.3);
  display: flex; align-items: center; gap: .3rem;
}
.field-hint i { color: rgba(243,165,178,.55); }

/* Date selects */
.date-selects { display: flex; gap: .45rem; }
.date-select {
  flex: 1; padding: .6rem .35rem .6rem .65rem;
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  color: var(--white); font-family: 'DM Sans', sans-serif; font-size: .82rem;
  cursor: pointer; transition: var(--t); appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c4a77d'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 5px center; background-size: 14px;
}
.date-select:focus { outline: none; border-color: var(--gold); background-color: rgba(255,255,255,.08); }
.date-select option { background: #1e1e28; color: var(--white); }

.age-info {
  font-size: .7rem; color: rgba(255,255,255,.4);
  padding: .28rem .6rem;
  background: rgba(255,255,255,.04); border-radius: 6px;
  border-left: 2px solid rgba(243,165,178,.35);
}

/* Checkbox */
.checkbox-field { display: flex; align-items: flex-start; gap: .5rem; }
.checkbox-field input {
  width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--gold); cursor: pointer;
}
.checkbox-field label {
  font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.4; cursor: pointer;
}
.checkbox-field a { color: var(--gold); transition: opacity var(--t); }
.checkbox-field a:hover { opacity: .75; }

/* Error messages */
.error-message {
  font-size: .7rem; color: #ff6b6b;
  padding: .28rem .6rem;
  background: rgba(255,107,107,.1); border-radius: 6px;
  border-left: 2px solid #ff6b6b; display: block;
}
.error-message.hidden { display: none !important; }

.username-availability {
  display: flex; align-items: center; gap: .35rem;
  padding: .28rem .6rem; border-radius: 6px;
  font-size: .7rem; border-left: 2px solid transparent;
}
.username-availability.checking,
.username-availability.unavailable {
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.05);
  border-left-color: rgba(255,255,255,.2);
}
.username-availability.available {
  color: #a5d6a7;
  background: rgba(76,175,80,.1);
  border-left-color: #4caf50;
}
.username-availability.taken {
  color: #ff9a9a;
  background: rgba(255,107,107,.1);
  border-left-color: #ff6b6b;
}
.username-availability.hidden { display: none !important; }

/* Alerts */
.alert-success, .alert-error {
  display: flex; align-items: center; gap: .5rem;
  padding: .6rem .85rem; border-radius: var(--r-sm);
  font-size: .8rem;
}
.alert-success {
  background: rgba(76,175,80,.1); border: 1px solid rgba(76,175,80,.25); color: #a5d6a7;
}
.alert-error {
  background: rgba(244,67,54,.1); border: 1px solid rgba(244,67,54,.25); color: #ffcdd2;
}

/* Spinner */
.loading-spinner {
  display: flex; flex-direction: column; align-items: center;
  gap: .35rem; padding: .35rem;
}
.spinner {
  width: 22px; height: 22px;
  border: 2px solid rgba(255,255,255,.15); border-top-color: var(--gold);
  border-radius: 50%; animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-spinner p { font-size: .74rem; color: var(--muted); }

/* Buttons */
.form-buttons { display: flex; gap: .55rem; margin-top: .45rem; }

.btn-next, .btn-submit {
  flex: 1; padding: .72rem 1rem; border: none; border-radius: 50px;
  background: linear-gradient(135deg, var(--rose), #d63868);
  color: var(--white); font-family: 'DM Sans', sans-serif;
  font-size: .9rem; font-weight: 700; cursor: pointer;
  transition: var(--t); letter-spacing: .01em;
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
}
.btn-next:hover, .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--rose-glow);
}
.btn-next:disabled, .btn-submit:disabled {
  opacity: .38; cursor: not-allowed; transform: none; box-shadow: none;
}

.btn-back {
  flex: 0 0 auto; padding: .72rem 1rem;
  border: 1.5px solid rgba(255,255,255,.13); border-radius: 50px;
  background: rgba(255,255,255,.05); color: rgba(255,255,255,.55);
  font-family: 'DM Sans', sans-serif; font-size: .85rem; font-weight: 600;
  cursor: pointer; transition: var(--t);
  display: inline-flex; align-items: center; gap: .3rem;
}
.btn-back:hover { border-color: rgba(255,255,255,.3); color: var(--white); background: rgba(255,255,255,.09); }

/* Trust note below form */
.form-trust-note {
  text-align: center; font-size: .65rem; color: rgba(255,255,255,.22);
  margin-top: .8rem; display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.form-trust-note i { color: rgba(243,165,178,.5); }


/* ─── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.trust-bar .container {
  display: flex; justify-content: center; align-items: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .45rem;
  font-size: .78rem; color: var(--muted); font-weight: 500;
}
.trust-item i { color: var(--gold); font-size: .95rem; }


/* ─── SECTION COMMONS ────────────────────────────────────────── */
.section-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gold);
  background: rgba(243,165,178,.1); border: 1px solid var(--border-gold);
  padding: .28rem .85rem; border-radius: 50px; margin-bottom: .9rem;
}
.section-title { font-size: clamp(1.85rem, 3.2vw, 2.7rem); line-height: 1.15; margin-bottom: .85rem; }
.section-subtitle { color: var(--muted); font-size: .97rem; max-width: 570px; line-height: 1.65; }


/* ─── HOW IT WORKS ───────────────────────────────────────────── */
.how-section { padding: 6rem 0; background: var(--dark); }
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3.5rem;
}
.how-card {
  background: var(--dark-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.8rem 1.5rem;
  position: relative; overflow: hidden; transition: var(--t);
}
.how-card:hover { border-color: var(--border-gold); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.how-card::before {
  content: attr(data-n);
  position: absolute; top: -8px; right: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.5rem; font-weight: 700; line-height: 1;
  color: rgba(255,255,255,.028); pointer-events: none; user-select: none;
}
.how-icon {
  width: 48px; height: 48px; border-radius: 14px; margin-bottom: 1.1rem;
  background: linear-gradient(135deg, rgba(244,95,112,.2), rgba(243,165,178,.14));
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--gold);
}
.how-card h4 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.how-card p  { font-size: .87rem; color: var(--muted); line-height: 1.65; }


/* ─── SINGLES ────────────────────────────────────────────────── */
.singles-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}
.singles-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem;
}
.profile-card {
  border-radius: var(--r-md); overflow: hidden;
  background: var(--dark-3); border: 1px solid var(--border);
  transition: var(--t); cursor: pointer; position: relative;
}
.profile-card:hover { transform: translateY(-6px); border-color: var(--border-gold); box-shadow: var(--shadow-md); }
.profile-img { aspect-ratio: 4/5; position: relative; overflow: hidden; }
.profile-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.profile-card:hover .profile-img img { transform: scale(1.05); }
.profile-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,17,.88) 0%, transparent 55%);
}
.online-badge {
  position: absolute; top: .65rem; right: .65rem;
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid var(--dark-3);
}
.online-badge.online  { background: #4caf50; box-shadow: 0 0 8px #4caf50; }
.online-badge.offline { background: #666; }
.profile-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: .75rem .9rem;
}
.profile-info h5 { font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 700; margin-bottom: .12rem; }
.profile-info span { font-size: .7rem; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: .25rem; }


/* ─── PROOF STATS ────────────────────────────────────────────── */
.proof-section { padding: 5.5rem 0; background: var(--dark-2); }
.proof-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; margin-top: 3rem;
  background: var(--border);
  gap: 1px;
}
.proof-item { background: var(--dark-2); padding: 2rem 1.5rem; text-align: center; }
.proof-number {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, #fff, var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; margin-bottom: .4rem;
}
.proof-label { font-size: .78rem; color: var(--muted); font-weight: 500; }


/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.success-section { padding: 6rem 0; background: var(--dark); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem;
}
.testimonial-card {
  background: var(--dark-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.75rem 1.5rem; transition: var(--t);
}
.testimonial-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.testi-stars { color: var(--gold); font-size: .82rem; letter-spacing: .08em; margin-bottom: .75rem; }
.testi-text { font-size: .88rem; color: rgba(255,255,255,.68); line-height: 1.72; margin-bottom: 1.2rem; }
.testi-author { display: flex; align-items: center; gap: .7rem; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 800; color: var(--white);
}
.testi-name { font-size: .88rem; font-weight: 700; }
.testi-location { font-size: .73rem; color: var(--muted); }


/* ─── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  padding: 6rem 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #351421 0%, var(--dark) 50%, #2b1722 100%);
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(244,95,112,.17) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto; }
.cta-inner .section-title { margin-bottom: 1rem; }
.cta-inner p { color: var(--muted); font-size: 1rem; margin-bottom: 2rem; line-height: 1.65; }

.btn-cta-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .9rem 2.2rem; border-radius: 50px; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--rose), #d63868);
  color: var(--white); font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 700; text-decoration: none;
  transition: var(--t); box-shadow: 0 8px 30px rgba(199,42,79,.3);
}
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(199,42,79,.45); color: var(--white); }

.cta-sub { font-size: .73rem; color: rgba(255,255,255,.28); margin-top: 1rem; }


/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-section { padding: 6rem 0; background: var(--dark-2); }
.faq-wrap { max-width: 700px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: .7rem; }
.faq-item {
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden; transition: border-color var(--t);
}
.faq-item:hover { border-color: var(--border-gold); }
.faq-item .accordion-button {
  background: none; border: none; color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: .92rem; font-weight: 600;
  padding: 1.1rem 1.25rem; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  width: 100%;
}
.faq-item .accordion-button::after {
  content: '\F282'; /* bi-chevron-down */
  font-family: 'bootstrap-icons'; font-size: .85rem;
  color: var(--gold); transition: transform .3s ease; flex-shrink: 0;
}
.faq-item .accordion-button:not(.collapsed)::after { transform: rotate(180deg); }
.faq-item .accordion-body {
  padding: 0 1.25rem 1.1rem;
  font-size: .87rem; color: var(--muted); line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: .85rem;
}


/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--dark); border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700;
  background: linear-gradient(135deg, #fff, var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  display: block; margin-bottom: .75rem;
}
.footer-desc { font-size: .82rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .55rem; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .9rem; transition: var(--t);
}
.footer-social a:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); transform: translateY(-2px); }
.footer-col h5 {
  font-family: 'DM Sans', sans-serif; font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em;
  color: rgba(255,255,255,.35); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul li a { color: var(--muted); font-size: .84rem; transition: color var(--t); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem;
  font-size: .76rem; color: rgba(255,255,255,.22);
}


/* ─── SCROLL-TO-TOP ──────────────────────────────────────────── */
.scroll-top-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 500;
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  border: none; cursor: pointer; color: var(--white); font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
  opacity: 0; pointer-events: none; transition: var(--t);
}
.scroll-top-btn.show { opacity: 1; pointer-events: all; }
.scroll-top-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.5); }


/* ─── ANIMATIONS ─────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1199px) {
  .hero-section .row { --bs-gutter-x: 2rem; }
}

@media (max-width: 991px) {
  #form-wrapper { position: static; margin-top: 2.5rem; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .singles-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-section { padding: 6rem 0 3.5rem; min-height: auto; }
}

@media (max-width: 768px) {
  .hero-stats { gap: 1.4rem; }
  .hero-title { font-size: 2.3rem; }
  .hero-subtitle { font-size: .95rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-bar .container { gap: 1.25rem; }
  .section-title { font-size: 1.85rem; }
}

@media (max-width: 575px) {
  .how-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-wrapper { padding: 1.25rem 1.1rem 1.1rem; border-radius: var(--r-lg); }
  .radio-group label { font-size: .82rem; padding: .55rem .35rem; }
  .date-selects { gap: .35rem; }
  .date-select { font-size: .78rem; padding: .55rem .28rem .55rem .5rem; }
  .btn-next, .btn-submit, .btn-back { font-size: .85rem; }
}

/* Prevent body scroll when mobile nav open */
body.nav-open { overflow: hidden; }
