/* ============================================================
   MAKESHIP – DESIGN SYSTEM v2
   Modern B2B · Plus Jakarta Sans · Near-Black + Green
   Inspired by 1komma5.com visual quality
   ============================================================ */

/* ---- DESIGN TOKENS ---- */
:root {
  /* Core Palette */
  --ink:          #0A0A0A;
  --ink-80:       rgba(10,10,10,0.8);
  --ink-60:       rgba(10,10,10,0.6);
  --ink-40:       rgba(10,10,10,0.4);
  --ink-12:       rgba(10,10,10,0.12);
  --ink-06:       rgba(10,10,10,0.06);

  --white:        #FFFFFF;
  --surface:      #F7F7F5;
  --surface-2:    #EFEFEC;

  --green:        #1A6B5A;
  --green-light:  #22C55E;
  --green-pale:   #ECFDF5;
  --green-dark:   #145045;

  --red-pale:     #FEF2F2;
  --red-muted:    #DC2626;

  --amber:        #D97706;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing */
  --sp-1:   0.25rem;
  --sp-2:   0.5rem;
  --sp-3:   0.75rem;
  --sp-4:   1rem;
  --sp-5:   1.25rem;
  --sp-6:   1.5rem;
  --sp-8:   2rem;
  --sp-10:  2.5rem;
  --sp-12:  3rem;
  --sp-16:  4rem;
  --sp-20:  5rem;
  --sp-24:  6rem;
  --sp-32:  8rem;

  /* Radii */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.07);

  /* Transitions */
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:     150ms;
  --t-base:     220ms;
  --t-slow:     400ms;

  /* Layout */
  --max-w:      1200px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
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; }
input, select, textarea { font-family: inherit; }

/* ---- CONTAINER ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-10);
}
@media (max-width: 768px) { .container { padding: 0 var(--sp-5); } }

/* ---- SECTION TYPOGRAPHY ---- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--sp-4);
}
.section-eyebrow--light { color: rgba(255,255,255,0.5); }

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 2.875rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--sp-5);
}
.section-headline--light { color: var(--white); }

.section-intro {
  font-size: 1.0625rem;
  color: var(--ink-60);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: var(--sp-16);
}
.section-intro--light { color: rgba(255,255,255,0.55); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.6875rem 1.375rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--r-sm);
  transition: all var(--t-base) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost-dark:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-12);
}
.btn-outline-dark:hover {
  border-color: var(--ink);
  background: var(--ink-06);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--t-base), box-shadow var(--t-base);
}
.nav-header.scrolled {
  background: rgba(10,10,10,0.98);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--white);
  text-decoration: none;
}
.nav-logo-icon { color: var(--white); }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color var(--t-fast);
  text-decoration: none;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.125rem;
  border-radius: var(--r-sm);
  font-weight: 700 !important;
  transition: background var(--t-fast) !important;
}
.nav-cta:hover { background: var(--green-dark) !important; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t-base);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--ink);
  padding: var(--sp-4) var(--sp-5) var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav a {
  color: rgba(255,255,255,0.75);
  padding: 0.75rem 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav-cta { color: var(--green-light) !important; font-weight: 700; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .mobile-nav.open { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
  padding-top: 64px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 30%, rgba(26,107,90,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(26,107,90,0.10) 0%, transparent 55%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-32) var(--sp-10) var(--sp-24);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-16);
  align-items: flex-start;
}
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
    padding: var(--sp-20) var(--sp-5) var(--sp-16);
    max-width: 100%;
    overflow: hidden;
  }
  .hero-visual { display: none !important; }
  .hero-compare { display: none !important; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--sp-6);
}
.eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-light);
  animation: blink 2.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: var(--sp-6);
}
.hero-headline-accent {
  color: var(--green-light);
  display: block;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: var(--sp-8);
}
.hero-cta-group {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: var(--sp-12);
}
.hero-cta-group .btn-lg {
  padding: 0.75rem 1.25rem;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.proof-number {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.proof-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.proof-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}

/* Hero visual card stack */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--sp-8);
}
.hero-card-stack {
  position: relative;
  width: 280px;
  height: 200px;
}
.hero-card {
  position: absolute;
  width: 240px;
  padding: var(--sp-6);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-card--back {
  background: rgba(255,255,255,0.04);
  top: 0; left: 0;
  transform: rotate(-4deg);
}
.hero-card--front {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  top: 30px; left: 40px;
  transform: rotate(2deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hcard-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-3);
}
.hcard-metric {
  margin-bottom: var(--sp-4);
}
.hm-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.hm-desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}
.hcard-metric.red .hm-value { color: #F87171; }
.hcard-metric.green .hm-value { color: var(--green-light); }
.hcard-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-light);
  background: rgba(34,197,94,0.12);
  padding: 0.25rem 0.625rem;
  border-radius: var(--r-full);
}

/* ============================================================
   OUTCOMES LEISTE
   ============================================================ */
.outcomes {
  background: var(--white);
  border-bottom: 1px solid var(--ink-06);
  padding: var(--sp-10) 0;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
@media (max-width: 900px) {
  .outcomes-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
  }
  .outcome-divider { display: none; }
}
@media (max-width: 560px) {
  .outcomes-grid { grid-template-columns: 1fr; }
}
.outcome-divider {
  width: 1px;
  height: 48px;
  background: var(--ink-12);
  margin: 0 var(--sp-8);
}
.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-2) var(--sp-4);
}
.outcome-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-pale);
  border-radius: var(--r-md);
  color: var(--green);
}
.outcome-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.outcome-text strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.outcome-text span {
  font-size: 0.8125rem;
  color: var(--ink-60);
  line-height: 1.5;
}

/* ============================================================
   VORHER / NACHHER
   ============================================================ */
.before-after {
  padding: var(--sp-24) 0;
  background: var(--surface);
}
.before-after .section-intro { margin-bottom: var(--sp-12); }

.ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}
@media (max-width: 768px) {
  .ba-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
  .ba-divider { display: none; }
}

/* Before column */
.ba-col {
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ba-col--before {
  background: var(--white);
  border: 1.5px solid var(--ink-12);
}
.ba-col--after {
  background: var(--ink);
  border: 1.5px solid var(--ink);
}

.ba-col-header {
  padding: var(--sp-8) var(--sp-8) var(--sp-6);
  border-bottom: 1px solid var(--ink-06);
}
.ba-col--after .ba-col-header {
  border-bottom-color: rgba(255,255,255,0.08);
}

.ba-col-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-3);
}
.ba-label--before {
  background: #FEF2F2;
  color: var(--red-muted);
}
.ba-label--after {
  background: rgba(34,197,94,0.15);
  color: var(--green-light);
}
.ba-col-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.ba-col--after .ba-col-header h3 { color: var(--white); }

.ba-list {
  flex: 1;
  padding: var(--sp-6) var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.ba-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}
.ba-item-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-top: 1px;
}
.before-icon {
  background: #FEF2F2;
  color: var(--red-muted);
}
.after-icon {
  background: rgba(34,197,94,0.15);
  color: var(--green-light);
}
.ba-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.ba-col--after .ba-item strong { color: var(--white); }
.ba-item span {
  font-size: 0.8375rem;
  color: var(--ink-60);
  line-height: 1.55;
}
.ba-col--after .ba-item span { color: rgba(255,255,255,0.5); }

.ba-stat {
  margin: var(--sp-2) var(--sp-8) var(--sp-8);
  padding: var(--sp-5) var(--sp-6);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ba-stat--before {
  background: #FEF2F2;
  border: 1px solid rgba(220,38,38,0.12);
}
.ba-stat--after {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
}
.ba-stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.ba-stat--before .ba-stat-number { color: var(--red-muted); }
.ba-stat--after .ba-stat-number { color: var(--green-light); }
.ba-stat-label {
  font-size: 0.8125rem;
  color: var(--ink-60);
}
.ba-col--after .ba-stat-label { color: rgba(255,255,255,0.5); }

/* Divider between columns */
.ba-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: 0 var(--sp-6);
  min-height: 300px;
}
.ba-divider-line {
  flex: 1;
  width: 1px;
  background: var(--ink-12);
}
.ba-divider-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ba-cta-row {
  display: flex;
  justify-content: center;
  margin-top: var(--sp-12);
}

/* ============================================================
   PAIN SECTION
   ============================================================ */
.pain {
  padding: var(--sp-24) 0;
  background: var(--white);
}
.pain .section-intro { margin-bottom: var(--sp-12); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 900px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pain-grid { grid-template-columns: 1fr; } }

.pain-card {
  background: var(--surface);
  border: 1px solid var(--ink-06);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  transition: box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease), border-color var(--t-base);
}
.pain-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--ink-12);
}
.pain-card--cta {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.pain-card--cta:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
}
.pain-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--ink-06);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-5);
  color: var(--green);
}
.pain-icon--cta {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.1);
  color: var(--green-light);
}
.pain-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}
.pain-card--cta h3 { color: var(--white); }
.pain-card p {
  font-size: 0.875rem;
  color: var(--ink-60);
  line-height: 1.65;
}
.pain-card--cta p { color: rgba(255,255,255,0.6); }
.pain-link {
  display: inline-flex;
  align-items: center;
  margin-top: var(--sp-5);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green-light);
  text-decoration: none;
  transition: gap var(--t-fast);
  gap: var(--sp-1);
}
.pain-link:hover { gap: var(--sp-2); }

/* ============================================================
   OFFERS
   ============================================================ */
.offers {
  padding: var(--sp-24) 0;
  background: var(--surface);
}
.offers .section-intro { margin-bottom: var(--sp-12); }

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  align-items: start;
}
@media (max-width: 900px) {
  .offers-grid { grid-template-columns: 1fr; max-width: 480px; }
}

.offer-card {
  background: var(--white);
  border: 1.5px solid var(--ink-12);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.offer-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.offer-card--featured {
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}
.offer-card--featured:hover {
  box-shadow: var(--shadow-xl);
}
.offer-featured-badge {
  position: absolute;
  top: 0; right: var(--sp-6);
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}
.offer-header {
  padding: var(--sp-8) var(--sp-8) var(--sp-5);
  border-bottom: 1px solid var(--ink-06);
}
.offer-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--sp-3);
}
.offer-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--sp-2);
}
.offer-tagline {
  font-size: 0.875rem;
  color: var(--ink-60);
}
.offer-body {
  padding: var(--sp-6) var(--sp-8);
  flex: 1;
}
.offer-desc {
  font-size: 0.875rem;
  color: var(--ink-60);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}
.offer-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.offer-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.875rem;
  color: var(--ink-80);
  line-height: 1.5;
}
.offer-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green);
}
.offer-footer {
  padding: var(--sp-6) var(--sp-8) var(--sp-8);
  border-top: 1px solid var(--ink-06);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.offer-price {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
}
.price-from {
  font-size: 0.8125rem;
  color: var(--ink-40);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.price-note {
  font-size: 0.8125rem;
  color: var(--ink-40);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: var(--sp-24) 0;
  background: var(--ink);
}
.process .section-intro { margin-bottom: var(--sp-12); }

.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
.process-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.process-row .process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.process-row .process-step p {
  flex: 1;
}
.process-row .process-arrow {
  flex: 0 0 auto;
}
.process-step--final {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: var(--sp-8);
  row-gap: var(--sp-2);
  align-items: start;
}
.process-step--final .step-num {
  font-size: 4rem;
  margin-bottom: 0;
  grid-row: 1 / 4;
  align-self: center;
}
.process-step--final h3 {
  font-size: 1.125rem;
  margin-bottom: 0;
  align-self: end;
}
.process-step--final p {
  grid-column: 2;
  margin-bottom: 0;
}
.process-step--final .step-tag {
  grid-column: 2;
}
.process-arrow--before-final {
  display: none;
}
@media (max-width: 900px) {
  .process-row { flex-direction: column; }
  .process-row .process-arrow { display: none; }
  .process-step--final {
    grid-template-columns: auto 1fr;
  }
}
.process-arrow {
  display: flex;
  align-items: flex-start;
  padding-top: var(--sp-10);
  padding-left: var(--sp-4);
  padding-right: var(--sp-4);
  color: rgba(255,255,255,0.2);
}
.process-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  transition: background var(--t-base), border-color var(--t-base);
}
.process-step:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(26,107,90,0.4);
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: var(--sp-4);
  letter-spacing: -0.04em;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-3);
}
.process-step p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}
.step-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--green-light);
  background: rgba(34,197,94,0.12);
  padding: 0.25rem 0.625rem;
  border-radius: var(--r-full);
}

/* ============================================================
   WHY MAKESHIP
   ============================================================ */
.why {
  padding: var(--sp-24) 0;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-24);
  align-items: center;
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; gap: var(--sp-12); }
}
.why-left p {
  font-size: 1rem;
  color: var(--ink-60);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
.why-point {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  padding: var(--sp-5) var(--sp-6);
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--ink-06);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.why-point:hover {
  border-color: var(--ink-12);
  box-shadow: var(--shadow-sm);
}
.why-point-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-pale);
  border-radius: var(--r-md);
  color: var(--green);
}
.why-point strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--sp-1);
}
.why-point p {
  font-size: 0.875rem;
  color: var(--ink-60);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   TEAM
   ============================================================ */
.team {
  padding: var(--sp-24) 0;
  background: var(--surface);
}
.team .section-intro { margin-bottom: var(--sp-12); }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
}
@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: var(--white);
  border: 1px solid var(--ink-06);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.team-photo-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface-2);
}
.team-photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
}
.photo-initials {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--ink-12);
  letter-spacing: -0.02em;
}
.photo-label {
  font-size: 0.8125rem;
  color: var(--ink-40);
}
.team-info { padding: var(--sp-8); }
.team-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--sp-1);
}
.team-role {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--sp-4);
}
.team-bio {
  font-size: 0.9rem;
  color: var(--ink-60);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}
.team-stations {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding-left: var(--sp-4);
  border-left: 2px solid var(--ink-06);
}
.station {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}
.station-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 5px;
}
.station strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
}
.station span {
  font-size: 0.8125rem;
  color: var(--ink-60);
}

/* ============================================================
   AUDIT FORM
   ============================================================ */
.audit {
  padding: var(--sp-24) 0;
  background: var(--ink);
}
.audit-inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: var(--sp-20);
  align-items: start;
}
@media (max-width: 900px) {
  .audit-inner { grid-template-columns: 1fr; gap: var(--sp-12); }
}
.audit-left { padding-top: var(--sp-4); }
.audit-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: var(--sp-5);
}
.audit-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
}
.audit-promises {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.audit-promise {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.audit-promise svg { color: var(--green-light); flex-shrink: 0; }

/* Form */
.audit-form {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  box-shadow: var(--shadow-xl);
}
@media (max-width: 560px) { .audit-form { padding: var(--sp-6); } }

/* Mobile fix: shadow-xl hat einen Blur von 64px, der auf kleinen Viewports
   über den rechten Viewport-Rand hinausragt und horizontales Scrollen auslöst.
   Auf Mobile wird ein kompaktes Shadow verwendet, das innerhalb der Seite bleibt. */
@media (max-width: 768px) {
  .audit-form,
  .form-success {
    box-shadow: 0 4px 24px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.form-group label {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink);
}
.form-group input,
.form-group select {
  padding: 0.6875rem 0.875rem;
  border: 1.5px solid var(--ink-12);
  border-radius: var(--r-sm);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.08);
}
.form-group input.error,
.form-group select.error {
  border-color: var(--red-muted);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.08);
}
.form-group input::placeholder { color: var(--ink-40); }
.form-submit {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}
.form-privacy {
  font-size: 0.75rem;
  color: var(--ink-40);
  line-height: 1.5;
  text-align: center;
}
.form-privacy a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }

/* Success */
.form-success {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-16) var(--sp-10);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  box-shadow: var(--shadow-xl);
}
.form-success[hidden] { display: none; }
.success-icon {
  width: 72px; height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-pale);
  border-radius: 50%;
  color: var(--green);
  margin-bottom: var(--sp-2);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
}
.form-success p {
  font-size: 0.9375rem;
  color: var(--ink-60);
  line-height: 1.65;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050505;
  color: rgba(255,255,255,0.6);
  padding-top: var(--sp-20);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: var(--sp-20);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: var(--sp-12); }
}
.footer-logo { margin-bottom: var(--sp-4); }
.footer-claim {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--green-light);
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-4);
}
.footer-address {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}
@media (max-width: 480px) { .footer-nav { grid-template-columns: 1fr 1fr; } }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: var(--sp-4);
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-3);
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding: var(--sp-5) 0;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.25);
}
.footer-bottom a {
  color: rgba(255,255,255,0.35);
  transition: color var(--t-fast);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   HERO COMPARE CARDS
   ============================================================ */
.hero-compare {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-end;
}
.hc-card {
  flex: 1;
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.hc-card--before {
  background: rgba(255,255,255,0.04);
  margin-bottom: var(--sp-6);
  overflow: hidden;
}
.hc-card--after {
  background: rgba(255,255,255,0.08);
  border-color: rgba(34,197,94,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(34,197,94,0.12);
  position: relative;
  top: -12px;
}
.hc-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: var(--r-full);
  padding: 0.2rem 0.55rem;
  width: fit-content;
}
.hc-label--before {
  background: rgba(220,38,38,0.12);
  color: rgba(220,38,38,0.7);
}
.hc-label--after {
  background: rgba(34,197,94,0.12);
  color: var(--green-light);
}
.hc-topic {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hc-metric {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}
.hc-metric--red  { color: #EF4444; }
.hc-metric--green { color: var(--green-light); }
.hc-desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}
.hc-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: var(--r-full);
  padding: 0.25rem 0.625rem;
  width: fit-content;
  margin-top: var(--sp-1);
}
.hc-badge--neg {
  background: rgba(220,38,38,0.1);
  color: rgba(220,38,38,0.75);
}
.hc-badge--pos {
  background: rgba(34,197,94,0.12);
  color: var(--green-light);
}

/* ============================================================
   BTN HERO CTA (matches nav-cta)
   ============================================================ */
.btn-hero-cta {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-hero-cta:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,107,90,0.35);
}

/* ============================================================
   HERO QUICK WINS
   ============================================================ */
.hero-quick-wins {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
  padding: var(--sp-5) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 680px) {
  .hero-quick-wins { grid-template-columns: 1fr; gap: var(--sp-3); }
}
.hqw-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
}
.hqw-icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34,197,94,0.12);
  border-radius: var(--r-md);
  color: var(--green-light);
  margin-bottom: var(--sp-1);
}
.hqw-item strong {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.hqw-item span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}

/* ============================================================
   TRUST-LEISTE
   ============================================================ */
.trust-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-40);
  text-align: center;
  margin-bottom: var(--sp-5);
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-6) var(--sp-8);
}
@media (max-width: 768px) {
  .trust-logos { justify-content: center; gap: var(--sp-5) var(--sp-6); }
}
.trust-logo {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #BBBBBB;
  white-space: nowrap;
  transition: color var(--t-fast);
}
.trust-logo:hover { color: var(--ink-60); }

/* ============================================================
   PROZESS SCHRITT FINAL
   ============================================================ */
.process-step--final {
  background: rgba(34,197,94,0.06);
  border-color: rgba(34,197,94,0.2);
}
.process-step--final:hover {
  background: rgba(34,197,94,0.10);
  border-color: rgba(34,197,94,0.35);
}
.step-tag--final {
  background: transparent;
  color: var(--green-light);
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.reveal-stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0ms; }
.reveal-stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:80ms; }
.reveal-stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:160ms; }
.reveal-stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:240ms; }
.reveal-stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:320ms; }
.reveal-stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:400ms; }

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 560px) {
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  .hero-social-proof { gap: var(--sp-4); }
  .proof-divider { display: none; }
  .ba-cta-row .btn { width: 100%; justify-content: center; }
}
