/* ============================================================
   WELLNESS RESET JOURNEY — MASTER STYLESHEET
   Domain: wellnessresetjourney.com
   Version: 1.0 | April 2026
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&display=swap');

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  /* Brand Colours */
  --primary-purple:   #8B5A8E;
  --dark-purple:      #5C3D5C;
  --sage-green:       #7A9B7F;
  --gold:             #C9A876;
  --dark-navy:        #2C2C3C;
  --cream:            #F5F1ED;
  --white:            #FFFFFF;
  --light-grey:       #F8F6F3;
  --mid-grey:         #E8E4DF;
  --text-dark:        #1A1A2E;
  --text-body:        #3D3D4E;
  --text-muted:       #7A7A8C;
  --error-red:        #C0392B;
  --success-green:    #27AE60;

  /* Typography */
  --font-heading:     'Cormorant Garamond', Georgia, serif;
  --font-body:        'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-xxl: 6rem;

  /* Border Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.14);
  --shadow-xl:  0 16px 48px rgba(0,0,0,.18);

  /* Transitions */
  --transition: 0.25s ease;
}

/* ── 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);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-purple);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--dark-purple); text-decoration: underline; }

ul, ol { padding-left: 1.5rem; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-purple);
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.15rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--dark-purple); }
em { font-style: italic; }

blockquote {
  border-left: 4px solid var(--primary-purple);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--cream);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--dark-purple);
}

/* ── LAYOUT UTILITIES ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.container--narrow { max-width: 800px; }
.container--wide   { max-width: 1400px; }

.section {
  padding: var(--space-xl) 0;
}
.section--sm { padding: var(--space-lg) 0; }
.section--lg { padding: var(--space-xxl) 0; }

.section--cream  { background: var(--cream); }
.section--purple { background: var(--dark-purple); color: var(--white); }
.section--navy   { background: var(--dark-navy); color: var(--white); }
.section--light  { background: var(--light-grey); }

.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }

/* ── SECTION A: HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--mid-grey);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  text-decoration: none;
}
.site-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.site-logo:hover { text-decoration: none; }

.site-nav { display: flex; align-items: center; gap: var(--space-md); }

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  letter-spacing: 0.02em;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary-purple);
  border-bottom-color: var(--primary-purple);
  text-decoration: none;
}

.nav-cta {
  background: var(--primary-purple);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius-full);
  border-bottom: none !important;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover {
  background: var(--dark-purple);
  transform: translateY(-1px);
  text-decoration: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-purple);
  transition: all var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── SECTION A: FOOTER ── */
.site-footer {
  background: var(--dark-navy);
  color: rgba(255,255,255,0.85);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--space-sm);
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.75);
}
.footer-contact-item a { color: rgba(255,255,255,0.85); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); text-decoration: none; }

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-sm);
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.social-link:hover {
  background: var(--primary-purple);
  color: var(--white);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.footer-legal-links a:hover { color: var(--gold); text-decoration: none; }

/* ── SECTION B: MINIMAL FOOTER ── */
.section-b-footer {
  background: var(--light-grey);
  border-top: 1px solid var(--mid-grey);
  padding: var(--space-lg) 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.section-b-footer .fb-disclaimer {
  max-width: 700px;
  margin: 0 auto var(--space-sm);
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.section-b-footer .compliance-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-bottom: var(--space-xs);
}
.section-b-footer .compliance-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-decoration: underline;
}
.section-b-footer .compliance-links a:hover { color: var(--primary-purple); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary-purple);
  color: var(--white);
  border-color: var(--primary-purple);
}
.btn-primary:hover {
  background: var(--dark-purple);
  border-color: var(--dark-purple);
  color: var(--white);
}

.btn-secondary {
  background: var(--gold);
  color: var(--dark-navy);
  border-color: var(--gold);
}
.btn-secondary:hover {
  background: #b8934a;
  border-color: #b8934a;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary-purple);
  border-color: var(--primary-purple);
}
.btn-outline:hover {
  background: var(--primary-purple);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--dark-purple);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  color: var(--dark-purple);
}

.btn-cta {
  background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
  color: var(--white);
  font-size: 1.1rem;
  padding: 1.1rem 2.5rem;
  box-shadow: 0 4px 20px rgba(139,90,142,0.4);
}
.btn-cta:hover {
  background: linear-gradient(135deg, var(--dark-purple), #3d2640);
  box-shadow: 0 6px 28px rgba(139,90,142,0.5);
  color: var(--white);
}

.btn-lg { padding: 1.1rem 2.75rem; font-size: 1.1rem; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.875rem; }
.btn-full { width: 100%; }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: var(--white);
}

/* ── FORMS ── */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--mid-grey);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px rgba(139,90,142,0.15);
}
.form-input.error,
.form-textarea.error {
  border-color: var(--error-red);
}

.form-textarea { min-height: 140px; resize: vertical; }

.form-error {
  display: block;
  font-size: 0.8rem;
  color: var(--error-red);
  margin-top: 0.3rem;
}

.form-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.form-error-msg {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

/* ── HERO SECTION ── */
.hero {
  background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-purple) 50%, #a06fa3 100%);
  color: var(--white);
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: contain;
}

/* ── SOCIAL PROOF BAR ── */
.social-proof-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--mid-grey);
  padding: 0.875rem 0;
}
.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-purple);
}
.proof-item .stars { color: #F5A623; }
.proof-divider {
  width: 1px;
  height: 20px;
  background: var(--mid-grey);
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-body { padding: var(--space-md); }
.card-header { padding: var(--space-md); border-bottom: 1px solid var(--mid-grey); }
.card-footer { padding: var(--space-md); border-top: 1px solid var(--mid-grey); background: var(--light-grey); }

/* ── PACKAGE CARDS ── */
.package-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: start;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 2px solid var(--mid-grey);
  transition: all var(--transition);
  position: relative;
}
.package-card:hover {
  border-color: var(--primary-purple);
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}
.package-card.featured {
  border-color: var(--primary-purple);
  box-shadow: var(--shadow-lg);
}
.package-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-purple);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1.25rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.package-image {
  width: 100%;
  padding: var(--space-md);
  background: var(--cream);
}
.package-image img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.package-body { padding: var(--space-md); }
.package-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--dark-purple);
  margin-bottom: 0.5rem;
}
.package-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 0.25rem;
}
.package-original {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}
.package-save {
  display: inline-block;
  background: var(--sage-green);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

/* ── TESTIMONIALS ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-grey);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--primary-purple);
  opacity: 0.15;
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  line-height: 1;
}

.testimonial-stars {
  color: #F5A623;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: var(--space-sm);
  font-style: italic;
}
.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-purple);
}
.testimonial-verified {
  font-size: 0.75rem;
  color: var(--sage-green);
  font-weight: 500;
}

/* ── BEFORE/AFTER GALLERY ── */
.ba-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}
.ba-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.ba-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ── TRANSFORMATION GALLERY ── */
.transformation-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-sm);
}
.transformation-gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* ── WHATSAPP CHAT BUBBLE ── */
.whatsapp-bubble {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  color: var(--white);
  font-size: 1.75rem;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.whatsapp-panel {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 320px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  display: none;
}
.whatsapp-panel.open { display: block; }

.wa-panel-header {
  background: #075E54;
  color: var(--white);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.wa-panel-header img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  object-fit: cover;
}
.wa-panel-name { font-weight: 600; font-size: 0.95rem; }
.wa-panel-status { font-size: 0.75rem; opacity: 0.8; }

.wa-panel-body { padding: 1rem; }
.wa-faq-item {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--mid-grey);
  cursor: pointer;
}
.wa-faq-item:last-child { border-bottom: none; }
.wa-faq-q {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-purple);
  margin-bottom: 0.25rem;
}
.wa-faq-a {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: none;
}
.wa-faq-item.open .wa-faq-a { display: block; }

.wa-panel-footer {
  padding: 1rem;
  border-top: 1px solid var(--mid-grey);
}
.wa-chat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background var(--transition);
}
.wa-chat-btn:hover { background: #1da851; color: var(--white); text-decoration: none; }

/* ── SECTION B: CENTER TABLE LAYOUT ── */
.center-table {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  border-collapse: collapse;
}
.center-table td {
  padding: 0.5rem 1rem;
  vertical-align: top;
  line-height: 1.8;
}

.landing-page-wrap {
  background: var(--white);
  padding: var(--space-lg) var(--space-md);
}

.disclosure-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--mid-grey);
  padding: 0.5rem var(--space-md);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}
.disclosure-bar a { color: var(--primary-purple); }

.landing-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark-purple);
  text-align: center;
  margin: var(--space-lg) auto var(--space-md);
  max-width: 700px;
  line-height: 1.25;
}

.landing-subheadline {
  font-size: 1.1rem;
  text-align: center;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

.landing-body {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-body);
}

.landing-cta-box {
  background: var(--cream);
  border: 2px solid var(--primary-purple);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  margin: var(--space-lg) auto;
  max-width: 600px;
}

.landing-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: var(--space-lg) auto 0;
  padding: var(--space-sm) 0;
  border-top: 1px solid var(--mid-grey);
  line-height: 1.6;
}

/* ── SQUEEZE PAGE FORM ── */
.squeeze-form-wrap {
  background: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-md);
}

.squeeze-box {
  width: 100%;
  max-width: 520px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}

.squeeze-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--dark-purple);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}
.squeeze-subtext {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

/* ── EXIT INTENT POPUP ── */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}
.exit-popup-overlay.active { display: flex; }

.exit-popup {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: popupIn 0.3s ease;
}

@keyframes popupIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.exit-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  padding: 0.25rem;
  transition: color var(--transition);
}
.exit-popup-close:hover { color: var(--dark-purple); }

.exit-popup-emoji { font-size: 3rem; margin-bottom: 0.5rem; }
.exit-popup h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--dark-purple);
  margin-bottom: 0.5rem;
}
.exit-popup p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

/* ── QUIZ STYLES ── */
.quiz-wrap {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-md);
}

.quiz-container {
  width: 100%;
  max-width: 640px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.quiz-progress-bar {
  height: 4px;
  background: var(--mid-grey);
  position: relative;
}
.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-purple), var(--sage-green));
  transition: width 0.4s ease;
}

.quiz-slide {
  padding: var(--space-xl) var(--space-lg);
  display: none;
}
.quiz-slide.active { display: block; }

.quiz-step-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-purple);
  margin-bottom: 0.5rem;
}
.quiz-question {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--dark-purple);
  margin-bottom: var(--space-lg);
  line-height: 1.3;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.quiz-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 2px solid var(--mid-grey);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
  text-align: left;
  font-size: 0.95rem;
  color: var(--text-body);
}
.quiz-option:hover {
  border-color: var(--primary-purple);
  background: var(--cream);
  color: var(--dark-purple);
}
.quiz-option.selected {
  border-color: var(--primary-purple);
  background: rgba(139,90,142,0.08);
  color: var(--dark-purple);
  font-weight: 500;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--mid-grey);
}

.quiz-info-slide {
  background: linear-gradient(135deg, var(--cream), var(--white));
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}

/* ── SALES PAGE STYLES ── */
.sales-page {
  background: var(--white);
  max-width: 860px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
}

.sales-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--dark-purple);
  text-align: center;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.sales-subheadline {
  font-size: 1.2rem;
  text-align: center;
  color: var(--text-body);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.upsell-banner {
  background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
  color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.price-box {
  background: var(--cream);
  border: 2px solid var(--primary-purple);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  margin: var(--space-lg) 0;
}
.price-original {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}
.price-current {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-purple);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.price-save {
  display: inline-block;
  background: var(--sage-green);
  color: var(--white);
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
}

.bonus-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}
.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--mid-grey);
  font-size: 0.95rem;
}
.bonus-item:last-child { border-bottom: none; }
.bonus-check {
  color: var(--sage-green);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.bonus-value {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
  font-weight: 600;
}

.faq-item {
  border-bottom: 1px solid var(--mid-grey);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-purple);
  text-align: left;
  gap: 1rem;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary-purple);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 1rem;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ── URGENCY BANNER ── */
.urgency-banner {
  background: #FFF3CD;
  border: 1px solid #FFEEBA;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  color: #856404;
  font-weight: 600;
  margin: var(--space-md) 0;
}
.urgency-banner strong { color: #533f03; }

/* ── RESULTS PAGE ── */
.results-container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.score-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--mid-grey);
}
.score-card.excellent { border-color: var(--sage-green); }
.score-card.good      { border-color: var(--gold); }
.score-card.fair      { border-color: var(--primary-purple); }
.score-card.poor      { border-color: var(--error-red); }

.score-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.score-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-purple);
  line-height: 1;
}
.score-max { font-size: 0.8rem; color: var(--text-muted); }

.export-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  margin: var(--space-lg) 0;
}

/* ── LEGAL PAGES ── */
.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}
.legal-page h1 {
  margin-bottom: var(--space-sm);
}
.legal-last-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}
.legal-page h2 {
  font-size: 1.4rem;
  margin: var(--space-lg) 0 var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--mid-grey);
}
.legal-page h2:first-of-type { border-top: none; }
.legal-page p, .legal-page li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
}
.legal-page ul, .legal-page ol { margin-bottom: 1rem; }

/* ── MASTER INDEX ── */
.master-index {
  font-family: var(--font-body);
  padding: var(--space-md);
  background: #1a1a2e;
  color: #e0e0e0;
  min-height: 100vh;
}
.master-index h1 {
  color: var(--gold);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}
.master-index .subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  margin-bottom: var(--space-lg);
}
.index-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.8rem;
}
.stat-badge {
  background: rgba(255,255,255,0.1);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.8);
}
.stat-badge strong { color: var(--gold); }

.index-section {
  margin-bottom: var(--space-xl);
}
.index-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-purple);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.index-search {
  width: 100%;
  max-width: 400px;
  padding: 0.6rem 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  outline: none;
}
.index-search::placeholder { color: rgba(255,255,255,0.4); }
.index-search:focus { border-color: var(--primary-purple); }

.index-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}
.index-table th {
  background: rgba(255,255,255,0.08);
  color: var(--gold);
  padding: 0.6rem 0.75rem;
  text-align: left;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.index-table td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: middle;
}
.index-table tr:hover td { background: rgba(255,255,255,0.04); }
.index-table a {
  color: #7EC8E3;
  text-decoration: none;
  font-size: 0.78rem;
}
.index-table a:hover { color: var(--gold); text-decoration: underline; }
.index-table .hook-title { color: rgba(255,255,255,0.8); max-width: 280px; }

.shared-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.shared-link {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.75rem;
  color: #7EC8E3;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all var(--transition);
}
.shared-link:hover {
  background: rgba(139,90,142,0.3);
  border-color: var(--primary-purple);
  color: var(--white);
  text-decoration: none;
}

/* ── ABOUT PAGE ── */
.about-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}
.about-gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  text-align: center;
}
.step-item { padding: var(--space-md); }
.step-number {
  width: 56px;
  height: 56px;
  background: var(--primary-purple);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto var(--space-sm);
  font-family: var(--font-heading);
}
.step-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--dark-purple);
  margin-bottom: 0.5rem;
}

/* ── PRODUCT CARDS ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--mid-grey);
}
.product-image {
  background: var(--cream);
  padding: var(--space-md);
  text-align: center;
}
.product-image img {
  height: 200px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
}
.product-body { padding: var(--space-md); }
.product-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark-purple);
  margin-bottom: 0.5rem;
}

/* ── UTILITY CLASSES ── */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

.hidden { display: none !important; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-purple { background: var(--primary-purple); color: var(--white); }
.badge-green  { background: var(--sage-green); color: var(--white); }
.badge-gold   { background: var(--gold); color: var(--dark-navy); }

.divider {
  border: none;
  border-top: 1px solid var(--mid-grey);
  margin: var(--space-lg) 0;
}

.highlight-box {
  background: var(--cream);
  border-left: 4px solid var(--primary-purple);
  padding: var(--space-md);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-md) 0;
}

.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .transformation-gallery { grid-template-columns: repeat(4, 1fr); }
  .about-gallery { grid-template-columns: repeat(4, 1fr); }
  .score-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem var(--space-lg) var(--space-lg);
    box-shadow: var(--shadow-xl);
    transition: right 0.3s ease;
    z-index: 999;
    gap: var(--space-sm);
    overflow-y: auto;
  }
  .site-nav.open { right: 0; }

  .nav-link {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    width: 100%;
    border-bottom: 1px solid var(--mid-grey);
  }
  .nav-cta { margin-top: var(--space-sm); width: 100%; text-align: center; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-image { order: -1; }
  .hero-image img { max-width: 320px; }

  .package-cards { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .transformation-gallery { grid-template-columns: repeat(3, 1fr); }
  .about-gallery { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .score-grid { grid-template-columns: repeat(2, 1fr); }
  .export-buttons { flex-direction: column; }

  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; }

  .whatsapp-panel { width: 280px; right: -10px; }

  .social-proof-inner { flex-direction: column; gap: var(--space-sm); }
  .proof-divider { display: none; }
}

@media (max-width: 480px) {
  :root { --space-lg: 2rem; --space-xl: 3rem; }
  .transformation-gallery { grid-template-columns: repeat(2, 1fr); }
  .about-gallery { grid-template-columns: repeat(2, 1fr); }
  .ba-gallery { grid-template-columns: 1fr; }
  .score-grid { grid-template-columns: 1fr 1fr; }
  .index-table { font-size: 0.7rem; }
  .squeeze-box { padding: var(--space-lg) var(--space-md); }
}

/* ── PRINT STYLES (for PDF export) ── */
@media print {
  .site-header,
  .site-footer,
  .whatsapp-bubble,
  .exit-popup-overlay,
  .export-buttons,
  .btn { display: none !important; }

  body { font-size: 12pt; color: #000; }
  .results-container { max-width: 100%; padding: 0; }
  .score-grid { grid-template-columns: repeat(4, 1fr); }
  a { color: #000; text-decoration: none; }
}
