:root {
  /* Modern OKLCH color spaces */
  --bg: oklch(100% 0 0);
  --bg2: oklch(98% 0 0);
  --bg3: oklch(95% 0.02 300); /* Soft lavender-ish grey */
  --purple: oklch(27% 0.12 301); /* Majestic purple */
  --purple-lt: oklch(94% 0.03 301);
  --pink: oklch(62% 0.22 350); /* Hot pink */
  --pink-dk: oklch(45% 0.20 350);
  --txt: oklch(12% 0 0);
  --txt2: oklch(35% 0 0);
  --txt3: oklch(55% 0 0);
  
  --border: oklch(88% 0 0);
  --border-lt: oklch(94% 0 0);
  --expo: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 12px;
}

::selection {
  background: var(--pink);
  color: #fff;
}

html {
  scroll-behavior: smooth;
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--txt);
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  overflow-x: hidden;
}

/* Typography trimmings and balancing */
h1, h2, h3 {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.03em;
  text-wrap: balance;
  line-height: 1.15;
}

p {
  text-wrap: pretty;
  line-height: 1.6;
}

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-lt);
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.nav-in {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo-img {
  height: 38px;
  width: auto;
}

/* Buttons and Call to Actions */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--pink);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.95rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(242, 64, 128, 0.25);
  transition: background 300ms var(--expo), transform 200ms, box-shadow 300ms;
}

.btn-primary:hover {
  background: var(--pink-dk);
  box-shadow: 0 6px 20px rgba(242, 64, 128, 0.35);
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-primary svg {
  transition: transform 300ms var(--expo);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

/* ─── HERO ─── */
.hero-sec {
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  background: radial-gradient(circle at 80% 20%, oklch(95% 0.05 320 / 30%), transparent 50%);
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  background: oklch(62% 0.22 350 / 8%);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
}

.hero-h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--purple);
  margin-bottom: 1.5rem;
}

.hero-h1 span {
  color: var(--pink);
  display: block;
}

.hero-desc {
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  color: var(--txt2);
  margin-bottom: 2.5rem;
  max-width: 54ch;
}

.hero-img-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.hero-img-container img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 600ms var(--expo);
}

.hero-img-container:hover img {
  transform: scale(1.03);
}

.badge-floating {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--purple);
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 25px rgba(65, 36, 109, 0.3);
}

.badge-floating .big {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.badge-floating .small {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: 0.2rem;
}

/* Trust Indicators */
.trust-container {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-stars {
  color: #FFB800;
  font-size: 1.25rem;
  font-weight: bold;
}

.trust-desc {
  font-size: 0.85rem;
  color: var(--txt3);
  line-height: 1.4;
}

/* ─── GENERAL SECTIONS ─── */
.sec {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
}

.sec-alt {
  background: var(--bg2);
}

.sec-dark {
  background: var(--purple);
  color: #fff;
}

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

/* ─── STATS ─── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}

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

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--txt2);
  margin-top: 0.5rem;
  max-width: 25ch;
  margin-left: auto;
  margin-right: auto;
}

/* ─── PAIN POINTS ─── */
.section-header {
  max-width: 650px;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--purple);
  margin-top: 0.5rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.pain-card {
  background: #fff;
  border: 1px solid var(--border-lt);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  transition: transform 300ms var(--expo), box-shadow 300ms;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
  border-color: var(--pink);
}

.pain-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 1rem;
}

.pain-card h3 {
  font-size: 1.25rem;
  color: var(--purple);
  margin-bottom: 0.75rem;
}

.pain-card p {
  font-size: 0.95rem;
  color: var(--txt2);
}

/* ─── THE SOLUTION / BENTO ─── */
.bento-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.bento-card {
  background: #fff;
  border: 1px solid var(--border-lt);
  border-radius: 16px;
  padding: 3rem;
  transition: transform 300ms var(--expo);
}

.bento-card:hover {
  transform: scale(1.01);
}

.bento-card.dark {
  background: var(--purple);
  color: #fff;
  border: none;
}

.bento-card.span-2 {
  grid-column: span 2;
}

.bento-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.bento-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.bento-card.dark h3 {
  color: #fff;
}

.bento-card p {
  color: var(--txt2);
  font-size: 1rem;
}

.bento-card.dark p {
  color: rgba(255, 255, 255, 0.8);
}

/* ─── PROCESS PLAN ─── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  position: relative;
  background: var(--bg2);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-lt);
}

.step-badge {
  width: 36px;
  height: 36px;
  background: var(--pink);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.process-step h3 {
  font-size: 1.2rem;
  color: var(--purple);
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--txt2);
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-lt);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.quote-text {
  font-size: 1.05rem;
  color: var(--txt2);
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.quote-text::before {
  content: '“';
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  color: var(--pink);
  opacity: 0.25;
  position: absolute;
  left: -1rem;
  top: -1.5rem;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-lt);
  padding-top: 1.5rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--purple-lt);
  color: var(--purple);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--txt);
}

.author-meta {
  font-size: 0.8rem;
  color: var(--txt3);
}

/* ─── FORM & OFFER ─── */
.offer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

.offer-info h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

.offer-list svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--pink);
}

.scarcity-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  padding: 0.5rem 1rem;
  border-radius: 100px;
}

/* Form Container Card */
.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  color: var(--txt);
}

.form-card h3 {
  font-size: 1.5rem;
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.form-card .subtitle {
  font-size: 0.9rem;
  color: var(--txt3);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--txt2);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  color: var(--txt);
  outline: none;
  box-sizing: border-box;
  transition: border-color 200ms;
}

.form-input:focus {
  border-color: var(--pink);
  background: #fff;
}

/* Modern native :user-invalid for validating after interaction */
.form-input:user-invalid {
  border-color: #E11D48;
  background: oklch(95% 0.02 20 / 3%);
}

.form-input:user-invalid + .error-msg {
  display: block;
}

.error-msg {
  display: none;
  font-size: 0.75rem;
  color: #E11D48;
  margin-top: 0.25rem;
}

/* Phone Selector with native POPOVER API */
.phone-box {
  display: flex;
  gap: 0.5rem;
}

.popover-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.popover-trigger:hover {
  background: var(--border-lt);
}

/* Popover Element styles */
.popover-dropdown {
  border: 1px solid var(--border-lt);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  width: 320px;
  max-height: 300px;
  overflow: hidden;
  padding: 0.5rem;
  margin-top: 8px;
}

/* Anchor popover natively or position relative */
.popover-dropdown:popover-open {
  display: flex;
  flex-direction: column;
}

.search-pdd {
  padding: 0.5rem;
}

.search-pdd input {
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
}

.search-pdd input:focus {
  border-color: var(--pink);
}

.pdd-scroll {
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 0.5rem;
}

.pdd-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--txt);
  transition: background 150ms;
}

.pdd-item:hover {
  background: var(--bg2);
}

.pdd-item.active {
  background: var(--purple-lt);
  font-weight: 600;
}

.pdd-item .fi {
  width: 22px;
  height: 16px;
  border-radius: 2px;
}

.pdd-item .dial {
  margin-left: auto;
  color: var(--txt3);
  font-weight: 600;
}

/* Scarcity Bar */
.scarcity-bar-container {
  background: #FFF0F5;
  border: 1.5px dashed rgba(242,64,128,0.25);
  border-radius: var(--radius);
  padding: 1rem;
  margin: 1.5rem 0;
}

.scarcity-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pink-dk);
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
}

.scarcity-bar {
  height: 8px;
  background: #F5D0DC;
  border-radius: 4px;
  overflow: hidden;
}

.scarcity-fill {
  height: 100%;
  width: 80%;
  background: var(--pink);
  border-radius: 4px;
  animation: pulseBar 2s infinite ease-in-out;
}

@keyframes pulseBar {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.btn-submit {
  width: 100%;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 1.1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(242, 64, 128, 0.25);
  transition: background 300ms var(--expo), transform 200ms;
}

.btn-submit:hover {
  background: var(--pink-dk);
}

.btn-submit:active {
  transform: translateY(1px);
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-lt);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}

.faq-q {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple);
}

.faq-icon-box {
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 300ms var(--expo), border-color 300ms, background 300ms;
}

.faq-icon-box svg {
  transition: transform 300ms var(--expo);
}

/* Smooth Accordion with starting-style */
.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 350ms var(--expo), opacity 350ms var(--expo);
  opacity: 0;
}

.faq-answer-inner {
  padding-bottom: 2rem;
  color: var(--txt2);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* Open states */
.faq-item.active .faq-answer {
  height: auto;
  opacity: 1;
}

@starting-style {
  .faq-item.active .faq-answer {
    height: 0;
    opacity: 0;
  }
}

.faq-item.active .faq-icon-box {
  transform: rotate(45deg);
  background: var(--pink);
  border-color: var(--pink);
}

.faq-item.active .faq-icon-box svg {
  color: #fff;
  transform: rotate(45deg);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border-lt);
  padding: 4rem 1.5rem;
  text-align: center;
}

.footer p {
  font-size: 0.85rem;
  color: var(--txt3);
}

/* ─── INTERSECTION REVEALS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms var(--expo), transform 800ms var(--expo);
}

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

/* ─── CALCULATOR ─── */
.calc-container {
  background: var(--bg2);
  border: 1px solid var(--border-lt);
  border-radius: 20px;
  padding: 3rem;
  max-width: 800px;
  margin: 3rem auto 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.slider-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.slider-header span:last-child {
  color: var(--pink);
}

.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  outline: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pink);
  cursor: pointer;
  transition: transform 150ms;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-results {
  background: var(--purple);
  color: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.result-val {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
}

.result-lbl {
  font-size: 0.85rem;
  opacity: 0.8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── OBJECTION TABS ─── */
.objection-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.tab-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-lt);
  padding-bottom: 0.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: none;
  border: none;
  padding: 0.75rem 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--txt3);
  cursor: pointer;
  border-radius: 8px;
  transition: all 200ms;
}

.tab-btn:hover {
  color: var(--purple);
  background: var(--bg2);
}

.tab-btn.active {
  color: #fff;
  background: var(--purple);
}

.tab-content-panel {
  background: #fff;
  border: 1px solid var(--border-lt);
  border-radius: 16px;
  padding: 2.5rem;
  display: none;
}

.tab-content-panel.active {
  display: block;
}

.tab-content-panel h3 {
  font-size: 1.35rem;
  color: var(--purple);
  margin-bottom: 1rem;
}

.tab-content-panel p {
  color: var(--txt2);
  margin-bottom: 1.5rem;
}

.co-evidence {
  background: var(--purple-lt);
  border-left: 4px solid var(--pink);
  padding: 1.25rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  color: var(--purple);
  font-weight: 500;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pain-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-card.span-2 {
    grid-column: auto;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

