/* ── Reset & Base ──────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  --orange:#f97316;
  --yellow:#fbbf24;
  --bg:#0d0d1a;
  --bg2:#111127;
  --text:#ffffff;
  --sub:rgba(255,255,255,0.55);
  --r:14px;
  --t:0.22s ease;
}

html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;background:var(--bg);color:var(--text);line-height:1.6;overflow-x:hidden}
::-webkit-scrollbar{width:8px}
::-webkit-scrollbar-track{background:var(--bg)}
::-webkit-scrollbar-thumb{background:var(--orange);border-radius:4px}
a{color:var(--orange);text-decoration:none}
a:hover{text-decoration:underline}

/* ── Navbar ────────────────────────────────────────────────── */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  padding:20px 40px;
  display:flex;align-items:center;justify-content:space-between;
  transition:background var(--t),box-shadow var(--t),padding var(--t);
}
.nav.scrolled{
  background:rgba(13,13,26,0.88);
  backdrop-filter:blur(16px);
  box-shadow:0 2px 24px rgba(0,0,0,0.45);
  padding:13px 40px;
}
.nav__brand{display:flex;align-items:center;gap:12px;text-decoration:none}
.nav__logo{width:34px;height:34px;border-radius:8px}
.nav__name{
  font-size:1.2rem;font-weight:800;
  background:linear-gradient(135deg,var(--orange),var(--yellow));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.nav__links{display:flex;gap:28px;list-style:none;align-items:center}
.nav__links a{color:rgba(255,255,255,.7);font-size:.9rem;font-weight:500;text-decoration:none;transition:color var(--t)}
.nav__links a:hover{color:#fff}

/* ── Hero ──────────────────────────────────────────────────── */
.hero{
  position:relative;min-height:100vh;
  display:flex;align-items:center;justify-content:center;
  text-align:center;overflow:hidden;padding:140px 20px 100px;
}
.hero__glow1{
  position:absolute;top:-10%;left:-10%;width:60%;height:60%;
  background:radial-gradient(circle,rgba(249,115,22,.15) 0%,transparent 70%);pointer-events:none;
}
.hero__glow2{
  position:absolute;bottom:-10%;right:-10%;width:50%;height:50%;
  background:radial-gradient(circle,rgba(99,102,241,.1) 0%,transparent 70%);pointer-events:none;
}
.particles{position:absolute;inset:0;overflow:hidden;pointer-events:none}
.p{
  position:absolute;bottom:-10px;border-radius:50%;
  background:rgba(251,191,36,.6);
  animation:rise linear infinite;
}
@keyframes rise{
  0%{transform:translateY(0) rotate(0deg);opacity:0}
  10%{opacity:.7}90%{opacity:.5}
  100%{transform:translateY(-110vh) rotate(720deg);opacity:0}
}
.p:nth-child(1) {left:4%;  width:4px;height:4px;animation-duration:9s; animation-delay:0s}
.p:nth-child(2) {left:11%; width:6px;height:6px;animation-duration:13s;animation-delay:1.5s}
.p:nth-child(3) {left:19%; width:3px;height:3px;animation-duration:8s; animation-delay:3s}
.p:nth-child(4) {left:28%; width:7px;height:7px;animation-duration:15s;animation-delay:.5s}
.p:nth-child(5) {left:37%; width:4px;height:4px;animation-duration:10s;animation-delay:2s}
.p:nth-child(6) {left:47%; width:5px;height:5px;animation-duration:12s;animation-delay:4s}
.p:nth-child(7) {left:54%; width:3px;height:3px;animation-duration:9s; animation-delay:1s}
.p:nth-child(8) {left:61%; width:6px;height:6px;animation-duration:14s;animation-delay:3.5s}
.p:nth-child(9) {left:69%; width:4px;height:4px;animation-duration:11s;animation-delay:0s}
.p:nth-child(10){left:77%; width:5px;height:5px;animation-duration:8s; animation-delay:2.5s}
.p:nth-child(11){left:84%; width:3px;height:3px;animation-duration:13s;animation-delay:1s}
.p:nth-child(12){left:91%; width:7px;height:7px;animation-duration:10s;animation-delay:4.5s}
.p:nth-child(13){left:14%; width:5px;height:5px;animation-duration:16s;animation-delay:2s}
.p:nth-child(14){left:41%; width:4px;height:4px;animation-duration:11s;animation-delay:5s}
.p:nth-child(15){left:67%; width:6px;height:6px;animation-duration:9s; animation-delay:1.5s}
.p:nth-child(16){left:94%; width:3px;height:3px;animation-duration:12s;animation-delay:3s}
.p:nth-child(17){left:33%; width:4px;height:4px;animation-duration:10s;animation-delay:6s}
.p:nth-child(18){left:58%; width:5px;height:5px;animation-duration:14s;animation-delay:0.8s}

.hero__content{position:relative;z-index:1;max-width:760px}
.hero__logo{width:140px;height:140px;border-radius:28px;margin-bottom:28px;animation:pulse 3s ease infinite}
@keyframes pulse{0%,100%{box-shadow:0 0 0 0 rgba(249,115,22,0)}50%{box-shadow:0 0 32px 8px rgba(249,115,22,.2)}}
.hero__title{
  font-size:clamp(2.4rem,6vw,4.5rem);font-weight:900;
  line-height:1.08;margin-bottom:22px;letter-spacing:-.02em;
}
.grad{
  background:linear-gradient(135deg,var(--orange),var(--yellow));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.hero__sub{font-size:clamp(1rem,2.5vw,1.2rem);color:var(--sub);max-width:560px;margin:0 auto 36px}
.hero__btns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-bottom:20px}
.btn-dl{
  display:inline-flex;flex-direction:column;align-items:center;
  padding:16px 32px;border-radius:10px;font-weight:700;
  background:linear-gradient(135deg,var(--orange),#ea6c0a);
  color:#fff;box-shadow:0 4px 24px rgba(249,115,22,.4);
  text-decoration:none;transition:all var(--t);
}
.btn-dl:hover{transform:translateY(-2px);box-shadow:0 8px 32px rgba(249,115,22,.55);text-decoration:none;color:#fff}
.btn-dl__main{font-size:1rem;font-weight:800}
.btn-dl__hint{font-size:.75rem;font-weight:500;opacity:.85;margin-top:2px}
.btn-feat{
  display:inline-flex;align-items:center;gap:8px;
  padding:16px 28px;border-radius:10px;font-size:.95rem;font-weight:700;
  background:transparent;color:var(--text);border:1.5px solid rgba(255,255,255,.2);
  text-decoration:none;transition:all var(--t);
}
.btn-feat:hover{border-color:var(--orange);color:var(--orange);transform:translateY(-2px);text-decoration:none}
.hero__hint{font-size:.82rem;color:var(--sub)}
.hero__meta{font-size:.82rem;color:rgba(255,255,255,.4);margin-top:10px}
.hero__scroll{
  position:absolute;bottom:32px;left:50%;transform:translateX(-50%);
  color:var(--sub);font-size:1.4rem;animation:bounce 2s ease infinite;
}
@keyframes bounce{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(8px)}}

/* ── Buttons ───────────────────────────────────────────────── */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:14px 28px;border-radius:10px;font-size:.95rem;font-weight:700;
  cursor:pointer;text-decoration:none;transition:all var(--t);border:none;
}
.btn-primary{
  background:linear-gradient(135deg,var(--orange),#ea6c0a);
  color:#fff;box-shadow:0 4px 20px rgba(249,115,22,.35);
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 8px 28px rgba(249,115,22,.5);text-decoration:none;color:#fff}

/* ── Section base ──────────────────────────────────────────── */
.section{padding:90px 20px}
.section--dark{background:var(--bg2)}
.section--dl{background:rgba(249,115,22,.04)}
.sec-head{text-align:center;margin-bottom:56px}
.sec-title{font-size:clamp(1.8rem,4vw,2.6rem);font-weight:800;margin-bottom:14px}
.sec-sub{color:var(--sub);font-size:1.05rem;max-width:560px;margin:0 auto}

/* ── Features ──────────────────────────────────────────────── */
.feat-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:20px;max-width:1000px;margin:0 auto;
}
.feat-card{
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r);padding:28px 24px;
  transition:border-color var(--t),transform var(--t);
}
.feat-card:hover{border-color:rgba(249,115,22,.3);transform:translateY(-3px)}
.feat-icon{font-size:2rem;margin-bottom:14px}
.feat-title{font-size:1.05rem;font-weight:700;margin-bottom:8px}
.feat-desc{color:var(--sub);font-size:.88rem;line-height:1.65}

/* ── Info section ──────────────────────────────────────────── */
.info-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:60px;align-items:center;max-width:1000px;margin:0 auto;
}
.info-title{font-size:1.8rem;font-weight:800;margin-bottom:20px;line-height:1.2}
.info-list{list-style:none;display:flex;flex-direction:column;gap:10px}
.info-list li{
  display:flex;align-items:flex-start;gap:10px;
  color:rgba(255,255,255,.8);font-size:.95rem;
}
.info-list li::before{content:"✓";color:var(--orange);font-weight:700;flex-shrink:0;margin-top:1px}

/* Label preview mockup */
.label-preview{
  background:#fff;color:#1a1a1a;border-radius:12px;
  padding:20px 22px;font-family:'Inter',sans-serif;
  box-shadow:0 20px 60px rgba(0,0,0,0.5);max-width:320px;margin:0 auto;
}
.lp-name{font-size:1.5rem;font-weight:900;color:#111;margin-bottom:2px}
.lp-date{font-size:.75rem;color:#999;margin-bottom:2px}
.lp-cat{font-size:.8rem;color:#666;margin-bottom:10px}
.lp-divider{border:none;border-top:1px solid #eee;margin-bottom:12px}
.lp-price{display:flex;align-items:flex-end;gap:2px;margin-bottom:4px}
.lp-euro{font-size:3rem;font-weight:900;color:#111;line-height:1}
.lp-cents{font-size:1.6rem;font-weight:900;color:var(--orange);line-height:1;margin-bottom:6px}
.lp-sym{font-size:1.1rem;font-weight:700;color:#555;margin-bottom:4px;margin-left:2px}
.lp-pfand{font-size:.75rem;color:#888;margin-bottom:4px}
.lp-unit{font-size:.78rem;color:#aaa}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:16px}
.faq-item{
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r);overflow:hidden;
}
.faq-q{
  width:100%;text-align:left;padding:20px 24px;
  background:none;border:none;color:var(--text);
  font-size:1rem;font-weight:600;cursor:pointer;
  display:flex;justify-content:space-between;align-items:center;gap:12px;
  font-family:'Inter',sans-serif;transition:color var(--t);
}
.faq-q:hover{color:var(--orange)}
.faq-q .arrow{font-size:.8rem;transition:transform var(--t);flex-shrink:0}
.faq-item.open .faq-q .arrow{transform:rotate(180deg)}
.faq-a{
  max-height:0;overflow:hidden;
  transition:max-height .3s ease,padding .3s ease;
  padding:0 24px;color:var(--sub);font-size:.95rem;line-height:1.75;
}
.faq-item.open .faq-a{max-height:300px;padding:0 24px 20px}

/* ── Download section ──────────────────────────────────────── */
.dl-section{text-align:center}
.dl-logo{width:100px;height:100px;border-radius:22px;margin-bottom:24px}
.dl-title{font-size:clamp(1.8rem,4vw,2.6rem);font-weight:800;margin-bottom:14px}
.dl-sub{color:var(--sub);margin-bottom:36px}
.steps{display:flex;justify-content:center;gap:32px;margin-top:40px;flex-wrap:wrap}
.step{text-align:center;max-width:160px}
.step-num{
  width:40px;height:40px;border-radius:50%;
  background:rgba(249,115,22,.15);border:1.5px solid rgba(249,115,22,.4);
  display:flex;align-items:center;justify-content:center;
  font-size:.95rem;font-weight:800;color:var(--orange);
  margin:0 auto 12px;
}
.step-lbl{font-size:.85rem;color:var(--sub);line-height:1.5}
.dl-meta{
  display:flex;justify-content:center;gap:28px;margin-top:32px;flex-wrap:wrap;
  font-size:.82rem;color:rgba(255,255,255,.4);
}
.dl-meta span::before{content:"✓ ";color:var(--orange)}

/* ── Footer ────────────────────────────────────────────────── */
.footer{
  border-top:1px solid rgba(255,255,255,.07);padding:32px 40px;
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:16px;
}
.footer-brand{display:flex;align-items:center;gap:10px;text-decoration:none}
.footer-logo{width:28px;height:28px;border-radius:6px}
.footer-name{font-weight:700;font-size:1rem;color:var(--text)}
.footer-copy{color:var(--sub);font-size:.85rem}
.footer-links{display:flex;gap:20px}
.footer-links a{color:var(--sub);font-size:.85rem;text-decoration:none;transition:color var(--t)}
.footer-links a:hover{color:var(--orange)}

/* ── Legal pages ───────────────────────────────────────────── */
.legal{min-height:100vh;padding:100px 20px 60px;max-width:800px;margin:0 auto}
.legal-back{display:inline-flex;align-items:center;gap:6px;color:var(--sub);text-decoration:none;font-size:.9rem;margin-bottom:40px;transition:color var(--t)}
.legal-back:hover{color:var(--orange)}
.legal-title{font-size:2.2rem;font-weight:800;margin-bottom:8px}
.legal-date{color:var(--sub);font-size:.9rem;margin-bottom:40px}
.legal-section{margin-bottom:36px;padding-bottom:36px;border-bottom:1px solid rgba(255,255,255,.07)}
.legal-section:last-child{border-bottom:none}
.legal-section h2{font-size:1.15rem;font-weight:700;color:var(--orange);margin-bottom:12px}
.legal-section p{color:rgba(255,255,255,.75);font-size:.95rem;line-height:1.78;margin-bottom:10px}
.legal-section ul{color:rgba(255,255,255,.75);font-size:.95rem;line-height:1.78;padding-left:20px}
.legal-section ul li{margin-bottom:6px}
.legal-section a{color:var(--orange)}

/* ── Responsive ────────────────────────────────────────────── */
@media(max-width:768px){
  .nav{padding:14px 20px}
  .nav.scrolled{padding:10px 20px}
  .nav__links{gap:16px}
  .nav__links a{font-size:.8rem}
  .info-grid{grid-template-columns:1fr;gap:40px}
  .footer{flex-direction:column;align-items:flex-start;padding:24px 20px}
  .cookie-btns{flex-direction:column}
  .steps{gap:24px}
}
