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

:root {
  --black: #111111;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-mid: #888888;
  --gray-border: #e0e0e0;
  --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
  font-family: var(--font-main);
  color: var(--black);
  background: var(--white);
  font-size: 15px;
  line-height: 1.5;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  border-bottom: 1px solid var(--gray-border);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 0.5; }

.btn-primary {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 13px 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover { background: #333; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 13px 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--white); color: var(--black); }

:root {
  --hero-bg: #070707
}

/* ── HERO ── */
.hero {
  background: var(--hero-bg);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  padding: 72px 48px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 20px;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.hero-title-gray {
  font-size: 52px;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -1px;
  color: #888;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  max-width: 380px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
}

/* Hero image side */
.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.laptop-img {
  width: 112%;
  max-width: 800px;
  margin-left: -24px;
  margin-top: -20px;
}

/* ── HERO STATS BAR ── */
.hero-stats {
  background: var(--black);
  border-top: 1px solid #2a2a2a;
  display: flex;
  gap: 60px;
  padding: 24px 48px 36px 48px;

  position: relative;
  z-index: 2;

  /* Schatten nach unten */
  box-shadow:
    0 15px 30px rgba(0,0,0,0.15),
    0 35px 70px rgba(0,0,0,0.12);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.stat-icon-img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.stat-label {
  font-size: 13px;
  font-weight: 700;
}

.stat-desc {
  font-size: 12px;
  color: var(--gray-mid);
  margin-top: 2px;
}

/* ── SERVICES ── */
.services {
  padding: 72px 48px;
  background: #f8f8f8;
  box-shadow: inset 0 4px 24px rgba(0,0,0,0.04);
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 16px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
  max-width: 600px;
  margin-bottom: 52px;
  line-height: 1.15;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-border);
}

.service-card {
  padding: 36px 32px 32px 0;
  border-right: 1px solid var(--gray-border);
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.service-card:first-child { padding-left: 0; }
.service-card:last-child { border-right: none; }
.service-card:not(:first-child) { padding-left: 32px; }

.service-icon-img {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  display: block;
}

.service-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover { opacity: 0.6; }

/* ── STATS BAND ── */
.stats-band {
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 0 48px;
  min-height: 96px;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.4);
}

.stats-band-inner {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0;
}

.band-stat {
  display: flex;
  flex-direction: column;
  padding: 28px 48px 28px 0;
  margin-right: 48px;
  border-right: 1px solid #2a2a2a;
}

.band-stat:last-of-type { border-right: none; }

.band-num {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.band-label {
  font-size: 12px;
  color: var(--gray-mid);
  margin-top: 4px;
}

.band-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.band-cta-text { text-align: right; }

.band-cta-heading {
  font-size: 18px;
  font-weight: 700;
}

.band-cta-sub {
  font-size: 13px;
  color: var(--gray-mid);
  margin-top: 4px;
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 14px 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.btn-white:hover { opacity: 0.85; }

/* ── FOOTER ── */
footer {
  background: #111111;
  color: #888;
  box-shadow: 0 -4px 40px rgba(0,0,0,0.5);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 48px;
  border-bottom: 1px solid #1e1e1e;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
  display: block;
  filter: invert(1);
  opacity: 0.6;
}

.footer-brand p {
  font-size: 12px;
  color: #555;
  line-height: 1.8;
  max-width: 220px;
  letter-spacing: 0.3px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li {
  font-size: 12px;
  color: #555;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

.footer-col ul li a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  padding: 20px 48px;
  font-size: 11px;
  color: #555;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;
  max-width: 1400px;
  margin: 0 auto;
}

.page-hero {
  padding: 100px 60px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.page-hero.dark {
  background: #111;
  color: white;
}

.page-hero.light {
  background: #f5f5f5;
}

.grid-section, .portfolio-grid, .pricing, .about {
  padding: 80px 60px;
  display: grid;
  gap: 24px;
}

.card, .price-card, .project-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.12);
  transition: 0.3s;
}

.card:hover, .price-card:hover {
  transform: translateY(-6px);
}

.price-card.featured {
  background: #111;
  color: white;
  transform: scale(1.05);
}