/* ═══════════════════════════════════════════════════════════════
   Csakra Landing Page — landing.css
   Belső Erő Tréning Program
   ═══════════════════════════════════════════════════════════════ */

@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&family=Nunito:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Variables ──────────────────────────────────────────────── */
.lp-page {
  --lp-purple-dark:  #2D0052;
  --lp-purple:       #5B0FA8;
  --lp-purple-mid:   #7B2CBF;
  --lp-purple-light: #9D4EDD;
  --lp-gold:         #F59E0B;
  --lp-gold-light:   #FCD34D;
  --lp-gold-dark:    #D97706;
  --lp-cream:        #FDF8F0;
  --lp-white:        #FFFFFF;
  --lp-text-dark:    #1F0A3C;
  --lp-text-gray:    #6B6080;
  --lp-border:       rgba(91, 15, 168, 0.12);
  --lp-shadow-soft:  0 4px 24px rgba(45, 0, 82, 0.12);
  --lp-shadow-glow:  0 8px 40px rgba(91, 15, 168, 0.25);

  /* 7 Csakra színek */
  --c1: #DC2626;
  --c2: #EA580C;
  --c3: #CA8A04;
  --c4: #16A34A;
  --c5: #0284C7;
  --c6: #4338CA;
  --c7: #7C3AED;
}

/* ── Base Reset ──────────────────────────────────────────────────── */
.lp-page,
.lp-page *,
.lp-page *::before,
.lp-page *::after {
  box-sizing: border-box;
}

.lp-page {
  font-family: 'Nunito', sans-serif;
  color: var(--lp-text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lp-page img {
  max-width: 100%;
  display: block;
}

.lp-page h1, .lp-page h2, .lp-page h3, .lp-page h4 {
  margin: 0;
  padding: 0;
}

.lp-page p { margin: 0; padding: 0; }
.lp-page button { font-family: 'Nunito', sans-serif; }

/* ── Container ───────────────────────────────────────────────────── */
.lp-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Section Headings ───────────────────────────────────────────── */
.lp-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--lp-purple);
  text-align: center;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.lp-section-subtitle,
.lp-page .lp-section-subtitle,
.lp-page p.lp-section-subtitle {
  text-align: center !important;
  color: var(--lp-text-gray);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.lp-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  background-size: cover;
  background-position: center 20%;
  background-attachment: fixed;
  background-color: var(--lp-purple-dark);
  overflow: hidden;
}

.lp-hero-overlay {
  position: absolute;
  inset: 0;
  /* Referencia stílus: középen átlátszóbb, széleken sötétebb (vignette) */
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%,
      rgba(45, 0, 82, 0.20) 0%,
      rgba(45, 0, 82, 0.65) 100%
    ),
    linear-gradient(
      180deg,
      rgba(45, 0, 82, 0.50) 0%,
      rgba(91, 15, 168, 0.35) 40%,
      rgba(45, 0, 82, 0.60) 100%
    );
}

.lp-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3.5rem 1.5rem 0;
  width: 100%;
}

.lp-hero-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: var(--lp-gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 1.3rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
}

.lp-hero-program {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.lp-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 700;
  color: var(--lp-white);
  line-height: 0.95;
  margin-bottom: 1.25rem;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.45);
  letter-spacing: -0.01em;
}

.lp-hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--lp-gold-light);
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}

.lp-page .lp-hero-desc,
.lp-page p.lp-hero-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  max-width: 580px;
  margin: 0 auto 1.75rem !important;
  line-height: 1.85;
  text-align: center !important;
}

.lp-btn-primary {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--lp-gold) 0%, var(--lp-gold-dark) 100%);
  color: #fff !important;
  font-weight: 800;
  font-size: 1.47rem;
  font-family: 'Nunito', sans-serif;
  padding: 1.05rem 2.75rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 6px 28px rgba(245, 158, 11, 0.45);
  letter-spacing: 0.02em;
}

.lp-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.55);
  text-decoration: none;
  color: #fff !important;
}

/* Info box — referencia oldal frosted box stílusa */
.lp-hero-infobox {
  display: block;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  margin: 0 auto 1.5rem;
  max-width: 480px;
  text-align: center;
}

.lp-hero-infobox-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lp-gold-light);
  margin-bottom: 0.5rem;
}

.lp-hero-infobox p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

.lp-hero-infobox p + p {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.60);
  font-size: 0.82rem;
}

/* Checkmarks sor a CTA alatt */
.lp-hero-checks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

.lp-hero-checks span::before {
  content: '✓ ';
  color: var(--lp-gold-light);
  font-weight: 800;
}

.lp-hero-scroll-hint {
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-align: center;
  z-index: 1;
  text-transform: uppercase;
  margin-top: 10px;
  padding-bottom: 1.5rem;
}

.lp-hero-scroll-hint svg {
  display: block;
  margin: 0.4rem auto 0;
  animation: lp-bounce 2.2s ease-in-out infinite;
}

@keyframes lp-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* ══════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════ */
.lp-about {
  padding: 5.5rem 0;
  background: var(--lp-white);
}

.lp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.lp-benefit-card {
  background: var(--lp-cream);
  border-left: 4px solid var(--lp-gold);
  border-radius: 0 14px 14px 0;
  padding: 1.75rem 1.5rem;
  transition: box-shadow 0.2s;
}

.lp-benefit-card:hover {
  box-shadow: var(--lp-shadow-soft);
}

.lp-benefit-icon {
  font-size: 2.2rem;
  margin-bottom: 0.85rem;
  display: block;
}

.lp-benefit-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--lp-purple);
  margin-bottom: 0.5rem;
}

.lp-benefit-text {
  color: var(--lp-text-gray);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   7 CHAKRAS SECTION
══════════════════════════════════════════ */
.lp-chakras {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, #F5EEFF 0%, #EDE9FE 100%);
}

.lp-chakra-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.lp-chakra-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.35rem 0.75rem 1.1rem;
  background: var(--lp-white);
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(91, 15, 168, 0.08);
  border-top: 3px solid var(--chakra-color, #7B2CBF);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  cursor: default;
}

.lp-chakra-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(91, 15, 168, 0.15);
}

.lp-chakra-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  transition: transform 0.3s;
}

.lp-chakra-card:hover .lp-chakra-img {
  transform: scale(1.1);
}

.lp-chakra-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chakra-color, #7B2CBF);
  margin-bottom: 0.3rem;
  opacity: 0.9;
}

.lp-chakra-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-text-dark);
  margin-bottom: 0.45rem;
  line-height: 1.2;
}

.lp-chakra-desc {
  font-size: 0.72rem;
  color: var(--lp-text-gray);
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   STEPS SECTION
══════════════════════════════════════════ */
.lp-steps {
  padding: 5.5rem 0;
  background: var(--lp-white);
}

.lp-steps-list {
  max-width: 640px;
  margin: 2.5rem auto 0;
}

.lp-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--lp-border);
}

.lp-step:last-child {
  border-bottom: none;
}

.lp-step-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-purple), var(--lp-purple-light));
  color: var(--lp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(91, 15, 168, 0.35);
  flex-shrink: 0;
}

.lp-step-body {}

.lp-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--lp-purple);
  margin-bottom: 0.45rem;
  line-height: 1.3;
}

.lp-step-text {
  color: var(--lp-text-gray);
  font-size: 0.97rem;
  line-height: 1.75;
}

.lp-step-text strong {
  color: var(--lp-purple-mid);
  font-weight: 700;
}

/* ══════════════════════════════════════════
   QUIZ SECTION
══════════════════════════════════════════ */
.lp-quiz-section {
  padding: 5.5rem 0 6rem;
  background: linear-gradient(180deg, #EDE9FE 0%, var(--lp-cream) 100%);
}

.lp-quiz-section .lp-section-title {
  color: var(--lp-purple);
}

.lp-quiz-section .lp-section-subtitle {
  color: var(--lp-text-gray);
  margin-bottom: 5rem;
}

/* ── Quiz App ──────────────────────────────────── */
.lp-quiz-app {
  max-width: 620px;
  margin: 0 auto;
}

/* Card — világos stílus */
.lp-qcard {
  background: var(--lp-white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 0.625rem 2.25rem 2.5rem;
  box-shadow: var(--lp-shadow-glow);
}

/* Register card heading */
.lp-qcard-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.275rem;
  font-weight: 600;
  color: var(--lp-purple);
  text-align: center;
  margin-bottom: 0.25rem;
}

.lp-qcard-subtitle,
.lp-page .lp-qcard-subtitle,
.lp-page p.lp-qcard-subtitle {
  text-align: center;
  color: var(--lp-text-gray);
  font-size: 1.4rem;
  margin-bottom: 2.5rem !important;
}

/* Type selector */
.lp-type-sel {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.lp-type-btn {
  flex: 1;
  padding: 0.9rem 0.5rem;
  border-radius: 12px;
  border: 1.5px solid var(--lp-border);
  background: var(--lp-cream);
  color: var(--lp-text-gray);
  cursor: pointer;
  transition: all 0.22s ease;
  font-size: 1.32rem;
  font-family: 'Nunito', sans-serif;
  text-align: center;
  line-height: 1.5;
}

.lp-type-btn small {
  display: block;
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 0.15rem;
}

.lp-type-btn.active {
  background: var(--lp-gold);
  color: var(--lp-purple-dark);
  border-color: var(--lp-gold);
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.45);
}

.lp-type-btn.active small { opacity: 0.75; }

/* Inputs — magas specificitás a Divi/téma alapértékek felülírásához */
.lp-page .lp-input,
.lp-page input.lp-input,
.lp-page input[type="text"].lp-input,
.lp-page input[type="email"].lp-input {
  width: 100%;
  background: var(--lp-cream) !important;
  border: 1.5px solid var(--lp-border) !important;
  border-radius: 10px !important;
  padding: 0.9rem 1.1rem !important;
  color: var(--lp-text-dark) !important;
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
  margin-bottom: 0.85rem;
  box-shadow: none !important;
  transition: border-color 0.2s, background 0.2s;
}

.lp-page .lp-input::placeholder { color: var(--lp-text-gray); }

.lp-page .lp-input:focus,
.lp-page input.lp-input:focus {
  outline: none !important;
  border-color: var(--lp-purple) !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(91, 15, 168, 0.10) !important;
}

/* GDPR */
.lp-gdpr {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--lp-text-gray);
  margin-bottom: 1rem;
  line-height: 1.55;
  cursor: pointer;
}

.lp-gdpr input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--lp-purple);
}

.lp-gdpr a {
  color: var(--lp-purple);
  text-decoration: none;
}

.lp-gdpr a:hover { text-decoration: underline; }

/* Consent checkbox blokkok (adatkezelés + hírlevél) */
.lp-consent-section {
  margin-bottom: 1rem;
}

.lp-consent-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-text-gray);
  margin-bottom: 0.4rem;
}

.lp-consent-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--lp-text-dark);
  cursor: pointer;
  line-height: 1.55;
  padding: 0.65rem 0.85rem;
  background: var(--lp-cream);
  border: 1.5px solid var(--lp-border);
  border-radius: 10px;
  transition: border-color 0.2s;
}

.lp-consent-check:hover {
  border-color: var(--lp-purple-light);
}

.lp-consent-check input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  cursor: pointer;
  accent-color: var(--lp-purple);
  border-radius: 50%;
}

.lp-consent-check a {
  color: var(--lp-purple);
  text-decoration: underline;
}

/* Linkek a gomb felett */
.lp-form-links {
  text-align: center;
  font-size: 0.82rem;
  color: var(--lp-text-gray);
  margin-top: 1.25rem;
  margin-bottom: 0.65rem;
}

.lp-form-links a {
  color: var(--lp-purple);
  text-decoration: underline;
}

.lp-form-links a:hover {
  color: var(--lp-purple-mid);
}

.lp-form-links span {
  margin: 0 0.4rem;
  opacity: 0.5;
}

/* Submit button — aktív: zöld/fehér, inaktív: halvány piros/sötétkék */
.lp-q-submit {
  width: 100%;
  background: #9bc43b;
  color: #fff;
  font-weight: 800;
  font-size: 1.65rem;
  font-family: 'Nunito', sans-serif;
  padding: 1.05rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.2s;
  box-shadow: 0 6px 28px rgba(155, 196, 59, 0.4);
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
}

.lp-q-submit:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(155, 196, 59, 0.55);
  background: #86ac2e;
}

.lp-q-submit:disabled {
  background: #FECACA;
  color: #0f172a !important;
  opacity: 1;
  cursor: not-allowed;
  box-shadow: none;
}

/* ── Havi limit üzenet (tag mód — landing oldal) ── */
.lp-monthly-limit {
  margin-top: 1.1rem !important;
  padding: 0.85rem 1.1rem;
  background: #FEF9EC;
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  border-radius: 10px;
  color: var(--lp-text-gray);
  font-size: 0.92rem;
  line-height: 1.6;
  text-align: center;
}

.lp-error {
  color: #DC2626;
  font-size: 0.9rem;
  margin-top: 0.6rem;
  text-align: center;
}

/* ── Chakra Quiz Step ──────────────────────── */
.lp-quiz-chakra-hero {
  text-align: center;
  margin-bottom: 1.25rem;
}

.lp-quiz-chakra-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 4px 18px rgba(91, 15, 168, 0.3));
  animation: lp-chakra-pulse 3.5s ease-in-out infinite;
}

@keyframes lp-chakra-pulse {
  0%, 100% {
    filter: drop-shadow(0 4px 14px rgba(91, 15, 168, 0.2));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 6px 28px rgba(245, 158, 11, 0.45));
    transform: scale(1.04);
  }
}

.lp-quiz-chakra-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--lp-purple);
  margin-top: 0.6rem;
  letter-spacing: 0.04em;
}

/* Progress dots */
.lp-quiz-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.lp-quiz-dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: var(--lp-border);
  transition: all 0.35s ease;
}

.lp-quiz-dot.active {
  background: var(--lp-gold);
  width: 28px;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.45);
}

.lp-quiz-dot.done {
  background: rgba(245, 158, 11, 0.45);
}

/* Question card internals */
.lp-quiz-chakra-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-purple);
  text-align: center;
  margin-bottom: 1.25rem;
  opacity: 0.75;
}

.lp-question-text,
.lp-page .lp-question-text,
.lp-page p.lp-question-text {
  font-size: 1.15rem;
  color: var(--lp-text-dark);
  line-height: 1.78;
  margin-bottom: 3rem !important;
  text-align: center;
  font-weight: 400;
}

/* Slider */
.lp-slider-hints {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.lp-hint {
  font-size: 0.95rem;
  color: var(--lp-text-gray);
  max-width: 42%;
  line-height: 1.4;
}

.lp-hint-right { text-align: right; }

/* Slider wrapper with arrows */
.lp-slider-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.6rem 0 0.75rem;
}

.lp-slider-arrow {
  font-size: 1.4rem;
  color: var(--lp-purple-light);
  flex-shrink: 0;
  line-height: 1;
  user-select: none;
}

.lp-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  margin: 0;
  cursor: pointer;
  border-radius: 4px;
  background: #e2d9f3;
}

.lp-slider::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 4px;
  background: #e2d9f3;
}

.lp-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lp-purple);
  cursor: pointer;
  margin-top: -8px;
  box-shadow: 0 2px 8px rgba(91, 15, 168, 0.35);
}

.lp-slider::-moz-range-track {
  height: 8px;
  border-radius: 4px;
  background: #e2d9f3;
}

.lp-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lp-purple);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(91, 15, 168, 0.35);
}

.lp-slider-val-hidden {
  visibility: hidden;
}

.lp-slider-val {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--lp-purple);
  line-height: 1;
  margin-top: 0.25rem;
}

/* YesNo */
.lp-yesno {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 0.75rem 0;
}

.lp-toggle {
  padding: 0.9rem 2.75rem;
  border-radius: 50px;
  border: 1.5px solid var(--lp-border);
  background: var(--lp-cream);
  color: var(--lp-text-gray);
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  cursor: pointer;
  min-width: 130px;
  transition: all 0.22s ease;
}

.lp-toggle:hover {
  border-color: var(--lp-purple-light);
  color: var(--lp-text-dark);
}

.lp-toggle.selected {
  background: var(--lp-gold);
  color: var(--lp-purple-dark);
  border-color: var(--lp-gold);
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.45);
}

/* Scenario */
.lp-scenario-opt {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  margin-bottom: 0.65rem;
  border-radius: 12px;
  border: 1.5px solid var(--lp-border);
  background: var(--lp-cream);
  color: var(--lp-text-dark);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1.55;
}

.lp-scenario-opt:hover {
  background: #EDE9FE;
  border-color: var(--lp-purple-light);
}

.lp-scenario-opt.selected {
  background: rgba(245, 158, 11, 0.10);
  border-color: var(--lp-gold);
  color: var(--lp-text-dark);
}

.lp-opt-key {
  font-weight: 800;
  color: var(--lp-purple);
  flex-shrink: 0;
  min-width: 24px;
}

/* Next button */
.lp-q-next {
  width: 100%;
  background: #9bc43b;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  font-family: 'Nunito', sans-serif;
  padding: 0.95rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.22s ease;
  margin-top: 1.25rem;
  box-shadow: 0 6px 28px rgba(155, 196, 59, 0.4);
  letter-spacing: 0.01em;
}

.lp-q-next:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(155, 196, 59, 0.55);
  background: #86ac2e;
}

.lp-q-next:disabled {
  background: #FECACA;
  color: #0f172a !important;
  opacity: 1;
  cursor: not-allowed;
  box-shadow: none;
}

/* ── Loading card ──────────────────────────── */
.lp-loading-card {
  text-align: center;
  padding: 3rem 2rem;
}

.lp-loading-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  animation: lp-loading-pulse 1.2s ease-in-out infinite;
}

@keyframes lp-loading-pulse {
  0%, 100% {
    filter: drop-shadow(0 4px 14px rgba(91, 15, 168, 0.2));
    transform: scale(1);
    opacity: 1;
  }
  50% {
    filter: drop-shadow(0 6px 32px rgba(245, 158, 11, 0.55));
    transform: scale(1.1);
    opacity: 0.85;
  }
}

.lp-loading-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--lp-purple);
  font-style: italic;
  letter-spacing: 0.03em;
}

/* ── Chakra splash üzenet ───────────────────── */
.lp-chakra-splash {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.35rem 1.1rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--lp-gold-dark);
  letter-spacing: 0.02em;
}

/* ── Progress sáv ───────────────────────────── */
.lp-progress-wrap {
  margin-bottom: 1.25rem;
  text-align: center;
}

.lp-progress-bar {
  height: 6px;
  background: rgba(91, 15, 168, 0.12);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.4rem;
}

.lp-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--lp-purple), var(--lp-gold));
  border-radius: 3px;
  transition: width 0.55s ease;
}

.lp-progress-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-text-gray);
}

/* ── Vissza gomb ────────────────────────────── */
.lp-q-back-wrap {
  height: 1.75rem;
  margin-bottom: 0.25rem;
}

.lp-q-back {
  background: none;
  border: none;
  color: var(--lp-text-gray);
  font-size: 0.9rem;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  opacity: 1;
}

.lp-q-back:hover {
  color: var(--lp-purple);
  background: rgba(91, 15, 168, 0.06);
}

/* Első kérdésnél — helyet tart, de láthatatlan */
.lp-q-back-hidden {
  visibility: hidden;
  pointer-events: none;
}

/* ── Slider segédszöveg ─────────────────────── */
.lp-slider-hint,
.lp-page .lp-slider-hint,
.lp-page p.lp-slider-hint {
  text-align: center;
  font-size: 0.82rem;
  color: var(--lp-text-gray);
  font-style: italic;
  margin-top: 0.5rem !important;
  opacity: 0.8;
}

/* Done state */
.lp-done-card {
  text-align: center;
  padding: 3.5rem 2rem;
}

.lp-done-mandala {
  display: block;
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto 2rem;
  opacity: 0.92;
}

.lp-done-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--lp-purple);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.lp-done-chakras {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin: 1.25rem 0 1.5rem;
}

.lp-done-chakra-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
}

.lp-done-text {
  color: var(--lp-text-gray);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.lp-done-email {
  color: var(--lp-purple);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* Blocked state */
.lp-blocked-card {
  text-align: center;
  padding: 2.75rem 2rem;
  color: var(--lp-text-gray);
  font-size: 1.05rem;
  font-weight: bold;
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   FOOTER NOTE
══════════════════════════════════════════ */
.lp-footer-note {
  background: var(--lp-purple-dark);
  padding: 2.25rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  line-height: 1.75;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-footer-note a {
  color: rgba(245, 158, 11, 0.65);
  text-decoration: none;
}

.lp-footer-note a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

/* Divi konténer felülírás — teljes szélességű megjelenítés */
.lp-page {
  overflow-x: hidden;
  width: 100%;
  max-width: none !important;
}

/* Divi belső konténerek null padding */
.et_pb_section:has(.lp-page),
.et_pb_row:has(.lp-page),
.et_pb_column:has(.lp-page) {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

@media (max-width: 980px) {
  .lp-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .lp-chakra-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }

  .lp-hero {
    background-attachment: scroll;
  }

  .lp-hero-content {
    padding: 3.5rem 1.5rem 3.5rem;
  }

  .lp-hero-infobox {
    max-width: 100%;
  }

  .lp-quiz-chakra-img {
    width: 120px;
    height: 120px;
  }

  .lp-section-title {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .lp-hero-content {
    padding: 3rem 1rem 3rem;
  }

  .lp-hero-title {
    font-size: clamp(2.8rem, 10vw, 5rem);
  }

  .lp-hero-infobox {
    padding: 1.1rem 1.25rem;
    margin-bottom: 1.25rem;
  }

  .lp-btn-primary {
    font-size: 1.15rem;
    padding: 0.9rem 2rem;
  }

  .lp-hero-checks {
    gap: 0.65rem;
    font-size: 0.78rem;
  }

  .lp-chakra-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
  }

  .lp-chakra-img {
    width: 48px;
    height: 48px;
  }

  .lp-chakra-desc {
    display: none;
  }

  .lp-qcard {
    padding: 1.75rem 1.25rem;
  }

  .lp-type-sel {
    flex-direction: column;
  }

  .lp-yesno {
    flex-direction: column;
    align-items: center;
  }

  .lp-toggle {
    width: 100%;
    max-width: 280px;
  }

  .lp-quiz-chakra-img {
    width: 100px;
    height: 100px;
  }

  .lp-step {
    gap: 1rem;
    padding: 1.75rem 0;
  }

  .lp-step-num {
    width: 46px;
    height: 46px;
    font-size: 1.35rem;
  }

  .lp-about,
  .lp-chakras,
  .lp-steps,
  .lp-quiz-section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 380px) {
  .lp-chakra-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-hero-content {
    padding: 4rem 0.75rem 2.5rem;
  }

  .lp-container {
    padding: 0 1rem;
  }
}

/* ══════════════════════════════════════════
   PERSONALIZED LANDING (/szemelyre-szabott)
══════════════════════════════════════════ */
.csakra-personalized-landing {
  padding: 4rem 0 5rem;
  background: linear-gradient(180deg, var(--lp-cream) 0%, #F5EEFF 100%);
}

.csp-greeting {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 600;
  color: var(--lp-purple);
  text-align: center;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.csp-lead {
  text-align: center;
  font-size: 1.1rem;
  color: var(--lp-text-dark);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.csp-lead strong {
  color: var(--lp-purple);
  font-weight: 700;
}

.csp-weakest-chakras {
  list-style: none;
  padding: 0;
  margin: 0 auto 2.5rem;
  max-width: 560px;
}

.csp-weakest-chakras li {
  background: var(--lp-white);
  border-left: 4px solid var(--lp-gold);
  border-radius: 0 12px 12px 0;
  padding: 1rem 1.25rem;
  margin-bottom: 0.65rem;
  color: var(--lp-text-dark);
  font-size: 1rem;
  line-height: 1.6;
  box-shadow: 0 2px 12px rgba(91, 15, 168, 0.06);
}

.csp-weakest-chakras li strong {
  color: var(--lp-purple);
  font-weight: 700;
}

.csp-product-block {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  box-shadow: var(--lp-shadow-glow);
  max-width: 640px;
  margin: 0 auto;
}

.csp-product-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--lp-purple);
  text-align: center;
  margin-bottom: 1.25rem;
}

.csp-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.csp-features li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.75rem;
  color: var(--lp-text-dark);
  font-size: 0.98rem;
  line-height: 1.65;
  border-bottom: 1px dashed var(--lp-border);
}

.csp-features li:last-child { border-bottom: none; }

.csp-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--lp-gold-dark);
  font-weight: 800;
}

.csp-pricing {
  text-align: center;
  margin: 1.5rem 0 1.75rem;
}

.csp-anchor {
  display: block;
  font-size: 1.15rem;
  color: var(--lp-text-gray);
  margin-bottom: 0.2rem;
}

.csp-anchor del { text-decoration: line-through; }

.csp-intro-price,
.csp-price {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--lp-purple);
  line-height: 1;
}

.csp-scarcity {
  margin-top: 0.65rem !important;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--lp-gold-dark);
}

.csakra-personalized-landing .csakra-cta,
.csakra-personalized-landing a.csakra-cta {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.csp-binaural-note {
  max-width: 640px;
  margin: 2rem auto 0;
  padding: 1rem 1.25rem;
  background: rgba(91, 15, 168, 0.04);
  border-left: 3px solid var(--lp-purple-light);
  border-radius: 0 8px 8px 0;
  color: var(--lp-text-gray);
  font-size: 0.85rem;
  line-height: 1.65;
}

/* ── Bonus blokk a product-block-on belül ─────────────────────────── */
.csp-bonus-block {
  margin: 0 0 1.75rem;
  padding: 1.25rem 1.5rem 1.4rem;
  background: rgba(91, 15, 168, 0.035);
  border: 1px dashed var(--lp-purple-light);
  border-radius: 14px;
}

.csp-bonus-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--lp-purple);
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.csp-bonus-tag {
  display: inline-block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lp-white);
  background: var(--lp-gold-dark);
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
}

.csp-bonus-intro {
  font-size: 0.92rem;
  color: var(--lp-text-gray);
  margin: 0 0 0.85rem;
  line-height: 1.55;
}

.csp-bonus-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.csp-bonus-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.6rem;
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--lp-text-dark);
  border-bottom: 1px solid rgba(91, 15, 168, 0.08);
}

.csp-bonus-list li:last-child { border-bottom: none; }

.csp-bonus-list li::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 0.55rem;
  color: var(--lp-gold-dark);
  font-size: 0.95rem;
}

.csp-bonus-list strong {
  color: var(--lp-purple);
}

.csp-error-box {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.csp-error-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  color: var(--lp-purple);
  margin-bottom: 0.85rem;
}

.csp-error-msg {
  color: var(--lp-text-gray);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .csakra-personalized-landing { padding: 2.5rem 0 3.5rem; }
  .csp-product-block            { padding: 1.5rem 1.25rem; }
  .csp-intro-price,
  .csp-price                    { font-size: 2.4rem; }
}
