/* =============================================
   LOVE CALCULATOR HUB — main.css
   Single source of truth for all styles.
   Aesthetic: Dark Romantic / Velvet Night
============================================= */

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

/* ── CSS VARIABLES ──────────────────────── */
:root {
  --rose:        #ff6b9d;
  --rose-light:  #ffaecb;
  --violet:      #c44dff;
  --violet-dark: #7b2fff;
  --gold:        #f5c842;
  --bg-deep:     #0d0814;
  --bg-mid:      #150e22;
  --bg-card:     rgba(255,255,255,0.04);
  --border:      rgba(255,107,157,0.22);
  --text-main:   #f0e6f6;
  --text-muted:  #a089b8;
  --shadow-rose: 0 0 40px rgba(255,107,157,0.22);
  --shadow-card: 0 25px 60px rgba(0,0,0,0.55);
  --radius:      22px;
  --transition:  0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ── BASE ───────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', serif;
  background-color: var(--bg-deep);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  position: relative;
}

/* ── ANIMATED BACKGROUND BLOBS ─────────── */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  animation: blobFloat 12s ease-in-out infinite alternate;
}
.blob-1 { width:500px;height:500px;background:radial-gradient(circle,#ff6b9d,#c44dff);top:-150px;left:-150px;animation-delay:0s; }
.blob-2 { width:400px;height:400px;background:radial-gradient(circle,#c44dff,#7b2fff);bottom:-100px;right:-100px;animation-delay:4s; }
.blob-3 { width:300px;height:300px;background:radial-gradient(circle,#ff6b9d,#f5c842);top:50%;left:50%;transform:translate(-50%,-50%);animation-delay:8s; }
@keyframes blobFloat {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(30px,40px) scale(1.1); }
}

/* ── FLOATING PARTICLES ─────────────────── */
.particles { position:fixed;inset:0;pointer-events:none;z-index:0;overflow:hidden; }
.particle {
  position: absolute;
  opacity: 0;
  animation: particleFall linear infinite;
  user-select: none;
}
@keyframes particleFall {
  0%   { opacity:0; transform:translateY(-20px) rotate(0deg); }
  10%  { opacity:0.6; }
  90%  { opacity:0.2; }
  100% { opacity:0; transform:translateY(100vh) rotate(360deg); }
}

/* ══════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: rgba(13,8,20,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,107,157,0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon { font-size:1.5rem; animation:heartPulse 1.8s ease-in-out infinite; }
.nav-logo-text {
  font-family: 'Dancing Script', cursive;
  font-size: 1.55rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--rose-light), var(--rose), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex-wrap: wrap;
}
.nav-links li { list-style: none; }
.nav-links a {
  font-family: 'Playfair Display', serif;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 13px;
  border-radius: 50px;
  transition: color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
  display: block;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--rose-light);
  background: rgba(255,107,157,0.1);
}
.nav-links a.nav-cta {
  color: #fff !important;
  background: linear-gradient(135deg, var(--rose), var(--violet-dark)) !important;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(255,107,157,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.nav-links a.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,157,0.5) !important;
  filter: brightness(1.08);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--rose-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}
@media (max-width: 780px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    flex-direction: column;
    gap: 2px;
    background: rgba(13,8,20,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,107,157,0.15);
    padding: 14px 20px 20px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 16px; font-size: 0.9rem; }
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  position: relative;
  z-index: 1;
  width: 100%;
  background: rgba(13,8,20,0.92);
  border-top: 1px solid rgba(255,107,157,0.12);
  margin-top: auto;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 52px 28px 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  margin-bottom: 14px;
}
.footer-logo-icon { font-size: 1.3rem; }
.footer-logo-text {
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--rose-light), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 230px;
}
.footer-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li { list-style: none; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before { content: '✦'; font-size: 0.5rem; color: var(--rose); opacity: 0.6; flex-shrink: 0; }
.footer-links a:hover { color: var(--rose-light); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 28px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,107,157,0.08);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.82rem;
  color: rgba(160,137,184,0.6);
}
.footer-heart { display: inline-block; animation: heartPulse 1.8s ease-in-out infinite; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,107,157,0.2);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.25s ease;
}
.footer-socials a:hover { border-color: var(--rose); color: var(--rose-light); background: rgba(255,107,157,0.1); }
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════
   PAGE HERO BANNER (inner pages)
══════════════════════════════════════════ */
.page-hero {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  padding: 70px 24px 50px;
  max-width: 740px;
  margin: 0 auto;
}
.page-hero-tag {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  background: rgba(255,107,157,0.08);
  border: 1px solid rgba(255,107,157,0.2);
  border-radius: 40px;
  padding: 5px 16px;
  margin-bottom: 20px;
  display: inline-block;
}
.page-hero-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--rose-light), var(--rose), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════
   PAGE CONTENT WRAPPER (inner pages)
══════════════════════════════════════════ */
.page-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 820px;
  padding: 0 24px 80px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════
   SHARED CONTENT COMPONENTS
══════════════════════════════════════════ */
.content-section { margin-bottom: 52px; }
.content-section + .content-section {
  border-top: 1px solid rgba(255,107,157,0.1);
  padding-top: 52px;
}
.section-tag {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  background: rgba(255,107,157,0.08);
  border: 1px solid rgba(255,107,157,0.2);
  border-radius: 40px;
  padding: 4px 14px;
  margin-bottom: 14px;
}
.content-h2 {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--rose-light), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 18px;
}
.content-h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rose-light);
  margin: 26px 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.content-h3::before {
  content: '';
  display: inline-block;
  width: 16px; height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--violet));
  border-radius: 2px;
  flex-shrink: 0;
}
.content-p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.07rem;
  line-height: 1.88;
  color: rgba(240,230,246,0.8);
  margin-bottom: 15px;
}
.content-p:last-child { margin-bottom: 0; }
.content-p a { color: var(--rose); text-decoration: none; border-bottom: 1px solid rgba(255,107,157,0.3); transition: border-color 0.2s; }
.content-p a:hover { border-color: var(--rose); }

/* Glass Card */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 28px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,107,157,0.15);
}

/* Highlight / Quote Box */
.highlight-box {
  background: linear-gradient(135deg, rgba(255,107,157,0.07), rgba(196,77,255,0.07));
  border: 1px solid rgba(255,107,157,0.2);
  border-left: 3px solid var(--rose);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 20px 0;
}
.highlight-box p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   LOVE CALCULATOR — HOME PAGE
══════════════════════════════════════════ */
.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  padding: 40px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
}
.header { text-align: center; animation: fadeDown 0.8s ease both; }
.crown { font-size: 2.2rem; display: block; margin-bottom: 8px; animation: crownBob 3s ease-in-out infinite; }
@keyframes crownBob {
  0%,100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-8px) rotate(5deg); }
}
.title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.8rem, 8vw, 4rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--rose-light), var(--rose), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.08em;
}

/* Calculator Card */
.card {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card), var(--shadow-rose), inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden;
  animation: fadeUp 0.9s 0.2s ease both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 60px rgba(255,107,157,0.35);
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,157,0.05) 0%, transparent 60%, rgba(196,77,255,0.05) 100%);
  pointer-events: none;
  border-radius: var(--radius);
}
.card-inner { padding: 40px 36px 36px; display: flex; flex-direction: column; gap: 12px; }

/* Inputs */
.input-group { display: flex; flex-direction: column; gap: 10px; }
.input-group label {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.label-icon { font-size: 1rem; }
.input-wrapper { position: relative; }
.input-wrapper input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,107,157,0.2);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--text-main);
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  letter-spacing: 0.03em;
}
.input-wrapper input::placeholder { color: rgba(160,137,184,0.5); font-style: italic; }
.input-wrapper input:focus {
  border-color: var(--rose);
  background: rgba(255,107,157,0.06);
  box-shadow: 0 0 0 3px rgba(255,107,157,0.12), 0 4px 20px rgba(255,107,157,0.1);
}
.input-line {
  position: absolute;
  bottom: 0; left: 18px; right: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 2px;
  transition: transform 0.4s ease;
}
.input-wrapper input:focus ~ .input-line { transform: scaleX(1); }

/* Heart Divider */
.heart-divider { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 10px 0; }
.amp { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.6rem; color: var(--text-muted); }
.pulse-heart { font-size: 1.8rem; animation: heartPulse 1.4s ease-in-out infinite; display: inline-block; }

/* Calculate Button */
.calculate-btn {
  margin-top: 16px;
  width: 100%;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--rose) 0%, #e040a0 50%, var(--violet-dark) 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(255,107,157,0.45), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.calculate-btn:hover { transform: translateY(-3px) scale(1.01); box-shadow: 0 14px 40px rgba(255,107,157,0.6); filter: brightness(1.1); }
.calculate-btn:active { transform: translateY(0) scale(0.98); }
.btn-icon { font-size: 1.2rem; }
.btn-ripple { position: absolute; inset: 0; background: radial-gradient(circle at center,rgba(255,255,255,0.3) 0%,transparent 70%); opacity: 0; transition: opacity 0.4s; }
.calculate-btn:active .btn-ripple { opacity: 1; }

/* Result Section */
.result-section { width: 100%; display: none; flex-direction: column; align-items: center; gap: 20px; animation: fadeUp 0.7s ease both; }
.result-section.visible { display: flex; }
.result-names { font-family: 'Dancing Script', cursive; font-size: clamp(1.5rem,5vw,2rem); text-align: center; color: var(--rose-light); letter-spacing: 0.03em; }

/* Progress Ring */
.result-circle-wrapper { position: relative; width: 220px; height: 220px; }
.progress-ring { width: 220px; height: 220px; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: rgba(255,255,255,0.06); stroke-width: 14; }
.ring-fill {
  fill: none;
  stroke: url(#ringGradient);
  stroke-width: 14;
  stroke-linecap: round;
  stroke-dasharray: 565.48;
  stroke-dashoffset: 565.48;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.16,1,0.3,1);
  filter: drop-shadow(0 0 8px rgba(255,107,157,0.7));
}
.result-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.result-percent {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--rose-light), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.result-label { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }

/* Result Text */
.result-emoji { font-size: 3rem; animation: emojiPop 0.6s 0.5s ease both; }
@keyframes emojiPop {
  0%   { transform: scale(0) rotate(-20deg); opacity: 0; }
  60%  { transform: scale(1.3) rotate(5deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
.result-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.8rem,6vw,2.5rem);
  text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.result-message { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; color: var(--text-muted); text-align: center; max-width: 380px; line-height: 1.7; padding: 0 10px; }

/* Trait Bars */
.result-bars { width: 100%; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); backdrop-filter: blur(16px); padding: 24px 28px; display: flex; flex-direction: column; gap: 16px; }
.bar-row { display: flex; flex-direction: column; gap: 6px; }
.bar-header { display: flex; justify-content: space-between; align-items: center; }
.bar-label { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.bar-value { font-family: 'Playfair Display', serif; font-size: 0.9rem; color: var(--rose-light); }
.bar-track { height: 6px; background: rgba(255,255,255,0.07); border-radius: 99px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 99px; width: 0%; transition: width 1.4s cubic-bezier(0.16,1,0.3,1); }

/* Recalculate Button */
.recalculate-btn { padding: 12px 36px; background: transparent; border: 1.5px solid var(--border); border-radius: 50px; cursor: pointer; font-family: 'Playfair Display', serif; font-size: 0.95rem; letter-spacing: 0.08em; color: var(--text-muted); transition: all var(--transition); }
.recalculate-btn:hover { border-color: var(--rose); color: var(--rose-light); background: rgba(255,107,157,0.08); transform: translateY(-2px); }

/* Section Divider (between calculator and content) */
.section-divider { display: flex; align-items: center; gap: 18px; margin: 20px auto 60px; max-width: 420px; width: 100%; padding: 0 24px; opacity: 0.45; }
.divider-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--rose), transparent); }
.divider-heart { font-size: 1.2rem; }

/* Content Wrapper (below calculator) */
.content-wrapper { position: relative; z-index: 1; width: 100%; max-width: 860px; padding: 0 24px 80px; margin: 0 auto; }

/* Steps Grid */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin: 28px 0; }
.step-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 18px; padding: 24px 22px; backdrop-filter: blur(16px); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.step-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(255,107,157,0.18); }
.step-number { font-family: 'Dancing Script', cursive; font-size: 2.8rem; background: linear-gradient(135deg, var(--rose), var(--violet)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 10px; }
.step-title { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: var(--rose-light); margin-bottom: 8px; letter-spacing: 0.04em; }
.step-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; }

/* Tiers List */
.tiers-list { display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }
.tier-item { display: grid; grid-template-columns: 110px 1fr; gap: 16px; align-items: start; padding: 18px 22px; background: var(--bg-card); border: 1px solid rgba(255,107,157,0.12); border-radius: 14px; backdrop-filter: blur(12px); transition: border-color 0.3s ease; }
.tier-item:hover { border-color: rgba(255,107,157,0.35); }
.tier-range { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--gold); white-space: nowrap; }
.tier-text { font-size: 0.97rem; color: rgba(240,230,246,0.78); line-height: 1.65; }
.tier-text strong { color: var(--rose-light); font-style: italic; font-weight: 600; }

/* Benefits Grid */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin: 28px 0; }
.benefit-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 22px 20px; backdrop-filter: blur(14px); transition: transform 0.3s ease; }
.benefit-card:hover { transform: translateY(-3px); }
.benefit-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.benefit-title { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: var(--rose-light); margin-bottom: 8px; }
.benefit-desc { font-size: 0.93rem; color: var(--text-muted); line-height: 1.6; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.faq-item { background: var(--bg-card); border: 1px solid rgba(255,107,157,0.15); border-radius: 14px; overflow: hidden; backdrop-filter: blur(12px); }
.faq-question { width: 100%; background: none; border: none; cursor: pointer; padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; gap: 14px; text-align: left; font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--text-main); transition: color 0.25s ease; }
.faq-question:hover { color: var(--rose-light); }
.faq-chevron { font-size: 0.85rem; color: var(--rose); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 14px 22px 18px; font-size: 0.97rem; color: var(--text-muted); line-height: 1.75; border-top: 1px solid rgba(255,107,157,0.08); }

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin: 24px 0; }
.about-icon { font-size: 2rem; margin-bottom: 12px; }
.about-card-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--rose-light); margin-bottom: 10px; }

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: start; }
.contact-form-wrap { padding: 32px 30px; }
.contact-form-title { font-family: 'Dancing Script', cursive; font-size: 1.8rem; background: linear-gradient(135deg, var(--rose-light), var(--violet)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 24px; line-height: 1.2; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-label { font-family: 'Playfair Display', serif; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,107,157,0.2);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(255,107,157,0.12); }
.form-input::placeholder { color: rgba(160,137,184,0.45); font-style: italic; }
.form-input option { background: #150e22; color: var(--text-main); }
.form-textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.form-submit { width: 100%; padding: 14px 24px; background: linear-gradient(135deg, var(--rose), var(--violet-dark)); border: none; border-radius: 50px; cursor: pointer; font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.07em; color: #fff; box-shadow: 0 6px 24px rgba(255,107,157,0.4); transition: transform 0.2s ease, filter 0.2s ease; }
.form-submit:hover { transform: translateY(-2px); filter: brightness(1.1); }
.form-success { display: none; flex-direction: column; align-items: center; gap: 12px; padding: 24px; text-align: center; }
.form-success span { font-size: 2.5rem; }
.form-success p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; color: var(--rose-light); line-height: 1.6; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card.glass-card { padding: 20px 22px !important; }
.ci-icon { font-size: 1.4rem; margin-bottom: 6px; }
.ci-label { font-family: 'Playfair Display', serif; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.ci-value { font-size: 0.93rem; color: var(--rose-light); font-family: 'Cormorant Garamond', serif; }
@media (max-width: 680px) { .contact-layout { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════ */
@keyframes heartPulse {
  0%,100% { transform: scale(1); }
  25%      { transform: scale(1.22); }
  50%      { transform: scale(1); }
  75%      { transform: scale(1.12); }
}
@keyframes fadeDown { from { opacity:0; transform:translateY(-28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeUp   { from { opacity:0; transform:translateY(28px);  } to { opacity:1; transform:translateY(0); } }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 600px) {
  .card-inner { padding: 28px 22px 26px; }
  .result-bars { padding: 18px 16px; }
  .result-circle-wrapper { width: 190px; height: 190px; }
  .progress-ring { width: 190px; height: 190px; }
  .tier-item { grid-template-columns: 1fr; gap: 4px; }
  .content-wrapper { padding: 0 16px 60px; }
  .page-content { padding: 0 16px 60px; }
}

/* ── FOOTER BRAND (missed in initial write) ── */
.footer-brand { display: flex; flex-direction: column; }
