/* ShipMind — Premium Maritime Landing Page
   Light theme: White + Navy accents + Teal highlights
   Offline: keine externen CDN-Abhängigkeiten.
   =========================================================== */

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

:root {
  /* Core palette */
  --white:         #ffffff;
  --off-white:     #f4f7fb;
  --border:        #e2e8f0;
  --border-mid:    #cbd5e1;

  /* Text */
  --text-dark:     #0f172a;
  --text-body:     #374151;
  --text-muted:    #6b7280;
  --text-faint:    #9ca3af;

  /* Navy — header, hero overlay, trust section, footer only */
  --navy:          #0a2a43;
  --navy-deep:     #061828;
  --navy-mid:      #0d3a5c;
  --navy-border:   #1a4a70;

  /* Teal accent (sparingly) */
  --teal:          #0891b2;
  --teal-dark:     #0e7490;
  --teal-light:    #e0f2fe;
  --teal-text:     #0369a1;

  /* Problem red */
  --red:           #dc2626;
  --red-soft:      #fff5f5;

  /* Shadows */
  --shadow-sm:     0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow:        0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-hover:  0 8px 28px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.07);

  /* Shape */
  --radius-sm:     6px;
  --radius:        12px;
  --radius-lg:     20px;
  --container:     1100px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", "Helvetica Neue",
               Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: var(--white);
  color: var(--text-body);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── CONTAINER ──────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── HEADER ─────────────────────────────────────────────────── */
.l-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,.35);
}

.l-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  gap: 1rem;
}

/* Brand lockup */
.l-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}

.l-brand-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.l-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.l-brand-name {
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
  line-height: 1.15;
}

.l-brand-sub {
  font-size: 0.66rem;
  color: rgba(255,255,255,.45);
  letter-spacing: 0.02em;
  margin-top: 1px;
}

.l-header-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Language toggle */
.l-lang {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.l-lang-btn {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  padding: 0.22rem 0.45rem;
  border-radius: 4px;
  transition: color .15s, background .15s;
}

.l-lang-btn:hover { color: #fff; background: rgba(255,255,255,.1); }
.l-lang-btn.active {
  color: #fff;
  background: rgba(255,255,255,.14);
  font-weight: 700;
}

.l-lang-sep { color: rgba(255,255,255,.2); padding: 0 1px; }

/* Header login button */
.l-btn-login {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1.1rem;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.8);
  font-size: 0.84rem;
  font-weight: 600;
  transition: background .15s, border-color .15s, color .15s;
}

.l-btn-login:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.4);
  color: #fff;
}

/* ── HERO — fullscreen photo with gradient overlay ──────────── */
.l-hero {
  position: relative;
  min-height: clamp(500px, 72vh, 740px);
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 4rem 1.5rem 3.5rem;
}

/* Left-heavy gradient — right side stays bright to reveal the bridge view.
   Bridge.jpg is a bright daylight shot; overlay stays minimal on the right. */
.l-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(6, 24, 40, 0.62) 0%,
    rgba(6, 24, 40, 0.42) 35%,
    rgba(6, 24, 40, 0.18) 60%,
    rgba(6, 24, 40, 0.04) 100%
  );
}
/* Bottom-fade so content transitions smoothly into white sections */
.l-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.12));
  pointer-events: none;
}

.l-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
}

.l-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7dd3fc;
  background: rgba(8, 145, 178, 0.16);
  border: 1px solid rgba(56, 189, 248, 0.45);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.l-hero-title {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.09;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.l-hero-title em {
  font-style: normal;
  color: #38bdf8;
}

.l-hero-sub {
  font-size: clamp(0.97rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.82);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.l-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.l-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.82rem 2rem;
  background: var(--teal);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background .15s, transform .1s, box-shadow .15s;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(8,145,178,.45);
}

.l-btn-primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 4px 14px rgba(8,145,178,.55);
}

.l-btn-primary:active { transform: scale(0.98); }

.l-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.82rem 2rem;
  background: rgba(255,255,255,.1);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,.35);
  transition: background .15s, border-color .15s;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

.l-btn-ghost:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.6);
}

/* ── SECTION SHELLS ─────────────────────────────────────────── */
.l-section {
  padding: 3rem 1.5rem;
  background: var(--white);
}

.l-section-soft {
  padding: 3rem 1.5rem;
  background: var(--off-white);
}

.l-section-head {
  text-align: center;
  margin-bottom: 2.25rem;
}

.l-section-label {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-text);
  margin-bottom: 0.65rem;
}

.l-section-title {
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.l-section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

.l-divider {
  width: 40px;
  height: 3px;
  background: var(--teal);
  border: none;
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

/* ── PROBLEM / SOLUTION (2-col) ─────────────────────────────── */
.l-ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 920px;
  margin: 0 auto;
}

.l-ps-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}

.l-ps-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.l-ps-card-problem { border-top: 4px solid var(--red); }
.l-ps-card-solution { border-top: 4px solid var(--teal); }

.l-ps-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.l-ps-card-problem .l-ps-icon-wrap { background: var(--red-soft); }
.l-ps-card-solution .l-ps-icon-wrap { background: var(--teal-light); }

.l-ps-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.7rem;
}

.l-ps-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.78;
}

/* ── HOW IT WORKS (3 steps) ─────────────────────────────────── */
.l-steps-wrap {
  max-width: 960px;
  margin: 0 auto;
}

.l-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

/* Connector line */
.l-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(16.67% + 22px);
  right: calc(16.67% + 22px);
  height: 2px;
  background: linear-gradient(to right, var(--border), var(--teal), var(--border));
  z-index: 0;
  pointer-events: none;
}

.l-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s, border-color .2s;
  position: relative;
  z-index: 1;
}

.l-step:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--teal);
  transform: translateY(-3px);
}

.l-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.2rem;
  letter-spacing: 0;
}

.l-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.l-step-text {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.72;
}

/* Photo strip below steps */
.l-photo-strip {
  width: 100%;
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.l-photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.l-photo-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(6,24,40,.75) 0%,
    rgba(6,24,40,.30) 55%,
    transparent 80%
  );
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
}

.l-strip-quote {
  color: #fff;
  max-width: 380px;
}

.l-strip-quote strong {
  display: block;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.35rem;
}

.l-strip-quote span {
  font-size: 0.87rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}

/* ── FEATURE GRID (3×2) ─────────────────────────────────────── */
.l-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 980px;
  margin: 0 auto;
}

.l-feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, border-color .2s, transform .2s;
}

.l-feat-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.l-feat-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.l-feat-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
}

.l-feat-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.68;
}

/* ── TRUST / ANTI-HALLUZINATION — photo background ──────────── */
.l-trust {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 1.5rem;
}

.l-trust::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(6, 24, 40, 0.93) 0%,
    rgba(10, 42, 67, 0.88) 55%,
    rgba(10, 42, 67, 0.80) 100%
  );
}

.l-trust-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.l-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 100px;
  padding: 0.28rem 0.8rem;
  margin-bottom: 1.5rem;
}

.l-trust-title {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.l-trust-text {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.82;
  margin-bottom: 1.25rem;
  max-width: 680px;
}

.l-trust-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,.48);
  font-style: italic;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1rem;
  line-height: 1.65;
  max-width: 620px;
}

/* ── FOR WHOM (3 cards) ─────────────────────────────────────── */
.l-for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
}

.l-for-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}

.l-for-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--border-mid);
  transform: translateY(-2px);
}

.l-for-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.l-for-title {
  font-size: 1.03rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.l-for-text {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.72;
}

/* ── DEMO FORM ──────────────────────────────────────────────── */
.l-demo-wrap {
  max-width: 660px;
  margin: 0 auto;
}

.l-demo-head {
  margin-bottom: 2.5rem;
  text-align: center;
}

.l-demo-title {
  font-size: clamp(1.55rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.l-demo-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.l-demo-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.l-field {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

.l-field label {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-dark);
}

.l-optional {
  font-weight: 400;
  color: var(--text-faint);
  font-size: 0.8rem;
}

.l-field input,
.l-field textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text-dark);
  font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
}

.l-field input:focus,
.l-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8,145,178,.12);
}

.l-field textarea { resize: vertical; min-height: 100px; }

.l-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--navy);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background .15s, transform .1s;
  align-self: flex-start;
}

.l-form-submit:hover { background: var(--navy-mid); }
.l-form-submit:active { transform: scale(0.98); }

.l-contact-alt {
  margin-top: 1.25rem;
  font-size: 0.87rem;
  color: var(--text-muted);
  text-align: center;
}

.l-contact-alt a {
  color: var(--teal-text);
  font-weight: 500;
}

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

/* Flash messages */
.l-flash-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.l-flash {
  padding: .72rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .93rem;
}

.l-flash-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.l-flash-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.l-flash-warning { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }

/* ── FOOTER — multi-column, dark navy ───────────────────────── */
.l-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.6);
  padding: 3rem 1.5rem 1.75rem;
}

.l-footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.75rem;
}

/* Brand column */
.l-footer-brand {
  display: flex;
  flex-direction: column;
}

.l-footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.3rem;
}

.l-footer-brand-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.l-footer-brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.l-footer-brand-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.1rem;
}

.l-footer-brand-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,.48);
  line-height: 1.75;
  max-width: 270px;
}

/* Column headers */
.l-footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.25rem;
}

/* Product + regular links */
.l-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.l-footer-links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .15s;
}

.l-footer-links a:hover { color: #ffffff; }

/* LEGAL links — MORE PROMINENT */
.l-footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.l-footer-legal-links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: color .15s;
}

.l-footer-legal-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.l-footer-legal-links a:hover { color: #ffffff; }

/* Contact info */
.l-footer-contact {
  font-size: 0.84rem;
  color: rgba(255,255,255,.52);
  line-height: 1.82;
}

.l-footer-contact a {
  color: rgba(8,145,178,.85);
  transition: color .15s;
}

.l-footer-contact a:hover { color: var(--teal); }

/* Footer bottom bar */
.l-footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.l-footer-copy {
  font-size: 0.77rem;
  color: rgba(255,255,255,.32);
}

.l-footer-lang {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  font-size: 0.78rem;
  font-weight: 600;
}

.l-footer-lang-btn {
  color: rgba(255,255,255,.38);
  text-decoration: none;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  transition: color .15s;
}

.l-footer-lang-btn:hover { color: rgba(255,255,255,.75); }
.l-footer-lang-btn.active { color: rgba(255,255,255,.85); }
.l-footer-lang-sep { color: rgba(255,255,255,.18); padding: 0 1px; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .l-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .l-hero { min-height: clamp(480px, 72vh, 700px); padding: 3.5rem 1.25rem 3rem; }
  .l-section, .l-section-soft { padding: 3rem 1.25rem; }
  .l-ps-grid { grid-template-columns: 1fr; }
  .l-steps { grid-template-columns: 1fr; gap: 1.25rem; }
  .l-steps::before { display: none; }
  .l-feat-grid { grid-template-columns: 1fr 1fr; }
  .l-for-grid { grid-template-columns: 1fr; }
  .l-photo-strip { height: 200px; }
  .l-trust { padding: 4rem 1.25rem; }
  .l-demo-form { padding: 1.75rem 1.25rem; }
  .l-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .l-footer { padding: 3rem 1.25rem 1.75rem; }
}

@media (max-width: 520px) {
  .l-hero { min-height: clamp(500px, 85vh, 700px); }
  .l-hero-title { font-size: 2rem; }
  .l-hero-cta { flex-direction: column; align-items: flex-start; }
  .l-feat-grid { grid-template-columns: 1fr; }
  .l-footer-grid { grid-template-columns: 1fr; }
  .l-footer-bottom { flex-direction: column; align-items: flex-start; }
  .l-photo-strip-overlay { padding: 0 1.25rem; }
  .l-strip-quote { max-width: 100%; }
}


/* ── Familien-Logo (09.08.2026) — Kopf ist Navy: Wortmarke weiss, Gold traegt ── */
.familie-anker { flex: none; }
.familie-wortmarke { display: flex; flex-direction: column; line-height: 1.05; }
.familie-wortmarke .haus { font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700; font-size: 1.3rem; color: #fff; letter-spacing: .3px; }
.familie-wortmarke .submarke { font-size: .56rem; font-weight: 600;
    letter-spacing: .26em; text-transform: uppercase; color: #b8860b; margin-top: 3px; }


/* ── Lokale KI + Hardware & Preise (09.08.2026) ── */
.sm-sub { color: var(--muted, #64748b); max-width: 62ch; margin: 10px auto 0; }
.sm-ai-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 18px; margin-top: 30px; }
.sm-price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 20px; margin-top: 34px; align-items: stretch; }
.sm-price-card { position: relative; background: #fff; border: 1px solid #e2e8f0;
  border-radius: 16px; padding: 26px 24px; display: flex; flex-direction: column;
  box-shadow: 0 1px 4px rgba(2, 12, 27, .06); }
.sm-price-best { border: 2px solid #b8860b; box-shadow: 0 8px 28px rgba(184, 134, 11, .16); }
.sm-price-flag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #b8860b; color: #fff; font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; padding: 4px 14px; border-radius: 999px; }
.sm-price-name { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700;
  font-size: 1.5rem; color: #0f2a46; }
.sm-price-tag { font-size: .85rem; color: #64748b; margin-top: 2px; }
.sm-price-hw { list-style: none; margin: 16px 0; padding: 0; flex: 1; }
.sm-price-hw li { font-size: .9rem; padding: 7px 0 7px 22px; position: relative;
  border-bottom: 1px solid #eef2f7; }
.sm-price-hw li:last-child { border-bottom: 0; }
.sm-price-hw li::before { content: "\2713"; position: absolute; left: 0; color: #b8860b;
  font-weight: 700; }
.sm-price-value { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700;
  font-size: 1.9rem; color: #0f2a46; }
.sm-price-per { font-size: .8rem; color: #64748b; margin: 4px 0 16px; min-height: 2.2em; }
.sm-price-btn { display: block; text-align: center; background: #0f2a46; color: #fff;
  border-radius: 10px; padding: 12px; font-weight: 600; font-size: .92rem;
  text-decoration: none; }
.sm-price-best .sm-price-btn { background: #b8860b; }
.sm-price-btn:hover { opacity: .92; }
.sm-price-note { text-align: center; font-size: .82rem; color: #64748b; margin-top: 22px; }


/* ═══ Familien-Feinschliff (09.08.2026) ═══════════════════════════
   Hero ohne Stockfoto (Navy-Verlauf der Familie), Chat-Karte als
   Produktbeweis, Vertrauenszeile, FAQ, Cormorant + Gold. Liegt am
   Dateiende und gewinnt deshalb gegen die Definitionen oben. */

:root { --gold: #b8860b; --gold-hell: #e3b341; }

.l-hero {
  background-image: none;
  background: linear-gradient(120deg, var(--navy-deep) 0%, #16384c 58%, var(--navy-mid) 100%);
  border-bottom: 3px solid var(--gold);
}
.l-hero::before {
  background: radial-gradient(ellipse at 78% 18%, rgba(184,134,11,.12), transparent 55%);
}
.l-hero-inner {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: 3rem;
  align-items: center;
}

/* Familien-Typografie: Cormorant auf den grossen Titeln, Gold als
   Auszeichnung statt Teal/Hellblau. */
.l-hero-title,
.l-section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}
.l-hero-title { font-size: clamp(2.6rem, 5.5vw, 3.9rem); }
.l-hero-title em { color: var(--gold-hell); }
.l-eyebrow {
  color: var(--gold-hell);
  background: rgba(184,134,11,.14);
  border-color: rgba(184,134,11,.45);
}
.l-divider { background: var(--gold); }

/* Chat-Karte: das Kernversprechen, gezeigt statt behauptet. */
.l-chat-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 14px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 18px 50px rgba(0,0,0,.38);
  padding: 1.35rem 1.5rem 1.1rem;
}
.l-chat-head {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.l-chat-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2e7d57;
  box-shadow: 0 0 0 3px rgba(46,125,87,.18);
}
.l-chat-q {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 10px 10px 10px 3px;
  padding: .7rem .95rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .9rem;
}
.l-chat-a {
  font-size: .92rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.l-chat-src {
  display: flex;
  gap: .5rem;
  align-items: flex-start;
  font-size: .78rem;
  font-weight: 600;
  color: #8a6508;
  background: #faf5e6;
  border: 1px solid #e8d9a8;
  border-radius: 8px;
  padding: .55rem .8rem;
}
.l-chat-hint {
  margin-top: .65rem;
  font-size: .68rem;
  color: var(--text-faint);
}

/* Vertrauenszeile */
.l-trust-strip {
  background: var(--navy-deep);
  border-top: 1px solid var(--navy-border);
  padding: .95rem 1.5rem;
}
.l-trust-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .6rem 1.3rem;
}
.l-trust-item { color: rgba(255,255,255,.78); font-size: .85rem; }
.l-trust-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex: none; }

/* FAQ */
.l-faq { max-width: 720px; margin: 0 auto; }
.l-faq-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: .75rem;
}
.l-faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: .95rem;
  color: var(--text-dark);
}
.l-faq-item summary::-webkit-details-marker { display: none; }
.l-faq-item summary::after { content: '+'; color: var(--gold); font-size: 1.15rem; font-weight: 700; flex: none; }
.l-faq-item[open] summary::after { content: '\2013'; }
.l-faq-item p { padding: 0 1.25rem 1rem; font-size: .92rem; line-height: 1.7; color: var(--text-body); }

@media (max-width: 900px) {
  .l-hero-inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .l-chat-card { max-width: 480px; }
}
