/* ============================================================
   ECHTBILD MEDIA — Main Stylesheet
   Brand: #000000 | #67e9a6 | #97eec1 | #c8f3dd | #f9f9f9
   ============================================================ */

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

/* ── VARIABLES ── */
:root {
  --black:       #000000;
  --green:       #67e9a6;
  --green-mid:   #97eec1;
  --green-light: #c8f3dd;
  --white:       #f9f9f9;
  --grey:        #111111;
  --grey-2:      #1a1a1a;
  --grey-text:   #777;
  --nav-h:       72px;
  --radius:      4px;
  --transition:  0.25s ease;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(36px, 6vw, 72px); }
h2 { font-size: clamp(28px, 4vw, 50px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
p  { color: var(--grey-text); line-height: 1.75; }
strong { color: var(--white); font-weight: 500; }

/* ── UTILITY ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.g { color: var(--green); }
.stroke {
  -webkit-text-stroke: 1.5px var(--white);
  color: transparent;
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  display: block;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--green);
  color: var(--black);
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(103,233,166,0.25);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: var(--grey-text);
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}
.arrow-icon {
  width: 14px; height: 14px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.btn-primary:hover .arrow-icon,
.btn-outline:hover .arrow-icon {
  transform: translateX(4px);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(103,233,166,0.1);
  transition: background var(--transition);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-ring {
  width: 36px; height: 36px;
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav__logo-ring span {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
}
.nav__logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-text .top {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav__logo-text .bot {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-text);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--green);
}
.nav__cta {
  padding: 9px 20px;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  color: var(--green);
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  flex-shrink: 0;
}
.nav__cta:hover {
  background: var(--green);
  color: var(--black);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  border-top: 1px solid rgba(103,233,166,0.1);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color var(--transition);
}
.nav__mobile a:hover,
.nav__mobile a.active { color: var(--green); }
.nav__mobile .nav__cta {
  font-size: 13px;
  padding: 12px 32px;
  margin-top: 16px;
}

/* ── PAGE WRAPPER ── */
.page-content {
  padding-top: var(--nav-h);
}

/* ── HERO ── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.hero__grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(103,233,166,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103,233,166,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
.hero__glow {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(103,233,166,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero__content { position: relative; z-index: 1; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(103,233,166,0.3);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 24px;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
.hero__title { margin-bottom: 20px; }
.hero__desc {
  font-size: 16px;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__stats { position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-card {
  background: var(--grey);
  border: 1px solid rgba(103,233,166,0.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.stat-card:hover {
  border-color: rgba(103,233,166,0.4);
  transform: translateY(-3px);
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.stat-card:hover::after { opacity: 1; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 10px;
  color: var(--grey-text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.tags-row {
  background: var(--grey);
  border: 1px solid rgba(103,233,166,0.1);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.tag-pill {
  padding: 4px 12px;
  border: 1px solid rgba(103,233,166,0.2);
  border-radius: 100px;
  font-size: 10px;
  color: var(--green-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── SECTION HEADER ── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.section-header__sub {
  font-size: 14px;
  max-width: 280px;
  text-align: right;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(103,233,166,0.07);
  border: 1px solid rgba(103,233,166,0.07);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--black);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.service-card:hover { background: rgba(103,233,166,0.04); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--green);
  transition: height 0.45s ease;
}
.service-card:hover::before { height: 100%; }
.service-num {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(103,233,166,0.3);
  margin-bottom: 16px;
}
.service-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(103,233,166,0.18);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
  transition: border-color var(--transition);
}
.service-card:hover .service-icon { border-color: var(--green); }
.service-name {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-desc { font-size: 13px; line-height: 1.8; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.chip {
  font-size: 10px;
  color: rgba(103,233,166,0.5);
  border: 1px solid rgba(103,233,166,0.15);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── PROCESS ── */
.process-bg { background: var(--grey); position: relative; overflow: hidden; }
.process-watermark {
  position: absolute;
  bottom: -20px; right: -10px;
  font-family: 'Syne', sans-serif;
  font-size: 180px;
  font-weight: 800;
  color: rgba(103,233,166,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 1px;
  background: linear-gradient(90deg, var(--green), rgba(103,233,166,0.15));
  z-index: 0;
}
.step { padding: 0 20px; position: relative; z-index: 1; }
.step-circle {
  width: 52px; height: 52px;
  border: 2px solid var(--green);
  border-radius: 50%;
  background: var(--grey);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 24px;
  transition: all var(--transition);
}
.step:hover .step-circle {
  background: var(--green);
  color: var(--black);
  transform: scale(1.08);
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-body { font-size: 13px; line-height: 1.75; }

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text { font-size: 15px; margin-top: 18px; line-height: 1.85; }
.why-cards { display: flex; flex-direction: column; gap: 14px; }
.why-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid rgba(103,233,166,0.1);
  border-radius: var(--radius);
  background: var(--grey);
  transition: border-color var(--transition);
}
.why-card:hover { border-color: rgba(103,233,166,0.35); }
.why-card__icon {
  width: 40px; height: 40px;
  background: rgba(103,233,166,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.why-card__title {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.why-card__desc { font-size: 13px; line-height: 1.65; }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--grey);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(103,233,166,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { max-width: 640px; margin: 0 auto 16px; }
.cta-section p { max-width: 480px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT STRIP ── */
.contact-strip {
  border-top: 1px solid rgba(103,233,166,0.09);
}
.contact-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 56px;
  padding-bottom: 56px;
}
.contact-block { display: flex; flex-direction: column; gap: 5px; }
.contact-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
}
.contact-value {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}
a.contact-value:hover { color: var(--green); }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid rgba(103,233,166,0.07);
  padding: 28px 0;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--green); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(103,233,166,0.08);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(103,233,166,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 17px; max-width: 560px; }

/* ── LEISTUNGEN PAGE ── */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.leistung-card {
  background: var(--grey);
  border: 1px solid rgba(103,233,166,0.1);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color var(--transition), transform var(--transition);
}
.leistung-card:hover {
  border-color: rgba(103,233,166,0.35);
  transform: translateY(-4px);
}
.leistung-icon { font-size: 32px; margin-bottom: 20px; }
.leistung-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.leistung-desc { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }

/* ── PROJEKTE PAGE ── */
.projekte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.projekt-card {
  background: var(--grey);
  border: 1px solid rgba(103,233,166,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.projekt-card:hover {
  border-color: rgba(103,233,166,0.4);
  transform: translateY(-4px);
}
.projekt-thumb {
  height: 200px;
  background: linear-gradient(135deg, rgba(103,233,166,0.15), rgba(103,233,166,0.03));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.projekt-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.5));
}
.projekt-body { padding: 24px; }
.projekt-tag {
  font-size: 10px;
  color: var(--green);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.projekt-name {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.projekt-desc { font-size: 13px; line-height: 1.7; }

/* ── UEBER UNS PAGE ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  background: var(--grey);
  border: 1px solid rgba(103,233,166,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: border-color var(--transition);
}
.team-card:hover { border-color: rgba(103,233,166,0.35); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(103,233,166,0.3), rgba(103,233,166,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
  margin: 0 auto 16px;
  border: 2px solid rgba(103,233,166,0.3);
}
.team-name {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-role { font-size: 13px; color: var(--green-mid); margin-bottom: 12px; }
.team-bio { font-size: 13px; line-height: 1.7; }

/* ── KONTAKT PAGE ── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.kontakt-info { display: flex; flex-direction: column; gap: 28px; }
.kontakt-item { padding-bottom: 28px; border-bottom: 1px solid rgba(103,233,166,0.08); }
.kontakt-item:last-child { border-bottom: none; padding-bottom: 0; }
.kontakt-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}
.kontakt-val {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}
a.kontakt-val:hover { color: var(--green); }
.kontakt-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-text);
}
.form-input,
.form-textarea {
  background: var(--grey);
  border: 1px solid rgba(103,233,166,0.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-input:focus,
.form-textarea:focus { border-color: var(--green); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--grey-text); }

/* ── LEGAL PAGES (Impressum/Datenschutz) ── */
.legal-content {
  max-width: 760px;
}
.legal-content h2 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--green);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { font-size: 14px; line-height: 1.8; margin-bottom: 10px; }
.legal-content ul { padding-left: 20px; }
.legal-content ul li { list-style: disc; }
.legal-content a { color: var(--green); text-decoration: underline; }

/* ── ANIMATIONS ── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.8s ease forwards; }
.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.25s; }
.fade-up:nth-child(3) { animation-delay: 0.4s; }
.fade-up:nth-child(4) { animation-delay: 0.55s; }
.fade-up:nth-child(5) { animation-delay: 0.65s; }

/* ── RESPONSIVE — Tablet (max 960px) ── */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px 80px;
  }
  .hero__stats { order: -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .section { padding: 72px 0; }

  .section-header { flex-direction: column; align-items: flex-start; }
  .section-header__sub { text-align: left; max-width: 100%; }

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

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .steps::before { display: none; }
  .step { padding: 0 16px 40px; }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-strip .container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }

  .leistungen-grid { grid-template-columns: 1fr; }
  .projekte-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ── RESPONSIVE — Mobile (max 600px) ── */
@media (max-width: 600px) {
  :root { --nav-h: 64px; }

  .hero {
    padding: 40px 20px 60px;
    min-height: auto;
  }
  .hero__btns { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-num { font-size: 30px; }

  .section { padding: 56px 0; }

  .steps { grid-template-columns: 1fr; }
  .step { padding: 0 0 36px; }
  .steps::before { display: none; }

  .contact-strip .container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .cta-btns { flex-direction: column; align-items: center; }

  .projekte-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .footer__links { gap: 16px; }

  .service-card { padding: 28px 22px; }
  .leistung-card { padding: 28px 22px; }

  .page-hero { padding: 60px 0 40px; }
}
