/* ============================================================
   OutlookGoogleSync — Redesign v2
   Aesthetic: Dark Modern Hero × Warm Light Content
   Display:   Segoe UI Variable / system-ui (modern, tight, Windows-native)
   Accent:    Emerald #18D898  (not another purple gradient)
   Philosophy: Pain-first, friction-kill, outcome-led
   ============================================================ */

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

:root {
  /* -- Core palette -- */
  --ink:          #07091A;
  --ink-2:        #0D1225;
  --ink-3:        #182036;
  --ink-card:     #111827;
  --paper:        #F7F4EE;
  --paper-2:      #EDEAE2;
  --white:        #FFFFFF;

  /* -- Accent (emerald) -- */
  --green:        #18D898;
  --green-dk:     #0DB87F;
  --green-glow:   rgba(24,216,152,.14);
  --green-border: rgba(24,216,152,.22);

  /* -- Brand blue (kept for secondary use) -- */
  --blue:         #1E4D8C;

  /* -- Danger/fail color -- */
  --red:          #F87171;
  --red-bg:       rgba(248,113,113,.08);

  /* -- Text -- */
  --t-inv:        #EDF1FF;
  --t-dim:        #6D7E9C;
  --t-base:       #111827;
  --t-muted:      #6B7280;

  /* -- Borders -- */
  --border:       #E3DDD5;
  --border-inv:   rgba(255,255,255,0.07);

  /* -- Typography -- */
  /* Segoe UI Variable: Windows 11 variable font — beautiful at heavy weights.
     Falls back cleanly through Segoe UI → system-ui → Apple stack.
     No external request, zero DSGVO risk, perfect for the Windows target audience. */
  --font-d:  'Segoe UI Variable Display', 'Segoe UI', system-ui, -apple-system,
             BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --font:    'Segoe UI Variable Text', 'Segoe UI', system-ui, -apple-system,
             BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --font-m:  'Cascadia Code', 'Cascadia Mono', Consolas, 'Courier New', monospace;

  /* -- Misc -- */
  --radius:    10px;
  --radius-lg: 16px;
  --shadow:    0 2px 16px rgba(0,0,0,.07);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.12);
  --shadow-dk: 0 24px 64px rgba(0,0,0,.5);
  --tr: .22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--t-base);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(1160px, 100% - 2.5rem); margin-inline: auto; }
section { padding: 88px 0; }

/* ---------- Typography ---------- */
h1 {
  font-family: var(--font-d);
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.04em;
  font-optical-sizing: auto;
}
h2 {
  font-family: var(--font-d);
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.035em;
  font-optical-sizing: auto;
}
h3 { font-size: 1.05rem; font-weight: 700; line-height: 1.4; letter-spacing: -.01em; }
p { line-height: 1.7; }

.label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .65rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.8rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--tr);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-green {
  background: var(--green);
  color: var(--ink);
}
.btn-green:hover {
  background: #24F0A8;
  box-shadow: 0 4px 24px rgba(24,216,152,.4);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.22);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.45);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--t-base);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--t-base);
}

.btn-outline-green {
  background: transparent;
  color: var(--green-dk);
  border-color: var(--green-border);
}
.btn-outline-green:hover {
  background: var(--green-glow);
}

.btn-lg  { padding: 1rem 2.2rem; font-size: 1.05rem; }
.btn-sm  { padding: .5rem 1.1rem; font-size: .875rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background var(--tr), box-shadow var(--tr), border-color var(--tr);
  border-bottom: 1px solid transparent;
}
.nav.is-transparent { background: transparent; }
.nav.is-solid {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  transition: color var(--tr);
}
.nav-logo:hover { text-decoration: none; opacity: .85; }
.nav.is-solid .nav-logo { color: var(--t-base); }

.logo-mark {
  width: 30px;
  height: 30px;
  background: var(--green);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 15px; height: 15px; stroke: var(--ink); stroke-width: 2.5; fill: none; stroke-linecap: round; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.7);
  font-weight: 500;
  font-size: .9rem;
  transition: color var(--tr);
}
.nav-links a:hover { color: var(--white); text-decoration: none; }
.nav.is-solid .nav-links a { color: var(--t-muted); }
.nav.is-solid .nav-links a:hover { color: var(--t-base); }
.nav-links a.active { color: var(--white); }
.nav.is-solid .nav-links a.active { color: var(--t-base); font-weight: 600; }

.nav-cta-wrap { display: flex; align-items: center; gap: .75rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--tr), opacity var(--tr), background var(--tr);
}
.nav.is-solid .nav-hamburger span { background: var(--t-base); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--ink-2);
  border-top: 1px solid var(--border-inv);
}
.nav.is-solid .nav-mobile { background: var(--white); border-top-color: var(--border); }
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: .9rem 1.5rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
  font-size: .95rem;
  border-bottom: 1px solid var(--border-inv);
  transition: background var(--tr);
}
.nav.is-solid .nav-mobile a { color: var(--t-base); border-color: var(--border); }
.nav-mobile a:hover { background: rgba(255,255,255,.05); text-decoration: none; }
.nav.is-solid .nav-mobile a:hover { background: var(--paper); }

/* ---------- HERO ---------- */
.hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: calc(64px + 96px) 0 96px; /* account for fixed nav */
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 10%,  rgba(24,216,152,.06) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 10% 90%,  rgba(30,77,140,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 85%,  rgba(7,9,26,1) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle grain on dark — makes it feel premium, not AI */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(24,216,152,.1);
  border: 1px solid var(--green-border);
  color: var(--green);
  border-radius: 999px;
  padding: .3rem .9rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-title {
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero-title em {
  color: var(--green);
  font-style: normal;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--t-dim);
  margin-bottom: 2rem;
  max-width: 460px;
  line-height: 1.65;
}

.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 2rem; }

.hero-trust { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.trust-chip {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: var(--t-dim);
}
.trust-chip svg { width: 13px; height: 13px; stroke: var(--green); fill: none; stroke-width: 2.5; stroke-linecap: round; }

/* ---------- SYNC CARD ---------- */
.sync-card {
  background: var(--ink-2);
  border: 1px solid var(--border-inv);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dk), 0 0 0 1px rgba(255,255,255,.03);
}

.sync-card-bar {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .75rem 1.1rem;
  border-bottom: 1px solid var(--border-inv);
  font-family: var(--font-m);
  font-size: .75rem;
  color: var(--t-dim);
}
.sync-card-bar .dot-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: blink 2s ease-in-out infinite;
}
.sync-card-bar .bar-tag {
  margin-left: auto;
  background: rgba(24,216,152,.1);
  border: 1px solid var(--green-border);
  color: var(--green);
  border-radius: 4px;
  padding: .1rem .45rem;
  font-size: .68rem;
  letter-spacing: .05em;
}

.sync-apps {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1.25rem 1.1rem;
}

.app-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  flex-shrink: 0;
}
.app-pill-label { font-size: .68rem; color: var(--t-dim); font-weight: 600; letter-spacing: .05em; }

.app-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.2rem;
}
.app-icon.ol { background: linear-gradient(135deg,#0078D4,#005A9E); color: #fff; }
.app-icon.gc { background: #fff; color: #4285F4; font-family: Georgia,serif; border: 1px solid rgba(255,255,255,.08); }

.sync-track-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}
.sync-track {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,.08);
  border-radius: 99px;
  position: relative;
  overflow: visible;
}
.sync-track-dot {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green), 0 0 20px rgba(24,216,152,.3);
  animation: travel 2.8s cubic-bezier(.45,.05,.55,.95) infinite alternate;
}
@keyframes travel { 0%{left:0} 100%{left:calc(100% - 9px)} }

.sync-dir {
  font-size: .62rem;
  color: var(--t-dim);
  font-family: var(--font-m);
  letter-spacing: .04em;
}

.sync-log {
  border-top: 1px solid var(--border-inv);
  padding: .6rem 0 .3rem;
  overflow: hidden; /* clips entering/leaving rows */
}
.log-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .45rem 1.1rem;
  font-family: var(--font-m);
  font-size: .73rem;
  transition: background var(--tr), opacity .35s ease, transform .35s ease;
}
.log-row:hover { background: rgba(255,255,255,.02); }
.log-ts { color: var(--t-dim); width: 80px; flex-shrink: 0; }
.log-msg { color: rgba(237,241,255,.65); flex: 1; }

/* Log ticker — Keyframe-Animationen (kein Transition-Trigger nötig) */
@keyframes logSlideIn {
  from { opacity: 0; transform: translateY(-28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes logSlideOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(10px); }
}

.log-ok {
  color: var(--green);
  font-weight: 700;
  font-size: .8rem;
}

/* Hero load animation */
.hero-content > * { opacity: 0; transform: translateY(18px); }
.hero-content > *.revealed { opacity: 1; transform: translateY(0); transition: opacity .6s ease, transform .6s ease; }
.sync-card { opacity: 0; transform: translateY(24px) scale(.98); transition: opacity .7s ease, transform .7s ease; }
.sync-card.revealed { opacity: 1; transform: translateY(0) scale(1); }

/* ---------- PROBLEM SECTION ---------- */
.section-problem { background: var(--paper); }

.section-intro { margin-bottom: 3rem; }
.section-intro.centered { text-align: center; }
.section-intro.centered .section-sub { margin-inline: auto; }
.section-sub { max-width: 540px; color: var(--t-muted); font-size: 1.05rem; margin-top: .75rem; }

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow var(--tr), border-color var(--tr), transform var(--tr);
}
.pain-card:hover {
  box-shadow: var(--shadow);
  border-color: #d4cfc6;
  transform: translateY(-2px);
}

.pain-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(24,216,152,.1);
  border: 1.5px solid var(--green-border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.pain-check svg { width: 12px; height: 12px; stroke: var(--green); stroke-width: 2.5; fill: none; stroke-linecap: round; }

.pain-card h3 { font-size: .975rem; margin-bottom: .35rem; color: var(--t-base); }
.pain-card p { font-size: .875rem; color: var(--t-muted); }

.pain-footer {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(24,216,152,.07);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--t-base);
  font-style: italic;
}
.pain-footer strong { color: var(--green-dk); font-style: normal; }

/* ---------- WHY OTHERS FAIL ---------- */
.section-fail {
  background: var(--ink-2);
  position: relative;
  overflow: hidden;
}
.section-fail::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.section-fail .section-intro { position: relative; z-index: 1; }
.section-fail h2 { color: var(--white); }
.section-fail .section-sub { color: var(--t-dim); }

.fail-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.fail-card {
  background: var(--ink-card);
  border: 1px solid var(--border-inv);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-top: 2px solid var(--red);
}

.fail-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .65rem;
  background: var(--red-bg);
  border-radius: 4px;
  padding: .2rem .55rem;
}

.fail-card h3 { color: var(--t-inv); margin-bottom: 1rem; font-size: 1rem; }

.fail-items { display: flex; flex-direction: column; gap: .55rem; list-style: none; }
.fail-items li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: var(--t-dim);
  line-height: 1.55;
}
.fail-items li::before {
  content: '×';
  color: var(--red);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  flex-shrink: 0;
}

.fail-verdict {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--border-inv);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: rgba(24,216,152,.04);
}
.fail-verdict p {
  font-size: 1rem;
  color: rgba(237,241,255,.7);
  max-width: 520px;
}
.fail-verdict strong { color: var(--white); }

/* ---------- SOLUTION / HOW TO ---------- */
.section-howto { background: var(--white); }

.steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 3rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(16.67% + 22px);
  right: calc(16.67% + 22px);
  height: 1px;
  background: linear-gradient(90deg, var(--green), rgba(24,216,152,.2));
}

.step { display: flex; flex-direction: column; align-items: center; text-align: center; }

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--white);
  flex-shrink: 0;
}

.step h3 { margin-bottom: .5rem; }
.step p { font-size: .9rem; color: var(--t-muted); }

/* ---------- BENEFITS ---------- */
.section-benefits { background: var(--paper); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow var(--tr), border-color var(--tr), transform var(--tr);
}
.benefit-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--green-border);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: rgba(24,216,152,.1);
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.benefit-icon svg { width: 20px; height: 20px; stroke: var(--green-dk); fill: none; stroke-width: 2; stroke-linecap: round; }

.benefit-card h3 { font-size: .975rem; margin-bottom: .4rem; }
.benefit-card p { font-size: .875rem; color: var(--t-muted); }

/* ---------- PRICING ---------- */
.section-pricing { background: var(--white); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: box-shadow var(--tr), transform var(--tr);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.pricing-card.featured {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow), var(--shadow-lg);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-3px); }

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--ink);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-plan { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--t-muted); margin-bottom: .5rem; }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: .2rem;
  margin: .75rem 0 .4rem;
}
.price-currency { font-size: 1.25rem; font-weight: 700; color: var(--t-muted); }
.price-amount { font-size: 2.75rem; font-weight: 800; font-family: var(--font-d); color: var(--t-base); letter-spacing: -.03em; line-height: 1; }
.price-period { font-size: .8rem; color: var(--t-muted); }

.pricing-desc { font-size: .875rem; color: var(--t-muted); margin-bottom: 1.25rem; min-height: 36px; }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.75rem; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .875rem;
  color: var(--t-base);
}
.pricing-features li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2318D898' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-note {
  text-align: center;
  font-size: .875rem;
  color: var(--t-muted);
  padding: .6rem 1rem;
  background: rgba(24,216,152,.06);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  line-height: 1.55;
}
.pricing-note strong { color: var(--green-dk); }

.pricing-fine {
  text-align: center;
  margin-top: 1rem;
  font-size: .8rem;
  color: var(--t-muted);
}

/* ---------- TRUST STRIP ---------- */
.section-trust {
  background: var(--ink);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.section-trust::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .02;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .75rem; }

.trust-icon {
  width: 44px;
  height: 44px;
  background: rgba(24,216,152,.1);
  border: 1px solid var(--green-border);
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.trust-icon svg { width: 20px; height: 20px; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; }

.trust-item h4 { font-size: .95rem; color: var(--t-inv); font-weight: 700; }
.trust-item p { font-size: .8rem; color: var(--t-dim); }

/* ---------- FAQ ---------- */
.section-faq { background: var(--paper); }

.faq-list { max-width: 720px; margin-inline: auto; display: flex; flex-direction: column; gap: .65rem; }

.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow var(--tr); }
.faq-item.open { box-shadow: var(--shadow); border-color: #d4cfc6; }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font);
  font-weight: 600;
  font-size: .95rem;
  color: var(--t-base);
  transition: background var(--tr);
}
.faq-q:hover { background: var(--paper); }

.faq-chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(24,216,152,.1);
  display: grid;
  place-items: center;
  transition: transform var(--tr), background var(--tr);
}
.faq-chevron svg { width: 13px; height: 13px; stroke: var(--green-dk); stroke-width: 2.5; fill: none; }
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--green); }
.faq-item.open .faq-chevron svg { stroke: var(--ink); }

.faq-a { display: none; padding: 0 1.35rem 1.1rem; font-size: .9rem; color: var(--t-muted); line-height: 1.7; border-top: 1px solid var(--border); padding-top: 1rem; }
.faq-item.open .faq-a { display: block; }

/* ---------- FINAL CTA ---------- */
.section-cta {
  background: linear-gradient(135deg, var(--ink-3) 0%, var(--ink-2) 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(24,216,152,.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .75rem;
}

.cta-inner h2 { color: var(--white); margin-bottom: .5rem; }
.cta-inner .cta-sub {
  font-size: 1.05rem;
  color: var(--t-dim);
  margin-bottom: 1.25rem;
  max-width: 440px;
}

.cta-chips {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .75rem;
}
.cta-chip {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  color: var(--t-dim);
}
.cta-chip svg { stroke: var(--green); width: 13px; height: 13px; fill: none; stroke-width: 2.5; stroke-linecap: round; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--border-inv);
  padding: 1.75rem 0;
  color: var(--t-dim);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a { color: var(--t-dim); font-size: .875rem; transition: color var(--tr); }
.footer-links a:hover { color: var(--t-inv); text-decoration: none; }
.footer-copy { font-size: .875rem; }
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 0 0;
  margin-top: .875rem;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .01em;
}
.footer-brand strong { color: rgba(255,255,255,.45); font-weight: 600; }
.footer-brand svg { opacity: .45; flex-shrink: 0; }

/* ---------- LEGAL PAGES ---------- */
.legal-page { padding: 100px 0 80px; }
.legal-page h1 { margin-bottom: 2rem; }
.legal-section { margin-bottom: 2rem; }
.legal-section h2 { font-size: 1.2rem; margin-bottom: .75rem; }
.legal-section p, .legal-section li { font-size: .95rem; line-height: 1.8; color: var(--t-muted); }
.legal-section ul { padding-left: 1.5rem; margin-top: .5rem; }
.legal-section ul li { margin-bottom: .35rem; }
.placeholder { background: #fffbea; border: 1px dashed #f0b429; padding: .1rem .4rem; border-radius: 4px; font-size: .85em; color: #7d5b00; font-style: italic; }

/* ---------- SUCCESS PAGE ---------- */
.success-page { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 6rem 1.5rem 3rem; }
.success-icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(24,216,152,.1); border: 2px solid var(--green-border); display: grid; place-items: center; margin: 0 auto 1.5rem; }
.success-icon svg { width: 36px; height: 36px; stroke: var(--green); stroke-width: 2.5; fill: none; }
.success-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .sync-card { max-width: 480px; }
  .fail-grid { grid-template-columns: 1fr; gap: 1rem; }
  .pain-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps::before { display: none; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-3px); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .nav-links, .nav-cta-wrap { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: calc(64px + 72px) 0 72px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-trust { gap: 1rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .fail-verdict { flex-direction: column; }
}

@media (max-width: 420px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }
  .trust-grid { grid-template-columns: 1fr; }
}

/* ---------- WAVE DIVIDERS ----------
   Sitzen zwischen dark↔light Sektionen.
   Hintergrundfarbe = obere Sektion, SVG-Fill = untere Sektion.
   Kein Margin/Padding — Übergänge sind nahtlos.
   ---------------------------------------- */
.wave {
  display: block;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  /* Entfernt den hauchdünnen Spalt zwischen Sektion und Wave */
  margin-top: -1px;
  margin-bottom: -1px;
}
.wave svg {
  display: block;
  width: 100%;
  height: 56px;
}
@media (max-width: 640px) {
  .wave svg { height: 36px; }
}
