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

:root {
  --midnight: #0c1445;
  --navy: #141b4d;
  --sky: #0ea5e9;
  --sky-light: #38bdf8;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --white: #ffffff;
  --ice: #f0f9ff;
  --ice2: #e0f2fe;
  --green: #22c55e;
  --dark: #0f172a;
  --text: #334155;
  --muted: #64748b;
  --border: #e2e8f0;
  --font-head: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --sh-sm: 0 4px 12px rgba(14,165,233,0.08);
  --sh-md: 0 12px 30px rgba(12,20,69,0.1);
  --sh-lg: 0 24px 60px rgba(12,20,69,0.15);
  --sh-glow: 0 0 40px rgba(14,165,233,0.2);
  --transition: all 0.35s ease;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:var(--font-body);color:var(--text);background:var(--white);line-height:1.6;overflow-x:hidden;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:var(--sky);transition:var(--transition)}
ul{list-style:none}
h1,h2,h3,h4{font-family:var(--font-head);color:var(--midnight);line-height:1.15;margin-bottom:1rem}
h1{font-size:clamp(2.5rem,5.5vw,4.25rem);font-weight:800;letter-spacing:-0.03em}
h2{font-size:clamp(2rem,4vw,3rem);font-weight:700;letter-spacing:-0.02em}
h3{font-size:clamp(1.2rem,2.5vw,1.6rem);font-weight:700}
p{margin-bottom:1rem}

.tag{font-family:var(--font-head);text-transform:uppercase;letter-spacing:2px;font-size:0.72rem;font-weight:700;color:var(--sky);display:inline-block;margin-bottom:0.6rem;background:rgba(14,165,233,0.1);padding:0.35rem 0.85rem;border-radius:50px}
.lead{font-size:1.15rem;line-height:1.75;color:var(--muted)}
.tc{text-align:center}
.tl{text-align:left}

/* Layout */
.wrap{width:100%;max-width:1200px;margin:0 auto;padding:0 1.5rem}
.wrap-sm{width:100%;max-width:800px;margin:0 auto;padding:0 1.5rem}
.sec{padding:5.5rem 0}
@media(min-width:768px){.sec{padding:7rem 0}}
.g{display:grid;gap:2rem}
.g2{grid-template-columns:1fr}
.g3{grid-template-columns:1fr}
.g4{grid-template-columns:1fr}
@media(min-width:768px){.g2{grid-template-columns:repeat(2,1fr)}.g4{grid-template-columns:repeat(2,1fr)}}
@media(min-width:992px){.g3{grid-template-columns:repeat(3,1fr)}.g4{grid-template-columns:repeat(4,1fr)}}
.ac{align-items:center}

/* Disclosure */
.disc{background:var(--midnight);color:rgba(255,255,255,0.75);font-size:0.7rem;text-align:center;padding:0.5rem 1rem;font-weight:500;letter-spacing:0.02em}

/* Header */
.header{position:absolute;top:30px;left:0;width:100%;z-index:1000;background:transparent;transition:var(--transition);padding:1.2rem 0}
.header.is-sticky{position:fixed;top:0;background:rgba(255,255,255,0.97);backdrop-filter:blur(16px);padding:0.8rem 0;box-shadow:var(--sh-sm)}
.navbar{display:flex;justify-content:space-between;align-items:center}
.logo{display:flex;align-items:center}
.logo-img{height:32px;width:auto}
.nav-links{display:none}
@media(min-width:992px){.nav-links{display:flex;gap:2rem;align-items:center}.nav-links a{color:var(--text);font-weight:500;font-size:0.875rem;font-family:var(--font-head)}.nav-links a:hover{color:var(--sky)}}
.hamburger{display:flex;flex-direction:column;gap:5px;cursor:pointer;z-index:1001}
.hamburger span{display:block;width:24px;height:2px;background:var(--midnight);transition:var(--transition)}
@media(min-width:992px){.hamburger{display:none}}

/* Mobile Menu */
.mobile-menu{position:fixed;top:0;right:-100%;width:80%;max-width:380px;height:100vh;background:var(--white);z-index:1000;padding:5rem 2rem 2rem;box-shadow:var(--sh-lg);transition:right 0.4s ease;display:flex;flex-direction:column;gap:1.5rem}
.mobile-menu.is-active{right:0}
.mobile-menu a{font-family:var(--font-head);font-size:1.1rem;color:var(--midnight);font-weight:600}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:0.5rem;padding:0.95rem 2.25rem;border-radius:50px;font-family:var(--font-head);font-weight:600;text-align:center;cursor:pointer;transition:var(--transition);border:2px solid transparent;font-size:0.95rem}
.btn-cta{background:var(--orange);color:var(--white);border-color:var(--orange);box-shadow:0 4px 20px rgba(249,115,22,0.35)}
.btn-cta:hover{background:var(--orange-dark);border-color:var(--orange-dark);color:#fff;transform:translateY(-3px);box-shadow:0 8px 30px rgba(249,115,22,0.4)}
.btn-sky{background:var(--sky);color:var(--white);border-color:var(--sky)}
.btn-sky:hover{background:#0284c7;border-color:#0284c7;color:#fff;transform:translateY(-2px);box-shadow:0 8px 25px rgba(14,165,233,0.3)}
.btn-outline{background:transparent;color:var(--midnight);border-color:var(--border)}
.btn-outline:hover{background:var(--midnight);color:var(--white);border-color:var(--midnight)}
.btn-white{background:var(--white);color:var(--midnight);border-color:var(--white)}
.btn-white:hover{background:transparent;color:var(--white);border-color:rgba(255,255,255,0.5)}
.btn-full{width:100%}
.btn-lg{padding:1.15rem 3rem;font-size:1rem;font-weight:700}

/* ===== HERO - Split diagonal ===== */
.hero{background:linear-gradient(135deg,var(--midnight) 0%,var(--navy) 40%,#1a2980 100%);padding:9rem 0 6rem;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:-200px;right:-150px;width:600px;height:600px;background:radial-gradient(circle,rgba(14,165,233,0.15) 0%,transparent 70%);border-radius:50%}
.hero::after{content:'';position:absolute;bottom:-100px;left:-100px;width:400px;height:400px;background:radial-gradient(circle,rgba(249,115,22,0.08) 0%,transparent 70%);border-radius:50%}
.hero-inner{position:relative;z-index:2;display:grid;grid-template-columns:1.2fr 0.8fr;gap:4rem;align-items:center}
.hero h1{color:var(--white)}
.hero .lead{color:rgba(255,255,255,0.7)}
.hero-ctas{display:flex;gap:1rem;margin-top:2.5rem;flex-wrap:wrap}

/* Compensation Amounts (floating cards) */
.hero-amounts{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.hero-amount-card{background:rgba(255,255,255,0.07);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,0.1);border-radius:var(--r-md);padding:1.5rem;text-align:center;transition:var(--transition)}
.hero-amount-card:hover{background:rgba(255,255,255,0.12);border-color:var(--sky);transform:translateY(-4px)}
.hero-amount-val{font-family:var(--font-head);font-size:2rem;font-weight:800;color:var(--sky-light);margin-bottom:0.25rem}
.hero-amount-label{font-size:0.75rem;color:rgba(255,255,255,0.6);font-weight:500}
.hero-badge-row{display:flex;gap:0.75rem;margin-top:2rem;flex-wrap:wrap}
.hero-badge{background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.12);padding:0.4rem 0.85rem;border-radius:50px;font-size:0.75rem;font-weight:600;color:rgba(255,255,255,0.85);display:flex;align-items:center;gap:0.4rem}

/* Stats Counter Bar */
.stats-bar{background:var(--white);border-bottom:1px solid var(--border);position:relative;z-index:10}
.stats-row{display:grid;grid-template-columns:repeat(4,1fr);text-align:center}
.stat-box{padding:2.25rem 1rem;border-right:1px solid var(--border)}
.stat-box:last-child{border-right:none}
.stat-num{font-family:var(--font-head);font-size:2.25rem;font-weight:800;color:var(--sky);line-height:1}
.stat-label{font-size:0.78rem;color:var(--muted);margin-top:0.4rem;font-weight:500;text-transform:uppercase;letter-spacing:0.06em}

/* Cards */
.card{background:var(--white);border-radius:var(--r-lg);padding:2.5rem;box-shadow:var(--sh-md);transition:var(--transition);border:1px solid var(--border);height:100%}
.card:hover{transform:translateY(-6px);box-shadow:var(--sh-lg);border-color:var(--sky)}
.card-icon{width:60px;height:60px;background:var(--ice);border-radius:var(--r-md);display:flex;align-items:center;justify-content:center;margin-bottom:1.25rem;font-size:1.75rem}

/* Check List */
.check-list li{position:relative;padding-left:2rem;margin-bottom:0.8rem;font-size:1rem}
.check-list li::before{content:'\2713';position:absolute;left:0;top:2px;color:var(--white);background:var(--green);width:20px;height:20px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:0.75rem;font-weight:bold}

/* Process Steps - horizontal timeline */
.steps-track{display:grid;grid-template-columns:repeat(4,1fr);gap:0;position:relative;margin-top:3.5rem}
.step-item{text-align:center;position:relative;padding:0 1rem}
.step-item::after{content:'';position:absolute;top:32px;left:50%;width:100%;height:2px;background:linear-gradient(90deg,var(--sky),var(--border));z-index:1}
.step-item:last-child::after{display:none}
.step-circle{width:64px;height:64px;background:linear-gradient(135deg,var(--sky),var(--sky-light));color:var(--white);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.4rem;font-family:var(--font-head);font-weight:800;margin:0 auto 1.25rem;position:relative;z-index:2;box-shadow:0 6px 20px rgba(14,165,233,0.3)}
.step-item h3{font-size:1.1rem}
.step-item p{font-size:0.9rem;color:var(--muted)}

/* Compensation Table */
.comp-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.comp-card{background:var(--white);border:2px solid var(--border);border-radius:var(--r-lg);padding:2.5rem;text-align:center;transition:var(--transition);position:relative;overflow:hidden}
.comp-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,var(--sky),var(--sky-light))}
.comp-card:hover{border-color:var(--sky);transform:translateY(-5px);box-shadow:var(--sh-glow)}
.comp-card--featured{border-color:var(--orange);background:linear-gradient(180deg,#fff7ed 0%,var(--white) 30%)}
.comp-card--featured::before{background:linear-gradient(90deg,var(--orange),#fb923c)}
.comp-card--featured::after{content:'MEISTENS';position:absolute;top:12px;right:-28px;background:var(--orange);color:#fff;font-size:0.6rem;font-weight:700;padding:0.2rem 2.5rem;transform:rotate(45deg);letter-spacing:1px}
.comp-amount{font-family:var(--font-head);font-size:3.25rem;font-weight:800;color:var(--midnight);margin:1rem 0 0.25rem}
.comp-distance{font-size:0.85rem;color:var(--muted);font-weight:500}
.comp-detail{font-size:0.8rem;color:var(--sky);font-weight:600;margin-top:0.75rem}

/* Reviews */
.review-sec{background:linear-gradient(135deg,var(--midnight) 0%,var(--navy) 100%);color:var(--white);position:relative;overflow:hidden}
.review-sec::before{content:'';position:absolute;top:-40%;right:-10%;width:500px;height:500px;background:radial-gradient(circle,rgba(14,165,233,0.1) 0%,transparent 70%);border-radius:50%}
.review-sec .wrap{position:relative;z-index:2}
.rev-card{background:rgba(255,255,255,0.06);backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,0.08);color:var(--white);padding:2rem;border-radius:var(--r-lg);transition:var(--transition)}
.rev-card:hover{background:rgba(255,255,255,0.1);border-color:rgba(14,165,233,0.3)}
.rev-stars{color:#fbbf24;margin-bottom:0.75rem;font-size:1.1rem}
.rev-card p{color:rgba(255,255,255,0.8)}
.rev-author{color:var(--sky-light);font-weight:700;font-size:0.9rem}

/* FAQ */
.faq-item{border:1px solid var(--border);border-radius:var(--r-md);margin-bottom:0.85rem;background:var(--white);overflow:hidden;transition:var(--transition)}
.faq-item:hover{border-color:#cbd5e1}
.faq-header{padding:1.25rem 1.5rem;cursor:pointer;display:flex;justify-content:space-between;align-items:center;font-weight:600;font-size:1.05rem;color:var(--midnight);font-family:var(--font-head);transition:var(--transition)}
.faq-header:hover{background:var(--ice)}
.faq-icon{font-size:1.4rem;color:var(--sky);transition:transform 0.3s}
.faq-item.is-active .faq-icon{transform:rotate(45deg)}
.faq-content{padding:0 1.5rem;max-height:0;overflow:hidden;transition:max-height 0.35s,padding 0.35s}
.faq-item.is-active .faq-content{padding:0 1.5rem 1.5rem;max-height:500px}

/* CTA Banner */
.cta-banner{background:linear-gradient(135deg,var(--midnight),var(--navy),#1a2980);border-radius:var(--r-xl);padding:4rem;text-align:center;position:relative;overflow:hidden;margin:0 1.5rem}
.cta-banner::before{content:'';position:absolute;top:-50%;right:-20%;width:400px;height:400px;background:radial-gradient(circle,rgba(249,115,22,0.12) 0%,transparent 70%);border-radius:50%}
.cta-banner .wrap{position:relative;z-index:2}

/* Order Layout */
.order-layout{display:grid;grid-template-columns:1fr;gap:3rem}
@media(min-width:992px){.order-layout{grid-template-columns:2fr 1fr}}
.sticky-card{position:sticky;top:100px}
.price-card{background:var(--white);border:2px solid var(--sky);border-radius:var(--r-lg);padding:2rem;box-shadow:var(--sh-lg)}
.price-card-header{border-bottom:1px solid var(--border);padding-bottom:1.5rem;margin-bottom:1.5rem}
.price-amount{font-size:2.5rem;font-weight:800;color:var(--sky);line-height:1;font-family:var(--font-head)}

/* Page Header */
.page-header{background:linear-gradient(135deg,var(--ice),var(--ice2));padding:6rem 0 2rem;border-bottom:1px solid var(--border)}

/* Footer */
.footer{background:var(--midnight);color:var(--white);padding:5rem 0 2rem}
.footer a{color:#7dd3fc}
.footer a:hover{color:var(--sky-light)}
.footer-logo-img{height:28px;width:auto;filter:brightness(0) invert(1);margin-bottom:1.25rem}
.ft-heading{font-size:0.78rem;font-weight:600;color:rgba(255,255,255,0.4);text-transform:uppercase;letter-spacing:0.12em;margin-bottom:1.25rem}
.ft-menu{display:flex;flex-direction:column;gap:0.7rem}
.footer-bottom{margin-top:3.5rem;padding-top:2rem;border-top:1px solid rgba(255,255,255,0.06);text-align:center;font-size:0.78rem;color:#475569}

/* Preloader */
.preloader{position:fixed;inset:0;background:var(--white);z-index:9999;display:flex;flex-direction:column;justify-content:center;align-items:center;transition:opacity 0.5s,visibility 0.5s}
.preloader.is-hidden{opacity:0;visibility:hidden}
.preloader-spin{width:44px;height:44px;border:3px solid var(--ice2);border-top-color:var(--sky);border-radius:50%;animation:spin 0.8s linear infinite;margin-bottom:1rem}
.preloader-txt{font-family:var(--font-head);font-size:0.85rem;font-weight:600;color:var(--sky);letter-spacing:0.2em;animation:pulse 1.5s ease-in-out infinite}
.progress-container{width:200px;height:4px;background:var(--ice);margin-top:1.25rem;border-radius:2px;overflow:hidden}
.progress-bar{height:100%;background:linear-gradient(90deg,var(--sky),var(--orange));width:0%;animation:load 3s ease forwards}
@keyframes spin{to{transform:rotate(360deg)}}
@keyframes pulse{0%,100%{opacity:0.3}50%{opacity:1}}
@keyframes load{0%{width:0}100%{width:100%}}

/* Cookie */
.cookie-popup{position:fixed;bottom:-100%;left:0;width:100%;background:var(--midnight);box-shadow:0 -10px 40px rgba(0,0,0,0.25);padding:1.25rem 2rem;z-index:9000;transition:bottom 0.5s cubic-bezier(0.68,-0.55,0.27,1.55)}
.cookie-popup.is-visible{bottom:0}
.cookie-popup h4{color:var(--white);margin-bottom:0.3rem}
.cookie-popup p{color:#94a3b8;font-size:0.84rem;margin:0}
.cookie-popup a{color:var(--sky-light);text-decoration:underline}
.ck-yes{font-family:var(--font-head);background:var(--sky);color:#fff;border:none;padding:0.6rem 1.5rem;border-radius:8px;font-size:0.84rem;font-weight:600;cursor:pointer;transition:0.3s}
.ck-yes:hover{background:#0284c7}
.ck-no{font-family:var(--font-head);background:transparent;color:#94a3b8;border:1px solid #334155;padding:0.6rem 1.5rem;border-radius:8px;font-size:0.84rem;font-weight:500;cursor:pointer;transition:0.3s}
.ck-no:hover{border-color:#94a3b8;color:#fff}

/* Fade */
.fade-in{opacity:0;transform:translateY(30px);transition:opacity 0.8s,transform 0.8s}
.fade-in.is-visible{opacity:1;transform:translateY(0)}

/* Article */
.article-header{background:linear-gradient(135deg,var(--ice),var(--ice2));padding:6rem 0 3rem;text-align:center}
.article-cat{display:inline-block;background:var(--sky);color:white;padding:0.25rem 0.9rem;border-radius:50px;font-size:0.72rem;font-weight:700;margin-bottom:1rem;letter-spacing:1px}
.article-content{max-width:800px;margin:0 auto;font-size:1.05rem;line-height:1.8}
.article-content h2{margin-top:2.5rem}
.pro-con-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem;margin:2rem 0}
@media(max-width:767px){.pro-con-grid{grid-template-columns:1fr}}
.pro-box{padding:2rem;border-radius:var(--r-md);background:rgba(34,197,94,0.04);border:1px solid rgba(34,197,94,0.2)}
.con-box{padding:2rem;border-radius:var(--r-md);background:rgba(239,68,68,0.04);border:1px solid rgba(239,68,68,0.2)}
.con-box .check-list li::before{content:'\2715';background:#ef4444}
.rating-box{text-align:center;background:linear-gradient(135deg,var(--midnight),var(--navy));color:white;padding:3rem 2rem;border-radius:var(--r-lg);margin:3rem 0}
.rating-box .rating-stars{font-size:2.5rem;color:#fbbf24;margin-bottom:0.75rem}

/* Forms */
.form-group{margin-bottom:1.25rem}
.form-control{width:100%;padding:0.9rem 1rem;border:1px solid var(--border);border-radius:var(--r-sm);font-family:var(--font-body);font-size:0.95rem;transition:var(--transition)}
.form-control:focus{outline:none;border-color:var(--sky);box-shadow:0 0 0 3px rgba(14,165,233,0.1)}
.feature-item{display:flex;gap:1rem;margin-bottom:1rem;align-items:flex-start}
.feature-item .icon{color:var(--green);font-size:1.2rem;font-weight:bold}

/* Responsive */
@media(max-width:1024px){
  .hero-inner{grid-template-columns:1fr;text-align:center}
  .hero-ctas{justify-content:center}
  .hero-amounts{max-width:400px;margin:2rem auto 0}
  .hero-badge-row{justify-content:center}
  .comp-grid{grid-template-columns:1fr 1fr}
  .steps-track{grid-template-columns:repeat(2,1fr);gap:2rem}
  .step-item::after{display:none}
}
@media(max-width:768px){
  .hero{padding:7rem 0 4rem}
  .hero-amounts{grid-template-columns:1fr}
  .hero-ctas{flex-direction:column}
  .btn-lg{width:100%}
  .comp-grid{grid-template-columns:1fr}
  .stats-row{grid-template-columns:1fr 1fr}
  .stat-box{border-right:none;border-bottom:1px solid var(--border)}
  .steps-track{grid-template-columns:1fr}
  .cta-banner{margin:0;border-radius:0;padding:3rem 1.5rem}
  .sec{padding:4rem 0}
  .cookie-popup .g2{grid-template-columns:1fr}
}
@media(max-width:480px){
  .stat-num{font-size:1.75rem}
  .comp-amount{font-size:2.5rem}
}
