@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600;800&display=swap');


/* =========================
   RenovQ - Full Site Style
   ========================= */

/* Global reset */
*,
*::before,
*::after { box-sizing: border-box; }

:root{
  --bg: #f3f4f6;
  --panel: #ffffff;
  --text: #0f172a;
  --muted: #4b5563;
  --muted2: #6b7280;
  --border: #e5e7eb;
  --brand: #2563eb;
  --brand2: #10b981;
  --dark: #0b1120;
  --shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.18);
  --radius: 1.15rem;
}

html {
  overflow-y: scroll;
}

body{
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

a{ text-decoration: none; color: inherit; }
img{ max-width: 100%; height: auto; display: block; }

.wrapper{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main p{
  font-size: 1.30rem;
  line-height: 1.65;
}

.container{
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
header{
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

/* HEADER / BRAND */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.90rem 0;
}

/* BRAND / LOGO */

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;        /* ⬅️ DIT centreert tagline exact */
  position: relative;        /* nodig voor glow */
}

/* RENOVQ – GROOT */
.brand-name {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  letter-spacing: 0.02em;
  color: #0F172A;
  line-height: 1;
  position: relative;
  z-index: 1;
}


/* TAGLINE – PERFECT ERONDER */

.brand-tagline {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.65rem !important;   /* ⬅️ deze ene toevoeging */
  font-weight: 600;
  color: #475569;
  letter-spacing: 0.06em;           /* breder → meer richting logo-breedte */
  text-transform: uppercase;
  margin-top: 6px;
  margin-left: 4px;
  white-space: nowrap;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* BLAUWE GLOED ACHTER LOGO */

.brand::before {
  content: "";
  position: absolute;
  top: 58%;
  left: 50%;
  width: 300%;   /* breder dan tekst */
  height: 160%;  /* hoger – meer aura rond logo */
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.22),
    rgba(59, 130, 246, 0.14),
    rgba(59, 130, 246, 0.06),
    transparent 75%
  );
  filter: blur(12px);
  z-index: 0;
  pointer-events: none;
}


/* Desktop nav */
/* NAVIGATION */

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
}

.nav-links a {
  text-decoration: none;
  color: #1F2933;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #2563EB;
}

.nav-links a.active {
  border-bottom-color: #2563EB;
  color: #111827;
}

/* Contact-knop */
.nav-links a.nav-cta {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid #2563EB;
  color: #2563EB;
  border-bottom-color: #2563EB; /* zodat hover-underline niet alles sloopt */
}

.nav-links a.nav-cta:hover {
  background: #2563EB;
  color: #FFFFFF;
}


/* Mobile menu (simple, no headaches) */
#navToggle{ display:none; }

.hamburger{
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hamburger span{
  display:block;
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
}

.hamburger span::before,
.hamburger span::after{
  content:"";
  position:absolute;
  left:0;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.hamburger span::before{ top: -6px; }
.hamburger span::after{ top: 6px; }

.mobile-nav{
  display:none;
  border-top: 1px solid var(--border);
  padding: 0.85rem 0;
  background: #fff;
}

.mobile-nav a{
  display:block;
  padding: 0.55rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.mobile-nav a.active{ color: var(--text); font-weight: 700; }
.mobile-nav a.nav-cta{
  display:inline-block;
  margin-top: 0.6rem;
}

/* Hero */

.hero{ padding: 80px 0; }

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: centre;
}

.hero-eyebrow{
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.hero-title{
  font-size: 2.4rem;
  line-height: 1.15;
  max-width: 540px;
  margin-bottom: 16px;
}

.hero-highlight{
  background: linear-gradient(120deg, var(--brand), var(--brand2));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle{
  font-size: 1.15rem;      /* 👈 dit is de sweet spot */
  line-height: 1.65;       /* meer rust, meer luxe */
  color: var(--muted);
  max-width: 620px;        /* iets breder = minder afbreken */
  margin-bottom: 1.75rem;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.hero-content{
  max-width: none;   /* dit is de sleutel */
}

.hero-meta{
  margin-top: 32px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 24px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.03),
    0 8px 24px rgba(15,23,42,0.06);
  max-width: 700px;   /* breedte van de hele bullet-box */
}

/* 🔽 extra ruimte tussen de bullets */
.hero-meta span{
  display: block;
  margin-bottom: 10px;
}

/* 🔽 laatste regel geen extra ruimte eronder */
.hero-meta span:last-child{
  margin-bottom: 0;
}

.hero-meta span{
  display: block;
  font-size: 0.70rem;
  white-space: nowrap;   /* 👈 niet meer “enteren” binnen één bullet */
}

/* Hero visual: photo box */

/* Hero afbeelding – hoogte beperken */
.hero-visual {
  height: 400px;          /* pas aan naar smaak: 300–420 */
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.hero-visual::after{
    display: none;
}

.hero-visual-badge{
    display: none !important;
}

.hero ul li{
    margin-bottom: 8px;   /* verticale ruimte tussen bullets */
    line-height: 1.5;
}


.btn-primary{
  background: var(--brand);
  color:#fff;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-size: 0.98rem;
  display:inline-flex;
  align-items:center;
  gap: 0.4rem;
  border: none;
}

.btn-primary:hover{ background: #1d4ed8; }

.btn-secondary{
  background:#fff;
  color: var(--text);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  font-size: 0.98rem;
}

.btn-secondary:hover{ background: #f9fafb; }


/* Sections */
.section{ padding: 3rem 0; }

.section-header{ margin-bottom: 1.7rem; }

.section-eyebrow{
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted2);
  font-weight: 700;
}

.section-title{
  font-size: 1.7rem;
  margin: 0.35rem 0 0.55rem;
}

.section-subtitle{
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 42rem;
}

/* Subtitle in de CTA onderaan: mag breder en strak gecentreerd */
.section-cta .section-subtitle {
  max-width: 1000px;
  text-align: centre;
}

/* Grid/cards */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.card{
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.25rem;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}

.card-title{ font-size: 1.05rem; margin: 0 0 0.35rem; }
.card-text{ font-size: 0.93rem; color: var(--muted); margin: 0.25rem 0 0; }

.card-tag{
  display:inline-block;
  font-size: 0.72rem;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

/* Image cards */
.image-card img{
  border-radius: 0.95rem;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(229,231,235,.9);
  box-shadow: 0 10px 30px rgba(15,23,42,.08);
}

.image-fallback{
  width: 100%;
  height: 180px;
  border-radius: 0.95rem;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(229,231,235,.9);
  background:
    linear-gradient(135deg, rgba(37,99,235,.25), rgba(16,185,129,.18)),
    linear-gradient(135deg, #0b1120, #111827);
}

/* Page layout */
.page-main{ padding: 2.6rem 0 3.2rem; }

.page-grid-2{
  display:grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 2.2rem;
}

.page-intro{
  font-size: 0.98rem;
  color: var(--muted);
  margin-top: 0.85rem;
}

/* Lists */
ul{ padding-left: 1.1rem; }
li{ margin-bottom: 0.4rem; font-size: 0.93rem; color: var(--muted); }

/* FAQ */
.faq-item{
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}
.faq-item:first-child{ border-top: none; }
.faq-q{ font-weight: 800; margin: 0 0 0.35rem; }
.faq-a{ margin: 0; color: var(--muted); }

/* Form */
.form-card{
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.4rem;
  max-width: 520px;
  box-shadow: 0 12px 30px rgba(15,23,42,.07);
}

.form-group{ margin-bottom: 0.9rem; }

label{
  display:block;
  font-size: 0.86rem;
  margin-bottom: 0.25rem;
  color: #374151;
  font-weight: 700;
}

input, textarea, select{
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
}

textarea{ min-height: 130px; resize: vertical; }

/* Footer */
footer{
  margin-top: auto;
  background: #0f172a;
  color: #9ca3af;
  font-size: 0.85rem;
}

.footer-inner{
  padding: 1.2rem 0;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 1rem;
}

.footer-links{ display:flex; gap: 1rem; }

.footer-links a:hover{ color:#e5e7eb; }

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .page-grid-2{ grid-template-columns: 1fr; }
}

@media (max-width: 860px){
  .nav-links{ display:none; }
  .hamburger{ display:flex; }

  #navToggle:checked ~ .mobile-nav{ display:block; }
}

/* HOE HET WERKT – SECTIE */

.section-how-it-works {
  padding: 72px 0;
  background: #f8fafc;
}

.section-how-it-works .container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 8px;
}

.how-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 32px;
}

/* GRID MET 3 CARDS */

.steps-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.step-card {
  flex: 1 1 0;
  min-width: 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 20px 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.step-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #e0edff;
  color: #2563eb;
  font-weight: 700;
  font-size: 0.95rem;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.step-card p {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.5;
  margin: 0;
}

/* PROCESFLOW "HOE HET WERKT" */

.flow-timeline {
  position: relative;
  margin-top: 20px;
  padding-left: 14px; /* ruimte voor lijn + cirkels */
}

/* verticale lijn achter de blokken */
.flow-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(37, 99, 235, 0.15),
    rgba(37, 99, 235, 0.35),
    rgba(37, 99, 235, 0.15)
  );
}

/* één stap in de flow */
.flow-step {
  position: relative;
  padding: 10px 0 22px 0;
}

/* cirkel met nummer – GEEN losse “1,2,3” meer */
.flow-marker {
  position: absolute;
  top: 85px;              /* ← DIT IS DE FIX */
  left: -4px;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid #2563eb;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #2563eb;
  box-shadow: 0 0 0 4px #ffffff;
}

/* blok / cilinder met tekst */
.flow-body {
  margin-left: 32px;
  padding: 14px 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.03),
    0 8px 24px rgba(37,99,235,0.06);
}

.flow-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 4px;
}

.flow-body p {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.55;
  margin: 0;
}

/* MOBILE LAYOUT */
@media (max-width: 768px) {
  .flow-timeline {
    padding-left: 34px;
  }

  .flow-body {
    padding: 12px 16px;
  }

  .flow-body h3 {
    font-size: 0.96rem;
  }

  .flow-body p {
    font-size: 0.88rem;
  }
}


/* MOBILE LAYOUT */

@media (max-width: 768px) {
  .section-how-it-works {
    padding: 56px 0;
  }

  .how-title {
    font-size: 1.5rem;
  }

  .steps-grid {
    flex-direction: column;
  }
}

/* TRUST STRIP – HOME HERO */
.trust-strip-home {
  margin: 1.5rem 0 1.8rem;
  padding: 18px 22px;
  max-width: 600px;

  background: linear-gradient(135deg, #e7f0ff, #f2f7ff);
  border-radius: 16px;

  display: flex;
  flex-direction: column;
  gap: 8px;

  box-shadow: 0 20px 45px rgba(22, 49, 83, 0.12);
}

.trust-strip-home {
  display: flex;
  gap: 40px;                 /* ruimte TUSSEN de bullets */
  flex-wrap: wrap;           /* mag op kleinere schermen breken */
  margin-top: 20px;
}

.trust-strip-home .trust-item {
  display: flex;
  align-items: center;
  white-space: nowrap;       /* alles op één regel */
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

.project-card .project-photo {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 999px;      /* langwerpige ovale foto */
    margin-bottom: 16px;
    display: block;
}

/* Globale tekstgrootte voor alle content-paragrafen */
.hero-subtitle,
.page-intro,
.card p,
.flow-body p {
  font-size: 1.02rem;
  line-height: 1.7;
}

.phone-group {
  display: flex;
  gap: 0.5rem;
}

.phone-group select {
  max-width: 180px;
}

.form-row-inline {
  display: flex;
  gap: 1rem;
}

.form-row-inline > div {
  flex: 1;
}

/* === RENOVQ HEADER LOGO – FORCEER OVERAL DEZELFDE LOOK === */
header .brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

header .brand-name {
  font-size: 2.6rem !important;
  letter-spacing: 0.02em !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

header .brand-tagline {
  font-size: 0.65rem !important;
  letter-spacing: 0.06em !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
}

header .brand-name,
header .brand-tagline {
  font-family: Arial, sans-serif !important;
}

/* === FORCEER HEADER CONSISTENTIE OVER ALLE PAGINA’S === */

header .container {
  max-width: 1120px !important;
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

/* Kleinere hero-afbeelding op de lokale landingspagina */
.hero.hero-local .hero-visual {
    height: 200px !important;   /* spelen met 240–320px */
    overflow: hidden;
}

.hero.hero-local .hero-visual img {
    width: 100% !important;
    height: 100% !important;
    display: block;
    object-fit: cover;
}
