/* =========================================
   BeeStage – New Visual System (Honey/Canva)
   Keep HTML structure, restyle via CSS only
========================================= */

/* ---- Design Tokens ---- */
:root{
  --honey: #fdba30;      /* warm yellow background */
  --honey-2: #fed88f;    /* lighter honey for subtle areas */
  --ink: #0f0f0f;        /* main text */
  --ink-2: #2b2b2b;      /* secondary text */
  --paper: #ffffff;      /* cards */
  --line: rgba(15,15,15,.10);
  --shadow: 0 18px 40px rgba(15,15,15,.18);
  --shadow-soft: 0 12px 28px rgba(15,15,15,.14);

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;

  --max: 1120px;

  --focus: 0 0 0 4px rgba(15,15,15,.12);
}

/* ---- Reset-ish ---- */

html, body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--honey);
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
a:focus-visible, button:focus-visible{
  outline: none;
  box-shadow: var(--focus);
  border-radius: 12px;
}

/* ---- Layout ---- */
.container{ max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.section{ padding: 78px 0; }
.grid{ display:grid; gap: 22px; }
.grid-2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4{ grid-template-columns: repeat(4, minmax(0,1fr)); }

@media (max-width: 980px){
  .section{ padding: 56px 0; }
  .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; }
}

/* ---- NAV (simple, black text, underline vibe) ---- */
.nav{
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--honey);
  backdrop-filter: blur(10px);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 18px 0;
  gap: 16px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 38px; /* big like your screenshot logo */
  line-height: 1;
}
@media (max-width: 980px){
  .brand{ font-size: 30px; }
}
.brand-mark{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 10px 18px rgba(15,15,15,.18);
}
.nav-links{
  display:flex;
  align-items:center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a{
  font-weight: 400;
  font-size: 18px;
  color: var(--ink);
  opacity: .9;
}
.nav-links a:hover{ opacity: 1; text-decoration: underline; text-underline-offset: 6px; }

/* ---- Buttons (white pill with black text) ---- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(15,15,15,.12);
  background: rgba(255,255,255,.72);
  font-weight: 800;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  user-select: none;
  white-space: nowrap;
  max-height: 30px;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
  background: rgba(255,255,255,.88);
}
.btn.primary{
  background: var(--ink);
  color: var(--paper);
  border-color: rgba(15,15,15,.25);
}
.btn.primary:hover{
  background: #000;
}
.btn.ghost{
  background: transparent;
  border-color: transparent;
}
.btn.ghost:hover{
  background: rgba(255,255,255,.35);
  border-color: rgba(15,15,15,.10);
}

/* ---- Hero ---- */
.hero{
  padding: 60px 0 26px;
}
.hero .wrap{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: center;
}
@media (max-width: 980px){
  .hero .wrap{ grid-template-columns: 1fr; }
}

.pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(15,15,15,.10);
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
}

.h1{
  margin: 18px 0 12px;
  font-weight: 900;
  letter-spacing: -0.02em;

  line-height: 1.02;
  font-size: 60px;
  text-transform: uppercase;

  
}
@media (max-width: 980px){
  .h1{ font-size: 46px; }
}
.lead{
  margin: 0;
  max-width: 60ch;
  font-size: 20px;
  color: rgba(15,15,15,.80);
  font-weight: 600;
}

.hero-cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 20px;

}

.kpi{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.kpi .item{
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(15,15,15,.10);
  border-radius: 18px;
  padding: 12px 14px;
  min-width: 168px;
}
.kpi .num{
  font-weight: 900;
  font-size: 18px;
}
.kpi .lbl{
  margin-top: 2px;
  font-weight: 700;
  font-size: 13px;
  color: rgba(15,15,15,.65);
}

.divider{
  height: 1px;
  background: rgba(15,15,15,.12);
  margin: 22px 0 14px;
}
.subtle{
  margin: 0;
  color: rgba(15,15,15,.65);
  font-weight: 600;
  font-size: 14px;
}

.bee_image{
  width: 220px;                 /* kleiner als Original */
  height: 220px;                /* fixes Quadrat zum Beschneiden */
  object-fit: cover;            /* Bild wird beschnitten statt gestaucht */
  object-position: center left; /* Fokus auf Körper, Flügel nicht abschneiden */

  transform: scaleX(-1);        /* horizontal spiegeln */
  
  position: relative;
  left: -50px;                  /* schiebt die Biene leicht aus dem Container */
  top: -80px;                   /* Höhe feinjustieren */
  
  pointer-events: none;         /* klickt nichts kaputt */
  z-index: 2;
}



/* ===== Before/After Slider (Hover-Drag, Line moves) ===== */
.ba{
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;

  /* slider position in % */
  --pos: 50%;
  box-shadow: 0 18px 40px rgba(15,15,15,.18);
}

@media (max-width: 980px){
  .ba{ height: 320px; }
}

.ba__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* reveal after image depending on --pos */
.ba__img--after{
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

/* moving white line */
.ba__line{
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 3px;
  transform: translateX(-50%);
  background: rgba(255,255,255,.95);
  box-shadow: 0 10px 28px rgba(0,0,0,.20);
  pointer-events: none;
}

/* handle */
.ba__handle{
  position: absolute;
  left: var(--pos);
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  border: 2px solid rgba(15,15,15,.14);
  box-shadow: 0 18px 36px rgba(0,0,0,.18);
  display: grid;
  place-items: center;
  pointer-events: none;
}

.ba__handle::before{
  content:"↔";
  font-weight: 900;
  color: rgba(15,15,15,.70);
  font-size: 18px;
  transform: translateY(-1px);
}

/* labels */
.ba__labels{
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  pointer-events: none;
}

.ba__label{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,15,15,.12);
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 900;
  color: rgba(15,15,15,.85);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}



/* ---- Cards ---- */
.card{
  background: var(--paper);
  border-radius: var(--radius-lg);
}
.card-pad{
  padding: 26px;
}
.card-title{
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.stack-10{ gap: 10px; }




/* ---- Feature blocks (clean, slightly tinted) ---- */
.feature{
  padding: 18px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15,15,15,.10);
  background: rgba(243,189,74,.18);
  min-height: 120px;
}
.feature h3{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
}
.feature p{
  margin: 0;
  color: rgba(15,15,15,.70);
  font-size: 15px;
  font-weight: 650;
}

/* ---- Pricing (white cards, big headings, like screenshot) ---- */
.pricing .plan{
  padding: 28px;
  display:flex;
  flex-direction: column;
  gap: 14px;
  min-height: 420px;
  position: relative;
}
.pricing .plan .name{
  font-weight: 900;
  font-size: 44px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-top: 6px;
}
.pricing .plan .price{
  font-weight: 900;
  font-size: 56px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.pricing .plan .per{
  font-weight: 800;
  color: rgba(15,15,15,.65);
  font-size: 16px;
  margin-top: 6px;
}

.pricing ul{
  margin: 6px 0 0;
  padding-left: 20px;
  color: rgba(15,15,15,.75);
  font-weight: 700;
}
.pricing li{
  margin: 10px 0;
}
.pricing .cta{
  margin-top: auto;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tag{
  display:inline-flex;
  align-items:center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15,15,15,.08);
  border: 1px solid rgba(15,15,15,.10);
  color: rgba(15,15,15,.85);
  font-weight: 900;
  font-size: 12px;
}

/* ---- FAQ (white pills, black caret style-ish) ---- */
.faq .faq-list{ gap: 12px; }
.faq details{
  border: 1px solid rgba(15,15,15,.10);
  border-radius: 22px;
  background: rgba(255,255,255,.85);
  padding: 16px 18px;
  box-shadow: 0 10px 24px rgba(15,15,15,.10);
}
.faq summary{
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
  list-style: none;
  outline: none;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{
  content:"▼";
  font-size: 18px;
  transform: translateY(-1px);
  opacity: .9;
}
.faq details[open] summary::after{
  content:"▲";
}
.faq p{
  margin: 12px 0 0;
  color: rgba(15,15,15,.72);
  font-weight: 650;
  font-size: 15px;
}

/* ---- Final CTA card ---- */
.final-cta{
  padding: 30px;
}
.final-cta__title{ margin: 0 0 10px; }
.final-cta__sub{ margin: 0 0 18px; }
.final-cta__hint{ margin-top: 14px; }

/* ---- Footer ---- */
footer{
  padding: 2rem 0 2rem;
  border-top: 1px solid rgba(15,15,15,.12);
  background: rgba(243,189,74,.85);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: start;
}
@media (max-width: 980px){
  .footer-grid{ grid-template-columns: 1fr; }
}
.footer-brand{ margin-bottom: 10px; font-size: 32px; }
.footer-links{ gap: 10px; }
.footer-head{
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 16px;
}
.footer-linklist{ gap: 8px; }
.footer-linklist a{
  font-weight: 800;
  color: rgba(15,15,15,.75);
}
.footer-linklist a:hover{
  color: rgba(15,15,15,1);
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* ---- Accessibility ---- */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

#features, #trust, #faq, #final-cta{
  background-color: var(--paper);
}

.hero, #how-it-works{
  background-color: var(--honey-2);
}

html, body{
  height: auto;
}
body{
  overflow: visible;
}

/* ===== Feature Cards mit Bild ===== */

.features-grid{
  gap: 26px;
}

.feature-card{
  background: transparent;
  border-radius: 28px;
  overflow: hidden; /* WICHTIG für runde Ecken oben */
  box-shadow: 0 18px 36px rgba(15,15,15,.18);
  display: flex;
  flex-direction: column;
}

.feature-card img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* gelber Textbereich */
.feature-card__body{
  background: var(--honey);
  padding: 22px 22px 26px;
  border-radius: 0 0 28px 28px; /* unten rund */
}

.feature-card__body h3{
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 900;
}

.feature-card__sub{
  margin: 0 0 10px;
  font-style: italic;
  font-weight: 700;
  font-size: 15px;
}

.feature-card__body p{
  margin: 0;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.35;
}

/* Mobile Feinschliff */
@media (max-width: 980px){
  .feature-card img{
    height: 200px;
  }
}

/* ===== HOW IT WORKS (Screenshot Look) ===== */
.how{
  background: var(--honey-2);
  padding: 70px 0;
}

.how__wrap{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 40px;
}

@media (max-width: 980px){
  .how__wrap{ grid-template-columns: 1fr; }
}



@media (max-width: 980px){
  .how__title{ font-size: 54px; }
}

.how__lead{
  margin: 0 0 28px;
  font-size: 18px;
  font-weight: 650;
  color: rgba(15,15,15,.8);
  max-width: 52ch;
}

.how__steps{
  display: grid;
  gap: 22px;
  margin-top: 10px;
}

.how__step{
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
}

.how__num{
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
  color: rgba(15,15,15,.9);
  padding-top: 3px;
}

.how__heading{
  font-weight: 900;
  font-size: 20px;
  margin: 0 0 6px;
}

.how__content p{
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(15,15,15,.8);
  line-height: 1.45;
  max-width: 60ch;
}

/* Right side mockup */
.how__right{
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 980px){
  .how__right{ justify-content: center; }
}

.how__phone{
  position: relative;
  width: min(420px, 100%);
}

.how__phone-img{
  width: 100%;
  height: auto;
  display: block;
}

.how__bee{
  position: absolute;
  right: -8%;
  bottom: -300px;
  width: 150px;
  height: auto;
  pointer-events: none;
  transform: scaleX(-1);        /* horizontal spiegeln */
}

/* ---- Section Headings ---- */
.section-title{
  margin: 0 0 18px;
  font-weight: 900;
  letter-spacing: -0.015em;
  font-size: 46px;
  line-height: 1.05;
  font-size: 60px;
  text-transform: uppercase;
}
@media (max-width: 980px){
  .section-title{ font-size: 36px; }
}
.section-sub{
  margin: 0 0 26px;
  font-weight: 700;
  color: rgba(15,15,15,.70);
  font-size: 18px;
}

/* ===== Pricing Layout (Screenshot look) ===== */
.pricing{
  background: var(--honey);
}

.pricing-toggle{
  position: relative;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(15,15,15,.12);
  border-radius: 18px;
  padding: 6px;
  margin: 10px 0 18px;
}

.pricing-toggle__btn{
  position: relative;
  z-index: 2;
  border: 0;
  background: transparent;
  font-weight: 900;
  padding: 10px 16px;
  border-radius: 14px;
  cursor: pointer;
  color: rgba(15,15,15,.85);
}

.pricing-toggle__btn.is-active{
  color: rgba(15,15,15,1);
}

.pricing-toggle__pill{
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 6px;
  width: calc(50% - 6px);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,15,15,.12);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  transition: transform .22s ease;
}

.pricing-toggle[data-billing="monthly"] .pricing-toggle__pill{
  transform: translateX(100%);
}

/* Bee + grid wrapper like screenshot */
.pricing-layout{
  position: relative;
}

.pricing-bee{
  position: absolute;
  left: 0;
  top: 92px;
  width: 330px;
  height: auto;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 980px){
  .pricing-bee{ display:none; }
}

.pricing-grid{
  position: relative;
  z-index: 2;
}

/* Plan card */
.pricing .plan{
  padding: 34px 34px 22px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15,15,15,.18);
  min-height: 520px;
}

.pricing .plan .name{
  font-weight: 900;
  font-size: 52px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.pricing .plan ul{
  margin: 0;
  padding-left: 20px;
  font-weight: 650;
  color: rgba(15,15,15,.85);
}

.pricing .plan li{
  margin: 12px 0;
}

/* Price CTA pill */
.price-cta{
  margin-top: 18px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,15,15,.12);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 16px 34px rgba(0,0,0,.12);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .14s ease, box-shadow .14s ease;
}

.price-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0,0,0,.16);
}

/* Hover swap: show "Kaufen" */
.price-cta__hover{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 26px;
  background: rgba(255,255,255,.98);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .12s ease, transform .12s ease;
}

.price-cta:hover .price-cta__hover{
  opacity: 1;
  transform: translateY(0);
}

.price-cta:hover .price-cta__value,
.price-cta:hover .price-cta__per,
.price-cta:hover .price-cta__old{
  opacity: 0;
  transform: translateY(-6px);
}

.price-cta__old{
  font-weight: 900;
  color: rgba(15,15,15,.75);
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: #e11d48;
  transform: rotate(-10deg);
  display: inline-block;
  transition: opacity .12s ease, transform .12s ease;
}

.price-cta__value{
  font-weight: 900;
  font-size: 52px;
  letter-spacing: -0.02em;
  transition: opacity .12s ease, transform .12s ease;
}

.price-cta__per{
  font-weight: 800;
  color: rgba(15,15,15,.70);
  font-size: 18px;
  transition: opacity .12s ease, transform .12s ease;
}

/* Price change animation */
.price-cta.is-changing .price-cta__value{
  animation: pricePop .28s ease;
}
@keyframes pricePop{
  0%{ transform: translateY(6px) scale(.98); opacity:.2; }
  60%{ transform: translateY(-2px) scale(1.02); opacity:1; }
  100%{ transform: translateY(0) scale(1); opacity:1; }
}

/* Addons rows like screenshot */
.addon-row{
  margin-top: 12px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,15,15,.12);
  border-radius: 18px;
  padding: 14px 16px;
  display:flex;
  justify-content: space-between;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
}




/* ===== FINAL CTA ===== */
#final-cta{
  background: var(--honey-2);
  padding: 100px 0 110px;
  position: relative;
}

.final-cta-wrap{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 980px){
  .final-cta-wrap{
    grid-template-columns: 1fr;
    text-align: center;
  }
}



@media (max-width: 980px){
  .final-cta-text h2{ font-size: 38px; }
}

.final-cta-text p{
  margin: 0 0 26px;
  font-size: 18px;
  font-weight: 650;
  color: rgba(15,15,15,.85);
  line-height: 1.45;
}

/* Buttons */
.cta-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

@media (max-width: 980px){
  .cta-actions{
    justify-content: center;
  }
}

.cta-primary{
  background: var(--ink);
  color: var(--paper);
  padding: 14px 22px;
  border-radius: 18px;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 18px 36px rgba(15,15,15,.25);
  transition: transform .14s ease, box-shadow .14s ease;
}

.cta-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(15,15,15,.35);
}

.cta-secondary{
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(15,15,15,.12);
  padding: 14px 22px;
  border-radius: 18px;
  font-weight: 900;
  font-size: 18px;
  color: var(--ink);
}

.cta-hint{
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: rgba(15,15,15,.65);
}

/* Bee Art */
.final-cta-art{
  display: flex;
  justify-content: flex-end;
  transform: scaleX(-1);    
}

@media (max-width: 980px){
  .final-cta-art{
    justify-content: center;
    margin-top: 30px;
  }
}

.final-cta-art img{
  width: 260px;
  height: auto;
  transform: rotate(-2deg);
  filter: drop-shadow(0 18px 36px rgba(15,15,15,.25));
  pointer-events: none;
}

.footer-header{
  font-weight: 700;
  padding-bottom: 10px;
}

.footer-grid-2{
  gap: 5px;
}

