/* ========== RESET & BASE ========== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Lato',Arial,sans-serif;
  color:#333333;
  background:#F5F5F5;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  min-height:100vh;
}
a{color:#C99802;text-decoration:underline}
a:hover{color:#a67d00}

/* ========== PROGRESS BAR ========== */
.progress-bar-container{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:rgba(0,0,0,0.08);
  z-index:1000;
}
.progress-bar{
  height:100%;
  width:0%;
  background:linear-gradient(90deg,#C99802,#e6b800);
  transition:width 0.4s ease;
  border-radius:0 3px 3px 0;
}

/* ========== SCREENS ========== */
.screen{
  display:none;
  min-height:100vh;
  padding:24px 16px;
  align-items:center;
  justify-content:center;
}
.screen.active{
  display:flex;
  animation:fadeIn 0.2s ease;
}
#screen-hero.active{
  flex-direction:column;
  align-items:stretch;
  justify-content:flex-start;
  padding:0;
  gap:0;
}
@keyframes fadeIn{
  from{opacity:0;transform:translateY(8px)}
  to{opacity:1;transform:translateY(0)}
}

/* ========== QUIZ CONTAINER ========== */
.quiz-container{
  width:100%;
  max-width:640px;
  margin:0 auto;
}

/* ========== HERO (legacy — kept for backwards compat) ========== */

/* ========== BUTTONS ========== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:16px 32px;
  border:none;
  border-radius:8px;
  font-family:'Lato',Arial,sans-serif;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:all 0.2s ease;
  -webkit-tap-highlight-color:transparent;
}
.btn--gold{
  background:#C99802;
  color:#fff;
}
.btn--gold:hover{
  background:#a67d00;
  transform:translateY(-1px);
  box-shadow:0 6px 20px rgba(201,152,2,0.3);
}
.btn--gold:active{
  transform:translateY(0);
}
.btn--large{
  padding:18px 40px;
  font-size:18px;
}
.btn--full{
  width:100%;
}
.btn:disabled{
  opacity:0.5;
  cursor:not-allowed;
  transform:none !important;
  box-shadow:none !important;
}

/* ========== QUESTION STYLES ========== */
.question-counter{
  font-size:14px;
  font-weight:700;
  color:#C99802;
  text-transform:uppercase;
  letter-spacing:0.5px;
  margin-bottom:12px;
  text-align:center;
}
.question-title{
  font-size:clamp(20px,4.5vw,28px);
  font-weight:900;
  color:#333;
  text-align:center;
  margin-bottom:8px;
  line-height:1.35;
}
.question-hint{
  font-size:14px;
  color:#999;
  text-align:center;
  margin-bottom:24px;
}

/* ========== SINGLE CHOICE OPTIONS ========== */
.options{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:24px;
}
.option-btn{
  display:flex;
  align-items:center;
  gap:14px;
  width:100%;
  padding:18px 20px;
  background:#fff;
  border:2px solid #e0e0e0;
  border-radius:8px;
  font-family:'Lato',Arial,sans-serif;
  font-size:16px;
  font-weight:600;
  color:#333;
  cursor:pointer;
  transition:all 0.15s ease;
  text-align:left;
  min-height:56px;
  -webkit-tap-highlight-color:transparent;
}
.option-btn:hover{
  border-color:#C99802;
  background:#fffbeb;
}
.option-btn:active{
  transform:scale(0.98);
}
.option-btn.selected{
  border-color:#C99802;
  background:#C99802;
  color:#fff;
}
.option-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:36px;
  height:36px;
  padding:0 8px;
  background:#F5F5F5;
  border-radius:8px;
  font-size:16px;
  font-weight:700;
  flex-shrink:0;
  white-space:nowrap;
}
.option-btn.selected .option-icon{
  background:rgba(255,255,255,0.2);
}

/* ========== MULTI CHOICE (CHECKBOXES) ========== */
.options--multi{
  gap:10px;
}
.options--grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.checkbox-option{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  background:#fff;
  border:2px solid #e0e0e0;
  border-radius:8px;
  cursor:pointer;
  transition:all 0.15s ease;
  -webkit-tap-highlight-color:transparent;
}
.checkbox-option:hover{
  border-color:#C99802;
  background:#fffbeb;
}
.checkbox-option:has(input:checked){
  border-color:#C99802;
  background:#fffbeb;
}
.checkbox-option input[type="checkbox"]{
  width:20px;
  height:20px;
  accent-color:#C99802;
  cursor:pointer;
  flex-shrink:0;
}
.checkbox-label{
  font-size:15px;
  font-weight:600;
  color:#333;
  line-height:1.3;
}
.weiter-btn{
  margin-top:20px;
}

/* ========== INTERMEDIATE SCREEN ========== */
.intermediate{
  text-align:center;
  padding:60px 0 40px;
}
.intermediate__icon{
  margin-bottom:20px;
}
.intermediate__title{
  font-size:24px;
  font-weight:900;
  color:#333;
  margin-bottom:12px;
}
.intermediate__text{
  font-size:16px;
  color:#555;
  line-height:1.6;
  margin-bottom:28px;
  max-width:420px;
  margin-left:auto;
  margin-right:auto;
}
.intermediate__teaser{
  background:#1A1A2E;
  border-radius:12px;
  padding:20px 24px;
  margin-bottom:28px;
  text-align:center;
}
.intermediate__teaser-label{
  font-size:14px;
  color:rgba(255,255,255,0.7);
  margin-bottom:6px;
}
.intermediate__teaser-detail{
  font-size:17px;
  color:#fff;
  font-weight:700;
}
.intermediate__teaser-detail strong{
  color:#C99802;
}
.intermediate__skip{
  font-size:13px;
  color:#888;
  margin-top:12px;
}

/* ========== LOADING ========== */
.loading{
  text-align:center;
  padding:80px 0;
}
.loading__spinner{
  width:56px;
  height:56px;
  border:4px solid #e0e0e0;
  border-top-color:#C99802;
  border-radius:50%;
  margin:0 auto 24px;
  animation:spin 0.8s linear infinite;
}
@keyframes spin{
  to{transform:rotate(360deg)}
}
.loading__title{
  font-size:22px;
  font-weight:900;
  color:#333;
  margin-bottom:8px;
}
.loading__sub{
  font-size:15px;
  color:#999;
}

/* ========== RESULT PAGE ========== */
.result{
  padding:20px 0 40px;
}

/* Score Section */
.result__score-section{
  text-align:center;
  background:#fff;
  border-radius:12px;
  padding:32px 24px;
  margin-bottom:20px;
  box-shadow:0 2px 12px rgba(0,0,0,0.06);
}
.result__label{
  font-size:14px;
  font-weight:700;
  color:#999;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:8px;
}
.result__score-number{
  font-size:72px;
  font-weight:900;
  line-height:1;
  margin-bottom:4px;
}
.result__score-sublabel{
  font-size:16px;
  color:#999;
  font-weight:600;
  margin-bottom:20px;
}
.result__score-bar-wrap{
  width:100%;
  height:12px;
  background:#e0e0e0;
  border-radius:6px;
  overflow:hidden;
  margin-bottom:16px;
}
.result__score-bar{
  height:100%;
  width:0%;
  border-radius:6px;
  transition:width 1s ease;
}
.result__score-tag{
  display:inline-block;
  padding:6px 16px;
  border-radius:100px;
  font-size:14px;
  font-weight:700;
}

/* Score colors */
.score-green .result__score-number{color:#2E8B57}
.score-green .result__score-bar{background:linear-gradient(90deg,#2E8B57,#3CB371)}
.score-green .result__score-tag{background:#e8f5e9;color:#2E8B57}

.score-gold .result__score-number{color:#C99802}
.score-gold .result__score-bar{background:linear-gradient(90deg,#C99802,#e6b800)}
.score-gold .result__score-tag{background:#fffbeb;color:#C99802}

.score-red .result__score-number{color:#CC0000}
.score-red .result__score-bar{background:linear-gradient(90deg,#CC0000,#e53935)}
.score-red .result__score-tag{background:#fce4e4;color:#CC0000}

/* Profile Summary */
.result__profile{
  background:#fff;
  border-radius:12px;
  padding:20px 24px;
  margin-bottom:20px;
  font-size:15px;
  font-weight:600;
  color:#666;
  text-align:center;
  box-shadow:0 2px 12px rgba(0,0,0,0.06);
}

/* Gaps */
.result__gaps{
  margin-bottom:24px;
}
.result__gaps--blurred{
  filter:blur(6px);
  pointer-events:none;
  user-select:none;
  opacity:0.6;
  transition:all 0.4s ease;
  position:relative;
}
.result__gaps--blurred::after{
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:60px;
  background:linear-gradient(transparent, #f5f5f5);
}
.result__gaps--revealed{
  filter:none;
  pointer-events:auto;
  user-select:auto;
  opacity:1;
}
.result__gaps--revealed::after{
  display:none;
}
.result__gaps-title{
  font-size:18px;
  font-weight:900;
  color:#333;
  margin-bottom:14px;
}
.gap-card{
  background:#fff;
  border-radius:8px;
  padding:16px 20px;
  margin-bottom:10px;
  border-left:4px solid #CC0000;
  box-shadow:0 2px 8px rgba(0,0,0,0.04);
}
.gap-card--warning{
  border-left-color:#C99802;
}
.gap-card__title{
  font-size:15px;
  font-weight:700;
  color:#333;
  margin-bottom:4px;
}
.gap-card__risk{
  font-size:14px;
  color:#CC0000;
  font-weight:700;
}
.gap-card--warning .gap-card__risk{
  color:#C99802;
}

/* Email Section */
.result__email-section{
  background:#fff;
  border-radius:12px;
  padding:32px 24px;
  text-align:center;
  box-shadow:0 2px 12px rgba(0,0,0,0.06);
}
.result__email-title{
  font-size:22px;
  font-weight:900;
  color:#333;
  margin-bottom:8px;
}
.result__email-sub{
  font-size:15px;
  color:#666;
  margin-bottom:12px;
  line-height:1.5;
}
.result__email-benefits{
  text-align:left;
  list-style:none;
  padding:0;
  margin:0 auto 20px;
  max-width:320px;
}
.result__email-benefits li{
  font-size:14px;
  color:#333;
  padding:6px 0 6px 28px;
  position:relative;
  line-height:1.4;
}
.result__email-benefits li::before{
  content:'\2713';
  position:absolute;
  left:0;
  color:#1B7D3A;
  font-weight:900;
  font-size:16px;
}
.result__email-trust{
  font-size:12px;
  color:#999;
  margin-top:12px;
}
.email-form__field{
  margin-bottom:12px;
}
.email-form__field input{
  width:100%;
  padding:16px 18px;
  border:2px solid #e0e0e0;
  border-radius:8px;
  font-family:'Lato',Arial,sans-serif;
  font-size:16px;
  color:#333;
  transition:border-color 0.2s ease;
  outline:none;
}
.email-form__field input:focus{
  border-color:#C99802;
}
.email-form__field input::placeholder{
  color:#bbb;
}
.email-form__consent{
  display:flex;
  align-items:flex-start;
  gap:10px;
  text-align:left;
  margin-bottom:20px;
  font-size:13px;
  color:#666;
  cursor:pointer;
  line-height:1.5;
}
.email-form__consent input[type="checkbox"]{
  width:18px;
  height:18px;
  accent-color:#C99802;
  cursor:pointer;
  flex-shrink:0;
  margin-top:2px;
}
.email-form .btn{
  margin-top:4px;
}

/* ========== LANDING PAGE SECTIONS (inside #screen-hero) ========== */

.lp-wrap{
  width:100%;
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

/* --- Section 1: Hero --- */
.lp-hero{
  padding:48px 0 40px;
  background:#fff;
}
.lp-hero__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
  align-items:center;
}
.lp-hero__text{
  text-align:center;
}
.lp-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#fff;
  border:1.5px solid #C99802;
  border-radius:100px;
  padding:8px 18px;
  font-size:13px;
  font-weight:700;
  color:#C99802;
  margin-bottom:24px;
}
.lp-hero__title{
  font-size:clamp(24px,5vw,40px);
  font-weight:900;
  color:#333;
  line-height:1.25;
  margin-bottom:16px;
}
.lp-hero__title span{
  color:#C99802;
}
.lp-hero__sub{
  font-size:17px;
  color:#666;
  line-height:1.6;
  margin-bottom:24px;
}
.lp-hero__trust-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px 24px;
  margin-bottom:28px;
}
.lp-trust-item{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:13px;
  font-weight:700;
  color:#555;
}
.lp-hero__cta{
  margin-bottom:14px;
}
.lp-hero__disclaimer{
  font-size:13px;
  color:#999;
}
.lp-hero__visual{
  display:flex;
  justify-content:center;
}
.lp-hero__img{
  width:100%;
  max-width:520px;
  height:auto;
  border-radius:12px;
  box-shadow:0 8px 32px rgba(0,0,0,0.10);
}

/* --- Section 2: Problem / Urgency --- */
.lp-problem{
  padding:56px 0;
  background:#F5F5F5;
}
.lp-section-title{
  font-size:clamp(20px,4vw,30px);
  font-weight:900;
  color:#333;
  text-align:center;
  line-height:1.3;
  margin-bottom:36px;
}
.lp-risk-cards{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
.lp-risk-card{
  background:#fff;
  border-radius:10px;
  padding:24px;
  border-left:4px solid #CC0000;
  box-shadow:0 2px 12px rgba(0,0,0,0.06);
}
.lp-risk-card__icon{
  font-size:28px;
  margin-bottom:10px;
}
.lp-risk-card__amount{
  font-size:20px;
  font-weight:900;
  color:#CC0000;
  margin-bottom:8px;
}
.lp-risk-card__text{
  font-size:15px;
  color:#666;
  line-height:1.5;
}

/* --- Section 3: Steps --- */
.lp-steps{
  padding:56px 0;
  background:#fff;
}
.lp-steps__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
}
.lp-step{
  text-align:center;
  padding:24px 20px;
}
.lp-step__number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  border-radius:50%;
  background:#C99802;
  color:#fff;
  font-size:22px;
  font-weight:900;
  margin-bottom:16px;
}
.lp-step__title{
  font-size:18px;
  font-weight:700;
  color:#333;
  margin-bottom:8px;
}
.lp-step__text{
  font-size:15px;
  color:#666;
  line-height:1.5;
}

/* --- Section 4: Testimonials --- */
.lp-testimonials{
  padding:56px 0;
  background:#F5F5F5;
}
.lp-testimonials__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}
.lp-testimonial{
  background:#fff;
  border-radius:12px;
  padding:28px 24px;
  box-shadow:0 2px 12px rgba(0,0,0,0.06);
}
.lp-testimonial__stars{
  color:#C99802;
  font-size:20px;
  letter-spacing:2px;
  margin-bottom:14px;
}
.lp-testimonial__quote{
  font-size:15px;
  color:#444;
  line-height:1.6;
  margin-bottom:20px;
  font-style:italic;
}
.lp-testimonial__author{
  display:flex;
  align-items:center;
  gap:14px;
}
.lp-testimonial__avatar{
  width:48px;
  height:48px;
  border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
}
.lp-testimonial__name{
  font-size:15px;
  font-weight:700;
  color:#333;
}
.lp-testimonial__role{
  font-size:13px;
  color:#999;
  font-weight:600;
}

/* --- Section 5: Trust Bar --- */
.lp-trustbar{
  padding:32px 0;
  background:#fff;
  border-top:1px solid #e8e8e8;
  border-bottom:1px solid #e8e8e8;
}
.lp-trustbar__row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px 32px;
}
.lp-trustbar__item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:700;
  color:#555;
}

/* --- Section 6: Final CTA --- */
.lp-final-cta{
  padding:64px 0;
  background:#F5F5F5;
  text-align:center;
}
.lp-final-cta__title{
  font-size:clamp(22px,4.5vw,34px);
  font-weight:900;
  color:#333;
  margin-bottom:12px;
}
.lp-final-cta__sub{
  font-size:17px;
  color:#666;
  margin-bottom:28px;
  line-height:1.5;
}
.lp-final-cta__btn{
  margin-bottom:16px;
}
.lp-final-cta__proof{
  font-size:14px;
  color:#999;
  font-weight:600;
}

/* ========== HERO IMAGE CLICK-TO-START ========== */
.lp-hero__img-wrap{
  position:relative;
  display:inline-block;
  cursor:pointer;
  border-radius:12px;
  overflow:hidden;
  -webkit-tap-highlight-color:transparent;
}
.lp-hero__img-wrap:hover .lp-hero__img{
  filter:brightness(0.88);
  transition:filter 0.2s ease;
}
.lp-hero__img-wrap:hover .lp-hero__play-btn{
  transform:translate(-50%,-50%) scale(1.1);
}
.lp-hero__img-wrap:focus-visible{
  outline:3px solid #C99802;
  outline-offset:3px;
}
.lp-hero__img{
  display:block;
}
.lp-hero__play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:64px;
  height:64px;
  background:rgba(201,152,2,0.92);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform 0.2s ease, background 0.2s ease;
  box-shadow:0 4px 20px rgba(0,0,0,0.3);
  padding-left:4px;
}

/* ========== FOOTER ========== */
.lp-footer{
  background:#1A1A2E;
  color:#fff;
  padding:20px 16px;
  text-align:center;
}
.lp-footer__inner{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:12px 24px;
}
.lp-footer__copy{
  font-size:13px;
  color:rgba(255,255,255,0.6);
}
.lp-footer__nav{
  display:flex;
  gap:20px;
}
.lp-footer__nav a{
  font-size:13px;
  color:#C99802;
  text-decoration:none;
}
.lp-footer__nav a:hover{
  text-decoration:underline;
  color:#e6b800;
}

/* ========== SCROLL ANIMATIONS ========== */
.lp-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-animate.lp-visible {
    opacity: 1;
    transform: translateY(0);
}
.lp-animate--left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-animate--left.lp-visible {
    opacity: 1;
    transform: translateX(0);
}
.lp-animate--right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-animate--right.lp-visible {
    opacity: 1;
    transform: translateX(0);
}
.lp-animate--scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-animate--scale.lp-visible {
    opacity: 1;
    transform: scale(1);
}
.lp-animate[data-delay="1"] { transition-delay: 0.1s; }
.lp-animate[data-delay="2"] { transition-delay: 0.2s; }
.lp-animate[data-delay="3"] { transition-delay: 0.3s; }
.lp-animate--scale[data-delay="1"] { transition-delay: 0.1s; }
.lp-animate--scale[data-delay="2"] { transition-delay: 0.2s; }
.lp-animate--scale[data-delay="3"] { transition-delay: 0.3s; }

/* Shimmer on CTA buttons */
@keyframes lp-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}
.lp-shimmer {
    position: relative;
    overflow: hidden;
}
.lp-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: lp-shimmer 3s ease-in-out infinite;
}

/* Glow pulse on hero CTA */
@keyframes lp-glow-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 152, 2, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(201, 152, 2, 0); }
}
.lp-glow {
    animation: lp-glow-pulse 2.5s ease-in-out infinite;
}

/* Reduce Motion */
@media (prefers-reduced-motion: reduce) {
    .lp-animate, .lp-animate--left, .lp-animate--right, .lp-animate--scale {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .lp-shimmer::after, .lp-glow { animation: none; }
}

/* ========== RESPONSIVE ========== */

/* Desktop */
@media(min-width:900px){
  .lp-hero__grid{
    grid-template-columns:1fr 1fr;
    gap:48px;
  }
  .lp-hero__text{
    text-align:left;
  }
  .lp-hero__trust-row{
    justify-content:flex-start;
  }
  .lp-hero{
    padding:72px 0 64px;
  }
  .lp-risk-cards{
    grid-template-columns:repeat(3,1fr);
    gap:24px;
  }
  .lp-steps__grid{
    grid-template-columns:repeat(3,1fr);
    gap:32px;
  }
  .lp-testimonials__grid{
    grid-template-columns:repeat(3,1fr);
    gap:24px;
  }
}

/* Tablet */
@media(min-width:600px) and (max-width:899px){
  .lp-risk-cards{
    grid-template-columns:repeat(3,1fr);
    gap:16px;
  }
  .lp-steps__grid{
    grid-template-columns:repeat(3,1fr);
    gap:16px;
  }
  .lp-testimonials__grid{
    grid-template-columns:1fr 1fr;
    gap:16px;
  }
}

/* Quiz screens (non-hero) */
@media(min-width:600px){
  .screen:not(#screen-hero){
    padding:40px 24px;
  }
}

/* Small Mobile */
@media(max-width:480px){
  .options--grid{
    grid-template-columns:1fr;
  }
  .result__score-number{
    font-size:56px;
  }
  .result__email-section{
    padding:24px 16px;
  }
  .option-btn{
    padding:14px 16px;
    font-size:15px;
  }
  .checkbox-option{
    padding:12px 14px;
  }
  .lp-hero__title{
    font-size:22px;
  }
  .lp-risk-card{
    padding:20px 18px;
  }
  .lp-testimonial{
    padding:22px 18px;
  }
  .lp-trustbar__row{
    gap:12px 20px;
  }
  .lp-trustbar__item{
    font-size:12px;
  }
}
