/* ==========================================================================
   INCOME OF HER OWN - COMPLETE FUNNEL STYLESHEET
   Design System & Styling matching Mockup Screenshots
   ========================================================================== */

/* 1. IMPORTS & GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* 2. DESIGN TOKENS & CSS VARIABLES */
:root {
  /* Colors */
  --bg-navy-dark: #080d1a;
  --bg-navy-main: #0c1429;
  --bg-navy-card: #121c38;
  --bg-navy-card-hover: #172346;
  --bg-pink-light: #fff5f8;

  --pink-primary: #ec2671;
  --pink-hover: #d81b60;
  --pink-light: #ff669d;
  --pink-glow: rgba(236, 38, 113, 0.35);
  --pink-border: rgba(236, 38, 113, 0.4);

  --text-white: #ffffff;
  --text-body: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dark: #1e293b;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-script: 'Caveat', cursive, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Shadows & Layout */
  --card-radius: 16px;
  --btn-radius: 50px;
  --box-shadow-card: 0 10px 30px rgba(0, 0, 0, 0.4);
  --box-shadow-pink: 0 10px 25px rgba(236, 38, 113, 0.4);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 3. BASE & RESET STYLES */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background-color: var(--bg-navy-dark);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(236, 38, 113, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(236, 38, 113, 0.06) 0%, transparent 40%);
  color: var(--text-body);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Global Container */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Utility Classes */
.heading-serif {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.25;
}

.text-script {
  font-family: var(--font-script);
  color: var(--pink-primary);
  font-size: 1.8rem;
  line-height: 1.2;
}

.text-pink {
  color: var(--pink-primary) !important;
}

.highlight-pink {
  color: var(--pink-primary);
}

/* 4. BUTTONS & INTERACTIVE ELEMENTS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #f02d77 0%, #d81b60 100%);
  color: var(--text-white);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  padding: 18px 36px;
  border-radius: var(--btn-radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--box-shadow-pink);
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(236, 38, 113, 0.6);
  background: linear-gradient(135deg, #ff3b83 0%, #e02469 100%);
}

.btn-primary:active {
  transform: translateY(0) scale(0.99);
}

.btn-large {
  padding: 22px 48px;
  font-size: 1.25rem;
}

.btn-block {
  width: 100%;
}

/* 5. HEADER & BRANDING */
.site-header {
  padding: 30px 0 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-logo-container {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.brand-logo-svg {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 10px var(--pink-glow));
}

.brand-title {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}

.brand-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* 6. HERO SECTION (SALES PAGE) */
.hero-section {
  padding: 60px 0 80px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content .hero-subtitle-script {
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.hero-content h1 {
  font-size: 3.4rem;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-body);
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-price-tag {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--pink-primary);
  margin-bottom: 24px;
}

.hero-price-tag span {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-subtext {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.hero-subtext svg {
  color: var(--pink-primary);
  flex-shrink: 0;
}

.hero-image-wrapper {
  position: relative;
  text-align: center;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(236, 38, 113, 0.25) 0%, transparent 70%);
  z-index: 0;
  filter: blur(40px);
}

.hero-book-img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  width: 380px;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
  transition: var(--transition);
}

.hero-book-img:hover {
  transform: translateY(-8px) scale(1.02);
}

/* 7. PINK BRUSH STROKE BANNER */
.brush-banner-section {
  padding: 30px 0;
  margin: 40px 0;
}

.brush-banner {
  position: relative;
  background: linear-gradient(135deg, #e02469 0%, #c41857 100%);
  padding: 40px 60px;
  border-radius: 20px;
  text-align: center;
  color: var(--text-white);
  box-shadow: 0 15px 40px rgba(236, 38, 113, 0.3);
  overflow: hidden;
}

.brush-banner::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 120px;
  opacity: 0.15;
  color: white;
}

.brush-banner::after {
  content: '"';
  position: absolute;
  bottom: -60px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 120px;
  opacity: 0.15;
  color: white;
}

.brush-banner-title {
  font-family: var(--font-script);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.brush-banner-text {
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

/* 8. 7-STEP ROADMAP SECTION */
.roadmap-section {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.roadmap-card {
  background: var(--bg-navy-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
  position: relative;
}

.roadmap-card:hover {
  transform: translateY(-6px);
  border-color: var(--pink-border);
  box-shadow: 0 10px 25px rgba(236, 38, 113, 0.2);
  background: var(--bg-navy-card-hover);
}

.roadmap-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--text-white);
  transition: var(--transition);
}

.roadmap-card:hover .roadmap-icon-wrapper {
  border-color: var(--pink-primary);
  color: var(--pink-primary);
}

.step-number-badge {
  background: var(--pink-primary);
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 800;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.roadmap-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
}

/* 9. BY THE END YOU WILL HAVE SECTION */
.outcomes-section {
  padding: 60px 0;
  position: relative;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: center;
}

.outcomes-title {
  font-size: 2.4rem;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
  color: var(--text-body);
}

.check-icon-pink {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--pink-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 4px 10px var(--pink-glow);
}

/* 10. THIS BLUEPRINT IS FOR YOU IF... (LIGHT SECTION) */
.for-you-section {
  padding: 70px 0;
}

.for-you-card {
  background: var(--bg-pink-light);
  color: var(--text-dark);
  border-radius: var(--card-radius);
  padding: 50px 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.for-you-card h2 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.for-you-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.for-you-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.for-you-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #334155;
}

.for-you-item svg {
  color: var(--pink-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.flower-illustration-wrapper {
  text-align: right;
}

.flower-illustration-wrapper img {
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(236, 38, 113, 0.2));
}

/* 11. FOUNDER AMANDA SECTION */
.founder-section {
  padding: 80px 0;
}

.founder-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: center;
  background: var(--bg-navy-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--card-radius);
  padding: 40px;
}

.founder-img-wrapper {
  text-align: center;
}

.founder-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--pink-primary);
  box-shadow: 0 10px 30px var(--pink-glow);
}

.founder-content h3 {
  font-size: 2.2rem;
  margin-bottom: 4px;
}

.founder-role {
  color: var(--pink-primary);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.founder-bio {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 16px;
}

.founder-quote-script {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--pink-primary);
  line-height: 1.2;
  margin-top: 20px;
}

/* 12. BOTTOM BUY BOX & GUARANTEE */
.buy-box-section {
  padding: 40px 0 60px;
}

.buy-box-card {
  background: var(--bg-navy-card);
  border: 2px solid var(--pink-border);
  border-radius: var(--card-radius);
  padding: 30px 40px;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 30px;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.buy-box-img {
  width: 100px;
  height: auto;
  border-radius: 8px;
}

.buy-box-info h4 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-white);
  margin-bottom: 6px;
}

.buy-box-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--pink-primary);
}

.buy-box-price span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.guarantee-section {
  padding: 40px 0 80px;
}

.guarantee-box {
  display: flex;
  align-items: center;
  gap: 30px;
  background: rgba(236, 38, 113, 0.05);
  border: 1px dashed var(--pink-border);
  border-radius: var(--card-radius);
  padding: 30px 40px;
}

.guarantee-badge-graphic {
  width: 90px;
  height: 90px;
  background: var(--pink-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  font-size: 0.75rem;
  line-height: 1.1;
  text-transform: uppercase;
  flex-shrink: 0;
  box-shadow: 0 8px 20px var(--pink-glow);
  padding: 10px;
}

.guarantee-badge-graphic span {
  font-size: 1.1rem;
  color: #fff;
}

.guarantee-text p {
  font-size: 1.05rem;
  color: var(--text-body);
}

.guarantee-text strong {
  color: var(--text-white);
}

/* 13. CHECKOUT / ORDER PAGE SPECIFICS */
.checkout-header-subhead {
  text-align: center;
  padding: 20px 0 40px;
}

.checkout-header-subhead h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-white);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}

.checkout-product-summary {
  padding-right: 20px;
}

.checkout-book-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 24px;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}

.checkout-product-title {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.checkout-product-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.checkout-checklist {
  list-style: none;
  margin-bottom: 30px;
}

.checkout-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 12px;
}

.checkout-checklist li svg {
  color: var(--pink-primary);
}

.checkout-price-card {
  background: var(--bg-navy-card);
  border: 1px solid var(--pink-border);
  border-radius: 12px;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.checkout-price-card .price-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--pink-primary);
}

/* Form Styles */
.checkout-form-card {
  background: var(--bg-navy-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--card-radius);
  padding: 40px;
  box-shadow: var(--box-shadow-card);
}

.form-header-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-header-badge h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  color: var(--text-white);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: var(--bg-navy-main);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--pink-primary);
  box-shadow: 0 0 0 3px var(--pink-glow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.card-brands-row {
  display: flex;
  gap: 6px;
  align-items: center;
}

.card-brand-badge {
  background: #ffffff;
  color: #1e293b;
  font-weight: 800;
  font-size: 0.65rem;
  padding: 3px 6px;
  border-radius: 4px;
}

/* Benefit Cards Bottom Row */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 40px 0 80px;
}

.benefit-card {
  background: var(--bg-navy-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--pink-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--pink-primary);
}

.benefit-card h4 {
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 8px;
}

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

/* 14. THANK YOU PAGE SPECIFICS */
.thankyou-hero {
  text-align: center;
  padding: 50px 0 60px;
}

.thankyou-hero h1 {
  font-size: 3rem;
  margin: 14px 0 20px;
  line-height: 1.2;
}

.thankyou-hero-subtext {
  font-size: 1.2rem;
  color: var(--text-body);
  max-width: 680px;
  margin: 0 auto 30px;
}

.start-here-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.start-step-card {
  background: var(--bg-navy-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  position: relative;
}

.start-step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--pink-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px var(--pink-glow);
}

.start-step-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.next-steps-card {
  background: var(--bg-navy-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--card-radius);
  padding: 40px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  align-items: center;
  margin: 50px 0;
}

.next-steps-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(236, 38, 113, 0.15);
  color: var(--pink-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 15. FOOTER */
.site-footer {
  padding: 50px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  margin-top: 60px;
}

.footer-copy {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 16px;
}

/* 16. RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .roadmap-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-grid, .checkout-grid, .outcomes-grid, .for-you-grid, .founder-card, .buy-box-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .checklist-grid, .for-you-checklist, .start-here-grid, .benefits-grid {
    grid-template-columns: 1fr;
  }

  .founder-img-wrapper {
    margin: 0 auto;
  }

  .buy-box-card {
    justify-items: center;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
  }
}
