/* ═══════════════════════════════════════════════════════════
   NAVBAR – VOLLSTÄNDIG KORREKTE IMPLEMENTIERUNG
   ═══════════════════════════════════════════════════════════ */

/* Reset */
* { box-sizing: border-box; }

/* Navbar wrapper */
#navbar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

/* Inner row */
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 24px;
}

/* Logo */
.nav-logo img {
  height: 52px;
  width: auto;
  border-radius: 10px;
  object-fit: contain;
  display: block;
}

/* ── Desktop Nav Links ─────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: #1a2332;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.nav-links > li > a:hover { background: #f3f4f6; color: #F59E0B; }
.nav-links > li > a svg { transition: transform .2s; }


/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
  min-width: 220px;
  padding: 8px;
  z-index: 100;
}

.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 500;
  color: #1a2332;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.dropdown a:hover { background: #FEF3C7; color: #D97706; }

/* Call button */
.nav-inner > div > .btn {
  white-space: nowrap;
}

/* ── Hamburger Button ──────────────────────────────────── */
.hamburger {
  display: none;          /* hidden on desktop */
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a2332;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
/* Hamburger → X animation */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.mobile-menu.open {
  max-height: 1000px;
  padding: 12px 16px 20px;
}
.mobile-menu a {
  display: block;
  padding: 11px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  color: #1a2332;
  text-decoration: none;
  transition: background .15s;
}
.mobile-menu a:hover { background: #f3f4f6; }
.mobile-menu .btn {
  margin-top: 8px;
  justify-content: center;
  display: flex;
}


/* ── Mobile Menu ───────────────────────────────────────── */

/* ── Responsive Breakpoints ────────────────────────────── */
@media (max-width: 1023px) {
  .nav-inner { padding: 0 16px; }
}

@media (max-width: 767px) {
  /* Show hamburger, hide desktop nav */
  .hamburger         { display: flex !important; }
  .nav-links         { display: none !important; }
  .nav-inner > div > .btn { display: none; }   /* hide call button on mobile (shown in menu) */
  .nav-inner         { height: 60px; }
  .nav-logo img      { height: 44px; }
}


/* ═══ Page Styles ═══ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:'Plus Jakarta Sans',system-ui,sans-serif;color:#1a2332;background:#fff;line-height:1.6;overflow-x:hidden}
*{-webkit-tap-highlight-color:transparent}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto;display:block}
:root{--orange:#F59E0B;--orange-dark:#D97706;--orange-light:#FEF3C7;--navy:#1a2332;--gray:#6b7280;--gray-bg:#f8fafc;--border:#e5e7eb;--radius:12px;--radius-lg:16px;--shadow:0 2px 12px rgba(0,0,0,.08);--shadow-md:0 4px 24px rgba(0,0,0,.12)}
.container{max-width:1200px;margin:0 auto;padding:0 24px}
.section{padding:80px 0}
.tag{display:inline-block;background:var(--orange-light);color:#92400e;font-size:.8rem;font-weight:600;padding:6px 16px;border-radius:50px;margin-bottom:16px}
.btn{display:inline-flex;align-items:center;gap:8px;padding:14px 24px;border-radius:50px;font-weight:700;font-size:.95rem;cursor:pointer;border:none;transition:all .2s;font-family:inherit}
.btn-orange{background:var(--orange);color:#fff}.btn-orange:hover{background:var(--orange-dark);transform:translateY(-1px);box-shadow:0 6px 20px rgba(245,158,11,.4)}
.btn-wa{background:#25D366;color:#fff}.btn-wa:hover{background:#1da851}




































.breadcrumb{background:var(--gray-bg);padding:12px 0;border-bottom:1px solid var(--border)}
.breadcrumb-inner{max-width:1200px;margin:0 auto;padding:0 24px;display:flex;align-items:center;gap:8px;font-size:.83rem;color:var(--gray)}
.breadcrumb-inner a{color:var(--orange);font-weight:600}
.page-hero{background:var(--navy);padding:72px 0 64px;position:relative;overflow:hidden}
.page-hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 70% 50%,rgba(245,158,11,.08) 0%,transparent 70%)}
.page-hero-content{position:relative;z-index:1;max-width:760px}
.city-tag{display:inline-flex;align-items:center;gap:8px;background:var(--orange);color:#fff;font-size:.8rem;font-weight:700;padding:7px 16px;border-radius:50px;margin-bottom:20px}
.page-hero h1{font-size:clamp(2rem,5vw,3.2rem);font-weight:800;color:#fff;margin-bottom:16px;line-height:1.1}
.page-hero h1 span{color:var(--orange)}
.page-hero p{font-size:clamp(.95rem,2vw,1.05rem);color:rgba(255,255,255,.8);max-width:620px;margin-bottom:32px;line-height:1.75}
.hero-btns{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:28px}
.hero-trust{display:flex;flex-wrap:wrap;gap:20px}
.hero-trust-item{display:flex;align-items:center;gap:6px;font-size:.85rem;color:rgba(255,255,255,.75)}
.hero-trust-item svg{color:var(--orange)}
.content-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;margin-top:0}
.content-text h2{font-size:clamp(1.5rem,3vw,2.1rem);font-weight:800;color:var(--navy);margin-bottom:14px}
.content-text h2 span{color:var(--orange)}
.content-text p{font-size:.95rem;color:var(--gray);line-height:1.75;margin-bottom:14px}
.checklist{list-style:none;display:flex;flex-direction:column;gap:10px;margin:20px 0 28px}
.checklist li{display:flex;align-items:flex-start;gap:10px;font-size:.92rem;color:var(--navy)}
.checklist li svg{color:var(--orange);flex-shrink:0;margin-top:3px}
.content-img{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-md)}
.content-img img{width:100%;height:420px;object-fit:cover}
.info-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:48px}
.info-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:28px 24px;text-align:center;box-shadow:var(--shadow)}
.info-card-icon{width:52px;height:52px;background:var(--orange-light);border-radius:14px;display:flex;align-items:center;justify-content:center;margin:0 auto 14px;font-size:1.4rem}
.info-card h3{font-size:1rem;font-weight:700;color:var(--navy);margin-bottom:8px}
.info-card p{font-size:.875rem;color:var(--gray);line-height:1.6}
.stats-row{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;background:var(--orange);padding:36px 24px;border-radius:var(--radius-lg);margin-top:56px;text-align:center;color:#fff}
.stat-num{font-size:2rem;font-weight:800;display:block}
.stat-lbl{font-size:.82rem;opacity:.85;margin-top:4px}
.faq-list{display:flex;flex-direction:column;gap:12px;margin-top:40px;max-width:800px;margin-left:auto;margin-right:auto}
.faq-item{border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden}
.faq-q{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:20px 24px;cursor:pointer;transition:background .15s}
.faq-q:hover{background:var(--gray-bg)}
.faq-q-text{font-weight:700;font-size:.95rem;color:var(--navy);flex:1}
.faq-toggle{width:28px;height:28px;background:var(--orange-light);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--orange);font-size:1.1rem;flex-shrink:0;transition:transform .3s,background .2s}
.faq-item.open .faq-toggle{transform:rotate(45deg);background:var(--orange);color:#fff}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease,padding .3s;font-size:.9rem;color:var(--gray);line-height:1.7}
.faq-item.open .faq-a{max-height:300px;padding:0 24px 20px}
.cta-banner{background:linear-gradient(135deg,var(--orange),var(--orange-dark));padding:64px 24px;text-align:center}
.cta-banner h2{font-size:clamp(1.6rem,4vw,2.4rem);font-weight:800;color:#fff;margin-bottom:12px}
.cta-banner p{color:rgba(255,255,255,.85);font-size:1rem;margin-bottom:32px}
.cta-btns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-bottom:20px}
.cta-trust{display:flex;gap:24px;justify-content:center;flex-wrap:wrap}
.cta-trust-item{display:flex;align-items:center;gap:6px;font-size:.85rem;color:rgba(255,255,255,.85)}
footer{background:var(--gray-bg);border-top:1px solid var(--border);padding:48px 24px 0}
.footer-grid{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;padding-bottom:40px;border-bottom:1px solid var(--border)}
.footer-brand-logo{margin-bottom:12px}
.footer-brand-logo img{height:52px;width:auto;border-radius:8px;object-fit:contain}
.footer-brand p{font-size:.875rem;color:var(--gray);line-height:1.65;margin-bottom:16px}
.footer-phone{display:inline-flex;align-items:center;gap:8px;background:var(--orange);color:#fff;padding:10px 20px;border-radius:50px;font-weight:700;font-size:.875rem}
.footer-col h4{font-size:.8rem;font-weight:700;text-transform:uppercase;letter-spacing:.07em;color:var(--navy);margin-bottom:14px}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:8px}
.footer-col ul li a{font-size:.875rem;color:var(--gray);transition:color .15s}
.footer-col ul li a:hover{color:var(--orange)}
.footer-contact-list{list-style:none;display:flex;flex-direction:column;gap:8px;margin-top:12px}
.footer-contact-list li{display:flex;align-items:center;gap:8px;font-size:.875rem;color:var(--gray)}
.footer-contact-list li svg{color:var(--orange);flex-shrink:0}
.footer-contact-list li a{color:var(--gray);transition:color .15s}
.footer-contact-list li a:hover{color:var(--orange)}
.footer-bottom{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:20px 0;font-size:.82rem;color:var(--gray)}
.footer-links{display:flex;gap:20px}
.footer-links a{color:var(--gray)}.footer-links a:hover{color:var(--navy)}
.sticky-wa{position:fixed;bottom:24px;right:24px;z-index:999;width:56px;height:56px;background:#25D366;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;box-shadow:0 4px 20px rgba(37,211,102,.5);transition:transform .2s}
.sticky-wa:hover{transform:scale(1.1)}
@media(max-width:1023px){.info-cards{grid-template-columns:1fr 1fr}.footer-grid{grid-template-columns:1fr 1fr}.stats-row{grid-template-columns:1fr 1fr}}
@media(max-width:767px){.page-hero{padding:48px 0 40px}.hero-btns{flex-direction:column;align-items:flex-start}.hero-btns .btn{width:100%;justify-content:center}.content-grid{grid-template-columns:1fr;gap:28px}.content-img img{height:260px}.info-cards{grid-template-columns:1fr}.stats-row{grid-template-columns:1fr 1fr;padding:24px 16px}.footer-grid{grid-template-columns:1fr 1fr}.footer-bottom{flex-direction:column;gap:10px;text-align:center}.cta-btns{flex-direction:column;align-items:center}.cta-btns .btn{width:100%;max-width:320px;justify-content:center}}
@media(max-width:479px){.container{padding:0 14px}.section{padding:48px 0}.footer-grid{grid-template-columns:1fr}.footer-bottom{flex-direction:column;gap:8px}}

/* Hamburger → X Animation */

/* ── Mobile Accordion ── */
.mob-link{display:block;padding:12px 20px;font-weight:600;color:#1a2332;text-decoration:none;border-bottom:1px solid #f3f4f6}
.mob-link:hover{background:#FEF3C7;color:#D97706}
.mob-accordion{border-bottom:1px solid #f3f4f6}
.mob-accordion-head{display:flex;align-items:center;justify-content:space-between;padding:14px 20px;font-weight:700;color:#1a2332;cursor:pointer;user-select:none;transition:background .15s}
.mob-accordion-head:hover{background:#f3f4f6}
.mob-accordion-head svg{transition:transform .3s;flex-shrink:0;color:#F59E0B}
.mob-accordion.open .mob-accordion-head svg{transform:rotate(180deg)}
.mob-accordion-body{max-height:0;overflow:hidden;transition:max-height .35s ease}
.mob-accordion.open .mob-accordion-body{max-height:500px}
.mob-accordion-body a{display:block;padding:10px 20px 10px 32px;font-size:.9rem;font-weight:500;color:#6b7280;text-decoration:none;transition:color .15s,background .15s;border-bottom:1px solid #f9fafb}
.mob-accordion-body a:hover{color:#D97706;background:#FEF3C7}









@media(max-width:600px){
  
  
  
}

/* ── Topbar ── */
.topbar{background:#1a2332;padding:8px 24px;font-size:.82rem;color:rgba(255,255,255,.8)}
.topbar-inner{max-width:1200px;margin:0 auto;display:flex;flex-direction:row;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap}
.topbar-item{display:flex;align-items:center;gap:6px;white-space:nowrap}
.topbar-item a{color:rgba(255,255,255,.8);text-decoration:none;transition:color .15s}
.topbar-item a:hover{color:#F59E0B}
.topbar-item svg{opacity:.7;flex-shrink:0}
@media(max-width:700px){
  .topbar{padding:6px 14px;font-size:.76rem}
  .topbar-inner{justify-content:center;gap:12px}
}
/* ── PROCESS SECTION ── */
.process-section{background:var(--gray-bg,#f8fafc)}
.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:48px;position:relative}
.process-grid::before{content:'';position:absolute;top:30px;left:calc(12.5% + 16px);right:calc(12.5% + 16px);height:2px;background:repeating-linear-gradient(90deg,var(--border,#e2e8f0) 0,var(--border,#e2e8f0) 8px,transparent 8px,transparent 16px)}
.process-card{text-align:center;padding:0 8px}
.process-num{font-size:1.6rem;font-weight:800;color:var(--orange-light,#fbbf24);margin-bottom:4px}
.process-icon{width:60px;height:60px;background:var(--orange,#F59E0B);border-radius:16px;display:flex;align-items:center;justify-content:center;margin:0 auto 16px;color:#fff;font-size:1.3rem;position:relative;z-index:1}
.process-card h4{font-size:1rem;font-weight:700;color:var(--navy,#0f172a);margin-bottom:8px}
.process-card p{font-size:.85rem;color:var(--gray,#6b7280);line-height:1.6}
@media(max-width:1023px){.process-grid{grid-template-columns:1fr 1fr;gap:24px}.process-grid::before{display:none}}
@media(max-width:479px){.process-grid{grid-template-columns:1fr;gap:16px}}
