/* ========================================================================
   HaraldAutomation — Design System v2
   Basis: bestehende Website (Struktur/Klassen), neue Premium-Palette,
   echte Produkt-Screenshots in Phone-/Laptop-Mockups.
   ======================================================================== */

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

:root {
  --navy:      #14213D;
  --navy2:     #0D1729;
  --navy3:     #1F3357;
  --blue:      #3D5A80;
  --blue2:     #4C6C93;
  --blue-pale: #EEF1F6;
  --blue-mid:  #D7DEE8;
  --accent:    #B08D57;
  --accent2:   #C7A876;
  --white:     #ffffff;
  --off:       #F7F8FA;
  --gray:      #5C6470;
  --gray2:     #98A0AC;
  --gray3:     #DDE1E6;
  --dark:      #0A1220;
  --R:  16px;
  --RL: 22px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-serif: 'Georgia', 'Times New Roman', serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--navy);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ─── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 66px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(20,33,61,0.09);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  box-shadow: 0 1px 24px rgba(20,33,61,0.06);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 17px; font-weight: 700; letter-spacing: -0.3px;
  color: var(--navy);
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-mark {
  width: 32px; height: 32px;
  background: var(--navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: white; letter-spacing: -0.5px;
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 400; color: var(--gray); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-cta {
  background: var(--navy) !important; color: white !important;
  padding: 10px 22px !important; border-radius: 8px;
  font-size: 13px !important; font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--navy3) !important; transform: translateY(-1px); }
.nav-toggle { display: none; width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--gray3); background: transparent; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content:''; display:block; width:18px; height:1.5px; background:var(--navy); position:relative; transition:.2s; }
.nav-toggle span::before { position:absolute; top:-6px; }
.nav-toggle span::after { position:absolute; top:6px; }
@media (max-width: 780px) {
  nav { padding: 0 20px; }
  .nav-links {
    position: fixed; top: 66px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); border-bottom: 1px solid var(--gray3);
    padding: 10px; gap: 2px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: .25s;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px 14px; display: block; }
  .nav-toggle { display: flex; }
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  background: linear-gradient(165deg, #eef1f6 0%, #e2e7ee 55%, #d7dee8 100%);
  display: flex; align-items: center;
  padding: 108px 48px 72px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(20,33,61,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(20,33,61,0.035) 1px, transparent 1px);
  background-size: 52px 52px;
}
.hero::after { content: ''; position: absolute; top: -200px; right: -120px; width: 700px; height: 700px; background: radial-gradient(ellipse, rgba(176,141,87,0.12) 0%, transparent 65%); }
.hero-blob { position: absolute; bottom: -120px; left: -100px; width: 540px; height: 540px; background: radial-gradient(ellipse, rgba(61,90,128,0.10) 0%, transparent 65%); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; max-width: 1160px; margin: 0 auto; width: 100%; }
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; gap: 44px; text-align:center; } .hero-right { display: flex; justify-content:center; } .hero { padding: 100px 24px 56px; } .hero-buttons, .hero-stats { align-items:center; justify-content:center; } }
.hero-inner.narrow-right { grid-template-columns: 1.05fr 0.95fr; gap: 60px; }
.hero-inner.wide-right { grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: flex-start; }
@media (max-width: 900px) { .hero-inner.narrow-right, .hero-inner.wide-right { grid-template-columns: 1fr; gap: 44px; align-items: center; } }

.hero-pill { display: inline-flex; align-items: center; gap: 8px; background: white; border: 1px solid rgba(20,33,61,0.12); border-radius: 100px; padding: 6px 16px 6px 10px; margin-bottom: 24px; box-shadow: 0 2px 12px rgba(20,33,61,0.07); }
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; }
.hero-pill span { font-size: 12.5px; font-weight: 500; color: var(--navy); }
.hero h1 { font-family: var(--font-serif); font-size: clamp(36px, 5vw, 64px); font-weight: 800; line-height: 1.04; letter-spacing: -2px; margin-bottom: 22px; color: var(--navy); }
.h1-accent { background: linear-gradient(135deg, var(--navy), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p.lead { font-size: 17px; line-height: 1.7; color: var(--gray); margin-bottom: 32px; max-width: 440px; font-weight: 300; }
@media (max-width:900px){ .hero p.lead { margin-left:auto; margin-right:auto; } }
.hero-buttons { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 32px; padding-top: 30px; border-top: 1px solid rgba(20,33,61,0.1); }
.hstat-num { font-family: var(--font-serif); font-size: 28px; font-weight: 800; color: var(--navy); letter-spacing: -1.5px; line-height: 1; margin-bottom: 3px; }
.hstat-label { font-size: 12px; color: var(--gray2); font-weight: 400; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn-primary { background: var(--navy); color: white; padding: 15px 30px; border-radius: 10px; font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: .2s; box-shadow: 0 4px 20px rgba(20,33,61,0.22); }
.btn-primary:hover { background: var(--navy3); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(20,33,61,0.28); }
.btn-secondary { background: white; border: 1.5px solid var(--gray3); color: var(--navy); padding: 14px 26px; border-radius: 10px; font-size: 14px; font-weight: 500; transition: .2s; }
.btn-secondary:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-white { background: white; color: var(--navy); padding: 15px 30px; border-radius: 10px; font-size: 14px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; transition: .2s; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }

/* ─── PHONE MOCKUP (real screenshots) ────────────────────── */
.phone-wrap { perspective: 1400px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.phone-device {
  width: 264px; background: var(--dark); border-radius: 42px; border: 6px solid #16233b;
  box-shadow: 0 48px 96px rgba(10,18,32,0.32), 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden; flex-shrink: 0;
}
.phone-device.float { animation: floatPhone 5.5s ease-in-out infinite; }
.phone-device.tilt-l { transform: rotateY(-8deg) rotateX(4deg); }
.phone-device.tilt-r { transform: rotateY(8deg) rotateX(4deg); }
@keyframes floatPhone { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.tilt-l.float { animation-name: floatPhoneL; }
.tilt-r.float { animation-name: floatPhoneR; }
@keyframes floatPhoneL { 0%,100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0); } 50% { transform: rotateY(-8deg) rotateX(4deg) translateY(-14px); } }
@keyframes floatPhoneR { 0%,100% { transform: rotateY(8deg) rotateX(4deg) translateY(0); } 50% { transform: rotateY(8deg) rotateX(4deg) translateY(-14px); } }
.ph-top { background: var(--dark); padding: 13px 20px 9px; display: flex; justify-content: space-between; align-items: center; }
.ph-time { font-size: 13px; font-weight: 600; color: white; }
.ph-notch { width: 70px; height: 6px; background: #000; border-radius: 6px; }
.ph-icons { display: flex; gap: 4px; align-items: center; }
.ph-icons span { width: 12px; height: 8px; border: 1.5px solid rgba(255,255,255,0.4); border-radius: 2px; display: inline-block; }
.ph-screen { height: 430px; overflow: hidden; border-radius: 0 0 30px 30px; padding: 14px 10px 20px; background: var(--dark); }
.ph-big-time { font-family: var(--font-serif); font-size: 44px; font-weight: 200; letter-spacing: -2px; text-align: center; margin-bottom: 3px; color: white; }
.ph-date { font-size: 12.5px; color: rgba(255,255,255,0.45); text-align: center; margin-bottom: 22px; }
.ph-notif { background: rgba(255,255,255,0.07); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.09); border-radius: 14px; padding: 13px 14px; margin-bottom: 10px; animation: slideN .55s ease both; text-align: left; }
.ph-big-time, .ph-date { text-align: center; }
.ph-notif:nth-of-type(2) { animation-delay: .2s; }
.ph-notif:nth-of-type(3) { animation-delay: .4s; }
@keyframes slideN { from { opacity:0; transform: translateY(-12px) scale(.97); } to { opacity:1; transform:none; } }
.ph-nhead { display: flex; align-items: center; gap: 7px; margin-bottom: 7px; }
.ph-nicon { width: 21px; height: 21px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ph-napp { font-size: 10.5px; font-weight: 600; color: rgba(255,255,255,0.65); }
.ph-ntime { font-size: 9.5px; color: rgba(255,255,255,0.3); margin-left: auto; }
.ph-ntitle { font-size: 12.5px; font-weight: 700; color: white; margin-bottom: 3px; }
.ph-nbody { font-size: 11.5px; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ─── PHONE CHAT (stylized bot conversation) ─────────────── */
.ph-screen.chat { padding: 0; }
.ph-chat { height: 100%; display: flex; flex-direction: column; background: var(--off); }
.ph-chat-head { background: var(--dark); padding: 13px 14px; display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.ph-chat-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 10.5px; font-weight: 800; color: var(--dark); flex-shrink: 0; }
.ph-chat-name { font-size: 12px; font-weight: 700; color: white; }
.ph-chat-status { font-size: 9.5px; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 4px; margin-top: 1px; }
.ph-chat-dot { width: 5px; height: 5px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }
.ph-chat-body { flex: 1; padding: 14px 12px; display: flex; flex-direction: column; gap: 9px; overflow: hidden; }
.ph-bubble { padding: 9px 12px; border-radius: 15px; font-size: 11.5px; line-height: 1.48; max-width: 82%; animation: bubbleIn .45s ease both; text-align: left; }
.ph-bubble:nth-child(2) { animation-delay: .15s; }
.ph-bubble:nth-child(3) { animation-delay: .3s; }
.ph-bubble:nth-child(4) { animation-delay: .45s; }
@keyframes bubbleIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.ph-bubble.bot { background: white; border: 1px solid var(--gray3); color: var(--navy); align-self: flex-start; border-bottom-left-radius: 4px; box-shadow: 0 1px 4px rgba(20,33,61,0.06); }
.ph-bubble.user { background: var(--navy); color: white; font-weight: 500; align-self: flex-end; border-bottom-right-radius: 4px; }
.ph-chat-inputbar { margin: 0 10px 12px; background: white; border: 1px solid var(--gray3); border-radius: 10px; padding: 9px 12px; font-size: 11px; color: var(--gray2); flex-shrink: 0; }

/* ─── FRAMELESS CHAT WIDGET (professional, no phone bezel) ── */
.chat-widget { width: 340px; background: white; border-radius: 22px; overflow: hidden; box-shadow: 0 48px 100px rgba(20,33,61,0.2), 0 0 0 1px rgba(20,33,61,0.07); flex-shrink: 0; }
.chat-widget.float { animation: floatChat 5s ease-in-out infinite; }
.chat-widget.tilt-l { transform: rotateY(-8deg) rotateX(4deg); }
.chat-widget.tilt-r { transform: rotateY(8deg) rotateX(4deg); }
.chat-widget.tilt-l.float { animation-name: floatChatL; }
.chat-widget.tilt-r.float { animation-name: floatChatR; }
@keyframes floatChatL { 0%,100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0); } 50% { transform: rotateY(-8deg) rotateX(4deg) translateY(-16px); } }
@keyframes floatChatR { 0%,100% { transform: rotateY(8deg) rotateX(4deg) translateY(0); } 50% { transform: rotateY(8deg) rotateX(4deg) translateY(-16px); } }
.chat-widget-head { background: var(--navy); padding: 18px 20px; display: flex; align-items: center; gap: 12px; }
.chat-widget-avatar { width: 38px; height: 38px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; color: white; border: 1.5px solid rgba(255,255,255,0.25); flex-shrink: 0; }
.chat-widget-info h4 { font-size: 14px; font-weight: 600; color: white; margin-bottom: 2px; }
.chat-widget-info p { font-size: 11px; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 5px; }
.chat-widget-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }
.chat-widget-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; background: var(--off); }
.chat-widget-body .ph-bubble { font-size: 13px; padding: 10px 14px; border-radius: 16px; }
.chat-widget-inputbar { margin: 0 16px 16px; background: white; border: 1.5px solid var(--gray3); border-radius: 12px; padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; }
.chat-widget-inputbar span { font-size: 12.5px; color: var(--gray2); }
.chat-send { width: 28px; height: 28px; background: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chat-widget-body .ph-bubble-time { font-size: 10px; color: var(--gray2); padding: 0 4px; text-align: left; }
.chat-widget-body .bubble-row { display: flex; flex-direction: column; gap: 3px; }
.chat-widget-body .bubble-row.user { align-items: flex-end; }
.chat-widget-body .bubble-row.user .ph-bubble-time { text-align: right; }
.chat-widget-body .bubble-row.bot { align-items: flex-start; }
.chat-sms-popup { position: relative; margin: 0 4px; background: white; border: 1px solid var(--gray3); border-radius: 14px; padding: 12px 14px; box-shadow: 0 6px 24px rgba(20,33,61,0.12); text-align: left; }
.chat-sms-popup-header { display: flex; align-items: center; gap: 7px; margin-bottom: 7px; }
.chat-sms-popup-icon { width: 22px; height: 22px; background: var(--accent); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chat-sms-popup-label { font-size: 11px; font-weight: 700; color: var(--gray); letter-spacing: 0.3px; }
.chat-sms-popup-title { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.chat-sms-popup-body { font-size: 11.5px; color: var(--gray); line-height: 1.5; }
@media (max-width: 480px) { .chat-widget { width: 300px; } }
.phone-device.sm { width: 210px; }
.phone-device.sm .ph-screen { height: 320px; }
.phone-device.sm .ph-big-time { font-size: 34px; }
.phone-device.lg { width: 300px; }
.phone-device.lg .ph-screen { height: 480px; }
@media (max-width: 480px) { .phone-device.lg { width: 250px; } .phone-device.lg .ph-screen { height: 400px; } .phone-device { width: 230px; } .phone-device .ph-screen { height: 360px; } }

/* ─── LAPTOP / BROWSER MOCKUP (dashboard screenshots) ────── */
.laptop-frame { max-width: 100%; }
.laptop-top { background: #e7e9ec; border-radius: 10px 10px 0 0; padding: 9px 14px; display: flex; gap: 6px; border: 1px solid #d4d7db; border-bottom: none; }
.laptop-top span { width: 9px; height: 9px; border-radius: 50%; }
.laptop-top span:nth-child(1) { background: #ec6a5e; }
.laptop-top span:nth-child(2) { background: #f4bf4f; }
.laptop-top span:nth-child(3) { background: #61c454; }
.laptop-screen { border: 1px solid #d4d7db; border-top: none; border-radius: 0 0 10px 10px; overflow: hidden; box-shadow: 0 40px 80px -30px rgba(20,33,61,0.28); }
.laptop-screen img { display: block; width: 100%; height: auto; }

/* ─── SHARED SECTION ──────────────────────────────────────── */
.section-wrap { max-width: 1160px; margin: 0 auto; padding: 88px 48px; }
@media (max-width: 600px) { .section-wrap { padding: 60px 24px; } }
.section-tight { padding-top: 56px; padding-bottom: 56px; }

.stag { display: inline-flex; align-items: center; gap: 6px; background: var(--blue-pale); border: 1px solid rgba(20,33,61,0.12); border-radius: 100px; padding: 5px 14px; font-size: 11px; font-weight: 600; color: var(--navy); letter-spacing: 0.6px; text-transform: uppercase; margin-bottom: 16px; }
.stag-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.stag.on-dark { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.85); }
.stag.on-dark .stag-dot { background: var(--accent2); }

.s-title { font-family: var(--font-serif); font-size: clamp(27px, 3.6vw, 46px); font-weight: 800; letter-spacing: -1.6px; line-height: 1.08; margin-bottom: 14px; color: var(--navy); }
.s-title.on-dark { color: white; }
.t-grad { background: linear-gradient(135deg, var(--navy), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.t-grad.on-dark { background: linear-gradient(135deg, #9fb4d6, var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.s-sub { font-size: 16.5px; color: var(--gray); line-height: 1.7; max-width: 520px; font-weight: 300; }
.s-sub.on-dark { color: rgba(255,255,255,0.62); }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(20,33,61,0.1), transparent); margin: 0 48px; }

/* ─── TICKER ──────────────────────────────────────────────── */
.ticker-wrap { overflow: hidden; padding: 14px 0; border-top: 1px solid var(--gray3); border-bottom: 1px solid var(--gray3); background: var(--off); }
.ticker { display: flex; animation: tickerMove 26s linear infinite; width: max-content; }
.ticker:hover { animation-play-state: paused; }
@keyframes tickerMove { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.tick-item { display: flex; align-items: center; gap: 10px; padding: 0 28px; white-space: nowrap; font-size: 13px; font-weight: 500; color: var(--gray); }
.tick-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ─── FEATURE CARDS ───────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 44px; }
@media (max-width: 1000px) { .features-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }
.features-grid.cols-3 { grid-template-columns: repeat(3,1fr); }
@media (max-width: 1000px) { .features-grid.cols-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .features-grid.cols-3 { grid-template-columns: 1fr; } }
.fcard { background: white; border: 1px solid var(--gray3); border-radius: var(--RL); padding: 26px 22px; transition: transform .2s, box-shadow .2s, border-color .2s; position: relative; overflow: hidden; }
.fcard::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--navy), var(--accent)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.fcard:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(20,33,61,0.1); border-color: rgba(20,33,61,0.18); }
.fcard:hover::before { transform: scaleX(1); }
.fcard-icon { width: 42px; height: 42px; background: var(--blue-pale); border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.fcard h3 { font-size: 15.5px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.fcard p { font-size: 13px; color: var(--gray); line-height: 1.6; font-weight: 400; }

/* ─── STATS ───────────────────────────────────────────────── */
.stat-list { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.scard { display: flex; align-items: flex-start; gap: 16px; background: white; border: 1px solid var(--gray3); border-radius: var(--R); padding: 18px 20px; transition: border-color .2s, box-shadow .2s; }
.scard:hover { border-color: rgba(20,33,61,0.22); box-shadow: 0 4px 20px rgba(20,33,61,0.07); }
.sbadge { min-width: 54px; height: 54px; border-radius: 12px; background: var(--navy); color: white; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 16px; font-weight: 800; flex-shrink: 0; }
.scard h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: var(--navy); }
.scard p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ─── PROCESS STEPS ───────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; }
@media (max-width: 800px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card { background: white; border: 1px solid var(--gray3); border-radius: var(--RL); padding: 28px 24px; }
.step-n { font-family: var(--font-serif); font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: 0.4px; margin-bottom: 14px; }
.step-card h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.step-card p { font-size: 13.5px; color: var(--gray); line-height: 1.6; }

/* ─── PRODUCT SHOWCASE (Lösungen) ─────────────────────────── */
.product-hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .product-hero { grid-template-columns: 1fr; text-align: center; } .product-hero .phone-wrap { justify-content:center; } }
.product-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 30px; }
.product-list li { display: flex; gap: 12px; font-size: 14.5px; color: var(--gray); line-height: 1.55; }
.product-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 8px; }
@media (max-width:900px){ .product-list { text-align:left; } }

.callflow { display: flex; flex-direction: column; gap: 18px; margin: 26px 0 30px; }
.callflow-item { display: flex; align-items: center; gap: 14px; text-align: left; }
.callflow-ic { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--gray3); background: var(--blue-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 15px; color: var(--navy); }
.callflow-tx { font-size: 13.5px; color: var(--gray); }
.callflow-tx strong { color: var(--navy); font-weight: 600; }
.callflow-line { width: 1px; height: 16px; background: var(--gray3); margin-left: 17px; }

.secondary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
@media (max-width: 860px) { .secondary-grid { grid-template-columns: 1fr; } }
.secondary-card { background: white; border: 1px solid var(--gray3); border-radius: var(--RL); padding: 32px 28px; display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center; text-align: left; }
@media (max-width: 600px) { .secondary-card { grid-template-columns: 1fr; text-align: center; } .secondary-card .phone-wrap { justify-content: center; } }
.secondary-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; font-family: var(--font-serif); }
.secondary-card p { font-size: 13.5px; color: var(--gray); line-height: 1.6; margin-bottom: 12px; }
.secondary-card a.link { font-size: 12.5px; font-weight: 700; color: var(--navy); border-bottom: 1.5px solid var(--accent); padding-bottom: 2px; }

/* ─── PRICING ─────────────────────────────────────────────── */
.pricing-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; margin-top: 44px; }
@media (max-width: 980px) { .pricing-row { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } }
.pbox { background: white; border: 1px solid var(--gray3); border-radius: var(--RL); padding: 32px 28px; display: flex; flex-direction: column; }
.pbox.feat { border: 2px solid var(--accent); position: relative; box-shadow: 0 20px 50px -20px rgba(176,141,87,0.35); }
.ptag { font-size: 11.5px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--gray2); margin-bottom: 12px; }
.ptag.w { color: var(--accent); }
.pname { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.pamount { font-family: var(--font-serif); font-size: 32px; font-weight: 800; color: var(--navy); letter-spacing: -1px; }
.pamount small { font-size: 14px; font-weight: 500; color: var(--gray); font-family: var(--font); }
.pperiod { font-size: 12.5px; color: var(--gray2); margin-bottom: 22px; }
.plist { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; }
.plist li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--gray); line-height: 1.5; }
.pcheck { flex-shrink: 0; width: 17px; height: 17px; border-radius: 50%; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; margin-top: 1px; }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 720px; }
.fitem { border-bottom: 1px solid var(--gray3); }
.fq { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 4px; cursor: pointer; }
.fq h4 { font-size: 15px; font-weight: 600; color: var(--navy); }
.fchev { flex-shrink: 0; width: 20px; height: 20px; color: var(--accent); transition: transform .25s; }
.fitem.open .fchev { transform: rotate(180deg); }
.fa { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.fitem.open .fa { max-height: 300px; padding-bottom: 20px; }
.fa p { font-size: 13.5px; color: var(--gray); line-height: 1.65; padding-right: 30px; }

/* ─── CTA BANNER ──────────────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, var(--navy), var(--navy2)); border-radius: 28px; padding: 56px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse at top right, rgba(176,141,87,0.18), transparent 60%); }
.cta-banner h2 { position:relative; font-family: var(--font-serif); font-size: clamp(24px,3vw,32px); font-weight: 800; color: white; margin-bottom: 12px; }
.cta-banner p { position:relative; color: rgba(255,255,255,0.65); margin-bottom: 26px; font-size: 15px; }
.cta-banner .btn-white { position:relative; }

/* ─── FORM ────────────────────────────────────────────────── */
.form-wrap { background: white; border: 1px solid var(--gray3); border-radius: var(--RL); padding: 32px; }
.form-wrap h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.form-wrap > p { font-size: 13.5px; color: var(--gray); margin-bottom: 22px; }
.fgroup { margin-bottom: 16px; }
.flabel { display: block; font-size: 12.5px; font-weight: 600; color: var(--gray); margin-bottom: 7px; }
.finput, .ftextarea, .fselect { width: 100%; padding: 11px 14px; border-radius: 9px; font-size: 14px; background: var(--off); border: 1px solid var(--gray3); color: var(--navy); font-family: var(--font); transition: border-color .2s, background .2s; }
.finput::placeholder, .ftextarea::placeholder { color: var(--gray2); }
.finput:focus, .ftextarea:focus, .fselect:focus { outline: none; border-color: var(--accent); background: white; }
.ftextarea { resize: vertical; min-height: 110px; }
.btn-submit { width: 100%; justify-content: center; border: none; cursor: pointer; }

.cinfo-item { display: flex; align-items: center; gap: 14px; padding: 12px 0; }
.cinfo-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cinfo-lbl { font-size: 12px; color: var(--gray2); }
.cinfo-val { font-size: 14.5px; font-weight: 600; color: var(--navy); }

/* ─── FOOTER ──────────────────────────────────────────────── */
footer.site-foot { background: var(--navy2); color: rgba(255,255,255,0.72); padding: 64px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
@media (max-width: 780px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-serif); font-weight: 700; font-size: 17px; margin-bottom: 14px; color: white; }
.foot-desc { font-size: 13.5px; color: rgba(255,255,255,0.5); max-width: 260px; line-height: 1.6; }
.foot-h { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--accent2); margin-bottom: 15px; }
.foot-links { display: flex; flex-direction: column; gap: 10px; }
.foot-links a { font-size: 13.5px; color: rgba(255,255,255,0.65); transition: color .2s; }
.foot-links a:hover { color: white; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 12.5px; color: rgba(255,255,255,0.42); }

/* ─── REVEAL ANIMATION ────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ─── PAGE HERO (Lösungen/Preise/Kontakt) ────────────────── */
.page-hero { padding: 148px 48px 64px; text-align: center; background: linear-gradient(165deg, #eef1f6 0%, #f7f8fa 100%); }
.page-hero .s-sub { margin-left: auto; margin-right: auto; }
@media (max-width: 600px) { .page-hero { padding: 128px 24px 48px; } }

/* ─── LEGAL PAGES ─────────────────────────────────────────── */
.legal-tabs { display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.legal-tabs a { font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 100px; border: 1px solid var(--gray3); color: var(--gray); }
.legal-tabs a.active { color: white; background: var(--navy); border-color: var(--navy); }
.legal { max-width: 760px; margin: 0 auto; }
.legal h1 { font-family: var(--font-serif); font-size: 30px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.legal .subtitle { font-size: 14px; color: var(--gray2); margin-bottom: 36px; }
.legal h2 { font-size: 17px; font-weight: 700; margin: 32px 0 12px; color: var(--navy); }
.legal p { font-size: 14.5px; color: var(--gray); margin-bottom: 12px; line-height: 1.75; }
.legal ul { padding-left: 20px; margin-bottom: 12px; }
.legal li { font-size: 14.5px; color: var(--gray); margin-bottom: 8px; line-height: 1.65; list-style: disc; }
.legal a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.legal-info-box { background: var(--off); border: 1px solid var(--gray3); padding: 20px 24px; border-radius: 12px; margin-bottom: 24px; }
.legal-info-box p { margin: 0; color: var(--navy); }
.legal-info-box p + p { margin-top: 4px; }
.legal-highlight { background: var(--blue-pale); border-left: 3px solid var(--accent); padding: 14px 18px; border-radius: 0 8px 8px 0; margin: 18px 0; font-size: 14px; color: var(--gray); }
.legal-divider { height: 1px; background: var(--gray3); margin: 32px 0; }
