:root {
  /* Markenfarben — abgeleitet von no23digital.com (Elementor-Globalfarben) */
  --petrol: #256362;
  --petrol-deep: #052e26;
  --navy: #112b36;
  --accent: #a8e10f;
  --accent-dark: #8fc00a;
  --cream: #f5f2f0;
  --cream-deep: #efeee7;
  --grad-petrol: linear-gradient(135deg, #2b6f6d 0%, #112b36 100%);

  --ink: #111112;
  --gray-600: #555555;
  --gray-400: #888888;
  --white: #ffffff;
  --radius: 20px;
  --radius-sm: 12px;
  --maxw: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.logo span {
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 600;
  transition: color .2s;
}
.nav-links a:hover { color: var(--petrol); }
.nav-cta {
  background: var(--petrol-deep);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 100px;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--petrol); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 36px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--petrol);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,99,98,.30);
}
.btn-primary:hover {
  background: var(--petrol-deep);
  box-shadow: 0 8px 28px rgba(5,46,38,.35);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--petrol-deep);
  border-color: var(--petrol-deep);
  color: var(--white);
}
.btn-dark {
  background: var(--petrol-deep);
  color: var(--white);
}
.btn-dark:hover { background: var(--petrol); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline-light:hover { border-color: var(--white); }

/* ---------- Badges & labels ---------- */
.badge {
  display: inline-block;
  background: var(--petrol-deep);
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 24px;
}
.section-label::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--petrol);
}

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 72px;
}
.hero h1 {
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 800px;
}
.hero h1 .accent-line {
  background: linear-gradient(transparent 62%, var(--accent) 62%, var(--accent) 94%, transparent 94%);
}
.hero .source {
  font-size: 14px;
  color: var(--gray-400);
  font-style: italic;
  margin-top: 20px;
}
.hero .lead {
  font-size: clamp(18px, 2.4vw, 21px);
  max-width: 720px;
  margin-top: 32px;
  color: var(--ink);
}
.hero-sub {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 3px solid var(--petrol-deep);
  max-width: 720px;
}
.hero-sub h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero-sub p {
  margin-top: 8px;
  color: var(--gray-600);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 28px;
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
}
.trust-line span::before {
  content: '·';
  margin-right: 20px;
  color: var(--gray-400);
}
.trust-line span:first-child::before { content: ''; margin: 0; }

/* ---------- Stats bar ---------- */
.stats-bar {
  background: var(--grad-petrol);
  border-radius: var(--radius);
  padding: 40px 48px;
  margin: 48px 0 0;
}
.stats-bar .stats-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat b {
  display: block;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
}
.stat span {
  font-size: 14px;
  color: rgba(255,255,255,.72);
  font-weight: 600;
}

/* ---------- Sections ---------- */
section { padding: 96px 0; }
section h2.headline {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 760px;
}
.section-intro {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 680px;
  margin-top: 20px;
}

/* ---------- Threat / story quote ---------- */
.quote-card {
  background: var(--grad-petrol);
  color: var(--white);
  border-radius: var(--radius);
  padding: 56px;
  margin-top: 48px;
  position: relative;
}
.quote-card::before {
  content: '“';
  font-size: 80px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.quote-card p {
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,.9);
  max-width: 720px;
}
.quote-card p + p { margin-top: 20px; }

.cost-title {
  margin-top: 72px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.cost-source {
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 4px;
}
.cost-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.cost-card {
  background: var(--cream-deep);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.cost-card b {
  display: block;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--petrol-deep);
}
.cost-card span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 500;
}

.not-just-money {
  background: var(--cream-deep);
  border-radius: var(--radius);
  padding: 48px 56px;
  margin-top: 48px;
}
.not-just-money h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 28px;
}
.njm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.njm-grid h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--petrol-deep);
}
.njm-grid p {
  font-size: 14.5px;
  color: var(--gray-600);
}

/* ---------- AI hacking cards ---------- */
.section-alt { background: var(--cream); }
.threat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.threat-card {
  background: var(--white);
  border: 1px solid rgba(17,17,18,.07);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.threat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(17,43,54,.10);
}
.threat-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--petrol);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
}
.threat-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.threat-card p {
  font-size: 15px;
  color: var(--gray-600);
  flex: 1;
}
.threat-card .fact {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(17,17,18,.1);
  font-size: 14px;
  font-weight: 800;
  color: var(--petrol-deep);
}

.callout {
  background: var(--grad-petrol);
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px 56px;
  margin-top: 56px;
}
.callout .label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--accent);
}
.callout h3 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.callout p {
  margin-top: 12px;
  font-size: 16px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  max-width: 720px;
}

/* ---------- Offers ---------- */
.offers-head {
  background: var(--grad-petrol);
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px 56px;
}
.offers-head h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.offers-head p {
  margin-top: 14px;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  max-width: 640px;
}
.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.offer-card {
  background: var(--white);
  border: 1px solid rgba(17,17,18,.07);
  border-radius: var(--radius);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(17,43,54,.10);
}
.offer-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
}
.offer-top .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--petrol);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}
.offer-top h3 {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.offer-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--petrol-deep);
  color: var(--cream);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin: 10px 0 20px 60px;
}
.offer-card > p {
  font-size: 15.5px;
  color: var(--gray-600);
  margin-bottom: 24px;
}
.offer-card ul {
  list-style: none;
  flex: 1;
}
.offer-card li {
  position: relative;
  padding: 7px 0 7px 34px;
  font-size: 15px;
  font-weight: 500;
}
.offer-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--petrol);
}
.offer-card li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 14px;
  width: 9px;
  height: 5px;
  border-left: 2.5px solid var(--white);
  border-bottom: 2.5px solid var(--white);
  transform: rotate(-45deg);
}
.offer-foot {
  margin-top: 28px;
  background: var(--cream);
  border: 1px solid rgba(17,17,18,.06);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--petrol-deep);
}

/* ---------- Decision ---------- */
.decision h2.headline { margin-bottom: 48px; }
.option-card {
  border-radius: var(--radius);
  padding: 44px 52px;
  margin-bottom: 20px;
}
.option-card .opt-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.option-card h3 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.option-card p {
  font-size: 16px;
  max-width: 720px;
}
.option-dark {
  background: linear-gradient(135deg, #0e3a34 0%, var(--navy) 100%);
  color: var(--white);
}
.option-dark .opt-label { color: var(--accent); }
.option-dark p { color: rgba(255,255,255,.78); }
.option-green {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--petrol-deep);
}
.option-green .opt-label { color: rgba(5,46,38,.65); }
.option-green p { color: rgba(5,46,38,.85); }

.decision-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

/* ---------- Contact ---------- */
.contact-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 48px 56px;
  margin-top: 72px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.contact-card .label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--petrol);
  margin-bottom: 10px;
}
.contact-card h3 {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.contact-card .role {
  font-size: 15px;
  color: var(--gray-600);
  margin-top: 2px;
}
.contact-card .mail {
  display: inline-block;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  margin-top: 16px;
  border-bottom: 3px solid var(--accent-dark);
}
.contact-card .addr {
  font-size: 14px;
  color: var(--gray-600);
  margin-top: 8px;
}
.ps {
  margin-top: 48px;
  font-size: 15px;
  color: var(--gray-600);
  font-style: italic;
}
.ps b { color: var(--ink); }

/* ---------- Footer ---------- */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 40px 0;
  font-size: 14px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
footer .logo img {
  height: 40px;
  background: var(--white);
  border-radius: 10px;
  padding: 6px 10px;
}
footer .logo span { color: rgba(255,255,255,.55); }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 24px;
  overflow-y: auto;
  background: rgba(17,43,54,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  width: 100%;
  max-width: 820px;
  position: relative;
  animation: modal-in .25s ease;
}
.modal .meetings-iframe-container { min-height: 480px; }
@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
  to { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s;
}
.modal-close:hover { background: var(--cream-deep); }
.modal h3 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
  padding-right: 48px;
}
.modal .modal-intro {
  font-size: 15px;
  color: var(--gray-600);
  margin: 6px 0 24px;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .stats-grid, .cost-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .threat-grid { grid-template-columns: 1fr; }
  .njm-grid { grid-template-columns: 1fr; gap: 24px; }
  .offers-grid { grid-template-columns: 1fr; }
  .nav-links a:not(.nav-cta) { display: none; }
}
@media (max-width: 560px) {
  section { padding: 64px 0; }
  .hero { padding: 56px 0 48px; }
  .stats-bar, .quote-card, .not-just-money, .callout,
  .offers-head, .option-card, .contact-card { padding: 32px 24px; }
  .offer-card { padding: 32px 24px; }
  .offer-tag { margin-left: 0; }
  .logo span { display: none; }
  .btn { width: 100%; }
}
