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

:root{
  --bg:#f6f7fb;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --primary:#1d4ed8;
  --accent:#06b6d4;
  --border:#e5e7eb;
}

body{
  margin:0;
  font-family: Inter, sans-serif;
  background:linear-gradient(180deg,#ffffff 0%, #f6f7fb 100%);
  color:var(--text);
  line-height:1.6;
}

/* NAV */
.nav{
  display:flex;
  justify-content:space-between;
  padding:22px 70px;
  background:rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:10;
}

.logo{
  font-weight:700;
  color:var(--primary);
  letter-spacing:-0.5px;
}

.links a{
  margin-left:18px;
  text-decoration:none;
  color:var(--muted);
  font-size:14px;
  transition:0.2s;
}

.links a:hover{
  color:var(--primary);
}

/* HERO */
.hero{
  padding:140px 70px 90px;
  max-width:1100px;
}

.hero h1{
  font-size:60px;
  letter-spacing:-2px;
  line-height:1.05;
}

.hero p{
  font-size:18px;
  color:var(--muted);
  max-width:720px;
  margin-top:18px;
}

.button{
  display:inline-block;
  margin-top:28px;
  padding:14px 22px;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  color:white;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  transition:0.25s;
  box-shadow:0 10px 30px rgba(29,78,216,0.2);
}

.button:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 40px rgba(29,78,216,0.25);
}

/* SECTIONS */
.section{
  padding:100px 70px;
  max-width:1100px;
  margin:auto;
}

h2{
  font-size:36px;
  letter-spacing:-1px;
  margin-bottom:40px;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
}

/* CARD */
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:24px;
  transition:0.25s;
  position:relative;
  overflow:hidden;
}

.card:hover{
  transform:translateY(-6px);
  border-color:#cbd5e1;
  box-shadow:0 20px 50px rgba(0,0,0,0.06);
}

/* subtle glow */
.card::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.6),transparent);
  transition:0.6s;
}

.card:hover::before{
  left:100%;
}

/* STATS */
.stats{
  display:flex;
  justify-content:space-around;
  text-align:center;
  gap:30px;
  flex-wrap:wrap;
}

.stats b{
  font-size:28px;
  color:var(--primary);
}

/* CTA SECTION */
.cta{
  margin:100px 70px;
  background:linear-gradient(135deg,#1d4ed8,#06b6d4);
  color:white;
  text-align:center;
  padding:90px 30px;
  border-radius:24px;
}

.cta .button{
  background:white;
  color:#1d4ed8;
  box-shadow:none;
}

.cta h2{
  color:white;
}

/* RESPONSIVE */
@media(max-width:768px){
  .hero h1{font-size:42px;}
  .nav{padding:18px 20px;}
  .hero,.section{padding:80px 20px;}
}


/* =========================
   FINAL POLISH LAYER
   ========================= */

/* betere typografie hiërarchie */
h1,h2,h3{
  letter-spacing:-0.8px;
}

p{
  line-height:1.7;
}

/* zachtere spacing feel */
.section{
  padding:110px 70px;
}

/* cards verfijning */
.card{
  box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.card:hover{
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* betere button micro-interactie */
.button{
  position:relative;
  overflow:hidden;
}

.button::after{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:rgba(255,255,255,0.25);
  transition:0.5s;
}

.button:hover::after{
  left:100%;
}

/* focus states (professioneel detail) */
a:focus, button:focus{
  outline:2px solid #1d4ed8;
  outline-offset:3px;
}

/* betere grid spacing balans */
.grid{
  gap:26px;
}

/* CTA verfijning */
.cta{
  box-shadow:0 30px 80px rgba(29,78,216,0.25);
}

/* subtiele background diepte */
body{
  background:
    radial-gradient(circle at top, rgba(29,78,216,0.06), transparent 40%),
    radial-gradient(circle at bottom, rgba(6,182,212,0.05), transparent 50%),
    #f6f7fb;
}

/* mobile polish */
@media(max-width:768px){
  .hero{
    padding:100px 20px 60px;
  }

  .section{
    padding:70px 20px;
  }

  .hero h1{
    font-size:38px;
  }
}


/* DASHBOARD HERO LAYOUT */
.dashboard-hero{
  padding:120px 70px;
}

.dash-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:40px;
  align-items:center;
}

/* MINI DASHBOARD */
.mini-dashboard{
  background:white;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:20px;
  box-shadow:0 20px 50px rgba(0,0,0,0.05);
}

.kpi{
  display:flex;
  justify-content:space-between;
  padding:14px 0;
  border-bottom:1px solid #f1f5f9;
}

.kpi:last-child{
  border-bottom:none;
}

.kpi span{
  color:#64748b;
  font-size:14px;
}

.kpi b{
  color:#1d4ed8;
}

/* DASHBOARD SECTION STYLE */
.section.dashboard{
  background:white;
  border-radius:24px;
  margin:40px 70px;
  padding:60px;
  box-shadow:0 30px 80px rgba(0,0,0,0.06);
}

/* MODULE CARDS DASH STYLE */
.card{
  position:relative;
}

/* status dot */
.card::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:50%;
  background:#22c55e;
  position:absolute;
  top:18px;
  right:18px;
}

.nav-cta{
  margin-left:18px;
  padding:12px 18px;
  background:#1d4ed8;
  color:white !important;
  border-radius:12px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;

  display:inline-flex;
  align-items:center;
  gap:8px;

  box-shadow:0 12px 30px rgba(29,78,216,0.35);

  border:1px solid rgba(255,255,255,0.2);

  transition:all 0.2s ease;
}
.links a{
  opacity:0.75;
  transition:0.2s;
}

.links a:hover{
  opacity:1;
}

.nav-cta{
  background:red !important;
}

.lead-form{
  max-width:420px;
  margin:30px auto 0;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.lead-form input{
  padding:14px;
  border-radius:10px;
  border:1px solid #e5e7eb;
  font-size:14px;
  outline:none;
  transition:0.2s;
}

.lead-form input:focus{
  border-color:#1d4ed8;
  box-shadow:0 0 0 3px rgba(29,78,216,0.1);
}

.lead-form button{
  padding:14px;
  background:white;
  color:#1d4ed8;
  border:none;
  border-radius:12px;
  font-weight:600;
  cursor:pointer;
  transition:0.2s;
}

.lead-form button:hover{
  transform:translateY(-2px);
}


/* =========================
   FRAMER-STYLE ANIMATIONS
   ========================= */

/* base hidden state */
.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* visible state */
.reveal.show{
  opacity:1;
  transform:translateY(0);
}

/* stagger delay helpers */
.delay-1{ transition-delay:0.1s; }
.delay-2{ transition-delay:0.2s; }
.delay-3{ transition-delay:0.3s; }
.delay-4{ transition-delay:0.4s; }

/* hover feel (Framer smooth lift) */
.card{
  will-change: transform;
}

.card:hover{
  transform:translateY(-8px) scale(1.01);
}

/* button micro spring */
.button:hover{
  transform:translateY(-2px) scale(1.02);
}


/* =========================
   PRODUCT DEMO SECTION
   ========================= */

.demo{
  position:relative;
}

/* sticky feel spacing */
.demo-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:24px;
}

/* slightly more “app UI” cards */
.demo .card{
  background:linear-gradient(180deg,#ffffff,#f8fafc);
  border:1px solid rgba(15,23,42,0.08);
}

/* subtle top label feel */
.demo h2{
  position:relative;
}

.demo h2::after{
  content:"LIVE SYSTEM PREVIEW";
  display:block;
  font-size:12px;
  letter-spacing:2px;
  color:#64748b;
  margin-top:8px;
}