@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&display=swap');

:root{
  --bg:#0A0A0A;
  --bg2:#111111;
  --bg3:#1A1A1A;
  --blue:#2563EB;
  --blue-light:#3B82F6;
  --blue-pale:rgba(37,99,235,0.12);
  --white:#FFFFFF;
  --off:#A0A0A0;
  --border:rgba(255,255,255,0.08);
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{background:var(--bg);color:var(--white);font-family:'Sora',sans-serif;font-size:1rem;line-height:1.65;overflow-x:hidden}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.container{max-width:1200px;margin:0 auto;padding:0 2.5rem}
.section{padding:7rem 0}
.text-center{text-align:center}

/* Buttons */
.btn{display:inline-flex;align-items:center;gap:.5rem;font-family:'Sora',sans-serif;font-weight:700;font-size:1rem;padding:1rem 2.2rem;border-radius:14px;cursor:pointer;border:none;transition:all .2s;white-space:nowrap}
.btn-blue{background:var(--blue);color:white;box-shadow:0 0 40px rgba(37,99,235,0.35)}
.btn-blue:hover{background:var(--blue-light);box-shadow:0 0 60px rgba(37,99,235,0.5);transform:translateY(-2px)}
.btn-white{background:white;color:#0A0A0A}
.btn-white:hover{background:#F0F0F0;transform:translateY(-2px)}
.btn-outline{background:transparent;color:white;border:1.5px solid var(--border)}
.btn-outline:hover{border-color:var(--blue);color:var(--blue)}
.btn-wa{background:#25D366;color:white;font-weight:700;font-size:1rem;padding:1rem 2.2rem;border-radius:14px;border:none;cursor:pointer;display:inline-flex;align-items:center;gap:.5rem;transition:opacity .2s}
.btn-wa:hover{opacity:.85}
.btn-sm{font-size:.88rem;padding:.65rem 1.5rem}
.btn-full{width:100%;text-align:center;justify-content:center}

/* Cards */
.card{background:var(--bg3);border:1px solid var(--border);border-radius:20px;padding:2.5rem;transition:border-color .25s,transform .25s}
.card:hover{border-color:rgba(37,99,235,0.4);transform:translateY(-4px)}

.img-placeholder{background:var(--bg3);border:1px solid var(--border);border-radius:20px;display:flex;align-items:center;justify-content:center;color:var(--off);font-size:.78rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase}

.label-pill{display:inline-block;background:var(--blue-pale);color:var(--blue-light);font-size:.78rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:.4rem 1.1rem;border-radius:50px;border:1px solid rgba(37,99,235,0.3);margin-bottom:1.5rem}

.section-title{font-size:clamp(2rem,4vw,3.2rem);font-weight:800;line-height:1.15;margin-bottom:1rem}
.section-sub{color:var(--off);font-size:1.05rem;max-width:560px;margin-bottom:3.5rem;line-height:1.7}
.glow-line{width:60px;height:3px;background:var(--blue);border-radius:2px;box-shadow:0 0 12px rgba(37,99,235,0.6);margin-bottom:2rem}

.checklist{list-style:none;display:flex;flex-direction:column;gap:.8rem}
.checklist li{display:flex;align-items:flex-start;gap:.75rem;font-size:.95rem;color:var(--off)}
.checklist li::before{content:'✓';color:var(--blue);font-weight:800;font-size:1rem;flex-shrink:0}

/* Reveal */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .65s ease,transform .65s ease}
.reveal.visible{opacity:1;transform:translateY(0)}
.r2{transition-delay:.12s}
.r3{transition-delay:.24s}
.r4{transition-delay:.36s}

/* Float CTA */
#float-btn{position:fixed;bottom:2rem;right:2rem;z-index:999;background:var(--blue);color:white;font-family:'Sora',sans-serif;font-weight:700;font-size:.9rem;padding:.85rem 1.8rem;border-radius:50px;box-shadow:0 0 40px rgba(37,99,235,0.4);display:flex;align-items:center;gap:.5rem;transition:transform .2s,box-shadow .2s}
#float-btn:hover{transform:scale(1.05);box-shadow:0 0 60px rgba(37,99,235,0.6)}

/* ══ NAV ══ */
.nav{position:fixed;top:0;left:0;right:0;z-index:100;background:rgba(10,10,10,0.85);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border-bottom:1px solid var(--border);height:70px;display:flex;align-items:center}
.nav-inner{display:flex;align-items:center;justify-content:space-between;width:100%;max-width:1200px;margin:0 auto;padding:0 2.5rem}
.nav-brand{display:flex;align-items:center;gap:.5rem;font-weight:700;font-size:1.1rem;color:var(--white)}
.nav-brand::before{content:'';width:8px;height:8px;border-radius:50%;background:var(--blue);box-shadow:0 0 8px var(--blue);flex-shrink:0}
.nav-links{display:flex;gap:2rem;list-style:none;align-items:center}
.nav-links a{font-weight:600;font-size:.88rem;color:var(--off);transition:color .2s}
.nav-links a:hover{color:var(--white)}
.hamburger{display:none;background:none;border:none;cursor:pointer;flex-direction:column;gap:5px;padding:.5rem}
.hamburger span{display:block;width:22px;height:2px;background:var(--white)}
#nav-toggle{display:none}

/* ══ HERO ══ */
.hero{height:100vh;position:relative;overflow:hidden;display:flex;align-items:center}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-bg .img-placeholder{width:100%;height:100%;border-radius:0;border:none}
.hero-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(to right,rgba(10,10,10,.92) 0%,rgba(10,10,10,.7) 50%,rgba(10,10,10,.3) 100%)}
.hero-content{position:relative;z-index:2;width:100%}
.hero-grid{display:grid;grid-template-columns:55% 45%;gap:3rem;align-items:center}
.hero h1{font-size:clamp(3rem,6vw,5.5rem);font-weight:800;line-height:1.05;margin-bottom:1.5rem}
.hero-body{color:var(--off);font-size:1.1rem;max-width:420px;margin-bottom:1.5rem;line-height:1.8}
.hero-stars{display:flex;align-items:center;gap:.5rem;font-size:.88rem;font-weight:600;color:var(--off);margin-bottom:2rem}
.hero-stars span:first-child{color:var(--blue);letter-spacing:2px}
.hero-btns{display:flex;gap:1rem;flex-wrap:wrap}

.hero-card{background:rgba(26,26,26,0.8);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);border:1px solid var(--border);border-radius:24px;padding:2.5rem}
.hero-card h3{font-size:1.4rem;font-weight:700;margin-bottom:.3rem}
.hero-card .hc-sub{color:var(--off);font-size:.9rem;margin-bottom:2rem}
.pakket-pill{display:flex;justify-content:space-between;align-items:center;padding:1rem 1.2rem;border:1px solid var(--border);border-radius:12px;margin-bottom:.8rem;transition:border-color .2s;cursor:pointer}
.pakket-pill:hover{border-color:var(--blue)}
.pakket-pill .pp-name{font-weight:600;font-size:.95rem}
.pakket-pill .pp-price{color:var(--blue);font-weight:700;font-size:.95rem}
.hero-card .btn{margin-top:.5rem}
.hero-card .hc-note{color:var(--off);font-size:.78rem;text-align:center;margin-top:.8rem}

.scroll-indicator{position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);z-index:3;color:var(--off);animation:bobDown 2s ease-in-out infinite}
@keyframes bobDown{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(8px)}}

/* ══ STATS ══ */
.stats-strip{background:var(--bg2);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:3rem 0}
.stats-grid{display:flex;justify-content:center;text-align:center}
.stat-item{flex:1;padding:0 2.5rem;border-right:1px solid var(--border)}
.stat-item:last-child{border-right:none}
.stat-num{font-size:2.2rem;font-weight:800;line-height:1}
.stat-label{font-size:.85rem;color:var(--off);margin-top:.3rem;font-weight:400}

/* ══ STEPS ══ */
.steps-row{display:flex;gap:2rem;justify-content:center}
.step{flex:1;text-align:center;position:relative}
.step-circle{width:48px;height:48px;border-radius:50%;background:var(--blue);color:white;font-weight:800;font-size:1.1rem;display:flex;align-items:center;justify-content:center;margin:0 auto .8rem}
.step h3{font-weight:700;font-size:1rem;margin-bottom:.3rem}
.step p{font-size:.88rem;color:var(--off);max-width:200px;margin:0 auto;line-height:1.5}
.step-line{position:absolute;top:24px;left:calc(50% + 30px);width:calc(100% - 60px);height:2px;border-top:2px dashed rgba(37,99,235,0.3)}
.step:last-child .step-line{display:none}

/* ══ REVIEWS ══ */
.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.review-card{background:var(--bg3);border:1px solid var(--border);border-radius:20px;padding:2rem}
.review-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem}
.review-stars{color:var(--blue);font-size:.95rem;letter-spacing:2px}
.review-date{font-size:.78rem;color:var(--off)}
.review-text{font-style:italic;font-size:.95rem;color:var(--off);line-height:1.7;margin-bottom:1rem}
.review-name{font-weight:700;font-size:.9rem;color:var(--blue)}

/* ══ CTA ══ */
.cta-section{text-align:center;position:relative;overflow:hidden}
.cta-glow{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:600px;height:600px;background:radial-gradient(circle,rgba(37,99,235,0.08),transparent 70%);filter:blur(80px);pointer-events:none}
.cta-content{position:relative;z-index:1;max-width:700px;margin:0 auto}

/* ══ MAP ══ */
.map-wrap{border-radius:20px;overflow:hidden;border:1px solid var(--border)}
.map-wrap iframe{width:100%;height:380px;border:0;display:block}

/* ══ PRICING ══ */
.page-header{padding:10rem 0 5rem;text-align:center;background:var(--bg2)}
.page-header h1{font-size:clamp(2.5rem,5vw,4.5rem);font-weight:800;margin-bottom:1rem}
.page-header p{color:var(--off);font-size:1.05rem;max-width:550px;margin:0 auto}

.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.price-card{background:var(--bg3);border:1px solid var(--border);border-radius:20px;display:flex;flex-direction:column;overflow:hidden;position:relative}
.price-card.featured{border:1.5px solid var(--blue);box-shadow:0 0 60px rgba(37,99,235,0.15)}
.price-badge{background:var(--blue);color:white;font-size:.85rem;font-weight:700;text-align:center;padding:.6rem}
.price-body{padding:2.5rem;flex:1;display:flex;flex-direction:column}
.price-label{font-size:.78rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--blue);margin-bottom:.5rem}
.price-amount{font-size:clamp(3rem,5vw,4rem);font-weight:800;line-height:1}
.price-unit{font-size:1rem;font-weight:400;color:var(--off)}
.price-detail{font-size:.88rem;color:var(--off);margin:.5rem 0 2rem}
.price-divider{height:1px;background:var(--border);margin-bottom:2rem}
.price-small{font-size:.82rem;color:var(--off);text-align:center;margin-top:1rem}

/* Comparison table */
.compare-table{width:100%;border-collapse:collapse;margin-top:3rem;font-size:.9rem}
.compare-table th,.compare-table td{padding:1rem 1.2rem;border:1px solid var(--border);text-align:center}
.compare-table th{background:var(--blue);color:white;font-weight:700}
.compare-table td:first-child{text-align:left;font-weight:600;color:var(--white)}
.compare-table td{color:var(--off)}
.compare-check{color:var(--blue);font-weight:800}

/* ══ FAQ ══ */
.faq-list{max-width:750px;margin:0 auto}
details{border-bottom:1px solid var(--border)}
summary{font-weight:700;font-size:1.05rem;padding:1.3rem 0;cursor:pointer;display:flex;justify-content:space-between;align-items:center;list-style:none;color:var(--white)}
summary::-webkit-details-marker{display:none}
summary::after{content:'+';font-size:1.3rem;color:var(--blue);font-weight:700}
details[open] summary::after{content:'−'}
details p{padding:0 0 1.3rem;color:var(--off);font-size:.95rem;line-height:1.8}

/* ══ ABOUT ══ */
.about-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:4rem;align-items:start}
.about-img{height:500px}
.about-text h2{font-size:clamp(2rem,3.5vw,2.8rem);font-weight:800;margin-bottom:1.2rem}
.about-text p{color:var(--off);font-size:1.05rem;line-height:1.9;margin-bottom:1rem}
.values-grid{display:flex;flex-direction:column;gap:1.5rem;margin-top:2rem}
.value{display:flex;gap:1rem;align-items:flex-start}
.value-icon{width:44px;height:44px;border-radius:12px;background:var(--blue-pale);color:var(--blue);display:flex;align-items:center;justify-content:center;font-size:1.2rem;flex-shrink:0}
.value h3{font-size:1rem;font-weight:700;margin-bottom:.2rem}
.value p{font-size:.9rem;color:var(--off);line-height:1.6}

.stats-blue{background:var(--blue);color:white;padding:4rem 0}
.stats-blue-grid{display:flex;justify-content:center;text-align:center;gap:5rem}
.sbl-num{font-size:clamp(2.5rem,5vw,4rem);font-weight:800;line-height:1}
.sbl-label{font-size:.82rem;color:rgba(255,255,255,.7);margin-top:.3rem}

.pill-cloud{display:flex;flex-wrap:wrap;gap:.5rem}
.pill{display:inline-block;background:var(--bg3);color:var(--off);border:1px solid var(--border);font-size:.88rem;font-weight:600;padding:.5rem 1.3rem;border-radius:50px;transition:all .2s}
.pill:hover{border-color:var(--blue);color:var(--blue)}
.pill-active{background:var(--blue);color:white;border-color:var(--blue)}
.pill-active:hover{background:var(--blue-light)}

.quote-card{background:var(--bg3);border:1px solid var(--border);border-radius:20px;padding:3rem;text-align:center;max-width:680px;margin:0 auto}
.quote-card .qm{font-size:3rem;color:var(--blue);line-height:1;margin-bottom:.5rem}
.quote-card p{font-size:1.15rem;font-weight:700;line-height:1.6;margin-bottom:1rem}
.quote-card cite{font-size:.85rem;color:var(--off);font-style:normal;font-weight:400}

/* ══ THEORIE ══ */
.info-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:4rem;align-items:center}
.info-img{height:450px}
.info-text h2{font-size:clamp(2rem,3.5vw,2.8rem);font-weight:800;margin-bottom:1rem}
.info-text p{color:var(--off);font-size:1.05rem;line-height:1.9;margin-bottom:1rem}
.info-pills{display:flex;gap:1rem;margin-top:1.5rem;flex-wrap:wrap}
.info-pill{background:var(--bg3);border:1px solid var(--border);border-radius:12px;padding:1rem 1.5rem;text-align:center}
.info-pill .ip-big{font-size:1.6rem;font-weight:800;color:var(--blue);display:block}
.info-pill .ip-label{font-size:.8rem;color:var(--off)}
.tips-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.tip-card{background:var(--bg3);border:1px solid var(--border);border-radius:20px;padding:2rem}
.tip-num{width:44px;height:44px;border-radius:50%;background:var(--blue);color:white;font-weight:800;font-size:1.1rem;display:flex;align-items:center;justify-content:center;margin-bottom:1rem}
.tip-card h3{font-weight:700;font-size:1.05rem;margin-bottom:.5rem}
.tip-card p{color:var(--off);font-size:.9rem;line-height:1.7}

/* ══ CONTACT ══ */
.contact-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:3rem;align-items:start}
.contact-phone{font-size:clamp(1.8rem,3.5vw,2.2rem);font-weight:800;color:var(--blue);display:block;margin-bottom:.5rem}
.contact-line{width:80px;height:3px;background:var(--blue);border-radius:2px;margin-bottom:1.5rem;box-shadow:0 0 8px rgba(37,99,235,0.5)}
.contact-detail{font-size:.95rem;color:var(--off);margin-bottom:.5rem;display:flex;gap:.5rem}
.contact-btns{display:flex;gap:.8rem;margin:1.5rem 0;flex-wrap:wrap}
.mini-card{background:var(--bg3);border:1px solid var(--border);border-radius:16px;padding:1.2rem;display:flex;align-items:center;gap:1rem;margin:1.5rem 0}
.mini-dot{width:44px;height:44px;border-radius:50%;background:var(--blue-pale);color:var(--blue);display:flex;align-items:center;justify-content:center;font-weight:800;font-size:.75rem;flex-shrink:0}
.mini-name{font-weight:700;font-size:1rem}
.mini-role{font-size:.8rem;color:var(--off)}
.map-contact{border-radius:16px;overflow:hidden;border:1px solid var(--border);margin-top:1rem}
.map-contact iframe{width:100%;height:280px;border:0;display:block}
.form-card{background:var(--bg3);border:1px solid var(--border);border-radius:24px;padding:2.5rem}
.form-card h3{font-size:1.5rem;font-weight:800;margin-bottom:.3rem}
.form-card .form-sub{font-size:.85rem;color:var(--off);margin-bottom:1.5rem}
.form-group{margin-bottom:1rem}
.form-group label{display:block;font-size:.82rem;font-weight:700;color:var(--off);margin-bottom:.4rem;letter-spacing:.05em}
.form-group input,.form-group textarea{width:100%;background:var(--bg);border:1.5px solid var(--border);border-radius:10px;padding:.9rem 1.2rem;font-family:'Sora',sans-serif;font-size:.95rem;color:var(--white);outline:none;transition:border-color .2s}
.form-group input:focus,.form-group textarea:focus{border-color:var(--blue)}
.form-group textarea{resize:vertical;min-height:120px}

/* ══ FOOTER ══ */
.footer{background:var(--bg2);border-top:1px solid var(--border);padding:4rem 0 0;margin-top:4rem}
.footer-grid{display:grid;grid-template-columns:1.3fr 1fr 1fr;gap:3rem;margin-bottom:3rem}
.footer-logo{font-weight:800;font-size:1.1rem;margin-bottom:.5rem;display:flex;align-items:center;gap:.5rem}
.footer-logo::before{content:'';width:8px;height:8px;border-radius:50%;background:var(--blue);box-shadow:0 0 8px var(--blue)}
.footer-tagline{font-size:.88rem;color:var(--off);margin-bottom:1rem}
.footer-places{font-size:.78rem;color:rgba(255,255,255,.3);line-height:1.8}
.footer h4{font-size:.85rem;font-weight:700;color:var(--blue);margin-bottom:1rem;letter-spacing:.08em;text-transform:uppercase}
.footer-links{list-style:none}
.footer-links li{margin-bottom:.4rem}
.footer-links a{font-size:.88rem;color:var(--off);transition:color .2s}
.footer-links a:hover{color:white}
.footer p{font-size:.88rem;color:var(--off);line-height:1.6}
.footer-bottom{border-top:1px solid var(--border);padding:2rem 0;text-align:center;color:var(--off);font-size:.85rem;margin-top:3rem}

/* ══ RESPONSIVE ══ */
@media(max-width:768px){
  .container{padding:0 1.2rem}
  .section{padding:4.5rem 0}
  .nav-inner{padding:0 1.2rem}
  .nav-links{display:none;position:fixed;top:70px;left:0;right:0;background:var(--bg);flex-direction:column;padding:2rem;gap:1.2rem;border-bottom:1px solid var(--border);z-index:99}
  .nav-links.open{display:flex}
  .hamburger{display:flex}
  .nav .btn{display:none}
  .hero{height:auto;padding:6rem 0 3rem}
  .hero-grid{grid-template-columns:1fr;gap:2rem}
  .hero h1{font-size:clamp(2.5rem,9vw,4rem)}
  .hero-card{margin-top:1rem}
  .scroll-indicator{display:none}
  .stats-grid{display:grid;grid-template-columns:1fr 1fr;gap:0}
  .stat-item{border-right:none;border-bottom:1px solid var(--border);padding:1.5rem}
  .stat-item:nth-child(odd){border-right:1px solid var(--border)}
  .steps-row{flex-direction:column;gap:1.5rem}
  .step-line{display:none}
  .reviews-grid,.pricing-grid,.tips-grid{grid-template-columns:1fr}
  .about-grid,.info-grid,.contact-grid{grid-template-columns:1fr;gap:2rem}
  .about-img,.info-img{height:260px}
  .stats-blue-grid{flex-direction:column;gap:2rem}
  .info-pills{flex-direction:column}
  .footer-grid{grid-template-columns:1fr;gap:2rem}
  .page-header{padding:7rem 0 3rem}
  .page-header h1{font-size:clamp(2rem,8vw,3.5rem)}
  .compare-table{font-size:.75rem;overflow-x:auto;display:block}
  .contact-btns{flex-direction:column}
  #float-btn{bottom:1rem;right:1rem;font-size:.82rem;padding:.75rem 1.4rem}
  .hero-overlay{background:rgba(10,10,10,.9)!important}
}
