/* ==========================================================
   LANVERTO — style.css
   ========================================================== */

:root{
  --navy: #0a1330;
  --navy-2: #0d1a3f;
  --navy-soft: #16214a;
  --orange: #ff7a1a;
  --orange-2: #ff9440;
  --orange-ink: #e0650a;
  --ink: #101425;
  --ink-soft: #5a6178;
  --line: #e7e9f2;
  --panel: #ffffff;
  --bg: #f6f7fb;
  --white: #ffffff;
  --success-bg: #e6f7ee;
  --success-ink: #0d8a4f;
  --error-bg: #fdeaea;
  --error-ink: #c0392b;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(10,19,48,.06);
  --shadow-md: 0 10px 30px rgba(10,19,48,.10);
  --shadow-lg: 0 24px 60px rgba(10,19,48,.18);
  --container: 1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
[hidden]{ display:none !important; }
html{ scroll-behavior:smooth; }
html,body{ overflow-x:hidden; max-width:100%; }
body{
  margin:0;
  font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:'Poppins',sans-serif;
  color:var(--navy);
  line-height:1.2;
  margin:0 0 .5em;
}
p{ margin:0 0 1em; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }
input,textarea{ font-family:inherit; }

.container{ max-width:var(--container); margin:0 auto; padding:0 22px; }

.skip-link{
  position:absolute; left:-9999px; top:0; background:var(--orange); color:#fff;
  padding:10px 16px; border-radius:0 0 8px 0; z-index:9999;
}
.skip-link:focus{ left:0; }

/* ---------- Scroll progress ---------- */
.scroll-progress{
  position:fixed; top:0; left:0; height:3px; width:0%;
  background:linear-gradient(90deg,var(--orange),var(--orange-2));
  z-index:1200; transition:width .1s linear;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:'Poppins',sans-serif; font-weight:600; font-size:14.5px;
  padding:13px 24px; border-radius:999px; border:2px solid transparent;
  cursor:pointer; transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space:nowrap;
}
.btn:active{ transform:scale(.97); }
.btn-primary{
  background:linear-gradient(135deg,var(--orange),var(--orange-ink));
  color:#fff; box-shadow:0 8px 20px rgba(255,122,26,.35);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 12px 26px rgba(255,122,26,.45); }
.btn-outline{
  background:transparent; border-color:var(--navy); color:var(--navy);
}
.btn-outline:hover{ background:var(--navy); color:#fff; transform:translateY(-2px); }
.btn-lg{ padding:15px 30px; font-size:15.5px; }
.btn-block{ width:100%; }
.btn-whatsapp{
  background:#25D366; color:#fff;
}
.btn-whatsapp:hover{ transform:translateY(-2px); box-shadow:0 10px 22px rgba(37,211,102,.4); }
.btn-nav{ display:none; }
@media (min-width:860px){ .btn-nav{ display:inline-flex; } }

.icon-btn{
  display:inline-flex; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius:50%; background:var(--bg); color:var(--navy);
  transition:background .2s, color .2s, transform .2s;
}
.icon-btn:hover{ background:#25D366; color:#fff; transform:translateY(-2px); }

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; transition-delay:var(--delay,0s); }
.reveal.in-view{ opacity:1; transform:translateY(0); }

/* ==========================================================
   NAVBAR
   ========================================================== */
/* Note: backdrop-filter deliberately lives on ::before, not on .navbar itself —
   a filter/backdrop-filter on .navbar would create a new containing block for
   its position:fixed descendant (the mobile nav-links panel), breaking its
   full-viewport sizing on mobile. */
.navbar{
  position:sticky; top:0; z-index:1000;
}
.navbar::before{
  content:""; position:absolute; inset:0; z-index:-1;
  background:rgba(10,19,48,.82);
  backdrop-filter:blur(8px);
  transition:background .3s ease, box-shadow .3s ease;
}
.navbar.is-scrolled::before{
  background:rgba(10,19,48,.96);
  box-shadow:0 4px 24px rgba(0,0,0,.15);
}
.navbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  height:76px;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand-mark{
  width:38px; height:38px; border-radius:11px;
  background:linear-gradient(135deg,var(--orange),var(--orange-ink));
  color:#fff; font-family:'Poppins',sans-serif; font-weight:800; font-size:19px;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 16px rgba(255,122,26,.4);
}
.brand-name{ font-family:'Poppins',sans-serif; font-weight:700; font-size:20px; color:#fff; }

.nav-links{
  display:none; align-items:center; gap:30px;
}
@media (min-width:1020px){ .nav-links{ display:flex; } }
.nav-link{
  font-size:14.5px; font-weight:500; color:#dfe3f2; position:relative; padding:6px 0;
  transition:color .2s;
}
.nav-link::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:2px;
  background:var(--orange); transition:width .25s ease;
}
.nav-link:hover{ color:#fff; }
.nav-link:hover::after{ width:100%; }

.navbar-actions{ display:flex; align-items:center; gap:12px; }
.whatsapp-nav-btn{ background:rgba(255,255,255,.08); color:#fff; }
.whatsapp-nav-btn:hover{ background:#25D366; }

.hamburger{
  display:flex; flex-direction:column; justify-content:center; gap:5px;
  width:40px; height:40px; background:none; border:none; padding:0;
}
@media (min-width:1020px){ .hamburger{ display:none; } }
.hamburger span{ height:2px; width:24px; background:#fff; border-radius:2px; transition:transform .3s, opacity .3s; margin:0 auto; }
.hamburger.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity:0; }
.hamburger.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.nav-links.is-open{
  display:flex; position:fixed; inset:76px 0 0 0; background:var(--navy);
  flex-direction:column; align-items:flex-start; gap:0; padding:12px 22px 30px;
  overflow-y:auto; z-index:999;
}
.nav-links.is-open .nav-link{ width:100%; padding:16px 0; border-bottom:1px solid rgba(255,255,255,.08); font-size:17px; }

/* ==========================================================
   HERO
   ========================================================== */
.hero{
  position:relative; background:linear-gradient(160deg,var(--navy) 0%,var(--navy-2) 55%,#111c46 100%);
  overflow:hidden; padding:60px 0 90px;
}
.hero-bg-glow{
  position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(600px 400px at 85% 10%, rgba(255,122,26,.20), transparent 60%),
    radial-gradient(500px 400px at 10% 90%, rgba(255,148,64,.10), transparent 60%);
}
.hero-inner{
  position:relative; display:grid; grid-template-columns:1fr; gap:50px; align-items:center;
}
@media (min-width:960px){ .hero-inner{ grid-template-columns:1.05fr .95fr; gap:40px; } }

.eyebrow{
  display:inline-block; font-family:'Poppins',sans-serif; font-weight:600; font-size:13px;
  letter-spacing:.04em; color:var(--orange-2); background:rgba(255,122,26,.12);
  padding:7px 16px; border-radius:999px; margin-bottom:18px;
}
.eyebrow.center{ display:block; text-align:center; margin:0 auto 16px; width:fit-content; color:var(--orange-ink); background:rgba(255,122,26,.1); }
.eyebrow.light{ color:var(--orange-2); background:rgba(255,122,26,.15); }

.hero h1{
  font-size:clamp(32px,5.4vw,54px); color:#fff; font-weight:800; letter-spacing:-.01em; margin-bottom:.4em;
}
.hero-sub{ color:#c7cbe0; font-size:17.5px; max-width:520px; margin-bottom:30px; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:32px; }
.hero .btn-outline{ border-color:rgba(255,255,255,.4); color:#fff; }
.hero .btn-outline:hover{ background:#fff; color:var(--navy); }

.hero-perks{ display:flex; flex-wrap:wrap; gap:10px 22px; }
.hero-perks li{ display:flex; align-items:center; gap:7px; color:#dfe3f2; font-size:14px; font-weight:500; }
.hero-perks svg{ color:var(--orange-2); flex-shrink:0; }

/* device mockups */
.hero-visual{ position:relative; display:flex; justify-content:center; }
.device-stack{ position:relative; width:100%; max-width:460px; }

.laptop-device{ position:relative; }
.laptop-screen{
  background:#0d1226; border-radius:14px 14px 0 0; padding:0; overflow:hidden;
  box-shadow:var(--shadow-lg); border:6px solid #1a2140;
}
.laptop-base{
  height:14px; background:linear-gradient(180deg,#2a3155,#171c37);
  border-radius:0 0 10px 10px; margin:0 -10px;
  box-shadow:0 10px 24px rgba(0,0,0,.35);
}
.browser-chrome{
  display:flex; align-items:center; gap:6px; background:#171d3a; padding:9px 12px;
}
.dot{ width:9px; height:9px; border-radius:50%; }
.dot-r{ background:#ff5f57; } .dot-y{ background:#febc2e; } .dot-g{ background:#28c840; }
.browser-url{
  margin-left:10px; background:#0d1226; color:#8891b3; font-size:11px; padding:4px 12px;
  border-radius:6px; flex:1; max-width:200px;
}
.mock-site{ background:#f4f5fa; padding:16px; min-height:230px; }
.mock-nav{ display:flex; align-items:center; gap:14px; margin-bottom:16px; }
.mock-logo{ font-family:'Poppins',sans-serif; font-weight:800; font-size:11px; color:var(--navy); letter-spacing:.03em; }
.mock-logo.sm{ font-size:9px; }
.mock-nav-item{ height:5px; width:26px; background:#d7dbec; border-radius:3px; }
.mock-hero{ background:linear-gradient(120deg,var(--navy),var(--navy-2)); border-radius:12px; padding:20px; margin-bottom:14px; display:flex; flex-direction:column; gap:8px; }
.mock-line{ height:7px; background:rgba(255,255,255,.75); border-radius:4px; }
.mock-line.lg{ width:70%; height:10px; }
.mock-line.md{ width:50%; }
.mock-line.sm{ width:40%; }
.mock-btn{ margin-top:6px; width:80px; height:16px; background:var(--orange); border-radius:20px; }
.mock-btn.sm{ width:60px; height:13px; }
.mock-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
.mock-card{ height:44px; background:#fff; border:1px solid #e6e8f3; border-radius:8px; }
.mock-card.wide{ width:100%; height:70px; margin-top:10px; }

.phone-device{
  position:absolute; right:-26px; bottom:-40px; width:150px;
  background:#0d1226; border-radius:26px; padding:8px; box-shadow:var(--shadow-lg); border:5px solid #1a2140;
}
.phone-notch{ width:44px; height:5px; background:#1a2140; border-radius:4px; margin:0 auto 6px; }
.phone-screen{ background:#f4f5fa; border-radius:16px; padding:10px; min-height:220px; }
.phone-nav{ margin-bottom:10px; justify-content:space-between; }
.mock-burger{ width:16px; height:2px; background:#a9adc4; box-shadow:0 5px 0 #a9adc4,0 -5px 0 #a9adc4; }
.phone-hero{ background:linear-gradient(120deg,var(--orange),var(--orange-ink)); border-radius:10px; padding:14px; margin-bottom:10px; }
.phone-hero .mock-line{ background:rgba(255,255,255,.85); }

@media (max-width:520px){
  .phone-device{ display:none; }
}

/* ---------- Trust strip ---------- */
.trust-strip{ background:var(--panel); border-bottom:1px solid var(--line); }
.trust-strip-inner{
  display:grid; grid-template-columns:repeat(2,1fr); gap:22px; padding:34px 22px;
}
@media (min-width:720px){ .trust-strip-inner{ grid-template-columns:repeat(4,1fr); } }
.trust-item{ text-align:center; }
.trust-item strong{ display:block; font-family:'Poppins',sans-serif; font-weight:800; font-size:30px; color:var(--navy); }
.trust-item span{ font-size:13px; color:var(--ink-soft); }

/* ==========================================================
   SECTIONS (generic)
   ========================================================== */
.section{ padding:90px 0; }
.section-alt{ background:var(--panel); }
.section-dark{ background:linear-gradient(160deg,var(--navy),#111c46); }
.section-dark .section-sub.light{ color:#c7cbe0; }

.section-head{ text-align:center; max-width:640px; margin:0 auto 50px; }
.section-head h2{ font-size:clamp(26px,3.6vw,38px); font-weight:800; }
.section-head h2.light{ color:#fff; }
.section-sub{ color:var(--ink-soft); font-size:16px; }
.placeholder-note{ color:var(--orange-ink); font-weight:600; font-size:14px; }

/* ==========================================================
   DIENSTEN
   ========================================================== */
.service-grid{
  display:grid; grid-template-columns:1fr; gap:22px;
}
@media (min-width:640px){ .service-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1000px){ .service-grid{ grid-template-columns:repeat(4,1fr); } }

.service-card{
  background:var(--panel); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:28px 24px; transition:transform .3s ease, box-shadow .3s ease, border-color .3s;
  position:relative; overflow:hidden;
}
.service-card:hover{
  transform:translateY(-8px); box-shadow:var(--shadow-md); border-color:transparent;
}
.service-icon{
  width:52px; height:52px; border-radius:14px;
  background:linear-gradient(135deg,rgba(255,122,26,.14),rgba(255,122,26,.05));
  color:var(--orange-ink); display:flex; align-items:center; justify-content:center; margin-bottom:16px;
  transition:background .3s, color .3s;
}
.service-card:hover .service-icon{ background:linear-gradient(135deg,var(--orange),var(--orange-ink)); color:#fff; }
.service-card h3{ font-size:18px; margin-bottom:8px; }
.service-card p{ font-size:14px; color:var(--ink-soft); margin-bottom:12px; }
.service-more{
  font-size:12.5px; font-weight:600; color:var(--orange-ink); opacity:0; transform:translateY(6px);
  transition:opacity .3s, transform .3s; display:block;
}
.service-card:hover .service-more{ opacity:1; transform:translateY(0); }

/* ==========================================================
   FEATURE GRID (Wat krijg je)
   ========================================================== */
.feature-grid{
  display:grid; grid-template-columns:1fr; gap:14px;
}
@media (min-width:640px){ .feature-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:960px){ .feature-grid{ grid-template-columns:repeat(3,1fr); } }
.feature-item{
  display:flex; align-items:center; gap:12px; background:var(--bg); border-radius:var(--radius-sm);
  padding:14px 16px; font-size:14.5px; font-weight:500; color:var(--ink);
}
.feature-check{
  width:24px; height:24px; border-radius:50%; background:var(--orange); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:13px; flex-shrink:0; font-weight:700;
}

/* ==========================================================
   PRIJZEN
   ========================================================== */
.pricing-grid{ display:grid; grid-template-columns:1fr; gap:24px; }
@media (min-width:720px){ .pricing-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1080px){ .pricing-grid{ grid-template-columns:repeat(4,1fr); } }

.price-card{
  background:var(--panel); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:32px 26px; position:relative; display:flex; flex-direction:column;
  transition:transform .3s ease, box-shadow .3s ease;
}
.price-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.price-featured{
  background:linear-gradient(165deg,var(--navy),var(--navy-2)); border-color:transparent; color:#fff;
  box-shadow:var(--shadow-lg);
}
.price-featured h3, .price-featured .price-tag-label, .price-featured .price-amount{ color:#fff; }
.price-featured .price-features li{ color:#dfe3f2; }
.price-featured .price-features li::before{ color:var(--orange-2); }
.price-badge{
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:linear-gradient(135deg,var(--orange),var(--orange-ink)); color:#fff; font-size:12px; font-weight:700;
  padding:6px 16px; border-radius:999px; box-shadow:0 6px 14px rgba(255,122,26,.4); white-space:nowrap;
}
.price-card h3{ font-size:20px; margin-bottom:2px; }
.price-tag-label{ font-size:13px; color:var(--ink-soft); }
.price-amount{ font-family:'Poppins',sans-serif; font-weight:800; font-size:36px; color:var(--navy); margin:16px 0 22px; }
.price-amount .from{ font-family:'Inter',sans-serif; font-weight:500; font-size:13px; color:var(--ink-soft); display:block; margin-bottom:-2px; }
.price-amount-custom{ font-size:24px; }
.price-features{ flex:1; margin-bottom:22px; }
.price-features li{
  font-size:14px; color:var(--ink-soft); padding:8px 0 8px 26px; position:relative; border-bottom:1px dashed var(--line);
}
.price-featured .price-features li{ border-bottom-color:rgba(255,255,255,.12); }
.price-features li:last-child{ border-bottom:none; }
.price-features li::before{ content:"✓"; position:absolute; left:0; color:var(--orange-ink); font-weight:700; }

.price-notes{ display:grid; grid-template-columns:1fr; gap:20px; margin-top:44px; }
@media (min-width:800px){ .price-notes{ grid-template-columns:1.3fr 1fr; } }
.price-note-card{
  background:var(--bg); border:1px solid var(--line); border-radius:var(--radius-md); padding:24px 26px;
}
.price-note-card h4{ font-size:15px; margin-bottom:14px; }
.price-note-card ul{ display:grid; grid-template-columns:1fr 1fr; gap:8px 16px; margin-bottom:14px; }
.price-note-card li{ font-size:13.5px; color:var(--ink-soft); padding-left:18px; position:relative; }
.price-note-card li::before{ content:"–"; position:absolute; left:0; color:var(--orange-ink); }
.price-note-small{ font-size:12.5px; color:var(--ink-soft); margin:0; }
.price-note-payment{ display:flex; flex-direction:column; justify-content:center; }
.payment-split{ font-family:'Poppins',sans-serif; font-weight:700; font-size:16px; color:var(--navy); margin-bottom:8px; }
.payment-split span{ color:var(--orange-ink); }

/* ==========================================================
   WERKWIJZE / TIMELINE
   ========================================================== */
.timeline{ display:flex; flex-direction:column; gap:0; max-width:720px; margin:0 auto; position:relative; }
.timeline-item{ display:flex; gap:22px; padding-bottom:40px; position:relative; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{
  content:""; position:absolute; left:23px; top:52px; bottom:0; width:2px;
  background:repeating-linear-gradient(180deg,var(--line) 0 6px,transparent 6px 12px);
}
.timeline-item:last-child::before{ display:none; }
.timeline-num{
  flex-shrink:0; width:48px; height:48px; border-radius:50%;
  background:linear-gradient(135deg,var(--orange),var(--orange-ink)); color:#fff;
  display:flex; align-items:center; justify-content:center; font-family:'Poppins',sans-serif; font-weight:800; font-size:18px;
  box-shadow:0 8px 18px rgba(255,122,26,.35);
}
.timeline-content{ background:var(--panel); border:1px solid var(--line); border-radius:var(--radius-md); padding:18px 22px; flex:1; }
.timeline-content h3{ font-size:17px; margin-bottom:4px; }
.timeline-content p{ font-size:14px; color:var(--ink-soft); margin:0; }

/* ==========================================================
   PORTFOLIO
   ========================================================== */
.portfolio-filters{ display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin-bottom:40px; }
.filter-btn{
  background:var(--panel); border:1px solid var(--line); color:var(--ink-soft); font-weight:600; font-size:13.5px;
  padding:10px 20px; border-radius:999px; transition:all .25s;
}
.filter-btn:hover{ border-color:var(--orange); color:var(--orange-ink); }
.filter-btn.is-active{ background:var(--navy); border-color:var(--navy); color:#fff; }

.portfolio-grid{ display:grid; grid-template-columns:1fr; gap:26px; }
@media (min-width:640px){ .portfolio-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1000px){ .portfolio-grid{ grid-template-columns:repeat(3,1fr); } }

.portfolio-card{
  background:var(--panel); border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden;
  cursor:pointer; transition:transform .3s ease, box-shadow .3s ease; opacity:1; transform:scale(1);
}
.portfolio-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-md); }
.portfolio-card.is-hidden{ display:none; }
.portfolio-thumb{
  height:190px; position:relative; overflow:hidden; padding:0;
  display:flex; align-items:flex-start; justify-content:center;
}
.portfolio-thumb .browser-chrome{ position:absolute; top:0; left:0; right:0; z-index:2; }
.portfolio-thumb .mock-site{ transform:scale(.86); transform-origin:top center; padding-top:44px; width:100%; }
.portfolio-info{ padding:18px 20px; }
.portfolio-info .cat-tag{
  display:inline-block; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.04em;
  color:var(--orange-ink); background:rgba(255,122,26,.1); padding:4px 10px; border-radius:6px; margin-bottom:8px;
}
.portfolio-info h3{ font-size:16.5px; margin-bottom:4px; }
.portfolio-info p{ font-size:13px; color:var(--ink-soft); margin:0; }

/* ==========================================================
   DEMO (interactieve branche demo)
   ========================================================== */
.demo-layout{ display:grid; grid-template-columns:1fr; gap:36px; align-items:start; }
@media (min-width:900px){ .demo-layout{ grid-template-columns:.7fr 1.3fr; } }
.demo-picker{ display:flex; flex-wrap:wrap; gap:10px; }
@media (min-width:900px){ .demo-picker{ flex-direction:column; } }
.demo-chip{
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14); color:#dfe3f2;
  padding:13px 18px; border-radius:14px; font-size:14.5px; font-weight:600; text-align:left;
  transition:all .25s;
}
.demo-chip:hover{ border-color:var(--orange); }
.demo-chip.is-active{ background:linear-gradient(135deg,var(--orange),var(--orange-ink)); border-color:transparent; color:#fff; }
.demo-preview .laptop-screen{ border-color:#28305a; }
.demo-preview .mock-site{ min-height:280px; transition:opacity .25s; }

/* ==========================================================
   CALCULATOR
   ========================================================== */
.calc-panel{
  background:var(--panel); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:36px; max-width:820px; margin:0 auto; box-shadow:var(--shadow-sm);
}
.calc-group{ margin-bottom:28px; }
.calc-label{ font-weight:700; font-family:'Poppins',sans-serif; font-size:15px; margin-bottom:14px; color:var(--navy); }
.calc-options{ display:flex; flex-wrap:wrap; gap:12px; }
.calc-radio, .calc-check{
  display:flex; align-items:center; gap:9px; background:var(--bg); border:1.5px solid var(--line);
  padding:12px 18px; border-radius:12px; font-size:14px; font-weight:500; cursor:pointer; transition:all .2s;
}
.calc-radio:has(input:checked), .calc-check:has(input:checked){
  border-color:var(--orange); background:rgba(255,122,26,.08); color:var(--orange-ink);
}
.calc-radio input, .calc-check input{ accent-color:var(--orange); width:16px; height:16px; }
.calc-checks{ display:grid; grid-template-columns:1fr; gap:10px; }
@media (min-width:640px){ .calc-checks{ grid-template-columns:1fr 1fr; } }
@media (min-width:960px){ .calc-checks{ grid-template-columns:1fr 1fr 1fr; } }

.calc-result{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:16px;
  background:linear-gradient(120deg,var(--navy),var(--navy-2)); border-radius:var(--radius-md); padding:24px 28px; color:#fff;
}
.calc-result-label{ font-size:13px; color:#c7cbe0; display:block; }
.calc-result-price{ font-family:'Poppins',sans-serif; font-size:16px; color:#dfe3f2; }
.calc-result-price strong{ font-size:30px; color:#fff; margin-left:6px; }

/* ==========================================================
   REVIEWS
   ========================================================== */
.review-slider{ max-width:760px; margin:0 auto; overflow:hidden; }
.review-track{ display:flex; transition:transform .5s ease; }
.review-card{
  min-width:100%; background:var(--panel); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:40px; text-align:center;
}
.stars{ color:var(--orange); font-size:20px; letter-spacing:3px; margin-bottom:14px; }
.review-card p{ font-size:17px; font-style:italic; color:var(--ink); margin-bottom:16px; }
.review-author{ font-weight:700; font-size:13.5px; color:var(--ink-soft); }
.review-dots{ display:flex; justify-content:center; gap:8px; margin-top:22px; }
.review-dot{ width:9px; height:9px; border-radius:50%; background:var(--line); border:none; padding:0; transition:background .2s, transform .2s; }
.review-dot.is-active{ background:var(--orange); transform:scale(1.2); }

/* ==========================================================
   CTA STRIP
   ========================================================== */
.cta-strip{ background:linear-gradient(120deg,var(--orange),var(--orange-ink)); padding:60px 0; }
.cta-strip-inner{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:24px;
}
.cta-strip h2{ color:#fff; font-size:26px; margin-bottom:4px; }
.cta-strip p{ color:rgba(255,255,255,.9); margin:0; }
.cta-strip .btn-primary{ background:#fff; color:var(--orange-ink); box-shadow:0 8px 20px rgba(0,0,0,.15); }
.cta-strip .btn-primary:hover{ background:var(--navy); color:#fff; }

/* ==========================================================
   FAQ
   ========================================================== */
.faq-list{ max-width:800px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item{ background:var(--panel); border:1px solid var(--line); border-radius:var(--radius-md); overflow:hidden; }
.faq-question{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  background:none; border:none; text-align:left; padding:20px 24px; font-family:'Poppins',sans-serif;
  font-weight:600; font-size:15.5px; color:var(--navy);
}
.faq-icon{ flex-shrink:0; width:28px; height:28px; border-radius:50%; background:var(--bg); color:var(--orange-ink);
  display:flex; align-items:center; justify-content:center; font-size:18px; transition:transform .3s, background .3s; }
.faq-item.is-open .faq-icon{ transform:rotate(45deg); background:var(--orange); color:#fff; }
.faq-answer{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-answer p{ padding:0 24px 20px; color:var(--ink-soft); font-size:14.5px; margin:0; }

/* ==========================================================
   CONTACT
   ========================================================== */
.contact-layout{ display:grid; grid-template-columns:1fr; gap:36px; }
@media (min-width:900px){ .contact-layout{ grid-template-columns:1.4fr 1fr; } }

.contact-form{
  background:var(--panel); border:1px solid var(--line); border-radius:var(--radius-lg); padding:32px;
}
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
.field-row.single{ grid-template-columns:1fr; }
@media (max-width:560px){ .field-row{ grid-template-columns:1fr; } }
.field{ display:flex; flex-direction:column; gap:6px; }
.field label{ font-size:13px; font-weight:600; color:var(--ink-soft); }
.field input, .field textarea{
  border:1.5px solid var(--line); border-radius:12px; padding:12px 14px; font-size:14.5px;
  background:var(--bg); color:var(--ink); resize:vertical; transition:border-color .2s;
}
.field input:focus, .field textarea:focus{ outline:none; border-color:var(--orange); }
.field.has-error input, .field.has-error textarea{ border-color:var(--error-ink); }
.field-error{ font-size:12px; color:var(--error-ink); min-height:14px; display:block; }
.website-trap{ position:absolute; left:-9999px; top:-9999px; opacity:0; }

.form-msg{ font-size:14px; border-radius:12px; padding:0; margin:0; }
.form-msg.is-success{ background:var(--success-bg); color:var(--success-ink); padding:14px 16px; margin-bottom:16px; }
.form-msg.is-error{ background:var(--error-bg); color:var(--error-ink); padding:14px 16px; margin-bottom:16px; }

.contact-form-actions{ display:flex; flex-wrap:wrap; gap:12px; margin-top:6px; }

.contact-info-card{
  background:linear-gradient(160deg,var(--navy),var(--navy-2)); color:#fff; border-radius:var(--radius-lg);
  padding:32px; height:fit-content;
}
.contact-info-card h3{ color:#fff; font-size:18px; margin-bottom:18px; }
.contact-info-card ul{ display:flex; flex-direction:column; gap:14px; margin-bottom:20px; }
.contact-info-card li{ display:flex; align-items:center; gap:12px; font-size:14.5px; color:#dfe3f2; }
.contact-info-card svg{ color:var(--orange-2); flex-shrink:0; }
.contact-note{ font-size:13px; color:#a9aec8; margin:0; }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer{ background:var(--navy); color:#c7cbe0; padding-top:64px; }
.footer-inner{ display:grid; grid-template-columns:1fr; gap:36px; padding-bottom:44px; }
@media (min-width:720px){ .footer-inner{ grid-template-columns:1.4fr 1fr 1fr 1fr 1fr; } }
.footer-brand p{ font-size:14px; color:#a9aec8; margin:12px 0 18px; }
.footer .brand-name{ color:#fff; }
.footer-social{ display:flex; gap:10px; }
.footer-social a{
  width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center; color:#fff; transition:background .2s, transform .2s;
}
.footer-social a:hover{ background:var(--orange); transform:translateY(-3px); }
.footer-col h4{ color:#fff; font-size:14.5px; margin-bottom:16px; }
.footer-col ul{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ font-size:13.5px; color:#a9aec8; transition:color .2s; }
.footer-col a:hover{ color:var(--orange-2); }
.footer-col li{ font-size:13.5px; color:#a9aec8; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.1); padding:20px 0; }
.footer-bottom p{ font-size:12.5px; color:#8891b3; margin:0; text-align:center; }

/* ==========================================================
   FLOATING WHATSAPP + BACK TO TOP
   ========================================================== */
.whatsapp-float{
  position:fixed; right:20px; bottom:20px; width:58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 26px rgba(37,211,102,.5); z-index:900; transition:transform .25s ease;
  animation:pulse-wa 2.6s infinite;
}
.whatsapp-float:hover{ transform:scale(1.1); }
@keyframes pulse-wa{
  0%{ box-shadow:0 10px 26px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.5); }
  70%{ box-shadow:0 10px 26px rgba(37,211,102,.5), 0 0 0 14px rgba(37,211,102,0); }
  100%{ box-shadow:0 10px 26px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0); }
}

.back-to-top{
  position:fixed; right:20px; bottom:88px; width:44px; height:44px; border-radius:50%;
  background:var(--navy); color:#fff; border:none; display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-md); z-index:899; opacity:0; visibility:hidden; transform:translateY(10px);
  transition:opacity .25s, transform .25s, visibility .25s;
}
.back-to-top.is-visible{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover{ background:var(--orange); }

@media (max-width:520px){
  .whatsapp-float{ right:14px; bottom:14px; width:52px; height:52px; }
  .back-to-top{ right:14px; bottom:76px; width:40px; height:40px; }
}

/* ==========================================================
   MODALS
   ========================================================== */
.modal-overlay{
  position:fixed; inset:0; background:rgba(10,13,32,.6); backdrop-filter:blur(3px);
  display:flex; align-items:center; justify-content:center; padding:20px; z-index:1300;
  opacity:0; visibility:hidden; transition:opacity .25s ease, visibility .25s ease;
}
.modal-overlay.is-open{ opacity:1; visibility:visible; }
.modal{
  background:#fff; border-radius:var(--radius-lg); padding:34px; width:100%; max-width:640px;
  max-height:88vh; overflow-y:auto; position:relative; box-shadow:var(--shadow-lg);
  transform:scale(.94) translateY(10px); transition:transform .3s ease;
}
.modal-overlay.is-open .modal{ transform:scale(1) translateY(0); }
.modal-close{
  position:absolute; top:18px; right:18px; width:36px; height:36px; border-radius:50%; border:none;
  background:var(--bg); color:var(--ink-soft); font-size:22px; line-height:1; display:flex;
  align-items:center; justify-content:center; transition:background .2s, color .2s;
}
.modal-close:hover{ background:var(--orange); color:#fff; }

/* Quote modal */
.quote-progress{ height:6px; background:var(--line); border-radius:999px; overflow:hidden; margin:6px 40px 8px 0; }
.quote-progress-bar{ height:100%; width:14.28%; background:linear-gradient(90deg,var(--orange),var(--orange-2)); transition:width .35s ease; }
.quote-steps-label{ font-size:12px; color:var(--ink-soft); font-weight:600; margin-bottom:22px; }
.quote-step{ display:none; animation:fade-step .35s ease; }
.quote-step.is-active{ display:block; }
@keyframes fade-step{ from{ opacity:0; transform:translateX(10px);} to{ opacity:1; transform:translateX(0);} }
.quote-step h3{ font-size:20px; margin-bottom:20px; }
.quote-radio-group, .quote-check-group{ margin-bottom:4px; }
.quote-nav{ display:flex; justify-content:space-between; gap:12px; margin-top:28px; padding-top:20px; border-top:1px solid var(--line); }
.quote-nav .btn{ flex:1; }
#quoteBack:disabled{ opacity:.4; cursor:not-allowed; }

.quote-summary{ display:flex; flex-direction:column; gap:10px; background:var(--bg); border-radius:var(--radius-md); padding:18px 20px; margin-bottom:16px; }
.quote-summary-row{ display:flex; justify-content:space-between; gap:16px; font-size:14px; border-bottom:1px dashed var(--line); padding-bottom:8px; }
.quote-summary-row:last-child{ border-bottom:none; padding-bottom:0; }
.quote-summary-row span:first-child{ color:var(--ink-soft); }
.quote-summary-row span:last-child{ font-weight:600; text-align:right; max-width:60%; }

/* Project modal */
.project-modal-body .p-thumb{ border-radius:var(--radius-md); overflow:hidden; margin-bottom:20px; border:1px solid var(--line); }
.project-modal-body .cat-tag{
  display:inline-block; font-size:11px; font-weight:700; text-transform:uppercase; color:var(--orange-ink);
  background:rgba(255,122,26,.1); padding:4px 10px; border-radius:6px; margin-bottom:10px;
}
.project-modal-body h3{ font-size:22px; margin-bottom:6px; }
.project-modal-body .p-type{ color:var(--ink-soft); font-size:14px; margin-bottom:16px; }
.project-modal-body .p-functies{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:22px; }
.project-modal-body .p-functies span{
  background:var(--bg); border:1px solid var(--line); font-size:12.5px; padding:6px 12px; border-radius:999px; color:var(--ink);
}

.legal-doc h3{ margin-bottom:14px; }
.legal-doc p{ font-size:14.5px; color:var(--ink-soft); }

/* ==========================================================
   TOAST
   ========================================================== */
.toast{
  position:fixed; left:50%; bottom:30px; transform:translateX(-50%) translateY(20px);
  background:var(--navy); color:#fff; padding:14px 24px; border-radius:999px; font-size:14px; font-weight:500;
  box-shadow:var(--shadow-lg); z-index:1500; opacity:0; visibility:hidden; transition:opacity .3s, transform .3s, visibility .3s;
  max-width:90vw; text-align:center;
}
.toast.is-visible{ opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); }

/* ==========================================================
   RESPONSIVE FIXES
   ========================================================== */
@media (max-width:640px){
  .section{ padding:64px 0; }
  .hero{ padding:44px 0 70px; }
  .cta-strip-inner{ flex-direction:column; align-items:flex-start; }
  .quote-nav{ flex-wrap:wrap; }
}
