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

/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
  --bg-primary:       #0a0a0a;
  --bg-secondary:     #101010;
  --bg-card:          #141414;
  --bg-card-hover:    #1a1a1a;
  --border-color:     rgba(255, 255, 255, 0.08);
  --border-accent:    rgba(14, 165, 255, 0.4);

  --accent:           #0ea5ff;
  --accent-light:     #38bdf8;
  --accent-secondary: #0ea5ff;
  --accent-glow:      rgba(14, 165, 255, 0.15);

  --gradient-main:  #0ea5ff;
  --gradient-text:  #38bdf8;

  --text-primary:   #f5f5f5;
  --text-secondary: #9a9a9a;
  --text-muted:     #5c5c5c;

  --nav-bg:           rgba(10, 10, 10, 0.88);
  --shadow-card:      0 1px 3px rgba(0,0,0,0.6);
  --shadow-card-hover:0 0 0 1px rgba(14,165,255,0.3), 0 8px 32px rgba(14,165,255,0.12);
  --shadow-btn:       0 0 20px rgba(14,165,255,0.4);

  --font-heading: 'Space Grotesk', -apple-system, sans-serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  --section-py: 110px;
  --radius-sm:  6px;
  --radius-md:  8px;
  --radius-lg:  10px;
  --radius-xl:  14px;
  --radius-full:9999px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
  --bg-primary:       #fafafa;
  --bg-secondary:     #f0f0f0;
  --bg-card:          #ffffff;
  --bg-card-hover:    #f5f5f5;
  --border-color:     rgba(0, 0, 0, 0.08);
  --border-accent:    rgba(2, 132, 199, 0.3);

  --accent:           #0284c7;
  --accent-light:     #0ea5ff;
  --accent-secondary: #0284c7;
  --accent-glow:      rgba(2, 132, 199, 0.08);

  --gradient-main:  #0284c7;
  --gradient-text:  #0284c7;

  --text-primary:   #111111;
  --text-secondary: #52525b;
  --text-muted:     #a1a1aa;

  --nav-bg:           rgba(250, 250, 250, 0.88);
  --shadow-card:      0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.05);
  --shadow-card-hover:0 0 0 1px rgba(2,132,199,0.25), 0 10px 32px rgba(2,132,199,0.12);
  --shadow-btn:       0 0 20px rgba(2,132,199,0.35);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================
   Layout
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-py) 0;
}

.section--alt {
  background-color: var(--bg-secondary);
}

/* ============================================
   Typography helpers
   ============================================ */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.section__desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 600px;
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__header .section__desc {
  margin: 0 auto;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn), 0 4px 12px rgba(0,0,0,0.2);
}

.btn--outline {
  border: 1px solid var(--border-accent);
  color: var(--accent-light);
  background: transparent;
}
.btn--outline:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
}

.btn--ghost {
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--border-color);
}
.btn--ghost:hover {
  border-color: var(--border-accent);
  color: var(--text-primary);
  background: var(--accent-glow);
}

.btn--sm  { padding: 0.5rem 1.125rem; font-size: 0.875rem; }
.btn--lg  { padding: 0.9375rem 2.25rem; font-size: 1rem; }

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  transition: opacity 0.2s;
}
.nav__logo:hover { opacity: 0.85; }

.nav__logo-mark {
  height: 32px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  padding: 0.4rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover, .nav__link.active {
  color: var(--text-primary);
  background: var(--accent-glow);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Theme Toggle */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all 0.25s var(--ease);
}
.theme-toggle:hover {
  color: var(--text-primary);
  border-color: var(--border-accent);
  background: var(--accent-glow);
}

.icon { width: 18px; height: 18px; }
.icon--moon { display: none; }

[data-theme="light"] .icon--sun  { display: none; }
[data-theme="light"] .icon--moon { display: block; }

/* Mobile toggle button */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Dot grid */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(14, 165, 255, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

[data-theme="light"] .hero__grid {
  background-image: radial-gradient(circle, rgba(2, 132, 199, 0.1) 1px, transparent 1px);
}

/* Glowing orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  top: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(14, 165, 255, 0.14) 0%, transparent 70%);
  animation: orbFloat 12s ease-in-out infinite;
}

.hero__orb--2 {
  width: 500px;
  height: 500px;
  bottom: 0;
  right: -5%;
  background: radial-gradient(circle, rgba(14, 165, 255, 0.08) 0%, transparent 70%);
  animation: orbFloat 16s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -40px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.97); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-main);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator {
  width: 24px;
  height: 38px;
  border: 2px solid var(--border-accent);
  border-radius: var(--radius-full);
  position: relative;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent-light);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0%   { opacity: 1; top: 6px; }
  80%  { opacity: 0; top: 18px; }
  100% { opacity: 0; top: 6px; }
}

/* ============================================
   Hero eyebrow (updated)
   ============================================ */
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

/* ============================================
   Services — 3+2 card grid
   ============================================ */
.services-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

/* Row 1: three equal cards. Row 2: two cards, centered under them. */
.service-item:nth-child(1) { grid-column: 1 / 3; }
.service-item:nth-child(2) { grid-column: 3 / 5; }
.service-item:nth-child(3) { grid-column: 5 / 7; }
.service-item:nth-child(4) { grid-column: 2 / 4; }
.service-item:nth-child(5) { grid-column: 4 / 6; }

.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--ease);
  position: relative;
}

.service-item:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.service-item:hover .service-item__num    { color: var(--accent-light); }
.service-item:hover .service-item__title  { color: var(--accent-light); }

.service-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1.75rem;
}

.service-item__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
  transition: all 0.35s var(--ease);
}

.service-item__icon svg { width: 24px; height: 24px; }

.service-item:hover .service-item__icon {
  background: var(--gradient-main);
  border-color: transparent;
  color: #fff;
  transform: scale(1.06) rotate(-4deg);
  box-shadow: var(--shadow-btn);
}

.service-item__num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  transition: color 0.3s var(--ease);
}

.service-item__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 0.65rem;
  transition: color 0.3s var(--ease);
}

.service-item__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.service-item__arrow {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-top: auto;
  align-self: flex-end;
  transition: all 0.3s var(--ease);
}

.service-item:hover .service-item__arrow {
  background: var(--gradient-main);
  border-color: transparent;
  color: #fff;
  transform: translateX(4px);
}

/* ============================================
   About / Over mij
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 5rem;
  align-items: start;
}

.about-photo-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-photo__frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
}

.about-photo__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(14, 165, 255, 0.1) 1px, transparent 1px);
  background-size: 22px 22px;
}

.about-photo__orb {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 255, 0.2) 0%, transparent 70%);
  filter: blur(30px);
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-photo__initials {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
  line-height: 1;
  letter-spacing: -0.04em;
}

.about-photo__name {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  margin-top: 0.75rem;
}

.about-contact-pills {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-pill {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: all 0.2s var(--ease);
  text-decoration: none;
}

.about-pill:hover {
  border-color: var(--border-accent);
  color: var(--accent-light);
  background: var(--accent-glow);
}

.about-pill svg { width: 15px; height: 15px; flex-shrink: 0; }

.about-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.about-body p {
  font-size: 1.0rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

/* ============================================
   Werkwijze
   ============================================ */
.werkwijze-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.werkwijze-step {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s var(--ease);
}

.werkwijze-step:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.werkwijze-step__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.werkwijze-step__num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-light);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.werkwijze-step__badge {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.75rem;
}

.werkwijze-step__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.werkwijze-step__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   Pricing
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-card);
}

.pricing-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.pricing-card--featured {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  position: relative;
}

.pricing-card--featured::before {
  content: 'Meest gekozen';
  position: absolute;
  top: -1px;
  left: 1.75rem;
  background: var(--gradient-main);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.875rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.pricing-card--wide {
  grid-column: 1 / -1;
}

.pricing-card--wide .pricing-card__wide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.pricing-card--wide .pricing-card__features {
  margin-bottom: 1.5rem;
}

.pricing-card__service {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.6rem;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.pricing-card__price-suffix {
  font-size: 1.5rem;
  color: var(--text-secondary);
}

.pricing-card__price-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.pricing-card__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-card__features li::before {
  content: '✓';
  color: var(--accent-light);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Pricing extras row */
.pricing-extras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pricing-extra {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.pricing-extra__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-extra__price {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
}

.pricing-extra__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.pricing-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

/* ============================================
   Contact section
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.contact-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.25s var(--ease);
}

.contact-method:hover {
  border-color: var(--border-accent);
  background: var(--accent-glow);
}

.contact-method__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
}

.contact-method__icon svg { width: 18px; height: 18px; }

.contact-method__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.1rem;
}

.contact-method__value {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* ============================================
   Manifesto Section
   ============================================ */
.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.manifesto__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.manifesto__body {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 420px;
}

.manifesto__right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  border-left: 1px solid var(--border-color);
  padding-left: 4rem;
}

.manifesto__fact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.manifesto__num {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.manifesto__label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ============================================
   Service Pages
   ============================================ */
.service-page-hero {
  padding: calc(68px + 7rem) 0 5rem;
  position: relative;
  overflow: hidden;
}

.service-page-hero .hero__bg {
  position: absolute;
  inset: 0;
}

.service-hero__inner {
  position: relative;
  z-index: 1;
}

.service-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.75rem;
}

.service-hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gradient-main);
  border-radius: 2px;
}

.service-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  max-width: 760px;
}

.service-hero__tagline {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.service-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--border-accent) 0%, transparent 60%);
}

.service-overview {
  padding: 7rem 0;
}

.service-overview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}

.service-overview__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.service-overview__intro {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.85;
}

.service-overview__intro p + p {
  margin-top: 1.25rem;
}

.deliverables-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.deliverables-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-color);
}

.deliverable {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-color);
  align-items: start;
}

.deliverable__num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-light);
  padding-top: 2px;
}

.deliverable__text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

.deliverable__sub {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-top: 0.2rem;
}

.service-usecase {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.service-usecase__grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 5rem;
  align-items: start;
}

.service-usecase__heading {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.service-usecase__sub {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.usecase-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.usecase-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.usecase-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-main);
  flex-shrink: 0;
  margin-top: 5px;
}

.service-cta {
  padding: 7rem 0;
}

/* Back to home link on service pages */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
  margin-bottom: 3rem;
}
.back-link:hover { color: var(--accent-light); }

/* ============================================
   Services (old card grid — kept for reference)
   ============================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-card);
  cursor: default;
}

.service-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-light);
  transition: all 0.3s var(--ease);
}

.service-card__icon svg { width: 22px; height: 22px; }

.service-card:hover .service-card__icon {
  background: var(--gradient-main);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 20px var(--accent-glow);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.service-card__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-light);
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-card:hover .service-card__link { gap: 0.6rem; }

/* ============================================
   Portfolio / Projects
   ============================================ */
.portfolio__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-glow);
  border-color: var(--border-accent);
  color: var(--accent-light);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-card);
}
.project-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.project-card.hidden {
  display: none;
}

.project-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-secondary);
}
.project-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.55s var(--ease);
  display: block;
}
.project-card:hover .project-card__img img {
  transform: scale(1.05);
}

.project-card__body {
  padding: 1.25rem 1.4rem 1.5rem;
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.7rem;
}

.tag {
  padding: 0.175rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  color: var(--accent-light);
}

.project-card__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.project-card__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   Why Section
   ============================================ */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why__desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-top: 1.25rem;
}

.why__features {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
}

.feature__icon svg { width: 20px; height: 20px; }

.feature__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.feature__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   Process
   ============================================ */
.process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}

.process__grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
  pointer-events: none;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
}

.process-step:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.process-step__number {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.process-step__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  padding: var(--section-py) 0;
}

.cta__inner {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(14, 165, 255, 0.08);
}

.cta__inner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(14, 165, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.cta__desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a, .footer__contact p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--accent-light); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__contact p { font-size: 0.9375rem; color: var(--text-secondary); }

.footer__bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================
   Scroll Animations
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for grid children */
.services__grid .fade-up:nth-child(2) { transition-delay: 0.1s; }
.services__grid .fade-up:nth-child(3) { transition-delay: 0.2s; }
.services__grid .fade-up:nth-child(4) { transition-delay: 0.3s; }
.process__grid  .fade-up:nth-child(2) { transition-delay: 0.1s; }
.process__grid  .fade-up:nth-child(3) { transition-delay: 0.2s; }
.process__grid  .fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ============================================
   Modal
   ============================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 660px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s var(--ease);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
  scrollbar-width: thin;
  scrollbar-color: var(--border-accent) transparent;
}

.modal::-webkit-scrollbar { width: 4px; }
.modal::-webkit-scrollbar-track { background: transparent; }
.modal::-webkit-scrollbar-thumb { background: var(--border-accent); border-radius: 2px; }

.modal-backdrop.open .modal {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  flex-shrink: 0;
}
.modal__close:hover {
  background: var(--accent-glow);
  border-color: var(--border-accent);
  color: var(--text-primary);
}

.modal__header {
  margin-bottom: 2rem;
  padding-right: 2.5rem;
}

.modal__title {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.modal__sub {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Two-column form row */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Service checkboxes */
.service-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.check-pill {
  cursor: pointer;
  user-select: none;
}

.check-pill input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.check-pill span {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  transition: all 0.2s var(--ease);
  cursor: pointer;
}

.check-pill:hover span {
  border-color: var(--border-accent);
  color: var(--text-primary);
}

.check-pill input:checked + span {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--accent-light);
}

/* Textarea */
.form-textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--font-body);
  line-height: 1.6;
}

/* Select */
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}

/* Form validation error state */
.form-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-error {
  display: none;
  font-size: 0.8rem;
  color: #f87171;
  margin-top: 0.35rem;
}

.form-group.has-error .form-error { display: block; }
.form-group.has-error .form-input { border-color: #ef4444; }

/* Modal success state */
.modal__success {
  text-align: center;
  padding: 2.5rem 1rem;
}

.modal__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: #fff;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 30px var(--accent-glow);
}

.modal__success h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.modal__success p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.65;
}

@media (max-width: 560px) {
  .modal { padding: 1.75rem 1.5rem; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* color-scheme for native form elements */
:root { color-scheme: dark; }
[data-theme="light"] { color-scheme: light; }

/* ============================================
   Login Page
   ============================================ */
.login-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-primary);
}

.login-body .hero__bg { position: fixed; }

.login-header {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-color);
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.login-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.login-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  position: relative;
  z-index: 1;
}

.login-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: 0 0 80px rgba(14, 165, 255, 0.08);
  transition: all 0.4s var(--ease);
}

[data-theme="light"] .login-card {
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
}

.login-card__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.login-card__tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.login-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.login-card__subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  outline: none;
  transition: all 0.25s var(--ease);
}

.form-input::placeholder { color: var(--text-muted); }

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: var(--bg-card);
}

.form-input-wrap {
  position: relative;
}

.form-input-wrap .form-input {
  padding-right: 3rem;
}

.pw-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  padding: 0.25rem;
  border-radius: 4px;
  transition: color 0.2s;
}
.pw-toggle:hover { color: var(--text-secondary); }
.pw-toggle svg { width: 18px; height: 18px; }

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-check span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.form-link {
  font-size: 0.875rem;
  color: var(--accent-light);
  transition: opacity 0.2s;
}
.form-link:hover { opacity: 0.8; }

.btn--form {
  width: 100%;
  justify-content: center;
  padding: 0.875rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.login-divider {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.login-divider a {
  color: var(--accent-light);
  font-weight: 500;
}
.login-divider a:hover { opacity: 0.8; }

/* ============================================
   Page Hero (inner pages — not full-viewport)
   ============================================ */
.page-hero {
  position: relative;
  padding: calc(68px + 6rem) 0 5rem;
  overflow: hidden;
}

.page-hero .hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.page-hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.25rem;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.page-hero__sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================
   About Vision (split layout — over-ons)
   ============================================ */
.about-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-vision__left .section__title {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.about-vision__right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-vision__right p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================
   Values Grid (kernwaarden)
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s var(--ease);
}

.value-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.value-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  margin-bottom: 1.25rem;
}

.value-card__icon svg { width: 22px; height: 22px; }

.value-card__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.625rem;
}

.value-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-color);
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.faq-answer {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================
   Contact Page Form
   ============================================ */
.contact-page-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-page__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-page__sub {
  font-size: 1.0rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

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

.legal__updated {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.legal h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 2.5rem 0 1rem;
}

.legal h2:first-of-type { margin-top: 0; }

.legal p, .legal li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 0.9rem;
}

.legal ul {
  padding-left: 1.25rem;
  list-style: disc;
  margin-bottom: 1.25rem;
}

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

.office-hours {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.office-hours__heading {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.office-hours__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
}

.contact-page__response {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.contact-page__response::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .portfolio__grid      { grid-template-columns: repeat(2, 1fr); }
  .service-overview__grid { grid-template-columns: 1fr; gap: 4rem; }
  .service-usecase__grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-grid           { grid-template-columns: 260px 1fr; gap: 3rem; }
  .pricing-grid         { grid-template-columns: 1fr 1fr; }
  .pricing-card--wide .pricing-card__wide-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-grid         { grid-template-columns: 1fr; gap: 3rem; }
  .manifesto { grid-template-columns: 1fr; gap: 3.5rem; }
  .manifesto__right {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border-color);
    padding-top: 2.5rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .manifesto__fact { flex: 1; min-width: 130px; }
  .values-grid     { grid-template-columns: repeat(2, 1fr); }
  .about-vision    { gap: 4rem; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 3.5rem; }

  .services-list { grid-template-columns: repeat(2, 1fr); }
  .service-item:nth-child(1),
  .service-item:nth-child(2),
  .service-item:nth-child(3),
  .service-item:nth-child(4),
  .service-item:nth-child(5) { grid-column: auto; }
}

@media (max-width: 900px) {
  :root { --section-py: 70px; }

  .why__grid { grid-template-columns: 1fr; gap: 3rem; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer__brand { grid-column: 1 / -1; }

  .process__grid::before { display: none; }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }

  .nav__menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    backdrop-filter: blur(20px);
  }

  .nav__menu.open { display: flex; }

  .nav__links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0 1rem 0.75rem;
    border-bottom: 1px solid var(--border-color);
  }

  .nav__link { width: 100%; padding: 0.6rem 0.75rem; }

  .nav__actions {
    padding: 0.75rem 1.5rem;
    width: 100%;
  }

  .hero__title { font-size: clamp(2.5rem, 9vw, 4rem); }

  .services__grid       { grid-template-columns: 1fr; }
  .portfolio__grid      { grid-template-columns: 1fr; }
  .usecase-list         { grid-template-columns: 1fr; }
  .werkwijze-grid       { grid-template-columns: 1fr; }
  .pricing-grid         { grid-template-columns: 1fr; }
  .pricing-extras       { grid-template-columns: 1fr; }
  .about-grid           { grid-template-columns: 1fr; }
  .about-photo-col      { flex-direction: row; align-items: flex-start; }
  .about-photo__frame   { max-width: 180px; }
  .about-contact-pills  { flex: 1; }
  .contact-grid         { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }

  .values-grid     { grid-template-columns: 1fr; }
  .about-vision    { grid-template-columns: 1fr; gap: 2.5rem; }

  .cta__inner { padding: 3rem 1.75rem; }

  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta__actions .btn  { width: 100%; justify-content: center; }
  .about-photo-col    { flex-direction: column; }
  .about-photo__frame { max-width: 100%; }
  .pricing-card--wide .pricing-card__wide-inner { gap: 1rem; }
}

/* ============================================
   Klantportaal — Dashboard
   ============================================ */
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.dashboard-welcome {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.dashboard-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s var(--ease);
}

.dashboard-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.dashboard-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.dashboard-card__desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.dashboard-card__badge {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: var(--accent-glow);
  border-radius: var(--radius-full);
  padding: 0.3rem 0.75rem;
}

/* ============================================
   Form alert banner (login / setup)
   ============================================ */
.form-alert {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #f87171;
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.form-alert--success {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.35);
  color: #4ade80;
}

/* ============================================
   Clients table (admin)
   ============================================ */
.clients-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.clients-table th,
.clients-table td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-color);
  white-space: nowrap;
}

.clients-table th {
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.clients-table tbody tr:hover {
  background: var(--bg-card-hover);
}

.status-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  padding: 0.25rem 0.7rem;
}

.status-badge--active {
  color: #4ade80;
  background: rgba(34, 197, 94, 0.12);
}

.status-badge--disabled {
  color: var(--text-muted);
  background: rgba(120, 120, 120, 0.12);
}

.status-badge--open {
  color: var(--accent-light);
  background: var(--accent-glow);
}

.status-badge--in_progress {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.12);
}

.status-badge--closed {
  color: var(--text-muted);
  background: rgba(120, 120, 120, 0.12);
}

/* ============================================
   Ticket conversation thread
   ============================================ */
.ticket-thread {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ticket-message {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  background: var(--bg-secondary);
}

.ticket-message--admin {
  border-color: var(--border-accent);
  background: var(--accent-glow);
}

.ticket-message__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.ticket-message__meta strong {
  color: var(--text-primary);
}

.ticket-message__body {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-primary);
}

/* ============================================
   Analytics dashboard
   ============================================ */
.stat-tile__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.stat-tile__value {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.code-snippet {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.8125rem;
  color: var(--accent-light);
  overflow-x: auto;
  white-space: pre;
  margin-top: 0.75rem;
}

.bar-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bar-list__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(80px, 2fr) 2.5rem;
  align-items: center;
  gap: 0.75rem;
}

.bar-list__label {
  font-size: 0.85rem;
  color: var(--text-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bar-list__track {
  background: var(--bg-secondary);
  border-radius: var(--radius-full);
  height: 8px;
  overflow: hidden;
}

.bar-list__fill {
  background: var(--accent);
  height: 100%;
  border-radius: var(--radius-full);
}

.bar-list__value {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Honeypot: onzichtbaar voor mensen, wel aanwezig voor bots (bewust geen
   display:none, sommige bots slaan dat specifiek over). */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-card--new {
  border-color: var(--border-accent);
}
