.elementor-1799 .elementor-element.elementor-element-01adca0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --plum: #3D1A4E;
  --plum-light: #5C2D72;
  --plum-deep: #25103A;
  --terra: #E2007F;
  --terra-light: #FF65BC;
  --gold: #E2007F;
  --gold-pale: #FF65BC;
  --cream: #FAF6F0;
  --white: #FFFFFF;
  --charcoal: #1A1A1A;
  --mid: #6B6B6B;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--charcoal); overflow-x: hidden; }

/* ── NAV ── */
nav#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: transparent;
  transition: background 0.4s, backdrop-filter 0.4s;
}
nav#mainNav.scrolled { background: rgba(61,26,78,0.96); backdrop-filter: blur(12px); }
.nav-logo { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--white); letter-spacing: 0.02em; text-decoration: none; flex-shrink: 0; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 400; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--terra) !important; color: var(--white) !important; padding: 0.55rem 1.4rem !important; border-radius: 2rem !important; font-weight: 500 !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer { display: none; position: fixed; inset: 0; z-index: 190; background: var(--plum-deep); flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.nav-drawer.open { display: flex; }
.nav-drawer a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 1.3rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 300; transition: color 0.2s; }
.nav-drawer a:hover { color: var(--gold); }
.nav-drawer .nav-cta { background: var(--terra); color: var(--white) !important; padding: 0.8rem 2rem; border-radius: 2rem; font-size: 1rem !important; }

/* ── PAGE HERO ── */
.page-hero {
  position: relative; background: var(--plum-deep); overflow: hidden;
  padding: 10rem 2rem 6rem; text-align: center;
}
.page-hero::before {
  content: 'Learn';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-size: 22vw; font-weight: 300;
  color: rgba(255,255,255,0.03); white-space: nowrap; pointer-events: none; line-height: 1;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.breadcrumb { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.4rem; }
.breadcrumb a { color: var(--terra-light); text-decoration: none; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 300; line-height: 1.1; color: var(--white); margin-bottom: 1.4rem; }
.page-hero h1 em { font-style: italic; color: var(--terra-light); }
.page-hero p { font-size: 1.05rem; line-height: 1.85; color: rgba(255,255,255,0.7); font-weight: 300; max-width: 580px; margin: 0 auto 2.4rem; }
.hero-pills { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.hero-pill { border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.65); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 2rem; }

/* ── STATS BAR ── */
.stats-bar { background: var(--plum); padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 2.2rem 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--gold); line-height: 1; display: block; margin-bottom: 0.4rem; }
.stat-label { font-size: 0.72rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.65); text-transform: uppercase; }

/* ── SECTION COMMONS ── */
section { padding: 5rem 2rem; }
.section-label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra); font-weight: 500; margin-bottom: 1rem; display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 300; line-height: 1.15; color: var(--plum-deep); margin-bottom: 1.4rem; }
.section-title em { font-style: italic; color: var(--terra); }
.section-body { font-size: 1rem; line-height: 1.85; color: var(--mid); font-weight: 300; }
.btn-primary { background: var(--terra); color: var(--white); padding: 0.9rem 2.4rem; border-radius: 2rem; font-size: 0.88rem; font-weight: 500; letter-spacing: 0.06em; text-decoration: none; text-transform: uppercase; transition: transform 0.2s, background 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--terra-light); transform: translateY(-2px); }
.btn-outline { border: 1.5px solid var(--plum); color: var(--plum); padding: 0.9rem 2.4rem; border-radius: 2rem; font-size: 0.88rem; font-weight: 500; letter-spacing: 0.06em; text-decoration: none; text-transform: uppercase; transition: border-color 0.2s, background 0.2s; display: inline-block; }
.btn-outline:hover { border-color: var(--terra); color: var(--terra); }
.btn-text { color: var(--plum); font-weight: 500; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border-bottom: 1.5px solid var(--terra); padding-bottom: 2px; transition: color 0.2s; }
.btn-text:hover { color: var(--terra); }

/* ── INTRO SPLIT ── */
.intro-split { background: var(--cream); }
.intro-wrap { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.intro-image { position: relative; }
.intro-img-main { width: 100%; height: 500px; object-fit: cover; border-radius: 2px; display: block; }
.intro-badge {
  position: absolute; bottom: -2rem; right: -2rem;
  background: var(--terra); color: var(--white);
  padding: 1.8rem 2rem; border-radius: 2px; text-align: center;
  font-family: var(--font-display);
}
.intro-badge strong { display: block; font-size: 2.4rem; font-weight: 300; line-height: 1; }
.intro-badge span { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }
.intro-text { padding: 1rem 0; }
.intro-text blockquote {
  border-left: 3px solid var(--gold); padding: 1rem 1.4rem; margin: 2rem 0;
  font-family: var(--font-display); font-size: 1.3rem; font-style: italic;
  line-height: 1.5; color: var(--plum);
}

/* ── 8 PILLARS ── */
.pillars { background: var(--plum-deep); }
.pillars-header { max-width: 1200px; margin: 0 auto 4rem; text-align: center; }
.pillars-header .section-title { color: var(--white); }
.pillars-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5px; background: rgba(255,255,255,0.08); }
.pillar-card {
  background: var(--plum-deep); padding: 2.4rem 2rem;
  transition: background 0.3s; position: relative; overflow: hidden;
  cursor: default;
}
.pillar-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--terra); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.pillar-card:hover { background: rgba(92,45,114,0.5); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 300; color: rgba(255,255,255,0.08); line-height: 1; margin-bottom: 1rem; }
.pillar-icon { font-size: 1.6rem; margin-bottom: 1rem; }
.pillar-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; color: var(--white); margin-bottom: 0.7rem; line-height: 1.25; }
.pillar-card p { font-size: 0.83rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.pillar-modules { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terra-light); margin-top: 1rem; }

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--white); }
.how-wrap { max-width: 1200px; margin: 0 auto; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 3rem; }
.how-step { text-align: center; padding: 2.5rem 1.8rem; position: relative; }
.how-step::after { content: '→'; position: absolute; right: -1.5rem; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: rgba(61,26,78,0.15); }
.how-step:last-child::after { display: none; }
.step-circle { width: 72px; height: 72px; border-radius: 50%; background: var(--plum); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-family: var(--font-display); font-size: 1.8rem; font-weight: 300; color: var(--terra-light); }
.how-step h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: var(--plum-deep); margin-bottom: 0.8rem; }
.how-step p { font-size: 0.88rem; line-height: 1.75; color: var(--mid); }

/* ── WHY SECTION ── */
.why-section { background: var(--cream); }
.why-wrap { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-list { margin-top: 2rem; }
.why-item { display: flex; gap: 1.2rem; padding: 1.5rem 0; border-bottom: 1px solid rgba(61,26,78,0.1); }
.why-item:last-child { border-bottom: none; }
.why-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--terra); flex-shrink: 0; margin-top: 0.5rem; }
.why-item-text h4 { font-size: 0.95rem; font-weight: 500; color: var(--plum); margin-bottom: 0.3rem; }
.why-item-text p { font-size: 0.86rem; color: var(--mid); line-height: 1.7; }
.why-visual { position: relative; }
.why-img { width: 100%; height: 480px; object-fit: cover; border-radius: 2px; display: block; }
.why-quote-card {
  position: absolute; bottom: -2rem; left: -2rem;
  background: var(--plum); color: var(--white); padding: 2rem 1.8rem;
  max-width: 280px; border-radius: 2px;
}
.why-quote-card p { font-family: var(--font-display); font-size: 1.1rem; font-style: italic; line-height: 1.5; }
.why-quote-card span { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terra-light); margin-top: 0.8rem; }

/* ── FAQ ── */
.faq { background: var(--white); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-item { border-bottom: 1px solid rgba(61,26,78,0.12); padding: 1.4rem 0; }
.faq-q { font-size: 1rem; font-weight: 500; color: var(--plum-deep); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q span { font-size: 1.2rem; color: var(--terra); transition: transform 0.3s; flex-shrink: 0; }
.faq-a { font-size: 0.9rem; line-height: 1.8; color: var(--mid); margin-top: 1rem; max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-item.open .faq-q span { transform: rotate(45deg); }

/* ── CTA FULL ── */
.cta-full { background: var(--plum); padding: 7rem 2rem; text-align: center; position: relative; overflow: hidden; }
.cta-full::before { content: 'FoundHers'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: var(--font-display); font-size: 22vw; font-weight: 300; color: rgba(255,255,255,0.04); white-space: nowrap; pointer-events: none; }
.cta-full .section-label { color: rgba(255,101,188,0.7); }
.cta-full .section-title { color: var(--white); max-width: 720px; margin: 0 auto 1.4rem; }
.cta-full .section-body { color: rgba(255,255,255,0.65); margin: 0 auto 3rem; max-width: 560px; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-gold { background: var(--gold); color: var(--white); padding: 1rem 2.8rem; border-radius: 2rem; font-size: 0.88rem; font-weight: 500; letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase; transition: transform 0.2s, background 0.2s; display: inline-block; }
.btn-gold:hover { transform: translateY(-2px); background: var(--terra-light); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,0.5); color: var(--white); padding: 1rem 2.8rem; border-radius: 2rem; font-size: 0.88rem; font-weight: 500; letter-spacing: 0.06em; text-decoration: none; text-transform: uppercase; transition: border-color 0.2s; display: inline-block; }
.btn-outline-white:hover { border-color: var(--terra-light); }

/* ── FOOTER ── */
footer { background: var(--plum-deep); color: rgba(255,255,255,0.7); padding: 5rem 2rem 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; }
.footer-brand .nav-logo { display: block; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.55); margin-bottom: 1.6rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-icon { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.social-icon:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }
.footer-col a { display: block; font-size: 0.86rem; color: rgba(255,255,255,0.55); text-decoration: none; margin-bottom: 0.7rem; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-contact { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* ── SCROLL ANIMATIONS ── */
.fh-animate { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fh-animate.fh-visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav#mainNav { padding: 1.2rem 2rem; }
  .intro-wrap { gap: 3.5rem; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .why-wrap { gap: 3rem; }
  .how-steps { gap: 1.5rem; }
}
@media (max-width: 768px) {
  nav#mainNav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; z-index: 210; position: relative; }
  section { padding: 4rem 1.4rem; }
  .page-hero { padding: 8rem 1.4rem 4rem; }
  .intro-wrap { grid-template-columns: 1fr; gap: 3.5rem; }
  .intro-badge { right: 0; bottom: -1.5rem; }
  .intro-img-main { height: 360px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 1px; }
  .how-steps { grid-template-columns: 1fr; }
  .how-step::after { display: none; }
  .why-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .why-img { height: 320px; }
  .why-quote-card { left: 0; bottom: -1.5rem; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-gold, .btn-outline-white { width: 100%; max-width: 280px; text-align: center; }
}
@media (max-width: 480px) {
  .hero-pills { flex-direction: column; align-items: center; }
}/* End custom CSS */