/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue-dark:    #0A2463;
  --blue:         #1B4FD8;
  --blue-light:   #3B82F6;
  --blue-faint:   #EEF3FF;
  --ink:          #071224;
  --sand:         #F5EFE4;
  --accent:       #F59E0B;
  --text:         #1A202C;
  --muted:        #4A5568;
  --border:       #E2E8F0;
  --white:        #FFFFFF;
  --radius:       12px;
  --shadow:       0 4px 24px rgba(27,79,216,.10);
  --shadow-lg:    0 12px 48px rgba(27,79,216,.16);
  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
html { scroll-behavior: smooth; scroll-padding-top: calc(4rem + env(safe-area-inset-top, 0px)); }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ─── */
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.1; letter-spacing: -.03em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; letter-spacing: -.02em; }
h3 { font-size: 1.2rem; font-weight: 600; }
p  { color: var(--muted); }

/* ─── Layout ─── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 6rem 0; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.8rem; border-radius: 8px; font-weight: 600; font-size: .95rem;
  text-decoration: none; transition: all .2s; cursor: pointer; border: none;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue-faint); }
.btn-white { background: var(--white); color: var(--blue-dark); }
.btn-white:hover { background: #f0f0f0; transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,.12); color: var(--white); border: 1px solid rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.22); }

/* ─── Navigation ─── */
nav {
  position: sticky; top: 0; z-index: 10000;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding-top: env(safe-area-inset-top, 0px);
}
html.menu-open { overflow: hidden; }
.nav-inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; max-width: 1120px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none; line-height: 1;
}
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a:not(.btn) { text-decoration: none; color: var(--muted); font-weight: 500; font-size: .9rem; transition: color .2s; }
.nav-links a:not(.btn):hover { color: var(--blue); }
.nav-cta { margin-left: 1rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav-toggle svg { display: block; }
/* X-Button beim offenen Menü: fixed damit html{overflow:hidden} das Sticky nicht killt */
html.menu-open .nav-toggle {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + .75rem);
  right: 1.5rem;
  z-index: 10001;
  background: none;
}

/* ─── Hero ─── */
.hero {
  background:
    radial-gradient(circle at top right, rgba(245,158,11,.18), transparent 24%),
    radial-gradient(circle at left center, rgba(59,130,246,.22), transparent 30%),
    linear-gradient(135deg, var(--ink) 0%, var(--blue-dark) 42%, var(--blue) 100%);
  color: var(--white); padding: 7rem 0 6rem; overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  position: relative; display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-block; background: rgba(255,255,255,.15); color: rgba(255,255,255,.9);
  font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: 99px; margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,.25);
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p { color: rgba(255,255,255,.82); font-size: 1.1rem; margin-bottom: 2rem; max-width: 500px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.review-proof {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-top: 1rem;
  text-decoration: none;
  color: rgba(255,255,255,.9);
  font-size: .92rem;
  font-weight: 600;
}
.review-proof:hover {
  color: var(--white);
}
.review-stars {
  letter-spacing: .12em;
  color: var(--accent);
}
.trust-points {
  display: flex; flex-wrap: wrap; gap: .8rem;
  margin-top: 1.4rem;
}
.trust-points span {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: .5rem .9rem;
  font-size: .82rem;
  color: rgba(255,255,255,.82);
}
.trust-points span::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(245,158,11,.12);
}
.hero-visual {
  display: flex; flex-direction: column; gap: 1rem; align-items: stretch;
}
.hero-card {
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius);
  padding: 1.25rem 1.5rem; width: 100%; max-width: 380px;
  box-shadow: 0 18px 50px rgba(7,18,36,.14);
}
.hero-card-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.6); margin-bottom: .4rem; }
.hero-card-value { font-size: 1.5rem; font-weight: 800; color: var(--white); }
.hero-card-sub { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: .2rem; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  width: 100%;
  max-width: 380px;
  margin-top: .35rem;
  padding: .85rem;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}
.stat {
  text-align: center;
  padding: .7rem .35rem;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
}
.stat-num { font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -.03em; }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.7); margin-top: .2rem; }

/* ─── Section Labels ─── */
.section-label {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue); margin-bottom: .75rem;
}
.section-title { margin-bottom: 1rem; }
.section-intro { font-size: 1.1rem; color: var(--muted); max-width: 640px; }
.section-head { margin-bottom: 3.5rem; }
.section-head.centered { text-align: center; }
.section-head.centered .section-intro { margin: 0 auto; }

/* ─── Surface Rhythm ─── */
#leistungen,
.fit-section,
.about,
.process-section,
#preise,
.testimonials,
#referenzen,
#faq {
  position: relative;
}
#leistungen::before,
.fit-section::before,
.process-section::before,
#preise::before,
.testimonials::before,
#referenzen::before,
#faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 3rem));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, rgba(27,79,216,.12) 16%, rgba(27,79,216,.12) 84%, transparent 100%);
}

/* ─── Services ─── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; transition: all .25s; position: relative; overflow: hidden;
  min-height: 100%;
  box-shadow: 0 10px 28px rgba(7,18,36,.04);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; background: var(--blue-faint); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.service-icon svg { width: 26px; height: 26px; color: var(--blue); }
.service-card h3 { margin-bottom: .6rem; }
.service-card p { font-size: .93rem; }
.service-card ul { margin-top: 1rem; padding-left: 1.1rem; }
.service-card ul li { font-size: .88rem; color: var(--muted); margin-bottom: .4rem; }

/* ─── Fit ─── */
.fit-section {
  background:
    linear-gradient(180deg, #FFFFFF 0%, #FBFCFF 100%);
}
.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.fit-card {
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(238,243,255,.92) 100%);
  border: 1px solid rgba(27,79,216,.12);
  border-radius: 18px;
  padding: 1.8rem;
  box-shadow: 0 18px 48px rgba(7,18,36,.05);
  min-height: 100%;
}
.fit-card h3 {
  margin-bottom: .65rem;
  color: var(--blue-dark);
}
.fit-card p {
  font-size: .94rem;
  line-height: 1.7;
}

/* ─── About ─── */
.about { background: var(--blue-faint); }
.about-inner { display: grid; grid-template-columns: minmax(360px, .95fr) minmax(0, 1.05fr); gap: 4.5rem; align-items: center; }
.about-photo-wrap {
  position: relative; display: flex; justify-content: center;
}
.about-photo {
  width: min(100%, 380px); height: 450px; border-radius: 20px; object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-photo-placeholder {
  width: min(100%, 380px); height: 450px; border-radius: 20px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); color: white; font-size: 4rem;
}
.about-badge {
  position: absolute; bottom: -1.5rem; right: 1rem;
  background: var(--white); border-radius: 12px; padding: 1rem 1.25rem;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.about-badge .badge-num { font-size: 1.6rem; font-weight: 800; color: var(--blue); line-height: 1; }
.about-badge .badge-text { font-size: .75rem; color: var(--muted); }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p { margin-bottom: 1rem; line-height: 1.75; }
.about-features { margin-top: 1.75rem; display: flex; flex-direction: column; gap: .75rem; }
.feature-row { display: flex; align-items: flex-start; gap: .85rem; }
.feature-icon { flex-shrink: 0; width: 22px; height: 22px; background: var(--blue); border-radius: 99px; display: flex; align-items: center; justify-content: center; margin-top: .15rem; }
.feature-icon svg { width: 12px; height: 12px; color: white; }
.feature-text { font-size: .93rem; color: var(--muted); }

/* ─── Process ─── */
.process-section {
  background:
    radial-gradient(circle at top left, rgba(10,36,99,.06), transparent 28%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 100%);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.7rem;
  box-shadow: 0 10px 32px rgba(7,18,36,.04);
  min-height: 100%;
}
.process-step {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 1rem;
}
.process-card h3 {
  margin-bottom: .6rem;
}
.process-card p {
  font-size: .92rem;
}

/* ─── Pricing ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.price-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; position: relative; transition: all .25s;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 10px 28px rgba(7,18,36,.04);
}
.price-card.featured {
  background: var(--blue-dark); border-color: var(--blue-dark); color: white;
  transform: scale(1.03);
  box-shadow: 0 24px 60px rgba(10,36,99,.26);
}
.price-card.featured p,
.price-card.featured .price-period { color: rgba(255,255,255,.75); }
.price-card.featured h3 { color: white; }
.price-card:not(.featured):hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #7C3B04; font-size: .75rem; font-weight: 700;
  padding: .25rem .85rem; border-radius: 99px; white-space: nowrap;
}
.price-head { margin-bottom: 1.5rem; }
.price-amount { font-size: 2.6rem; font-weight: 800; color: var(--blue-dark); line-height: 1; }
.price-card.featured .price-amount { color: white; }
.price-currency { font-size: 1.2rem; font-weight: 600; vertical-align: super; margin-right: .2rem; }
.price-period { font-size: .85rem; color: var(--muted); }
.price-features { list-style: none; margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.price-features li { font-size: .88rem; color: var(--muted); display: flex; align-items: flex-start; gap: .6rem; }
.price-card.featured .price-features li { color: rgba(255,255,255,.8); }
.price-features li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.price-card.featured .price-features li::before { color: var(--accent); }
.price-card .btn { margin-top: auto; }

/* ─── Testimonials ─── */
.testimonials { background: #F8FAFF; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; transition: box-shadow .2s;
  min-height: 100%;
  box-shadow: 0 10px 28px rgba(7,18,36,.04);
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.stars { color: var(--accent); font-size: 1rem; margin-bottom: .75rem; letter-spacing: .1em; }
.testimonial-text { font-size: .93rem; color: var(--muted); line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: .85rem; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 99px;
  background: var(--blue-faint); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; color: var(--blue); flex-shrink: 0;
}
.author-avatar img {
  width: 44px; height: 44px; border-radius: 99px; object-fit: cover;
}
.author-name { font-weight: 600; font-size: .9rem; color: var(--text); }
.author-role { font-size: .8rem; color: var(--muted); }

/* ─── References ─── */
.references-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem;
}
.ref-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all .25s;
  min-height: 100%;
  box-shadow: 0 10px 28px rgba(7,18,36,.04);
}
.ref-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.ref-card-meta { padding: 1rem 1.25rem 1.15rem; }
.ref-card-name { font-weight: 600; font-size: .9rem; color: var(--text); }
.ref-card-cat { font-size: .78rem; color: var(--muted); margin-top: .15rem; }

/* Browser Mockup */
.browser-mockup {
  background: #E8ECF0;
  border-bottom: 1px solid var(--border);
}
.browser-bar {
  display: flex; align-items: center; gap: .5rem;
  padding: .55rem .85rem;
  background: #F0F3F6;
  border-bottom: 1px solid #D8DDE4;
}
.browser-dots { display: flex; gap: .35rem; flex-shrink: 0; }
.browser-dot {
  width: 10px; height: 10px; border-radius: 99px;
}
.browser-dot-red    { background: #FF5F57; }
.browser-dot-yellow { background: #FFBD2E; }
.browser-dot-green  { background: #28C840; }
.browser-url {
  flex: 1; background: #E2E6EA; border-radius: 4px;
  padding: .18rem .6rem; font-size: .7rem; color: #6B7280;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.browser-screen {
  height: 200px; overflow: hidden; display: block;
}
.browser-screen picture {
  display: block; width: 100%; height: 100%;
}
.browser-screen img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: top;
  transition: transform .6s ease;
}
.ref-card:hover .browser-screen img { transform: translateY(-8%); }

/* ─── Partners ─── */
.partners-strip {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 100%);
  padding: 1.4rem 0 1.55rem;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.partners-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.5rem;
  align-items: center;
}
.partners-subhead {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  white-space: nowrap;
}
.partner-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}
.partner-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.15rem;
  background: rgba(255,255,255,.92);
  color: var(--blue-dark);
  font-size: .79rem;
  font-weight: 600;
  padding: .48rem .82rem;
  border-radius: 999px;
  border: 1px solid rgba(27,79,216,.12);
  box-shadow: 0 6px 18px rgba(7,18,36,.04);
}

/* ─── FAQ ─── */
.faq-list { max-width: 720px; margin: 0 auto; }
details { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
summary {
  font-weight: 600; cursor: pointer; list-style: none; display: flex;
  justify-content: space-between; align-items: center; font-size: .97rem;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+'; font-size: 1.4rem; color: var(--blue); line-height: 1; flex-shrink: 0; margin-left: 1rem;
}
details[open] summary::after { content: '−'; }
details p { margin-top: .85rem; font-size: .92rem; line-height: 1.7; }

/* ─── Contact ─── */
.contact { background: var(--blue-dark); color: white; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact h2 { color: white; margin-bottom: .75rem; }
.contact .section-label { color: var(--accent); }
.contact p { color: rgba(255,255,255,.75); margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-row { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon { width: 42px; height: 42px; background: rgba(255,255,255,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 18px; height: 18px; color: rgba(255,255,255,.85); }
.contact-row-text strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.5); margin-bottom: .1rem; }
.contact-row-text a,
.contact-row-text span { color: rgba(255,255,255,.9); text-decoration: none; font-size: .95rem; }
.contact-row-text a:hover { color: white; text-decoration: underline; }
.contact-note {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  max-width: 28rem;
}
.contact-note strong {
  display: block;
  color: var(--white);
  margin-bottom: .4rem;
}
.contact-note p {
  margin: 0;
  font-size: .92rem;
}
.contact-form { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 2rem; }
.form-status {
  margin-bottom: 1.25rem;
  padding: .9rem 1rem;
  border-radius: 10px;
  font-size: .92rem;
  line-height: 1.5;
}
.form-status a {
  color: inherit;
}
.form-status-error {
  background: rgba(245,158,11,.14);
  border: 1px solid rgba(245,158,11,.38);
  color: rgba(255,255,255,.92);
}
.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.7); margin-bottom: .4rem; text-transform: uppercase; letter-spacing: .05em; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .75rem 1rem; border-radius: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: white; font-family: inherit; font-size: .93rem;
  transition: border-color .2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.4); }
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue-light); background: rgba(255,255,255,.15); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── Footer ─── */
footer {
  background: linear-gradient(135deg, #0A2463 0%, #06152E 60%, #020D1F 100%);
  color: rgba(255,255,255,.6);
  padding: 3rem 0 2rem;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { font-size: 1.2rem; font-weight: 800; color: white; letter-spacing: -.02em; }
.footer-logo span { color: var(--blue-light); }
.footer-links { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .85rem; transition: color .2s; }
.footer-links a:hover { color: white; }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.35); text-align: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08); }

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-photo-wrap { margin-bottom: 3rem; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card.featured { transform: scale(1); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .references-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  section { padding: 4rem 0; }
  .section-head { margin-bottom: 2.5rem; }
  .section-title { margin-bottom: .8rem; }
  .section-intro { font-size: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .review-proof {
    flex-wrap: wrap;
    line-height: 1.5;
  }
  .trust-points { flex-direction: column; }
  .partners-inner {
    grid-template-columns: 1fr;
    gap: .8rem;
  }
  .partners-subhead {
    width: 100%;
    padding-right: 0;
  }
  .partner-pills {
    gap: .55rem;
  }
  .partner-pill {
    font-size: .78rem;
    padding: .5rem .8rem;
  }
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  /* ACHTUNG: position:fixed funktioniert nur weil das <ul> via JS an <body> gehängt wird.
     position:absolute hier NICHT verwenden – das würde top:100% = Body-Höhe bedeuten. */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 9999;
    padding: calc(5.5rem + env(safe-area-inset-top, 0px)) 1.5rem 2rem;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    list-style: none;
  }
  .nav-links.open li {
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open a:not(.btn) {
    display: block;
    padding: 1rem .25rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
  }
  .nav-links.open a:not(.btn):hover { color: var(--blue); }
  .nav-links.open .nav-cta {
    margin: 1.5rem 0 0;
    border: none;
  }
  .nav-links.open .nav-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: .9rem;
    font-size: 1rem;
  }
  .form-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .references-grid { grid-template-columns: 1fr; }
  .browser-screen { height: 180px; }
}
