@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;1,600;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Alex+Brush&display=swap');

/* ==========================================
   DESIGN TOKENS & CUSTOM PROPERTIES
   ========================================== */
:root {
  /* Color System */
  --color-bg-cream: #FAF7F2;      /* Elegant warm linen cream */
  --color-bg-white: #FFFFFF;      /* pure white for cards */
  --color-text-dark: #2C2520;     /* Rich charcoal-brown (primary text) */
  --color-text-muted: #7A7067;    /* Muted warm grey-brown (secondary text) */
  --color-gold-accent: #9A7E50;   /* Muted gold-bronze accent */
  --color-gold-dark: #7D643B;     /* High-contrast darker gold for hover states */
  --color-gold-light: #F2EFE8;    /* Soft warm sand for borders and accents */
  --color-gold-bg: #FDFBF8;       /* Very soft cream-gold for cards */
  --color-form-dark: #332B23;     /* Beautiful deep charcoal-brown for high-contrast form cards */
  --color-form-bg: #FFFFFF;       /* Input backgrounds */
  --color-form-border: #E5E1D8;   /* Input borders */
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #A58B63 0%, #7D643B 100%);
  --gradient-dark-gold: linear-gradient(135deg, #44392E 0%, #2A2119 100%);
  --gradient-luxury-bg: linear-gradient(180deg, #FAF7F2 0%, #F5EFEB 100%);
  
  /* Fonts */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-script: 'Alex Brush', cursive;
  
  /* Shadows & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-subtle: 0 4px 20px rgba(44, 37, 32, 0.03);
  --shadow-medium: 0 10px 30px rgba(44, 37, 32, 0.06);
  --shadow-premium: 0 20px 50px rgba(44, 37, 32, 0.1);
  --border-premium: 1px solid rgba(154, 126, 80, 0.15);
  
  /* Transitions */
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   RESET & BASE STYLING
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--color-text-dark);
  line-height: 1.2;
}

p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

button, input, select, textarea {
  font-family: inherit;
}

/* ==========================================
   UTILITY & COMPONENT CLASSES
   ========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .section-padding {
    padding: 120px 0;
  }
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-subtle);
}

.btn-primary {
  background-color: var(--color-gold-accent);
  color: var(--color-bg-white);
}
.btn-primary:hover {
  background-color: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-gold-accent);
  border: 1.5px solid var(--color-gold-accent);
}
.btn-outline:hover {
  background-color: var(--color-gold-accent);
  color: var(--color-bg-white);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--color-text-dark);
  color: var(--color-bg-white);
}
.btn-secondary:hover {
  background-color: #000000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-form {
  background-color: var(--color-text-dark);
  color: #FFE6A3; /* High contrast yellow-gold text for dark card submit */
  width: 100%;
  font-weight: 700;
  padding: 16px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-form:hover {
  background-color: #1A1512;
  color: #FFFFFF;
}

/* Accent labels */
.badge-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold-accent);
  display: block;
  margin-bottom: 12px;
}

.highlight-serif {
  color: var(--color-gold-accent);
}

.highlight-script {
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--color-gold-accent);
  display: inline-block;
  line-height: 0.6;
  margin-top: 10px;
}

/* Glass Header */
.header-glass {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(154, 126, 80, 0.08);
  padding: 12px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-brand-info {
  display: flex;
  flex-direction: column;
  line-height: 0.5; /* Tight line height for handwriting overlap */
  margin-top: 2px;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-gold-accent); /* Terracotta-gold color matching the brand logo */
  letter-spacing: 0.12em; /* Wide elegant letter spacing */
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-subtext {
  font-family: var(--font-script); /* Cursive signature script font (Alex Brush) */
  font-size: 2.2rem; /* Large elegant handwriting text */
  color: var(--color-gold-accent);
  text-transform: none;
  letter-spacing: normal;
  display: block;
  margin-top: 10px; /* Slight offset for perfect signature alignment */
  white-space: nowrap;
}

.logo-tm {
  font-family: var(--font-sans);
  font-size: 0.35em;
  vertical-align: super;
  margin-left: 6px; /* Increased from 2px to give breathing room from cursive font */
  letter-spacing: normal;
}

.header-btn {
  padding: 8px 18px;
  font-size: 0.75rem;
  white-space: nowrap;
}

.desktop-btn-text {
  display: inline;
}

/* Responsive Header Refinements */
@media (max-width: 480px) {
  .logo-wrapper {
    gap: 8px;
  }
  .logo-wrapper svg {
    width: 28px;
    height: 28px;
  }
  .logo-text {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
  }
  .logo-subtext {
    font-size: 1.65rem;
    margin-top: 12px; /* Increased from 6px to prevent cursive from covering IRIS ROMERO */
  }
  .header-btn {
    padding: 6px 12px;
    font-size: 0.7rem;
  }
  .desktop-btn-text {
    display: none;
  }
}

@media (max-width: 360px) {
  .logo-wrapper {
    gap: 6px;
  }
  .logo-wrapper svg {
    width: 24px;
    height: 24px;
  }
  .logo-text {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
  }
  .logo-subtext {
    font-size: 1.45rem;
    margin-top: 10px; /* Increased from 5px for perfect overlap scaling */
  }
  .header-btn {
    padding: 5px 10px;
    font-size: 0.65rem;
  }
}

/* Top bar banner */
.top-banner {
  background-color: #332B23;
  color: #FFE6A3;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: center;
  padding: 6px 0;
  font-weight: 600;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  padding: 60px 0 80px;
  background: var(--gradient-luxury-bg);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 0.9fr 1.25fr 1fr; /* 3-Column Desktop Grid: Far Left, Center, Far Right */
    align-items: flex-start;
  }
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 3.2rem;
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-title span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.hero-description {
  font-size: 1.05rem;
  margin-bottom: 32px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
@media (min-width: 480px) {
  .hero-cta-wrapper {
    flex-direction: row;
    align-items: center;
  }
}

.trust-line {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  max-width: 250px;
  line-height: 1.4;
}

/* Small grid pillars under hero description */
.hero-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
@media (min-width: 640px) {
  .hero-pillars {
    grid-template-columns: repeat(4, 1fr); /* 4 columns back under left text */
    gap: 16px;
  }
}

.hero-pillar-card {
  background-color: var(--color-bg-white);
  padding: 14px 12px;
  border-radius: 6px;
  border: 1px solid rgba(154, 126, 80, 0.15);
  border-left: 3.5px solid var(--color-gold-accent); /* Elegant left border to make them pop! */
  box-shadow: var(--shadow-subtle);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}
@media (min-width: 768px) {
  .hero-pillar-card {
    padding: 18px 16px;
  }
}

.hero-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-top-color: rgba(154, 126, 80, 0.3);
  border-right-color: rgba(154, 126, 80, 0.3);
  border-bottom-color: rgba(154, 126, 80, 0.3);
}

.hero-pillar-card h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .hero-pillar-card h4 {
    font-size: 0.9rem;
  }
}

.hero-pillar-card p {
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--color-text-muted);
}
@media (min-width: 768px) {
  .hero-pillar-card p {
    font-size: 0.75rem;
  }
}

/* Hero Left Column: Far Left Large Portrait Card */
.hero-left-portrait-card {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2.5px solid var(--color-gold-accent); /* Beautiful premium gold-bronze border */
  box-shadow: var(--shadow-premium);
  background-color: var(--color-bg-white);
}

.hero-left-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; /* Beautiful full vertical portrait crop */
  display: block;
}

/* Hero Right: Luxury Visual Card (Side-by-side Grid on Desktop) */
.hero-visual-card {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  border: var(--border-premium);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr; /* Stack on mobile */
  gap: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .hero-visual-card {
    grid-template-columns: 1.05fr 1fr; /* Portrait on Left (51%), Form/Circle on Right (49%) */
  }
}

/* Left side of the card: Full vertical portrait of Iris Romero */
.hero-visual-portrait-side {
  width: 100%;
  height: 100%;
  min-height: 380px;
}
@media (min-width: 768px) {
  .hero-visual-portrait-side {
    min-height: 520px;
  }
}

.hero-visual-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Right side of the card: Circular Profile and Netlify Signup Form */
.hero-visual-form-side {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-bg-white);
}
@media (min-width: 768px) {
  .hero-visual-form-side {
    padding: 32px 24px;
  }
}

.hero-card-header {
  text-align: center;
  margin-bottom: 20px;
}

/* Luxury circular portrait of Iris */
.hero-portrait-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px; /* Centered horizontally on the right side */
  border: 2.5px solid var(--color-gold-accent);
  box-shadow: var(--shadow-medium);
  background-color: var(--color-gold-light);
  display: block;
  position: relative;
}

.hero-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%; /* Moves her face down slightly to center it perfectly inside the circle */
  transform: scale(1.15);
  display: block;
}

/* Large rectangular hero portrait of Iris sitting at her desk */
.hero-portrait-large-container {
  width: 100%;
  height: 280px; /* Increased height to showcase her beautiful cropped portrait */
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(154, 126, 80, 0.15);
  box-shadow: var(--shadow-subtle);
  position: relative;
}

.hero-portrait-large-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; /* Fully displays the cropped portrait */
  display: block;
}

.hero-card-brandname {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}

.hero-card-brandscript {
  font-family: var(--font-script);
  font-size: 2.8rem;
  color: var(--color-gold-accent);
  line-height: 0.4;
  margin-top: 12px;
  display: block;
}

.hero-card-badge {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 700;
  margin-top: 10px;
  display: block;
}

.hero-card-mission {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--color-text-muted);
  margin-top: 8px;
}

/* Beautiful nested form box */
.hero-form-box {
  background-color: var(--color-form-dark);
  border-radius: var(--radius-md);
  padding: 24px;
  color: var(--color-bg-white);
}

.hero-form-box h3 {
  font-size: 1.4rem;
  color: #FFFFFF;
  margin-bottom: 8px;
  text-align: center;
}

.hero-form-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  text-align: center;
  margin-bottom: 20px;
}

/* Custom form elements */
.form-group {
  margin-bottom: 16px;
  position: relative;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-form-border);
  background-color: var(--color-bg-white);
  color: var(--color-text-dark);
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-gold-accent);
  box-shadow: 0 0 0 3px rgba(154, 126, 80, 0.15);
}

.hero-form-box .form-input {
  border: 1px solid transparent;
}
.hero-form-box .form-input:focus {
  border-color: var(--color-gold-accent);
}

/* ==========================================
   PROBLEM SECTION (THE UPGRADE)
   ========================================== */
.problem-section {
  background-color: var(--color-bg-white);
}

.problem-header {
  max-width: 750px;
  margin: 0 auto 60px;
}

.problem-header h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .problem-header h2 {
    font-size: 3.4rem;
  }
}

.problem-header p {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* 6 Grid Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  background-color: var(--color-bg-cream);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid rgba(154, 126, 80, 0.06);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(154, 126, 80, 0.2);
}

.pillar-card-icon-wrapper {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(154, 126, 80, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pillar-card-icon-wrapper svg {
  width: 22px;
  height: 22px;
  fill: var(--color-gold-accent);
}

.pillar-card h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text-dark);
}

.pillar-card p {
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ==========================================
   METHOD SECTION
   ========================================== */
.method-section {
  background: var(--color-bg-cream);
  overflow: hidden;
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 1024px) {
  .method-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

.method-content {
  max-width: 550px;
}

.method-title {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .method-title {
    font-size: 3.6rem;
  }
}

.method-description {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

.method-quote {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--color-gold-accent);
  padding-left: 20px;
  border-left: 2.5px solid var(--color-gold-accent);
  margin-bottom: 20px;
}

/* Method Steps Right Card */
.method-steps-card {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-medium);
  border: var(--border-premium);
}

.method-step-row {
  display: flex;
  gap: 24px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-gold-light);
}

.method-step-row:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.method-step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-gold-accent);
  color: var(--color-bg-white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-step-info h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text-dark);
}

.method-step-info p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Interactive Life Wheel Visualizer */
.life-wheel-container {
  margin-top: 40px;
  padding: 24px;
  background-color: var(--color-bg-cream);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-gold-light);
  text-align: center;
}

.life-wheel-container h4 {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-sans);
  margin-bottom: 16px;
  color: var(--color-text-dark);
}

.life-wheel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 480px) {
  .life-wheel-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.life-wheel-btn {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-gold-light);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}
.life-wheel-btn:hover, .life-wheel-btn.active {
  background-color: var(--color-gold-accent);
  color: var(--color-bg-white);
  border-color: var(--color-gold-accent);
}

.life-wheel-display {
  margin-top: 20px;
  padding: 16px;
  background-color: var(--color-bg-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-gold-light);
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.life-wheel-display p {
  font-size: 0.85rem;
  line-height: 1.4;
  font-style: italic;
}

/* ==========================================
   LEAD MAGNET SECTION (DARK GRADIENT)
   ========================================== */
.lead-magnet-section {
  background: var(--gradient-dark-gold);
  color: var(--color-bg-white);
  position: relative;
  overflow: hidden;
}

.lead-magnet-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(165,139,99,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.lead-magnet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 1024px) {
  .lead-magnet-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.lead-magnet-content {
  max-width: 580px;
}

.lead-magnet-content .badge-label {
  color: #FFE6A3;
}

.lead-magnet-content h2 {
  font-size: 2.8rem;
  color: #FFFFFF;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .lead-magnet-content h2 {
    font-size: 3.4rem;
  }
}

.lead-magnet-content p.subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.lead-magnet-list {
  list-style: none;
  margin-bottom: 40px;
}

.lead-magnet-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.lead-magnet-list li::before {
  content: "✓";
  color: #FFE6A3;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Scorecard Mockup Card */
.scorecard-mockup-card {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-premium);
  border: 1.5px solid rgba(165,139,99,0.18);
  position: relative;
  transform: rotate(2deg);
  transition: var(--transition-smooth);
}
@media (min-width: 768px) {
  .scorecard-mockup-card:hover {
    transform: rotate(0) scale(1.03);
  }
}

.mockup-header {
  text-align: center;
  border-bottom: 1px solid var(--color-gold-light);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.mockup-brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.mockup-brand span {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--color-gold-accent);
  line-height: 0.4;
  display: block;
  margin-top: 6px;
}

.mockup-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-top: 12px;
}

.mockup-subtitle {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: 4px;
}

.mockup-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.mockup-bar-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mockup-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-dark);
  letter-spacing: 0.05em;
}

.mockup-bar-track {
  height: 6px;
  background-color: var(--color-gold-light);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.mockup-bar-fill {
  height: 100%;
  background-color: var(--color-gold-accent);
  border-radius: 10px;
}

.mockup-quote {
  font-family: var(--font-script);
  font-size: 2.4rem;
  text-align: center;
  color: var(--color-gold-accent);
  line-height: 1;
}

/* ==========================================
   QUIZ & LEAD CAPTURE SECTION
   ========================================== */
.quiz-section {
  background: var(--color-bg-cream);
  position: relative;
}

.quiz-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Multi-step Quiz Card */
.quiz-card {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  border: var(--border-premium);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.quiz-header {
  background-color: var(--color-bg-cream);
  padding: 30px 40px;
  border-bottom: 1px solid var(--color-gold-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quiz-header-title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.quiz-progress-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 50%;
  max-width: 250px;
}

.quiz-progress-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold-accent);
  white-space: nowrap;
}

.quiz-progress-bar {
  height: 6px;
  background-color: var(--color-gold-light);
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background-color: var(--color-gold-accent);
  width: 20%;
  border-radius: 10px;
  transition: width 0.4s ease;
}

/* Step screens */
.quiz-step {
  padding: 40px;
  display: none; /* Controlled by JS */
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

.quiz-question {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .quiz-question {
    font-size: 2.2rem;
  }
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.quiz-option-label {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-gold-light);
  background-color: var(--color-bg-white);
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
}

.quiz-option-label:hover {
  border-color: var(--color-gold-accent);
  background-color: var(--color-gold-bg);
}

.quiz-option-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.quiz-custom-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.quiz-option-input:checked + .quiz-custom-radio {
  border-color: var(--color-gold-accent);
  background-color: var(--color-gold-accent);
}

.quiz-option-input:checked + .quiz-custom-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--color-bg-white);
  border-radius: 50%;
}

.quiz-option-label.checked {
  border-color: var(--color-gold-accent);
  background-color: var(--color-gold-bg);
  box-shadow: 0 4px 12px rgba(154, 126, 80, 0.06);
}

.quiz-option-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-dark);
}

.quiz-footer-nav {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--color-gold-light);
  padding-top: 24px;
}

/* Quiz Lead Capture Form Step */
.quiz-lead-step {
  padding: 40px;
  display: none;
}
.quiz-lead-step.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

.quiz-lead-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .quiz-lead-container {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.quiz-lead-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quiz-lead-info h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.quiz-lead-info p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.quiz-lead-form-box {
  background-color: var(--color-form-dark);
  padding: 32px;
  border-radius: var(--radius-md);
  color: var(--color-bg-white);
}

.quiz-lead-form-box h4 {
  color: #FFFFFF;
  font-size: 1.3rem;
  margin-bottom: 8px;
  text-align: center;
}

.quiz-lead-form-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  text-align: center;
  margin-bottom: 24px;
}

/* Quiz Dynamic Results Screen */
.quiz-result-step {
  padding: 48px;
  display: none;
  text-align: center;
}
.quiz-result-step.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

.result-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 30px;
  background-color: rgba(154, 126, 80, 0.1);
  color: var(--color-gold-accent);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.result-title {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.result-status {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-gold-accent);
  margin-bottom: 24px;
}

.result-description {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.result-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 480px) {
  .result-actions {
    flex-direction: row;
  }
}

/* ==========================================
   UPSELL / CALL BOOKING SECTION
   ========================================== */
.upsell-section {
  background-color: var(--color-bg-white);
  position: relative;
}

.upsell-card {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-medium);
  border: var(--border-premium);
  display: grid;
  grid-template-columns: 1fr; /* Stack on mobile */
  gap: 32px;
}
@media (min-width: 768px) {
  .upsell-card {
    grid-template-columns: 1.25fr 0.75fr; /* Side-by-side on desktop */
    text-align: left;
    align-items: center;
    padding: 60px 48px;
  }
}

.upsell-info-side {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .upsell-info-side {
    align-items: flex-start;
  }
}

.upsell-qr-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background-color: var(--color-bg-cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gold-light);
}

.upsell-qr-wrapper {
  width: 180px;
  height: 180px;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-gold-accent); /* A nice premium gold border around the QR code */
  box-shadow: var(--shadow-subtle);
  margin-bottom: 12px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.upsell-qr-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Centers and displays the borderless QR code perfectly */
  display: block;
}

.upsell-qr-caption {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-gold-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

.upsell-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.upsell-logo > span {
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--color-gold-accent);
  line-height: normal; /* Changed to normal so vertical-align: super on TM functions correctly */
  display: block;
  margin-top: -12px; /* Pulls cursive Lifestyle closer to IRIS ROMERO text */
  margin-bottom: 20px;
  white-space: nowrap; /* Prevent TM from wrapping to a new line underneath Lifestyle */
}

.upsell-card h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .upsell-card h2 {
    font-size: 3rem;
  }
}

.upsell-card p {
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .upsell-card p {
    margin: 0 0 36px 0;
  }
}

/* ==========================================
   FOOTER & COMPLIANCE
   ========================================== */
.footer {
  background-color: var(--color-bg-cream);
  padding: 60px 0 40px;
  border-top: 1px solid var(--color-gold-light);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.footer-logo > span {
  font-family: var(--font-script);
  font-size: 2.4rem;
  color: var(--color-gold-accent);
  line-height: normal; /* Changed to normal so vertical-align: super on TM functions correctly */
  display: block;
  margin-top: -8px; /* Pulls cursive Lifestyle closer to IRIS ROMERO text */
  white-space: nowrap; /* Prevent TM wrapping */
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}
.footer-links a:hover {
  color: var(--color-gold-accent);
}

.footer-disclaimer {
  max-width: 900px;
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-gold-light);
  padding-top: 24px;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* ==========================================
   KEYFRAME ANIMATIONS
   ========================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

/* Scroll reveal helper (applied via JS) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
