
/* ═══ INDEX HERO ═══ */
.hero-index {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 20px 48px;
  overflow: hidden;
}
.hero-index-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-index-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.1) 0%, rgba(0,0,0,.5) 45%, rgba(0,0,0,.85) 100%);
}
.hero-index-content {
  position: relative;
  z-index: 2;
}
.hero-index h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -.4px;
  margin-bottom: 8px;
}
.hero-index-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  margin-bottom: 28px;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
:root{
  --or:#F97316;--or-h:#EA6C0A;
  --wa:#22C55E;--wa-h:#16A34A;
  --dk:#1a1f2e;--dk2:#1e2435;
  --bg:#f1f5f9;--card:#fff;
  --txt:#111827;--mid:#6b7280;--bdr:#e5e7eb;
  --r:16px;--rs:12px;
}
body{font-family:'Inter',sans-serif;background:var(--bg);color:var(--txt);line-height:1.6;-webkit-font-smoothing:antialiased}
a{text-decoration:none;color:inherit}

/* HEADER */
header{background:var(--dk);height:58px;display:flex;align-items:center;justify-content:space-between;padding:0 20px;position:sticky;top:0;z-index:300}
.logo{display:flex;align-items:center;gap:10px;}.logo img{height:40px;width:auto;}.logo span{font-size:1.1rem;font-weight:800;color:#fff;}
.logo em{font-style:normal;color:var(--or)}
.hamburger{background:none;border:none;cursor:pointer;display:flex;flex-direction:column;gap:5px;padding:6px}
.hamburger span{display:block;width:22px;height:2px;background:#fff;border-radius:2px;transition:all .22s}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* NAV */
.nav{display:none;position:fixed;top:58px;left:0;right:0;background:var(--dk);z-index:299;padding:8px 12px 16px;border-top:1px solid rgba(255,255,255,.08);box-shadow:0 12px 32px rgba(0,0,0,.4)}
.nav.open{display:block}
.nav a{display:block;color:rgba(255,255,255,.7);font-size:.95rem;font-weight:600;padding:13px 16px;border-radius:10px;transition:background .15s,color .15s}
.nav a:hover,.nav a.active{background:rgba(255,255,255,.07);color:#fff}

/* BUTTONS */
.btn{display:flex;align-items:center;justify-content:center;gap:10px;width:100%;padding:17px 20px;border-radius:var(--rs);font-family:'Inter',sans-serif;font-size:1rem;font-weight:700;border:none;cursor:pointer;transition:filter .18s,transform .18s;text-decoration:none;line-height:1}
.btn:hover{filter:brightness(1.07);transform:translateY(-1px)}
.btn-or{background:var(--or);color:#fff}
.btn-wa{background:var(--wa);color:#fff}

/* HERO */
.hero{position:relative;min-height:500px;display:flex;flex-direction:column;justify-content:flex-end;padding:0 20px 44px}
.hero-bg{position:absolute;inset:0;background-size:cover;background-position:center}
.hero-bg::after{content:'';position:absolute;inset:0;background:linear-gradient(to bottom,rgba(0,0,0,.15) 0%,rgba(0,0,0,.55) 50%,rgba(0,0,0,.88) 100%)}
.hero-content{position:relative;z-index:1}
.breadcrumb{font-size:.82rem;color:rgba(255,255,255,.55);font-weight:500;margin-bottom:18px;display:flex;align-items:center;gap:6px}
.breadcrumb a{color:rgba(255,255,255,.55)}
.breadcrumb a:hover{color:#fff}
.hero h1{font-size:2.45rem;font-weight:900;color:#fff;line-height:1.08;letter-spacing:-.4px;margin-bottom:8px}
.hero-sub{font-size:.95rem;color:rgba(255,255,255,.6);font-weight:500;margin-bottom:26px}
.hero-btns{display:flex;flex-direction:column;gap:12px}

/* INDEX HERO */


/* SECTIONS */
.sec{padding:48px 20px}
.sec-light{background:var(--bg)}
.sec-dark{background:var(--dk)}
.sec-gray{background:#f8fafc}
.sec-title{font-size:1.9rem;font-weight:900;color:var(--txt);letter-spacing:-.3px;margin-bottom:8px;line-height:1.15}
.sec-dark .sec-title{color:#fff}
.sec-title-center{text-align:center}
.sec-desc{font-size:1rem;color:var(--mid);line-height:1.75;margin-bottom:28px}

/* SERVICE CARDS */
.svc-cards{display:flex;flex-direction:column;gap:16px}
.svc-card{background:var(--card);border-radius:var(--r);padding:24px;box-shadow:0 2px 10px rgba(0,0,0,.07);transition:box-shadow .2s,transform .2s}
.svc-card:hover{box-shadow:0 8px 28px rgba(0,0,0,.12);transform:translateY(-2px)}
.svc-emoji{font-size:2.4rem;display:block;margin-bottom:14px}
.svc-card h3{font-size:1.15rem;font-weight:800;color:var(--txt);margin-bottom:8px}
.svc-card p{font-size:.92rem;color:var(--mid);line-height:1.65;margin-bottom:14px}
.svc-link{font-size:.92rem;font-weight:700;color:var(--or);display:inline-flex;align-items:center;gap:4px;transition:gap .15s}
.svc-link:hover{gap:8px}

/* WARUM */
.warum-list{display:flex;flex-direction:column;gap:22px}
.warum-item{display:flex;align-items:center;gap:16px}
.warum-icon{width:44px;height:44px;flex-shrink:0;border:1.5px solid rgba(249,115,22,.4);border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:1.15rem;background:rgba(249,115,22,.07)}
.warum-text{font-size:1rem;font-weight:600;color:rgba(255,255,255,.88);line-height:1.4}

/* STEPS */
.steps{display:flex;flex-direction:column;gap:36px;align-items:center}
.step{text-align:center;max-width:280px}
.step-num{width:60px;height:60px;border-radius:50%;background:var(--or);display:flex;align-items:center;justify-content:center;font-size:1.4rem;font-weight:900;color:#fff;margin:0 auto 14px;box-shadow:0 4px 18px rgba(249,115,22,.4)}
.step h3{font-size:1.1rem;font-weight:800;margin-bottom:8px}
.step p{font-size:.9rem;color:var(--mid);line-height:1.65}

/* CHECK LIST */
.check-list{list-style:none;display:flex;flex-direction:column;gap:16px}
.check-list li{display:flex;align-items:flex-start;gap:14px;font-size:1rem;color:var(--txt);font-weight:500;line-height:1.5}
.ci{width:26px;height:26px;flex-shrink:0;border:2px solid var(--or);border-radius:50%;display:flex;align-items:center;justify-content:center;margin-top:1px;font-size:.75rem;color:var(--or);font-weight:900}

/* MID CTA */
.mid-cta{background:var(--bg);padding:44px 20px;text-align:center}
.mid-cta h2{font-size:1.6rem;font-weight:900;margin-bottom:10px;line-height:1.2}
.mid-cta p{font-size:.95rem;color:var(--mid);margin-bottom:24px}
.mid-cta-btns{display:flex;flex-direction:column;gap:12px;max-width:460px;margin:0 auto}

/* FAQ */
.faq-sec{background:var(--bg);padding:48px 20px}
.faq-list{display:flex;flex-direction:column;gap:10px}
.faq-item{background:var(--card);border-radius:var(--r);overflow:hidden;box-shadow:0 1px 4px rgba(0,0,0,.06)}
.faq-trigger{display:flex;align-items:center;justify-content:space-between;padding:18px 20px;cursor:pointer;font-size:.97rem;font-weight:600;color:var(--txt);background:none;border:none;width:100%;text-align:left;font-family:'Inter',sans-serif;gap:12px}
.faq-chev{flex-shrink:0;color:var(--mid);font-size:.8rem;transition:transform .25s}
.faq-item.open .faq-chev{transform:rotate(180deg)}
.faq-panel{display:grid;grid-template-rows:0fr;transition:grid-template-rows .3s ease}
.faq-item.open .faq-panel{grid-template-rows:1fr}
.faq-inner{overflow:hidden}
.faq-body{padding:0 20px 18px;font-size:.93rem;color:var(--mid);line-height:1.7;border-top:1px solid var(--bdr);padding-top:14px}

/* ACCORDION (klempner) */
.acc-list{display:flex;flex-direction:column;gap:12px}
.acc-item{background:var(--card);border:1.5px solid var(--bdr);border-radius:var(--r);overflow:hidden;box-shadow:0 2px 8px rgba(0,0,0,.06);transition:border-color .2s}
.acc-item.open{border-color:rgba(249,115,22,.4)}
.acc-trigger{display:flex;align-items:center;gap:14px;padding:20px;cursor:pointer;background:none;border:none;width:100%;text-align:left;font-family:'Inter',sans-serif;transition:background .15s}
.acc-trigger:hover{background:var(--bg)}
.acc-item.open .acc-trigger{background:var(--bg);border-bottom:1px solid var(--bdr)}
.acc-emoji{font-size:1.8rem;flex-shrink:0}
.acc-main{flex:1}
.acc-title{font-size:1.05rem;font-weight:800;color:var(--txt);line-height:1.2}
.acc-sub{font-size:.82rem;color:var(--mid);font-weight:500;margin-top:2px}
.acc-badge{display:inline-block;padding:4px 12px;border-radius:99px;background:rgba(249,115,22,.1);border:1.5px solid rgba(249,115,22,.3);font-weight:800;font-size:.78rem;color:var(--or);white-space:nowrap;flex-shrink:0}
.acc-plus{width:32px;height:32px;border-radius:50%;background:var(--bg);border:1.5px solid var(--bdr);display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:1.2rem;color:var(--txt);transition:all .22s}
.acc-item.open .acc-plus{background:var(--or);border-color:var(--or);color:#fff;transform:rotate(45deg)}
.acc-panel{display:grid;grid-template-rows:0fr;transition:grid-template-rows .35s ease}
.acc-item.open .acc-panel{grid-template-rows:1fr}
.acc-panel-wrap{overflow:hidden}
.acc-body{padding:24px 20px 28px}
.acc-desc{font-size:.95rem;color:var(--mid);line-height:1.75;margin-bottom:22px}
.acc-col-title{font-size:.82rem;font-weight:800;color:var(--txt);text-transform:uppercase;letter-spacing:.5px;margin-bottom:12px;margin-top:20px}
.acc-col-title:first-child{margin-top:0}
/* Only first accordion item shows the + button visually prominent */
.acc-item:not(:first-child) .acc-plus{opacity:.7}

/* CONTACT */
.contact-sec{background:var(--dk2);padding:48px 20px}
.contact-sec h2{font-size:2.1rem;font-weight:900;color:#fff;line-height:1.12;margin-bottom:14px}
.contact-sec h2 em{font-style:normal;color:var(--or)}
.contact-sec>.contact-desc{font-size:.97rem;color:rgba(255,255,255,.5);line-height:1.7;margin-bottom:24px}
.contact-btns{display:flex;flex-direction:column;gap:12px;margin-bottom:28px}
.form-box{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:var(--r);padding:24px}
.fgroup{display:flex;flex-direction:column;gap:5px;margin-bottom:14px}
.fgroup label{font-size:.82rem;font-weight:600;color:rgba(255,255,255,.6)}
.fgroup input,.fgroup textarea{background:rgba(255,255,255,.08);border:1.5px solid rgba(255,255,255,.12);border-radius:var(--rs);padding:14px;font-family:'Inter',sans-serif;font-size:.95rem;color:#fff;outline:none;width:100%;transition:border-color .15s;resize:vertical}
.fgroup input::placeholder,.fgroup textarea::placeholder{color:rgba(255,255,255,.28)}
.fgroup input:focus,.fgroup textarea:focus{border-color:var(--or)}
.fgroup textarea{min-height:90px}

/* FOOTER */
footer{background:var(--dk);padding:36px 20px 24px}
.footer-logo{font-size:1.15rem;font-weight:800;color:#fff;margin-bottom:10px}
.footer-logo em{font-style:normal;color:var(--or)}
.footer-desc{font-size:.88rem;color:rgba(255,255,255,.4);line-height:1.7;margin-bottom:28px}
.footer-sec{margin-bottom:22px}
.footer-sec h4{font-size:.78rem;font-weight:800;color:#fff;text-transform:uppercase;letter-spacing:.8px;margin-bottom:12px}
.footer-sec a{display:block;font-size:.9rem;color:rgba(255,255,255,.5);margin-bottom:8px;transition:color .15s}
.footer-sec a:hover{color:var(--or)}
.f-contact{display:flex;align-items:center;gap:10px;font-size:.9rem;color:rgba(255,255,255,.5);margin-bottom:10px}
.f-contact em{font-style:normal;color:var(--or)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.07);padding-top:18px;text-align:center;font-size:.78rem;color:rgba(255,255,255,.25);line-height:2}
.footer-bottom a{color:rgba(255,255,255,.35);margin:0 8px;transition:color .15s}
.footer-bottom a:hover{color:var(--or)}

/* FAB — positioned at vertical middle of screen */
.fab-wrap{position:fixed;right:16px;top:50%;transform:translateY(-50%);z-index:400;display:flex;flex-direction:column;gap:10px;align-items:flex-end}
.fab{width:54px;height:54px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.3rem;border:none;cursor:pointer;box-shadow:0 4px 16px rgba(0,0,0,.3);transition:transform .18s;text-decoration:none}
.fab:hover{transform:scale(1.1)}
.fab-wa{background:var(--wa)}
.fab-or{background:var(--or)}

/* LEGAL */
.legal{padding:36px 20px;max-width:720px;margin:0 auto}
.legal h1{font-size:1.7rem;font-weight:900;margin-bottom:20px}
.legal h2{font-size:1.1rem;font-weight:700;margin:24px 0 8px}
.legal p,.legal li{font-size:.93rem;color:var(--mid);line-height:1.75;margin-bottom:8px}
.legal ul{padding-left:20px}
.back-link{display:inline-flex;align-items:center;gap:6px;font-size:.88rem;font-weight:700;color:var(--or);margin-bottom:24px}

/* INDEX HERO - image only, no text overlay */
.hero-img-only {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.hero-img-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
/* Text section below hero image */
.hero-text-sec {
  background: var(--bg);
  padding: 28px 20px 32px;
}
.hero-text-sec h1 {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--txt);
  line-height: 1.1;
  letter-spacing: -.4px;
  margin-bottom: 6px;
}
.hero-text-sec .hero-index-sub {
  font-size: .95rem;
  color: var(--mid);
  font-weight: 500;
  margin-bottom: 20px;
}
