/* =============================================
   EVA BLOOM SOULMATE SKETCH — MAIN STYLESHEET
   Aesthetic: Romantic Mystical Luxury
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --rose-gold: #c9a27e;
  --deep-rose: #a0614a;
  --blush: #f5ede6;
  --cream: #fdf8f4;
  --midnight: #1a1118;
  --plum: #3d1f35;
  --mauve: #7c4f6e;
  --lavender: #d4b8ce;
  --gold: #d4a85a;
  --gold-light: #f0d090;
  --white: #ffffff;
  --text-dark: #2a1520;
  --text-muted: #7a6070;
  --shadow-soft: 0 8px 40px rgba(60,20,50,0.12);
  --shadow-card: 0 20px 60px rgba(60,20,50,0.15);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-ui: 'Jost', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Utility ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-left { text-align: left; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--plum);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 600; }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 500; font-style: italic; }
p { font-size: 1.1rem; color: var(--text-dark); }
.lead { font-size: 1.25rem; line-height: 1.9; color: var(--mauve); }
.small { font-size: 0.9rem; font-family: var(--font-ui); }

/* ---- Decorative Divider ---- */
.divider {
  display: flex; align-items: center; gap: 16px;
  margin: 20px auto; max-width: 320px;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--rose-gold));
}
.divider::after { background: linear-gradient(to left, transparent, var(--rose-gold)); }
.divider-icon { color: var(--gold); font-size: 1.2rem; }

/* ---- Section Label ---- */
.section-label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 12px;
  display: block;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26, 17, 24, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 126, 0.2);
  padding: 0 24px;
  transition: var(--transition);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.nav-brand span { color: var(--lavender); font-style: italic; font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--rose-gold), var(--deep-rose)) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-ui) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(160,97,74,0.4) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: var(--transition); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--midnight) 0%, var(--plum) 50%, #2d1428 100%);
  display: flex; align-items: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(212, 168, 90, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 20% 70%, rgba(201, 162, 126, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-stars {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 10%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 80%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 10% 60%, rgba(212,168,90,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 55%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 15%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 65% 45%, rgba(212,168,90,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 65%, rgba(255,255,255,0.3) 0%, transparent 100%);
}
.hero-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212, 168, 90, 0.15);
  border: 1px solid rgba(212, 168, 90, 0.35);
  color: var(--gold-light);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-badge::before { content: '✦'; color: var(--gold); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 24px;
  line-height: 1.15;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-desc { color: rgba(255,255,255,0.75); font-size: 1.15rem; margin-bottom: 36px; line-height: 1.85; }
.hero-rating {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 32px;
}
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.rating-text { font-family: var(--font-ui); font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image-wrap {
  position: relative;
}
.hero-image-wrap::before {
  content: '';
  position: absolute; inset: -20px;
  background: radial-gradient(ellipse at center, rgba(212,168,90,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-image-wrap img {
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,168,90,0.2);
  position: relative; z-index: 1;
}
.hero-guarantee {
  display: flex; align-items: center; gap: 10px;
  margin-top: 20px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-ui);
  font-size: 0.82rem;
}
.hero-guarantee::before { content: '🔒'; font-size: 1rem; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: 50px;
  border: none; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--rose-gold) 100%);
  color: var(--midnight);
  box-shadow: 0 8px 30px rgba(212,168,90,0.35);
}
.btn-primary:hover { box-shadow: 0 14px 40px rgba(212,168,90,0.5); }
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,168,90,0.08); }
.btn-dark {
  background: var(--midnight);
  color: var(--gold);
  box-shadow: var(--shadow-soft);
}
.btn-dark:hover { box-shadow: var(--shadow-card); background: var(--plum); }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-pulse {
  animation: pulse-glow 2.5s infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 30px rgba(212,168,90,0.35); }
  50% { box-shadow: 0 12px 50px rgba(212,168,90,0.65); }
}

/* ============================================
   TRUST BADGES BAR
   ============================================ */
.trust-bar {
  background: var(--plum);
  padding: 20px 24px;
  overflow: hidden;
}
.trust-bar-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
}
.trust-item span.icon { font-size: 1.2rem; }

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section { background: var(--cream); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 50px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 162, 126, 0.15);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.review-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--lavender);
  position: absolute; top: 10px; left: 22px;
  line-height: 1; opacity: 0.4;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.review-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 1.05rem; line-height: 1.8; color: var(--text-dark); margin-bottom: 20px; font-style: italic; }
.review-author {
  display: flex; align-items: center; gap: 12px;
}
.reviewer-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender), var(--rose-gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  color: white; font-size: 1rem;
}
.reviewer-name { font-family: var(--font-ui); font-size: 0.9rem; font-weight: 600; color: var(--plum); }
.reviewer-loc { font-family: var(--font-ui); font-size: 0.78rem; color: var(--text-muted); }

/* ============================================
   WHAT IS SECTION
   ============================================ */
.what-section { background: var(--blush); }
.what-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
}
.what-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}
.what-image::after {
  content: '';
  position: absolute; inset: 0;
  border: 2px solid rgba(212,168,90,0.25);
  border-radius: var(--radius);
  pointer-events: none;
}
.what-image img { width: 100%; object-fit: cover; }
.what-content p { margin-bottom: 18px; }
.feature-points { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.feature-point {
  display: flex; gap: 14px; align-items: flex-start;
}
.fp-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose-gold));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.9rem; color: white; margin-top: 2px;
}
.fp-text strong { display: block; font-family: var(--font-ui); font-size: 0.95rem; font-weight: 600; color: var(--plum); margin-bottom: 3px; }
.fp-text span { font-size: 1rem; color: var(--text-muted); }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section { background: linear-gradient(135deg, var(--midnight) 0%, var(--plum) 100%); }
.how-section h2, .how-section .section-label { color: var(--gold); }
.how-section h2 { color: var(--white); }
.how-section .lead { color: rgba(255,255,255,0.65); }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 52px;
}
.step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,168,90,0.2);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
  position: relative;
}
.step-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.step-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose-gold));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: var(--midnight);
}
.step-card h4 { color: var(--gold-light); font-family: var(--font-display); margin-bottom: 12px; font-style: normal; }
.step-card p { color: rgba(255,255,255,0.7); font-size: 1rem; }

/* ============================================
   WHAT'S INCLUDED / PACKAGE
   ============================================ */
.package-section { background: var(--cream); }
.package-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: start; margin-top: 50px;
}
.package-items { display: flex; flex-direction: column; gap: 20px; }
.package-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201,162,126,0.2);
  box-shadow: 0 4px 20px rgba(60,20,50,0.07);
  transition: box-shadow var(--transition), transform var(--transition);
}
.package-item:hover { box-shadow: var(--shadow-soft); transform: translateX(4px); }
.pi-icon {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blush), var(--lavender));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.pi-text h5 { font-family: var(--font-ui); font-size: 0.95rem; font-weight: 600; color: var(--plum); margin-bottom: 4px; }
.pi-text p { font-size: 0.95rem; color: var(--text-muted); }
.package-cta-box {
  background: linear-gradient(160deg, var(--plum), var(--midnight));
  border-radius: var(--radius);
  padding: 44px 36px;
  text-align: center;
  position: sticky; top: 100px;
  color: white;
}
.price-tag { margin: 20px 0; }
.original-price {
  font-family: var(--font-ui); font-size: 1rem;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through; margin-bottom: 4px;
}
.current-price {
  font-family: var(--font-display); font-size: 3rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.current-price sup { font-size: 1.5rem; vertical-align: top; margin-top: 0.5rem; }
.price-note { font-family: var(--font-ui); font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.package-cta-box h3 { color: white; font-size: 1.5rem; }
.package-cta-box p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin: 12px 0 24px; }
.guarantee-note {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 18px;
  font-family: var(--font-ui); font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section { background: var(--blush); }
.benefits-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 50px;
}
.benefit-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--rose-gold);
  box-shadow: 0 4px 20px rgba(60,20,50,0.07);
  transition: transform var(--transition);
}
.benefit-item:hover { transform: translateY(-3px); }
.b-num {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: var(--lavender); line-height: 1; flex-shrink: 0; width: 32px;
}
.b-text strong { display: block; font-family: var(--font-ui); font-size: 0.92rem; font-weight: 600; color: var(--plum); margin-bottom: 4px; }
.b-text p { font-size: 0.95rem; color: var(--text-muted); }

/* ============================================
   PROS & CONS
   ============================================ */
.pros-cons-section { background: var(--cream); }
.pros-cons-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; margin-top: 50px;
}
.pros-box, .cons-box {
  border-radius: var(--radius);
  padding: 36px 32px;
}
.pros-box { background: linear-gradient(135deg, #1a3a2a, #1f4a35); }
.cons-box { background: linear-gradient(135deg, #3a1a1a, #4a1f20); }
.pros-box h3, .cons-box h3 { font-size: 1.3rem; margin-bottom: 24px; }
.pros-box h3 { color: #7dd4a0; }
.cons-box h3 { color: #e8948a; }
.pc-list { display: flex; flex-direction: column; gap: 14px; }
.pc-item { display: flex; gap: 12px; align-items: flex-start; }
.pc-item .check { font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.pros-box .pc-item .check { color: #7dd4a0; }
.cons-box .pc-item .check { color: #e8948a; }
.pc-item span.label { font-size: 1rem; color: rgba(255,255,255,0.85); line-height: 1.6; font-family: var(--font-body); }
.pc-item span.label strong { display: block; color: white; font-family: var(--font-ui); font-size: 0.88rem; margin-bottom: 2px; }

/* ============================================
   GUARANTEE SECTION
   ============================================ */
.guarantee-section { background: linear-gradient(160deg, var(--plum), var(--midnight)); }
.guarantee-inner {
  display: grid; grid-template-columns: auto 1fr;
  gap: 60px; align-items: center;
}
.guarantee-badge-wrap { text-align: center; }
.guarantee-badge {
  width: 160px; height: 160px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose-gold));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--midnight);
  box-shadow: 0 20px 60px rgba(212,168,90,0.4);
}
.guarantee-badge .days { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.guarantee-badge .label { font-family: var(--font-ui); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.guarantee-badge .sublabel { font-family: var(--font-ui); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; }
.guarantee-text h2 { color: var(--white); margin-bottom: 16px; }
.guarantee-text p { color: rgba(255,255,255,0.7); font-size: 1.1rem; line-height: 1.85; margin-bottom: 14px; }
.guarantee-text .section-label { color: var(--gold); }

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section { background: var(--blush); }
.faq-list { max-width: 800px; margin: 50px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201,162,126,0.2);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(60,20,50,0.07);
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px;
  cursor: pointer;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--blush); }
.faq-q h4 {
  font-family: var(--font-ui); font-size: 1rem; font-weight: 600;
  color: var(--plum); font-style: normal; margin: 0;
}
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--blush); border: 1.5px solid var(--lavender);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--mauve); flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--rose-gold); color: white; border-color: var(--rose-gold); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
}
.faq-a-inner { padding: 0 26px 22px; color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; }

/* ============================================
   WHO IS IT FOR
   ============================================ */
.who-section { background: var(--cream); }
.who-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 50px;
}
.who-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 22px;
  text-align: center;
  border: 1px solid rgba(201,162,126,0.15);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.who-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.who-emoji { font-size: 2.2rem; margin-bottom: 14px; }
.who-card h5 { font-family: var(--font-ui); font-size: 0.92rem; font-weight: 700; color: var(--plum); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.who-card p { font-size: 0.93rem; color: var(--text-muted); }

/* ============================================
   PROCESS (Step-by-step)
   ============================================ */
.process-section { background: var(--blush); }
.process-image-wrap {
  max-width: 820px; margin: 0 auto 50px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.process-steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.process-step {
  position: relative; padding-left: 20px;
}
.process-step::before {
  content: '';
  position: absolute; left: 0; top: 28px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--rose-gold), transparent);
}
.ps-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--lavender); line-height: 1; margin-bottom: 8px;
}
.process-step h4 { font-family: var(--font-ui); font-size: 0.95rem; font-weight: 600; color: var(--plum); font-style: normal; margin-bottom: 6px; }
.process-step p { font-size: 0.95rem; color: var(--text-muted); }

/* ============================================
   CTA FINAL
   ============================================ */
.final-cta {
  background: linear-gradient(160deg, var(--midnight) 0%, var(--plum) 60%, #2d1428 100%);
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212,168,90,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta h2 { color: var(--white); margin-bottom: 16px; }
.final-cta .lead { color: rgba(255,255,255,0.65); margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.pricing-highlight {
  display: inline-flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,168,90,0.3);
  border-radius: var(--radius);
  padding: 28px 48px; margin: 0 auto 36px;
}
.ph-original { font-family: var(--font-ui); font-size: 0.9rem; color: rgba(255,255,255,0.4); text-decoration: line-through; }
.ph-current { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.ph-note { font-family: var(--font-ui); font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 4px; }
.final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--midnight);
  color: rgba(255,255,255,0.5);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  color: var(--gold);
}
.footer-brand span { color: var(--lavender); font-style: italic; font-weight: 400; }
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  font-family: var(--font-ui); font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-note { font-family: var(--font-ui); font-size: 0.8rem; text-align: center; max-width: 700px; line-height: 1.7; }
.footer-copy { font-family: var(--font-ui); font-size: 0.78rem; border-top: 1px solid rgba(255,255,255,0.08); width: 100%; text-align: center; padding-top: 24px; }
.footer-email { color: var(--rose-gold); }

/* ============================================
   ANIMATIONS & SCROLL
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ============================================
   MOBILE NAV DRAWER
   ============================================ */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--midnight);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-nav.open { display: flex; opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 600;
  color: var(--white); transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: var(--gold);
  font-size: 1.8rem; cursor: pointer;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose-gold));
  color: var(--midnight); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(212,168,90,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 998;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }

/* ============================================
   INNER PAGE STYLES (Privacy, Terms, Disclaimer)
   ============================================ */
.inner-hero {
  background: linear-gradient(160deg, var(--midnight), var(--plum));
  padding: 120px 24px 70px;
  text-align: center;
}
.inner-hero h1 { color: var(--white); }
.inner-hero p { color: rgba(255,255,255,0.6); max-width: 600px; margin: 16px auto 0; font-size: 1.05rem; }
.inner-content {
  max-width: 820px; margin: 0 auto;
  padding: 70px 24px 100px;
}
.inner-content h2 {
  font-size: 1.4rem; margin-top: 40px; margin-bottom: 14px;
  color: var(--plum); border-bottom: 2px solid var(--blush); padding-bottom: 8px;
}
.inner-content h3 {
  font-size: 1.15rem; margin-top: 28px; margin-bottom: 10px;
  color: var(--mauve);
}
.inner-content p { margin-bottom: 14px; color: var(--text-dark); font-size: 1.05rem; }
.inner-content ul { margin: 12px 0 16px 20px; display: flex; flex-direction: column; gap: 8px; }
.inner-content ul li { list-style: disc; color: var(--text-dark); font-size: 1.05rem; line-height: 1.7; }
.inner-content a { color: var(--deep-rose); text-decoration: underline; }
.inner-content .update-date {
  font-family: var(--font-ui); font-size: 0.85rem;
  color: var(--text-muted); margin-bottom: 40px;
  display: flex; align-items: center; gap: 8px;
}
.inner-content .update-date::before { content: '📅'; }
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 0.9rem;
  color: var(--rose-gold); margin-bottom: 40px;
  transition: gap var(--transition);
}
.back-link:hover { gap: 12px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-image-wrap { order: -1; max-width: 400px; margin: 0 auto; }
  .hero-btns, .hero-rating { justify-content: center; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .reviews-grid { grid-template-columns: 1fr; }
  .what-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .package-cta-box { position: static; }
  .benefits-grid { grid-template-columns: 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .process-steps-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { gap: 24px; }
  .footer-links { gap: 20px; }
  .section-pad { padding: 60px 0; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .who-grid { grid-template-columns: 1fr; }
  .final-cta-btns { flex-direction: column; align-items: center; }
}
