/* Copyright © 2026 Adams Strategy GmbH & Co.KG — Matching Pioneers */

@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');

:root {
  --navy:    #080E26;
  --navy-2:  #181E34;
  --navy-3:  #283157;
  --accent:  #AC9EF5;
  --accent-2:#8C98CA;
  --white:   #ffffff;
  --off:     #EBECEF;
  --mid:     #c8cad4;
  --muted:   #6b6f80;
  --dark:    #080E26;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; overflow-y: scroll; }
body { font-family: 'Questrial', Arial, sans-serif; color: var(--dark); background: var(--white); }

/* ── TYPOGRAPHY ── */
.t-serif { font-family: 'Georgia', serif; }
.t-label {
  font-size: 11px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--accent-2); font-weight: 400;
}
.t-h1 { font-size: clamp(40px, 6vw, 80px); font-weight: 900; line-height: 1.0; letter-spacing: -2px; }
.t-h2 { font-size: clamp(28px, 4vw, 52px); font-weight: 900; line-height: 1.1; letter-spacing: -1px; }
.t-body { font-size: 16px; line-height: 1.7; color: var(--muted); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(8,14,38,0.97); backdrop-filter: blur(12px);
}
.nav-logo-text {
  color: var(--white); font-weight: 900; font-size: 18px; letter-spacing: -0.5px;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-text .diamond {
  width: 0; height: 0;
  border: 7px solid transparent;
  border-left: 12px solid var(--accent);
  margin-left: 4px;
}
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: rgba(255,255,255,.6); font-size: 15px; text-decoration: none; letter-spacing: 0.5px; white-space: nowrap; }
.nav-links a:hover { color: var(--white); }
.lang-toggle {
  display: flex; gap: 2px;
  background: rgba(255,255,255,.08); padding: 4px;
}
.lang-btn {
  padding: 4px 10px; font-size: 11px; font-weight: 700; letter-spacing: 1px;
  cursor: pointer; border: none; background: transparent; color: rgba(255,255,255,.4);
  transition: all .2s;
}
.lang-btn.active { background: var(--accent); color: var(--navy); }
.nav-links a.active { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: var(--navy); font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 12px 26px;
  text-decoration: none; border: none; cursor: pointer; white-space: nowrap;
}
.nav-cta:hover { background: #c0b4ff; }

/* ── HAMBURGER MENU ── */
.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; margin-left: 8px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.85); border-radius: 2px; transition: all .25s; }
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--navy); z-index: 300; flex-direction: column; align-items: center; justify-content: center; gap: 28px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: rgba(255,255,255,.85); font-size: 20px; text-decoration: none; letter-spacing: 0.5px; transition: color .2s; }
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav-cta { background: var(--accent) !important; color: var(--navy) !important; font-size: 13px !important; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 14px 32px; margin-top: 8px; }
.mobile-nav-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: rgba(255,255,255,.6); font-size: 28px; cursor: pointer; line-height: 1; }
.mobile-nav-lang { display: flex; gap: 12px; margin-top: 4px; }
.mobile-nav-lang button { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.7); font-size: 12px; font-weight: 700; letter-spacing: 1px; padding: 6px 14px; cursor: pointer; }
.mobile-nav-lang button.active { background: var(--accent); color: var(--navy); border-color: var(--accent); }
@media (max-width: 900px) { .nav-burger { display: flex; } }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 68px;
}
.hero-left {
  padding: 80px 60px 80px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-eyebrow { margin-bottom: 32px; }
.hero-title {
  color: var(--white); margin-bottom: 28px;
  font-family: 'Questrial', Arial, sans-serif; font-weight: 900;
}
.hero-title em { color: var(--accent); font-style: normal; display: block; }
.hero-lead { color: rgba(255,255,255,.6); font-size: 17px; line-height: 1.65; margin-bottom: 44px; max-width: 440px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-gold {
  background: var(--accent); color: var(--navy); font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 15px 32px;
  text-decoration: none; border: none; cursor: pointer; display: inline-block;
}
.btn-gold:hover { background: #c0b4ff; }
.btn-ghost {
  border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.75); font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase; padding: 15px 32px;
  text-decoration: none; background: transparent; cursor: pointer; display: inline-block;
}
.btn-ghost:hover { border-color: rgba(172,158,245,.6); color: var(--accent); }

.hero-right {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero-right-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(8,14,38,0.5) 0%, transparent 60%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(172,158,245,.03) 40px,
      rgba(172,158,245,.03) 41px
    );
  background-color: #0d1530;
}
.hero-stat-strip {
  position: relative; z-index: 2;
  width: 100%;
  display: flex; flex-direction: column; gap: 0;
}
.hero-stat {
  padding: 28px 48px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: baseline; gap: 16px;
}
.stat-num {
  font-family: 'Questrial', Arial, sans-serif; font-weight: 900;
  font-size: 48px; color: var(--accent); line-height: 1; letter-spacing: -2px;
}
.stat-txt { color: rgba(255,255,255,.45); font-size: 14px; line-height: 1.4; }

/* ── SECTION SHARED ── */
section { padding: 100px 80px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

/* ── PROBLEM (light bg) ── */
.problem { background: var(--off); }
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.problem-copy .t-label { margin-bottom: 20px; }
.problem-copy .t-h2 { color: var(--navy); margin-bottom: 24px; }
.problem-copy .t-body { margin-bottom: 36px; }
.fact-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.fact-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-left: 3px solid var(--accent);
}
.fact-icon { font-size: 22px; flex-shrink: 0; line-height: 1.3; }
.fact-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.fact-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── HOW (dark) ── */
.how { background: var(--navy-2); }
.how-header { text-align: center; margin-bottom: 70px; }
.how-header .t-label { color: var(--accent-2); }
.how-header .t-h2 { color: var(--white); margin: 16px 0 20px; }
.how-header .t-body { margin: 0 auto; max-width: 520px; color: rgba(255,255,255,.5); }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.step {
  background: rgba(255,255,255,.04);
  padding: 40px 36px;
  border-top: 2px solid transparent;
  transition: border-color .3s;
}
.step:hover { border-top-color: var(--accent); }
.step-num {
  font-family: 'Questrial', Arial, sans-serif; font-weight: 900;
  font-size: 52px; color: rgba(172,158,245,.18); line-height: 1;
  margin-bottom: 20px; letter-spacing: -2px;
}
.step-title { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.step-phase { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-2); margin-bottom: 16px; }
.step-desc { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.6; }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--accent);
  padding: 60px 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.cta-strip-text .t-h2 { color: var(--navy); font-size: clamp(22px, 3vw, 38px); }
.cta-strip-text p { color: rgba(8,14,38,.6); font-size: 16px; margin-top: 8px; }
.btn-navy {
  background: var(--navy); color: var(--white); font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 16px 36px;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  border: none; cursor: pointer; display: inline-block;
}
.btn-navy:hover { background: var(--navy-2); }

/* ── FOOTER ── */
footer {
  background: #040911; padding: 56px 80px 40px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; margin-bottom: 48px;
}
.footer-brand-name, .footer-name {
  font-family: 'Questrial', Arial, sans-serif; font-weight: 900;
  font-size: 22px; color: var(--white); letter-spacing: -0.5px; margin-bottom: 4px;
}
.footer-brand-sub, .footer-sub {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 12px;
}
.footer-brand-sub {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent-2);
  margin-bottom: 18px;
}
.footer-desc { font-size: 13px; color: rgba(255,255,255,.3); line-height: 1.65; }
.footer-col h4 { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent-2); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.4); text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.2); }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-social { width: 36px; height: 36px; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.footer-social:hover { background: rgba(172,158,245,.25); }
.footer-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,.5); transition: fill .2s; }
.footer-social:hover svg { fill: var(--accent); }

/* ── CONTACT PAGE ── */
.contact-hero {
  background: var(--navy); padding: 140px 80px 80px;
  text-align: center;
}
.contact-hero .t-label { color: var(--accent-2); }
.contact-hero .t-h1 { color: var(--white); margin: 20px 0 16px; }
.contact-hero .t-body { max-width: 540px; margin: 0 auto; }

.contact-form-section { background: var(--off); padding: 80px; }
.contact-form-wrap {
  max-width: 720px; margin: 0 auto;
  background: var(--white); padding: 60px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); font-weight: 700; }
input, select, textarea {
  border: 1px solid var(--mid); padding: 14px 16px; font-size: 15px;
  font-family: 'Questrial', Arial, sans-serif; color: var(--dark); background: var(--white);
  outline: none; transition: border-color .2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--accent); }
textarea { resize: vertical; min-height: 100px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23080E26' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.dsgvo-row { display: flex; gap: 12px; align-items: flex-start; margin: 28px 0; }
.dsgvo-row input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; cursor: pointer; accent-color: var(--accent); }
.dsgvo-row label { font-size: 13px; letter-spacing: 0; text-transform: none; font-weight: 400; color: var(--muted); line-height: 1.5; cursor: pointer; }
.dsgvo-row a { color: var(--navy-3); }
.submit-btn {
  width: 100%; background: var(--navy); color: var(--white);
  border: none; padding: 18px; font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
}
.submit-btn:hover { background: var(--navy-3); }
.form-success {
  display: none; text-align: center; padding: 40px;
  background: rgba(172,158,245,.07); border-left: 3px solid var(--accent);
}
.form-success h3 { color: var(--navy); font-size: 20px; margin-bottom: 10px; }
.form-success p { color: var(--muted); font-size: 15px; }

/* ── LEGAL PAGES ── */
.legal-hero { background: var(--navy); padding: 140px 80px 60px; }
.legal-hero h1 { color: var(--white); font-size: clamp(28px, 4vw, 48px); font-weight: 900; letter-spacing: -1px; }
.legal-content { max-width: 800px; margin: 0 auto; padding: 80px; }
.legal-content h2 { font-size: 20px; color: var(--navy); margin: 40px 0 12px; font-weight: 700; }
.legal-content h3 { font-size: 16px; color: var(--navy); margin: 24px 0 8px; font-weight: 700; }
.legal-content p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.legal-content a { color: var(--navy-3); }
.legal-content ul { margin: 0 0 14px 20px; }
.legal-content li { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 0 28px; }
  section { padding: 80px 40px; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 100px 40px 60px; }
  .hero-right { height: 300px; }
  .hero-stat-strip { flex-direction: row; }
  .hero-stat { padding: 24px 28px; }
  .problem-grid { grid-template-columns: 1fr; gap: 50px; }
  .steps { grid-template-columns: 1fr; gap: 2px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cta-strip { padding: 50px 40px; }
}
@media (max-width: 768px) {
  body { overflow-x: clip; }
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { font-size: 11px; padding: 10px 14px; letter-spacing: 0.8px; }
  section { padding: 60px 24px; }
  .hero-left { padding: 90px 24px 50px; }
  .stat-num { font-size: 36px; }
  .contact-hero, .contact-form-section, .legal-hero { padding-left: 24px; padding-right: 24px; }
  .contact-form-wrap { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .legal-content { padding: 60px 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  footer { padding: 50px 24px 32px; }
  .cta-strip { padding: 40px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .nav-cta { display: none; }
}

/* ── NEWSLETTER BAND ── */
.nl-band {
  background: var(--navy);
  border-top: 1px solid rgba(172,158,245,.12);
  border-bottom: 1px solid rgba(0,0,0,.2);
  padding: 64px 80px;
}
.nl-band-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
}
.nl-chip {
  display: inline-block;
  border: 1px solid rgba(172,158,245,.4);
  color: var(--accent);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  padding: 5px 12px; margin-bottom: 16px;
}
.nl-title {
  font-family: 'Questrial', Arial, sans-serif; font-weight: 900;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--white); letter-spacing: -0.5px; margin-bottom: 10px;
}
.nl-sub { color: rgba(255,255,255,.4); font-size: 15px; line-height: 1.65; max-width: 520px; }
.nl-btn {
  display: inline-block;
  background: var(--accent); color: var(--navy);
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 16px 32px; text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: background .2s;
}
.nl-btn:hover { background: #c4b8f8; }
@media (max-width: 900px) {
  .nl-band { padding: 48px 32px; }
  .nl-band-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
}
@media (max-width: 480px) {
  .nl-band { padding: 40px 20px; }
  .nl-btn { width: 100%; text-align: center; display: block; }
}
