*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #E8660A;
  --orange-light: #f5832a;
  --orange-dark: #c4540a;
  --dark: #1a1a1a;
  --gray: #555;
  --light-gray: #f5f5f5;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--orange);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo svg { width: 44px; height: 44px; }

.nav-logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(150deg, #fff 60%, #fef0e6 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,102,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo {
  width: 130px;
  height: 130px;
  margin-bottom: 1.5rem;
}

#hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

#hero h1 span { color: var(--orange); }

#hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,102,10,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  margin-left: 1rem;
}

.btn-outline:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-1px);
}

/* ─── SECTIONS ─── */
section { padding: 5rem 2rem; }

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 640px;
  margin-bottom: 3rem;
}

/* ─── OVER ONS ─── */
#over { background: var(--white); }

.over-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.over-text p { color: var(--gray); margin-bottom: 1rem; }

.over-visual {
  background: linear-gradient(135deg, #fef0e6 0%, #fde0c8 100%);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(232,102,10,0.15);
}

.over-visual svg { width: 100px; height: 100px; }

.over-visual .stat {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.over-visual .stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

/* ─── DIENSTEN ─── */
#diensten { background: var(--light-gray); }

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

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #e8e8e8;
  transition: all 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--orange);
}

.card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #fef0e6, #fde0c8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card-icon svg { width: 26px; height: 26px; }

.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.card p { font-size: 0.9rem; color: var(--gray); }

/* ─── TECHNOLOGIE ─── */
#technologie { background: var(--white); }

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

.tech-card {
  border: 2px solid #e8e8e8;
  border-radius: 14px;
  padding: 2rem;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.tech-card:hover { border-color: var(--orange); }

.tech-logo {
  height: 52px;
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.tech-logo img {
  max-height: 44px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
}

.tech-card p { font-size: 0.9rem; color: var(--gray); }

/* ─── CONTACT ─── */
#contact {
  background: linear-gradient(135deg, var(--dark) 0%, #2c2c2c 100%);
  color: white;
  text-align: center;
}

#contact .section-title { color: white; }
#contact .section-sub { color: rgba(255,255,255,0.6); margin-left: auto; margin-right: auto; }

.contact-info {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255,255,255,0.85);
}

.contact-info p { margin-bottom: 2rem; font-size: 0.95rem; }

.contact-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
}

.contact-item svg { flex-shrink: 0; }

.contact-item a {
  color: var(--orange-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-item a:hover { text-decoration: underline; }

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  background: #0077B5;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.linkedin-btn:hover { background: #005e8f; }

/* ─── FOOTER ─── */
footer {
  background: #111;
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 0.85rem;
}

footer span { color: var(--orange); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .over-grid { grid-template-columns: 1fr; }

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

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

  .tech-logo img { max-width: 130px; }

  .nav-links { display: none; }

  .btn-outline { margin-left: 0; margin-top: 0.75rem; display: block; }
}
