/* ============================================================
   Huren Utrecht Landing – main.css
   Strak en professioneel, passend bij huren-utrecht.nl
   ============================================================ */

/* ── Variabelen ── */
:root {
  --navy:        #1a2843;
  --navy-dark:   #111c30;
  --navy-mid:    #233054;
  --orange:      #d4001a;
  --orange-h:    #b00015;
  --white:       #ffffff;
  --off-white:   #f7f8fa;
  --light-gray:  #eef0f4;
  --border:      #dde0e8;
  --text:        #2d3748;
  --text-light:  #5a6478;
  --font-head:   'Raleway', sans-serif;
  --font-body:   'Open Sans', sans-serif;
  --radius:      6px;
  --radius-md:   10px;
  --shadow:      0 2px 12px rgba(0,0,0,.08);
  --shadow-md:   0 6px 28px rgba(0,0,0,.12);
  --trans:       .22s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── Utilities ── */
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.accent { color: var(--orange); }

.eyebrow {
  display: block;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.eyebrow--light { color: rgba(255,255,255,.6); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.25;
}
.section-header--light h2 { color: var(--white); }
.section-header p {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.75;
}
.section-header--light p { color: rgba(255,255,255,.7); }

.section-cta { text-align: center; margin-top: 44px; }

/* ── Sections ── */
.section        { padding: 90px 0; }
.section--white { background: var(--white); }
.section--light { background: var(--off-white); }
.section--dark  { background: var(--navy); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .03em;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--trans), color var(--trans), border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn--primary:hover { background: var(--orange-h); border-color: var(--orange-h); box-shadow: 0 4px 20px rgba(212,0,26,.3); }

.btn--secondary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--secondary:hover { background: var(--navy-dark); border-color: var(--navy-dark); }

.btn--outline { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn--outline:hover { background: var(--orange); color: var(--white); }

.btn--ghost { background: rgba(255,255,255,.1); color: var(--white); border-color: rgba(255,255,255,.4); }
.btn--ghost:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.8); }

.btn--white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn--white:hover { background: var(--off-white); }

.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn--outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn--full { width: 100%; justify-content: center; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}

.site-logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: .02em;
  color: var(--white);
  flex-shrink: 0;
}
.site-logo span { color: var(--orange); }
.site-logo--footer { display: inline-block; margin-bottom: 14px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(255,255,255,.75);
  padding: 7px 13px;
  border-radius: var(--radius);
  transition: color var(--trans), background var(--trans);
}
.site-nav a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.site-nav .nav-cta {
  background: var(--orange);
  color: var(--white);
  margin-left: 6px;
  padding: 8px 16px;
}
.site-nav .nav-cta:hover { background: var(--orange-h); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans);
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 130px 0 80px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,0,26,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-tagline {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(212,0,26,.35);
  background: rgba(212,0,26,.1);
  border-radius: 3px;
  padding: 5px 12px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 36px;
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; gap: 3px; }
.stat-item strong {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-item span {
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,.15);
}

/* ── USP GRID ── */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.usp-card {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: box-shadow var(--trans), border-color var(--trans), transform var(--trans);
}
.usp-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.usp-icon {
  width: 44px;
  margin-bottom: 18px;
}
.usp-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.usp-card p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow var(--trans), border-color var(--trans), transform var(--trans);
}
.product-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.product-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1;
}
.product-body h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.product-body p {
  font-size: .88rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}
.product-body ul {
  margin-bottom: 22px;
}
.product-body ul li {
  font-size: .83rem;
  color: var(--text-light);
  padding: 3px 0;
  padding-left: 14px;
  position: relative;
}
.product-body ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.product-body .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ── STEPS ── */
.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.step {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
}
.step-num {
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.15rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.step h3 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.step p {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}
.step-arrow {
  font-size: 1.5rem;
  color: rgba(255,255,255,.25);
  align-self: center;
  padding-top: 0;
}

/* ── WERKGEBIED ── */
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.area-pill {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 3px;
  padding: 8px 16px;
  transition: all var(--trans);
}
.area-pill:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(212,0,26,.05);
}

/* ── REVIEWS ── */
.review-stars-big {
  color: var(--orange);
  font-size: 1.4rem;
  margin-top: 4px;
}
.review-score {
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  margin-left: 8px;
  letter-spacing: .02em;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: box-shadow var(--trans), transform var(--trans);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.review-stars { color: var(--orange); font-size: 1rem; margin-bottom: 12px; }
.review-card p {
  font-size: .9rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.7;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviewer strong {
  display: block;
  font-family: var(--font-head);
  font-size: .85rem;
  color: var(--navy);
}
.reviewer small {
  font-size: .75rem;
  color: var(--text-light);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--orange);
  padding: 64px 0;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.cta-banner-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
}
.cta-banner-text p { color: rgba(255,255,255,.85); font-size: .95rem; }
.cta-banner-btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 14px;
}
.contact-info > p {
  font-size: .9rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.75;
}
.contact-details { display: flex; flex-direction: column; gap: 4px; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius);
  transition: background var(--trans);
}
a.contact-row:hover { background: rgba(212,0,26,.06); }
.contact-row-icon { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.contact-row strong {
  display: block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 2px;
}
.contact-row span { font-size: .88rem; color: var(--text-light); }

/* ── FORM ── */
.hu-form {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
}
.form-row { display: flex; gap: 16px; }
.form-row--2col > * { flex: 1; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(212,0,26,.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-disclaimer {
  text-align: center;
  font-size: .78rem;
  color: var(--text-light);
  margin-top: 10px;
}

/* ── FOOTER ── */
.site-footer { background: var(--navy-dark); }

.footer-top { padding: 64px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.3fr;
  gap: 48px;
}

.footer-col--brand .site-logo { color: rgba(255,255,255,.85); }
.footer-col--brand .site-logo span { color: var(--orange); }
.footer-col--brand > p {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 22px;
  line-height: 1.75;
}
.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact-block a,
.footer-contact-block span {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color var(--trans);
}
.footer-contact-block a:hover { color: var(--orange); }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color var(--trans);
}
.footer-col ul a:hover { color: var(--white); }

.footer-areas { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 6px 12px !important; }

.hours-label {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  font-weight: 600;
  margin-bottom: 2px;
}
.hours-time {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.hours-note {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  margin-bottom: 18px;
}
.footer-btn { font-size: .78rem; padding: 9px 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom nav a { font-size: .78rem; color: rgba(255,255,255,.3); transition: color var(--trans); }
.footer-bottom nav a:hover { color: rgba(255,255,255,.7); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .usp-grid          { grid-template-columns: repeat(3, 1fr); }
  .products-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid      { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .site-nav {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--navy-dark);
    border-top: 1px solid rgba(255,255,255,.07);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    gap: 2px;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 14px; border-radius: var(--radius); }
  .site-nav .nav-cta { margin-left: 0; margin-top: 6px; text-align: center; justify-content: center; }
  .nav-toggle { display: flex; }

  .hero { padding: 110px 0 60px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }

  .usp-grid         { grid-template-columns: 1fr; }
  .products-grid    { grid-template-columns: 1fr; }
  .reviews-grid     { grid-template-columns: 1fr; }
  .steps-grid       { flex-direction: column; align-items: center; }
  .step-arrow       { transform: rotate(90deg); }
  .footer-grid      { grid-template-columns: 1fr; }

  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-btns  { justify-content: center; }

  .hu-form { padding: 24px 18px; }
  .form-row--2col { flex-direction: column; }

  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .area-grid { gap: 8px; }
  .area-pill { font-size: .75rem; padding: 7px 13px; }
}
