/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --omniblack:      #00121D;
  --omniblue:       #184859;
  --omniblue-light: #277591;
  --omnigreen:      #4BEABD;
  --omnigreen-light:#A8F5DF;
  --omnigreen-dark: #21D9A5;
  --omnigrey:       #E5E9EB;
  --omnigrey-mid:   #C2CDD2;
  --omniwhite:      #FFFFFF;
  --dsv-red:        #c8102e;
  --dsv-yellow:     #f0c020;

  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-md: 0 4px 24px rgba(0,18,29,0.10);
  --shadow-lg: 0 8px 40px rgba(0,18,29,0.14);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--omniwhite);
  color: var(--omniblack);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  top: 0; left: 0;
  width: auto; height: auto;
  overflow: visible;
  background: var(--omnigreen);
  color: var(--omniblack);
  font-size: 14px; font-weight: 700;
  padding: 12px 20px;
  z-index: 9999;
  border-radius: 0 0 var(--radius-lg) 0;
  text-decoration: none;
}

/* ── CURSOR ── */
button:hover,
a:hover {
  cursor: pointer;
}

/* ── FOCUS STYLES ── */
:focus-visible {
  outline: 3px solid var(--omnigreen);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── NAV ── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--omniblue);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 124px;
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
  transition: height 280ms var(--ease-out);
}
.nav-logos { display: flex; align-items: center; gap: 20px; }
.nav-logos img {
  height: 84px; object-fit: contain;
  transition: height 280ms var(--ease-out);
}
.site-nav.scrolled .nav-inner { height: 62px; }
.site-nav.scrolled .nav-logos img { height: 42px; }
.nav-sep { width: 1px; height: 28px; background: var(--omnigrey-mid); }
.btn-nav {
  background: var(--omnigreen); color: var(--omniblack);
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  padding: 10px 24px; border-radius: var(--radius-full); border: none; cursor: pointer;
  transition: background 180ms var(--ease-out), transform 120ms var(--ease-out);
  text-decoration: none; display: inline-block;
}
.btn-nav:hover { background: var(--omnigreen-dark); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  background: linear-gradient(180deg, var(--omniblue-light) 0%, var(--omniblue) 55%, var(--omniblack) 100%);
  padding: 80px 0 90px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -100px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(75,234,189,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -180px; left: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(24,72,89,0.6) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
  position: relative; z-index: 1;
}
.hero-overline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--omnigreen);
  margin-bottom: 16px;
}
.hero-overline::before {
  content: '';
  display: inline-block; width: 20px; height: 2px;
  background: var(--omnigreen); border-radius: 2px;
  flex-shrink: 0;
}
.hero-by-line {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-by-logo { height: 22px; object-fit: contain; }
.hero-headline {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 800; color: white;
  line-height: 1.08; letter-spacing: -0.03em;
  margin-bottom: 20px;
  text-wrap: balance;
}
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.60);
  line-height: 1.7; margin-bottom: 36px; font-weight: 400;
}

/* ── PRICING CARD ── */
.pricing-card {
  display: inline-flex; align-items: stretch;
  background: linear-gradient(45deg, #4BEABD 0%, #F2FF7C 100%);
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.pricing-dsv-badge {
  background: white;
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: center;
}
.pricing-dsv-badge img { height: 36px; filter: none; }
.pricing-body { padding: 16px 24px; }
.pricing-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(0,18,29,0.65);
  margin-bottom: 6px;
}
.pricing-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.pricing-old {
  font-size: 16px; color: rgba(0,18,29,0.55);
  text-decoration: line-through; font-weight: 500;
}
.pricing-new {
  font-size: 28px; font-weight: 800; color: var(--omniblack);
  letter-spacing: -0.02em;
}
.pricing-note {
  font-size: 12px; color: rgba(0,18,29,0.65);
  margin-top: 4px; line-height: 1.5;
}
.btn-hero {
  display: inline-block;
  background: var(--omnigreen); color: var(--omniblack);
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700;
  padding: 16px 36px; border-radius: var(--radius-full); border: none;
  cursor: pointer; text-decoration: none;
  transition: all 220ms var(--ease-out);
  box-shadow: 0 0 0 0 rgba(75,234,189,0.4);
}
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(75,234,189,0.35);
}

/* ── HERO IMAGE ── */
.hero-image-wrap {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-ellipse-glow {
  position: absolute; inset: -8px;
  border-radius: 50%;
  background: conic-gradient(from 200deg, var(--omnigreen) 0%, transparent 35%, var(--omniblue-light) 65%, transparent 100%);
  opacity: 0.5;
  z-index: -1;
  filter: blur(12px);
  pointer-events: none;
}
.hero-ellipse {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45), 0 0 0 2px rgba(75,234,189,0.2);
  z-index: 1;
}
.hero-ellipse img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── SECTION BASE ── */
.section { padding: 80px 0; }
.section-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
}
.section-alt { background: #F4F7F9; }

/* ── TWO-COL LAYOUT ── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ── SECTION 1 — SO EINFACH GEHTS ── */
.section-h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800; letter-spacing: -0.025em;
  margin-bottom: 8px; line-height: 1.2;
}
.steps {
  display: flex; flex-direction: column; gap: 20px; margin-top: 32px;
  list-style: none;
}
.step {
  display: flex; gap: 16px; align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 32px; height: 32px; border-radius: var(--radius-full);
  background: transparent; color: var(--omniblack);
  border: 1.5px solid var(--omniblack);
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-body { padding-top: 0; line-height: 1.6; }
.step-body strong { font-weight: 600; color: var(--omniblack); }
.step-body a { color: var(--omniblue-light); text-decoration: underline; }
.step-body a:hover { color: var(--omniblue); }

.phone-img {
  height: 300px;
  margin: 0 auto; display: block;
  filter: drop-shadow(0 24px 48px rgba(0,18,29,0.18));
}

.phone-img--large {
  height: 300px;
}

/* ── SECTION 2 — VIDEO ── */
.video-section { background: var(--omniblack); padding: 72px 0; }
.video-wrap {
  max-width: 840px; margin: 0 auto; padding: 0 40px;
}
.video-container {
  width: 100%; 
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.video-container video {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.video-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,18,29,0.45);
  transition: opacity 220ms var(--ease-out);
  cursor: pointer;
}
.video-overlay.hidden { opacity: 0; pointer-events: none; }
.play-btn {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--omnigreen);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 18px rgba(75,234,189,0.14);
  transition: transform 220ms var(--ease-out), box-shadow 220ms;
  pointer-events: none;
}
.video-overlay:hover .play-btn {
  transform: scale(1.10);
  box-shadow: 0 0 0 26px rgba(75,234,189,0.10);
}

/* ── SECTION 3 — DAS ALLES IST OMNIAC ── */
.section-3 {
  background: #e6f0f5;
}
.section-3-header {
  text-align: center; margin-bottom: 72px;
}
.section-3-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.section-3-header h2 em {
  font-style: italic; color: var(--omniblue-light);
}
.feature-h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 16px;
}
.feature-copy {
  font-size: 16px; line-height: 1.75; color: #3a4f5c;
  margin-bottom: 24px;
}
.checklist { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.checklist li {
  display: flex; gap: 10px;
  font-size: 15px; color: #2b3f4a; align-items: flex-start;
}
.checklist li::before {
  content: '';
  flex-shrink: 0; margin-top: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--omniblack);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 10l3.2 3.2L15 6.5' stroke='%2300121D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.subsection-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.subsection-gap { margin-top: 28px; }

/* ── SECTION 4 — TRUST ── */
.trust-section {
  background: #e6f0f5;
  padding: 80px 0;
}
.trust-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.trust-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.trust-headline {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700; color: var(--omniblack); letter-spacing: -0.02em;
  margin-bottom: 20px; line-height: 1.2;
}
.trust-headline em { color: var(--omniblue-light); }
.trust-copy {
  font-size: 16px; color: #3a4f5c;
  line-height: 1.75; max-width: 680px; margin-bottom: 52px;
}
.trust-badges {
  display: flex; gap: 24px; align-items: stretch; flex-wrap: wrap;
}
.trust-badge {
  background: white;
  border: 1px solid var(--omnigrey);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex; align-items: center; justify-content: center;
  flex: 1; min-width: 160px; max-width: 220px; height: 100px;
  transition: background 180ms, border-color 180ms, box-shadow 180ms;
}
.trust-badge:hover,
.trust-badge:focus-visible {
  box-shadow: var(--shadow-md);
  border-color: var(--omnigrey-mid);
  cursor: pointer;
}
.trust-badge a {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  border-radius: inherit;
  transition: box-shadow 180ms, border-color 180ms;
}
.trust-badge img {
  max-height: 60px; width: 100%; object-fit: contain;
  filter: none; opacity: 1;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--omniblack);
  padding: 56px 40px;
  text-align: center;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-logo { height: 36px; margin-bottom: 24px; opacity: 0.95; }
.site-footer p {
  font-size: 13px; color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.site-footer a {
  color: rgba(255,255,255,0.6); text-decoration: none;
}
.site-footer a:hover { color: var(--omnigreen); }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ── RESPONSIVE: TABLET / LARGE PHONE ── */
@media (max-width: 860px) {
  .hero-inner, .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .two-col.reverse { direction: ltr; }

  .hero-text { order: 1; }
  .hero-image-wrap { order: 2; }
  .hero-ellipse { max-width: 260px; aspect-ratio: 1 / 1; }

  .nav-inner { padding: 0 20px; height: 64px; }
  .nav-logos img { height: 32px; }
  .btn-nav { font-size: 13px; padding: 8px 18px; }
  .site-nav.scrolled .nav-inner { height: 64px; }
  .site-nav.scrolled .nav-logos img { height: 32px; }
  .section-inner { padding: 0 20px; }
  .trust-inner { padding: 0 20px; }
  .video-wrap { padding: 0 20px; }
  .video-container {
    height: 568px;
  }
  .hero-inner { padding: 0 20px; }

  .hero { padding: 48px 0 56px; }

  .subsection-card { padding: 32px 24px; }
  .trust-card { padding: 32px 24px; }
}

@media (max-width: 600px) {
  .nav-inner { height: 56px; }
  .nav-logos img { height: 26px; }
  .site-nav.scrolled .nav-inner { height: 56px; }
  .site-nav.scrolled .nav-logos img { height: 26px; }
  .btn-nav { font-size: 12px; padding: 7px 14px; }

  .hero-headline { font-size: clamp(26px, 8vw, 38px); }
  .btn-hero { width: 100%; text-align: center; padding: 16px 24px; }
  .pricing-card { width: 100%; display: flex; }

  .trust-badges { flex-direction: column; align-items: stretch; }
  .trust-badge { max-width: 100%; width: 100%; height: 88px; }

  .section { padding: 56px 0; }
  .trust-section { padding: 56px 0; }

  .hero-ellipse { max-width: 220px; aspect-ratio: 1 / 1; }
  .subsection-card { padding: 24px 16px; }
  .trust-card { padding: 24px 16px; }

  .section-3-header { margin-bottom: 32px; }

  .pricing-dsv-badge { flex: 0 0 33.333%; padding: 12px; }
  .pricing-dsv-badge img { height: auto; max-height: 24px; width: 100%; max-width: 52px; object-fit: contain; }
  .pricing-body { flex: 1 1 0; padding: 12px 14px; }
  .pricing-new { font-size: 22px; }
  .pricing-old { font-size: 14px; }
  .pricing-note { font-size: 11px; }
}

@media (min-width: 600px) {

  .phone-img {
    height: 480px;
  }

  .phone-img--large,
  .video-container {
    height: 586px;
  }
}
