/* ============================================================
   HLWebdesign — style.css
   Production-ready stylesheet
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #FFFDFA;
  color: #2A211C;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
}

/* ===== CSS VARIABLES ===== */
:root {
  --black:  #2A1F19;
  --dark:   #3A2C23;
  --red:    #C85A34;
  --red-h:  #A8492A;
  --white:  #FFFDFA;
  --light:  #F7F0E7;
  --text:   #2A211C;
  --muted:  #71615A;
  --border: rgba(58, 44, 35, 0.14);
  --shadow: 30, 20, 12;
  --nav-height: 68px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition-fast: 0.2s ease;
  --transition-med: 0.3s ease;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title-white {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.red-line {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--red);
  margin-bottom: 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition-fast), transform 0.15s ease, box-shadow var(--transition-fast);
  border: none;
  border-radius: var(--radius-sm);
  text-align: center;
}

.btn:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 16px rgba(200, 90, 52, 0.3);
}

.btn-red:hover {
  background: var(--red-h);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(var(--shadow), 0.25);
}

.btn-outline-dark:hover {
  background: rgba(var(--shadow), 0.05);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--black);
  box-shadow: 0 4px 16px rgba(var(--shadow), 0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(var(--shadow), 0.2);
}

.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-wa:hover {
  background: #1da851;
  transform: translateY(-2px);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announce-bar {
  background: var(--black);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.announce-bar span {
  color: var(--red);
  font-weight: 700;
}

/* ===== NAVIGATION ===== */
nav#main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow var(--transition-fast);
}

nav#main-nav.scrolled {
  box-shadow: 0 2px 20px rgba(var(--shadow), 0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 36px;
  width: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.nav-logo-text span {
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
  border-radius: 2px;
}

.nav-cta {
  background: var(--red);
  color: #fff;
  padding: 9px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.nav-cta:hover {
  background: var(--red-h);
}

.nav-cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  transition: opacity var(--transition-fast);
}

.hamburger:hover {
  opacity: 0.8;
}

.hamburger:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  transition: transform var(--transition-med), opacity var(--transition-fast);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE NAV ===== */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(var(--shadow), 0.6);
  z-index: 1099;
  opacity: 0;
  transition: opacity var(--transition-med);
}

.mobile-nav-overlay.visible {
  opacity: 1;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--black);
  z-index: 1100;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: right var(--transition-med);
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-close {
  align-self: flex-end;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px;
  transition: color var(--transition-fast);
}

.mobile-nav-close:hover {
  color: #fff;
}

.mobile-nav-close:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav ul li a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--transition-fast);
}

.mobile-nav ul li a:hover {
  color: #fff;
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.mobile-nav-cta .btn {
  width: 100%;
  text-align: center;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #241A14;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(200, 90, 52, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 15%, rgba(140, 90, 50, 0.35) 0%, transparent 55%),
    linear-gradient(135deg, #1C130E 0%, #2E2118 50%, #191108 100%);
  background-size: cover;
  background-position: center;
  filter: brightness(1);
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(20, 13, 9, 0.7) 0%, rgba(20, 13, 9, 0.35) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 20px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 22px;
  text-shadow: 0 2px 16px rgba(var(--shadow), 0.35);
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 0.4s forwards;
}

.hero h1 span {
  color: var(--red);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 38px;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 0.6s forwards;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 0.8s forwards;
}

/* ===== LOKALE INTRO ===== */
.intro {
  background: var(--light);
  padding: 56px 0;
}

.intro-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 28px;
}

.intro-header .red-line {
  margin: 0 auto 24px;
}

.intro-text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
}

.intro-text strong {
  color: var(--text);
  font-weight: 700;
}

/* ===== WIE WIJ ZIJN ===== */
.team {
  padding: 64px 0;
  background: #fff;
}

.team-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}

.team-header .red-line {
  margin: 0 auto 24px;
}

.team-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}

.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  padding: 0 0 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(var(--shadow), 0.06);
  transition: box-shadow var(--transition-med), transform var(--transition-med);
}

.team-card:hover {
  box-shadow: 0 12px 40px rgba(var(--shadow), 0.1);
  transform: translateY(-4px);
}

.team-card-photo {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #F0E9DF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.team-card:hover .team-card-photo img {
  transform: scale(1.03);
}

.team-card-photo--placeholder {
  background: var(--light);
}

.team-placeholder-icon {
  color: #B8AA9E;
  width: 64px;
  height: 64px;
}

.team-placeholder-icon svg {
  width: 100%;
  height: 100%;
}

.team-card-body {
  padding: 22px 24px 0;
}

.team-card-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.team-card-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.team-card-body p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== ZO WERKEN WIJ ===== */
.process {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
}

.process-bg {
  position: absolute;
  inset: 0;
  background-color: #241A14;
  /* PLACEHOLDER — vervang door de foto zodra aangeleverd, zie CLAUDE-NOTES.md */
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(200, 90, 52, 0.30) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(140, 90, 50, 0.30) 0%, transparent 55%),
    linear-gradient(135deg, #1C130E 0%, #2E2118 50%, #191108 100%);
  background-size: cover;
  background-position: center;
}

.process-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 10, 0.55);
}

.process-content {
  position: relative;
  z-index: 2;
}

.process-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.process-header .section-label {
  color: #E88A64;
}

.process-header .red-line {
  margin: 0 auto;
  background: var(--red);
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
}

.process-card {
  background: rgba(20, 14, 10, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  text-align: center;
}

.process-icon {
  width: 26px;
  height: 26px;
  color: #E88A64;
  margin-bottom: 14px;
}

.process-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.process-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

/* ===== PAKKETTEN ===== */
.packages {
  padding: 96px 0;
  background: var(--light);
}

.packages-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.packages-header .red-line {
  margin: 0 auto 24px;
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.pkg-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--black);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  transition: box-shadow var(--transition-med), transform var(--transition-med);
}

.pkg-card:hover {
  box-shadow: 0 8px 32px rgba(var(--shadow), 0.1);
  transform: translateY(-3px);
}

.pkg-card.featured {
  border-top-color: var(--red);
  box-shadow: 0 8px 32px rgba(200, 90, 52, 0.12);
}

.pkg-card.featured:hover {
  box-shadow: 0 16px 48px rgba(200, 90, 52, 0.18);
}

.pkg-badge-pro {
  background: var(--dark) !important;
  box-shadow: 0 4px 12px rgba(58, 44, 35, 0.3) !important;
}

.pkg-card.pro {
  border-top-color: var(--dark);
}

.price-excl-btw {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 2px;
  margin-bottom: 14px;
}

.pkg-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(200, 90, 52, 0.35);
}

.pkg-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.pkg-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.pkg-features li {
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.pkg-features li.yes::before {
  content: '✓';
  color: #4C8A3F;
  font-weight: 700;
  min-width: 16px;
  flex-shrink: 0;
}

.pkg-features li.no {
  color: #C4B7AC;
}

.pkg-features li.no::before {
  content: '✗';
  color: #C4B7AC;
  font-weight: 700;
  min-width: 16px;
  flex-shrink: 0;
}

.pkg-price {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.pkg-price .price-setup {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}

.pkg-price .price-setup-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
}

.pkg-price .price-monthly {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 2px;
}

.pkg-delivery {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 16px;
}

/* Onderhoud */
.subsection-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  margin-top: 0;
  color: var(--text);
}

.maintenance-grid {
  display: flex;
  justify-content: center;
}

.maint-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 28px 32px;
  border-left: 3px solid var(--black);
  border-radius: var(--radius-md);
  transition: box-shadow var(--transition-med), transform var(--transition-med);
  max-width: 420px;
  width: 100%;
}

.maint-card:hover {
  transform: translateY(-2px);
}

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

.maint-card.featured {
  border-left-color: var(--red);
}

.maint-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.maint-price span {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
}

.maint-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.maint-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== WAAROM NIET ZELF ===== */
.why-us {
  padding: 64px 0;
  background: #fff;
}

.why-us-box {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: var(--light);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 12px 40px rgba(var(--shadow), 0.08);
}

.why-us-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.why-us-points {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.why-us-points p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.why-us-points p strong {
  color: var(--text);
  font-weight: 700;
}

.why-us-closer {
  color: var(--text) !important;
  font-weight: 600;
  margin-top: 18px !important;
  text-align: center;
}

/* ===== CONTACT / CTA ===== */
.contact-cta {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-color: #1C130E;
  background-image:
    radial-gradient(ellipse at 30% 60%, rgba(200, 90, 52, 0.28) 0%, transparent 55%),
    linear-gradient(135deg, #1C130E 0%, #2E2118 100%);
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.95);
  transform: scale(1.03);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 13, 9, 0.5);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.cta-content .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.cta-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(var(--shadow), 0.3);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-group label span {
  color: var(--red);
}

.form-group input,
.form-group textarea {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 90, 52, 0.12);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--red);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  font-size: 0.78rem;
  color: var(--red);
  font-weight: 500;
  min-height: 18px;
}

.btn-submit {
  align-self: flex-start;
  min-width: 180px;
  position: relative;
}

.form-success {
  background: #F2F8ED;
  border: 1px solid #4C8A3F;
  border-left: 3px solid #4C8A3F;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: #365E2C;
  line-height: 1.6;
}

/* ===== JURIDISCHE PAGINA'S ===== */
.legal-hero {
  background: var(--black);
  padding: 56px 0 40px;
  text-align: center;
}

.legal-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.legal-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.legal-page {
  padding: 64px 0 96px;
  background: #fff;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 44px;
  margin-bottom: 14px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 0 0 18px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-content ul li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-left: 22px;
  position: relative;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.legal-content strong {
  color: var(--text);
}

.legal-content a {
  color: var(--red);
  text-decoration: underline;
}

.legal-meta {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 40px;
}

.legal-todo {
  background: var(--light);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 40px;
}

.legal-back {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
}
footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.55);
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  text-decoration: none;
}

.footer-logo-img {
  height: 32px;
  width: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.footer-logo-text span {
  color: var(--red);
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li {
  font-size: 0.875rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--red);
}

.footer-col ul li a:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.footer-availability {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--red);
}

/* ===== STICKY FLOAT BUTTONS ===== */
.float-buttons {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(var(--shadow), 0.25);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(var(--shadow), 0.35);
}

.float-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.float-btn-wa {
  background: #25D366;
  color: #fff;
}

.float-btn-red {
  background: var(--red);
  color: #fff;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== SKIP LINK (accessibility) ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--red);
  color: #fff;
  padding: 12px 20px;
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ===== RESPONSIVE ===== */

/* Tablet: 1024px */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Tablet: 768px */
@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .process-cards {
    display: flex;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    max-width: 100%;
    padding-bottom: 4px;
    margin: 0 -28px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .process-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .compare-table {
    font-size: 0.8rem;
  }

  .float-buttons {
    bottom: 16px;
    right: 16px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Mobile: 480px */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn,
  .cta-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .team-grid {
    max-width: 100%;
  }

  .packages-grid {
    max-width: 100%;
  }

  .float-btn span:not(.btn-text) {
    display: none;
  }

  .float-btn {
    padding: 12px 16px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-eyebrow,
  .hero h1,
  .hero-sub,
  .hero-buttons {
    opacity: 1;
    animation: none;
  }
}
