/* ============================================================================
   QLEADS - Royal Blue Theme (matching PDF deck)
   Single system font, no emojis, blue palette only
   ============================================================================ */

:root {
  --blue-deep: #1B3A6F;
  --blue: #2C5AA0;
  --blue-light: #4A7BC8;
  --blue-tint: #E8EFF9;
  --blue-tint-soft: #F4F7FC;

  --white: #FFFFFF;
  --paper: #F8FAFD;
  --line: rgba(27,58,111,.10);
  --line-soft: rgba(27,58,111,.06);

  --ink: #0B1A35;
  --text: #1A2A4D;
  --text-soft: #4A5A7D;
  --text-muted: #8A95B0;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1240px;
  --gutter: 1.5rem;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
  position: relative;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--blue); color: white; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 90% 0%, rgba(74,123,200,.10) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(27,58,111,.06) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 100%, rgba(74,123,200,.08) 0%, transparent 55%);
  z-index: 0;
  pointer-events: none;
}

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  letter-spacing: -0.035em;
  line-height: 1.0;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h4 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-soft);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.text-blue { color: var(--blue); }
.text-blue-deep { color: var(--blue-deep); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-deep);
  letter-spacing: 0.02em;
}

.pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.pill-on-dark {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.15);
  color: white;
}

.pill-on-dark::before { background: white; }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(248,250,253,.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
}

.nav.scrolled {
  background: rgba(255,255,255,.92);
  border-bottom-color: var(--line);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--blue-deep);
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.15rem;
  position: relative;
  letter-spacing: -0.04em;
}

.logo-mark::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 7px;
  width: 8px;
  height: 2.5px;
  background: white;
  transform: rotate(35deg);
  border-radius: 2px;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.55rem 1rem;
  border-radius: 8px;
  transition: all .2s ease;
}

.nav-links a:hover { background: var(--blue-tint); color: var(--blue-deep); }
.nav-links a.active { color: var(--blue-deep); background: var(--blue-tint); }

.nav-cta {
  background: var(--blue-deep) !important;
  color: white !important;
  padding: 0.7rem 1.4rem !important;
  font-weight: 600 !important;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-cta:hover {
  background: var(--blue) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(27,58,111,.25);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s ease;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 50%, var(--blue-light) 100%);
  color: white;
  overflow: hidden;
  padding: 8rem 0 6rem;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 28%;
  height: 18%;
  background: var(--paper);
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28%;
  height: 18%;
  background: var(--paper);
  clip-path: polygon(0 0, 60% 100%, 0 100%);
  z-index: 1;
}

.hero-stripe {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,.04) 30%, rgba(255,255,255,.04) 50%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-meta {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-meta::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: rgba(255,255,255,.5);
}

.hero-issue {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.hero h1 {
  color: white;
  margin-bottom: 1.75rem;
  max-width: 1100px;
}

.hero h1 .stroke {
  -webkit-text-stroke: 1.5px white;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .hero h1 .stroke {
    -webkit-text-stroke: 0;
    -webkit-text-fill-color: white;
    color: white;
  }
}

.hero h1 .underline {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.hero h1 .underline::after {
  content: '';
  position: absolute;
  left: -2%;
  bottom: 6%;
  width: 104%;
  height: 0.18em;
  background: white;
  z-index: -1;
  transform: skew(-12deg);
  opacity: 0.25;
}

.hero-sub {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: rgba(255,255,255,.85);
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 800px;
}

.hero-metric {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-md);
  padding: 1.4rem 1.5rem;
  transition: all .3s ease;
}

.hero-metric:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-3px);
}

.hero-metric-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 0.6rem;
}

.hero-metric-value {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-metric-spark {
  height: 24px;
  width: 100%;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all .3s cubic-bezier(.16,1,.3,1);
  font-family: inherit;
}

.btn-blue {
  background: var(--blue-deep);
  color: white;
}

.btn-blue:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(27,58,111,.3);
}

.btn-white {
  background: white;
  color: var(--blue-deep);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.15);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,.3);
}

.btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-2px);
}

.btn .arr {
  display: inline-flex;
  transition: transform .3s ease;
}

.btn:hover .arr { transform: translateX(4px); }

/* PAGE HEADER */
.page-header {
  position: relative;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  color: white;
  padding: 10rem 0 5rem;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 28%;
  height: 18%;
  background: var(--paper);
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28%;
  height: 18%;
  background: var(--paper);
  clip-path: polygon(0 0, 60% 100%, 0 100%);
  z-index: 1;
}

.page-header-inner {
  position: relative;
  z-index: 3;
}

.page-header-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

.page-header-meta a:hover { color: white; }

.page-header h1 {
  color: white;
  margin-bottom: 1.25rem;
  max-width: 1000px;
}

.page-header-lede {
  font-size: 1.2rem;
  color: rgba(255,255,255,.85);
  max-width: 640px;
  line-height: 1.55;
}

/* SECTIONS */
section {
  padding: 6rem 0;
  position: relative;
  z-index: 2;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-head .pill { margin-bottom: 1.25rem; }
.section-head h2 { margin-bottom: 1.25rem; }
.section-head p { font-size: 1.08rem; }

/* STATS */
.stats {
  padding: 4rem 0;
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 1rem 1.5rem;
  border-left: 1px solid var(--line);
}

.stat:first-child { border-left: none; padding-left: 0; }

.stat-value {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--blue-deep);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.stat-value .unit {
  font-size: 0.5em;
  color: var(--blue-light);
}

.stat-label {
  font-size: 0.92rem;
  color: var(--text-soft);
  font-weight: 500;
  line-height: 1.4;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
}

.service-card {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all .35s cubic-bezier(.16,1,.3,1);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--blue-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.service-card:hover {
  border-color: var(--blue-light);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(27,58,111,.10);
}

.service-card:hover::before { transform: scaleX(1); }

.service-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-tint);
  color: var(--blue-deep);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  transition: all .3s ease;
}

.service-card:hover .service-num {
  background: var(--blue-deep);
  color: white;
}

.service-card h3 { margin-bottom: 0.6rem; }

.service-card .lede {
  color: var(--text-soft);
  font-size: 0.98rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
}

.tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  background: var(--blue-tint-soft);
  color: var(--blue-deep);
  border-radius: var(--r-sm);
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 { margin: 1rem 0 1.5rem; }

.about-text p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-text strong {
  color: var(--ink);
  font-weight: 700;
}

.about-mark {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 50%, var(--blue-light) 100%);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(27,58,111,.25);
}

.about-mark::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 35%;
  height: 25%;
  background: white;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}

.about-mark::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 35%;
  height: 25%;
  background: white;
  clip-path: polygon(0 0, 70% 100%, 0 100%);
}

.about-mark-q {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  font-size: clamp(11rem, 22vw, 22rem);
  font-weight: 800;
  color: white;
  line-height: 0.8;
  z-index: 2;
  letter-spacing: -0.06em;
}

.about-mark-tag {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  z-index: 3;
}

.about-mark-corner {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
}

.about-mark-corner::before {
  content: '';
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.85); }
}

/* VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.value-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  transition: all .35s cubic-bezier(.16,1,.3,1);
}

.value-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue-light);
  box-shadow: 0 16px 32px rgba(27,58,111,.08);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-tint);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.value-card h4 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.value-card p { font-size: 0.95rem; line-height: 1.55; }

/* FOUNDERS */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.founder-card {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  transition: all .35s cubic-bezier(.16,1,.3,1);
  text-align: center;
}

.founder-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-light);
  box-shadow: 0 24px 48px rgba(27,58,111,.10);
}

.founder-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 2.25rem;
  letter-spacing: -0.04em;
  box-shadow: 0 12px 28px rgba(27,58,111,.2);
}

.founder-name {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 0.3rem;
  line-height: 1.05;
}

.founder-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.75rem;
}

.founder-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.founder-contacts a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  background: var(--blue-tint-soft);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  color: var(--blue-deep);
  font-size: 0.92rem;
  font-weight: 600;
  transition: all .25s ease;
}

.founder-contacts a:hover {
  background: var(--blue-deep);
  color: white;
  border-color: var(--blue-deep);
}

/* TESTPHASE */
.testphase {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.testphase::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 25%;
  height: 18%;
  background: var(--paper);
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
}

.testphase::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 25%;
  height: 18%;
  background: var(--paper);
  clip-path: polygon(0 0, 60% 100%, 0 100%);
}

.testphase-inner {
  position: relative;
  z-index: 2;
}

.testphase h2 {
  color: white;
  text-align: center;
  margin: 1rem 0 1rem;
}

.testphase-intro {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.testphase-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testphase-item {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  padding: 1.5rem 1.4rem;
  transition: all .3s ease;
}

.testphase-item:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}

.testphase-item.excluded {
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.04);
  opacity: 0.85;
}

.testphase-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: white;
  color: var(--blue-deep);
  margin-bottom: 0.85rem;
}

.testphase-item.excluded .testphase-check {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
}

.testphase-item h4 { color: white; margin-bottom: 0.4rem; font-size: 1.05rem; }

.testphase-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.process-step {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  transition: all .3s ease;
}

.process-step:hover {
  transform: translateY(-3px);
  border-color: var(--blue-light);
  box-shadow: 0 16px 32px rgba(27,58,111,.08);
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--blue-deep);
  color: white;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.process-step h4 { margin-bottom: 0.4rem; font-size: 1.1rem; }
.process-step p { font-size: 0.88rem; line-height: 1.5; }

/* REVIEWS */
.reviews-disclaimer {
  background: var(--blue-tint);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  padding: 1.4rem 1.75rem;
  border-radius: var(--r-md);
  margin-bottom: 3rem;
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.reviews-disclaimer-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.reviews-disclaimer strong { color: var(--ink); font-weight: 700; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.25rem;
}

.review {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 2.25rem 2rem;
  transition: all .3s ease;
}

.review:hover {
  transform: translateY(-4px);
  border-color: var(--blue-light);
  box-shadow: 0 20px 40px rgba(27,58,111,.10);
}

.review-stars {
  color: var(--blue);
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-quote {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.75rem;
  font-weight: 500;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.review-author .name {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}

.review-author .name .ex-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: var(--blue-tint-soft);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.review-author .role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  margin: 1.25rem 0 1.25rem;
  font-size: 2.25rem;
  letter-spacing: -0.03em;
}

.contact-info > p {
  color: var(--text-soft);
  margin-bottom: 2rem;
  font-size: 1.02rem;
  max-width: 460px;
  line-height: 1.6;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 0.75rem;
  transition: all .25s ease;
}

.contact-method:hover {
  border-color: var(--blue-light);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--blue-tint);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .25s ease;
}

.contact-method:hover .contact-method-icon {
  background: var(--blue-deep);
  color: white;
}

.contact-method-info { flex: 1; }
.contact-method-info .meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.contact-method-info .val {
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
}

.contact-callout {
  margin-top: 2rem;
  padding: 1.75rem;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  color: white;
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
}

.contact-callout::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 35%;
  height: 100%;
  background: rgba(255,255,255,.06);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}

.contact-callout-inner { position: relative; z-index: 2; }

.contact-callout strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.contact-callout p {
  color: rgba(255,255,255,.85);
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue), var(--blue-light));
}

.contact-form h3 { margin-bottom: 0.4rem; font-size: 1.5rem; }

.contact-form > p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--paper);
  color: var(--ink);
  transition: all .2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 3px rgba(74,123,200,.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1.25rem 0;
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.form-checkbox input { margin-top: 0.25rem; flex-shrink: 0; }
.form-checkbox a { color: var(--blue); text-decoration: underline; font-weight: 600; }

.form-submit {
  width: 100%;
  padding: 1.05rem;
  background: var(--blue-deep);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all .3s ease;
  font-family: inherit;
}

.form-submit:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(27,58,111,.3);
}

/* CTA BANNER */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 50%, var(--blue-light) 100%);
  color: white;
  padding: 6rem 0;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 25%;
  height: 22%;
  background: var(--paper);
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 25%;
  height: 22%;
  background: var(--paper);
  clip-path: polygon(0 0, 60% 100%, 0 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  color: white;
  margin: 1rem 0 1.25rem;
}

.cta-content p {
  color: rgba(255,255,255,.85);
  font-size: 1.15rem;
  margin-bottom: 2.25rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* LEGAL */
.legal-content {
  max-width: 820px;
  margin: 0 auto 6rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 3.5rem 3rem;
  box-shadow: 0 8px 24px rgba(27,58,111,.04);
}

.legal-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.legal-content .updated {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  font-weight: 600;
}

.legal-content h2 { font-size: 1.4rem; margin: 2.5rem 0 1rem; }
.legal-content h3 { font-size: 1.1rem; margin: 1.5rem 0 0.6rem; }

.legal-content p,
.legal-content li {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 0.85rem;
}

.legal-content ul,
.legal-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.legal-content li { margin-bottom: 0.4rem; }

.legal-content .placeholder {
  background: #FFF8DC;
  color: #8B6914;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.85em;
  font-weight: 600;
  border: 1px solid rgba(255,213,79,.4);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

.legal-content .info-box {
  background: var(--blue-tint);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  padding: 1.4rem 1.6rem;
  border-radius: var(--r-md);
  margin: 1.75rem 0;
}

.legal-content .info-box p:last-child { margin-bottom: 0; }

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
}

.legal-content th,
.legal-content td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
}

.legal-content th {
  background: var(--blue-tint);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.legal-content tbody tr:last-child td { border-bottom: none; }

.legal-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

.legal-content a:hover { color: var(--blue-deep); }

/* FOOTER */
.footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.footer-brand .nav-logo { color: white; margin-bottom: 1.25rem; }
.footer-brand .logo-mark { background: white; color: var(--blue-deep); }
.footer-brand .logo-mark::after { background: var(--blue-deep); }

.footer-brand p {
  font-size: 0.95rem;
  color: rgba(255,255,255,.6);
  max-width: 360px;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all .2s ease;
}

.footer-social a:hover {
  background: white;
  color: var(--blue-deep);
  border-color: white;
  transform: translateY(-2px);
}

.footer-col h5 {
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: 0.92rem;
  transition: all .2s ease;
}

.footer-links a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-legal-links a:hover { color: white; }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  max-width: 460px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(27,58,111,.15);
  z-index: 1000;
  transform: translateY(150%);
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner h4 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--ink); }

.cookie-banner p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.cookie-banner p a { color: var(--blue); text-decoration: underline; }

.cookie-actions { display: flex; gap: 0.5rem; }

.cookie-actions button {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  transition: all .2s ease;
}

.cookie-accept { background: var(--blue-deep); color: white; }
.cookie-accept:hover { background: var(--blue); }

.cookie-decline {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
}

.cookie-decline:hover { background: var(--blue-tint); }

/* ANIMATIONS */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp .8s cubic-bezier(.16,1,.3,1) both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .25s; }
.delay-3 { animation-delay: .4s; }

/* ============================================================================
   RESPONSIVE - mobile-first optimization
   ============================================================================ */

/* Touch-Geräte: Verbesserung der Tap-Erfahrung global */
@media (hover: none) and (pointer: coarse) {
  /* Reduktion der Hover-Transformations auf Touch-Devices */
  .service-card:hover,
  .value-card:hover,
  .review:hover,
  .founder-card:hover,
  .process-step:hover,
  .hero-metric:hover,
  .testphase-item:hover {
    transform: none;
  }

  /* Aktivierung sichtbarer Active-States */
  .service-card:active,
  .value-card:active,
  .review:active,
  .founder-card:active,
  .process-step:active {
    transform: scale(0.98);
    transition: transform .15s ease;
  }

  .btn:active,
  .nav-cta:active,
  .form-submit:active {
    transform: scale(0.96);
  }

  /* Entfernung des Tap-Highlights */
  a, button { -webkit-tap-highlight-color: rgba(27,58,111,.10); }
}

/* TABLET (1024px und darunter) */
@media (max-width: 1024px) {
  :root { --container: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .testphase-list { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .stat:nth-child(odd) { border-left: none; padding-left: 0; }
  .hero-metrics { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}

/* MOBILE (768px und darunter) */
@media (max-width: 768px) {
  :root { --gutter: 1.25rem; }

  body { font-size: 15px; }

  /* Typography: Reduktion auf mobile-optimierte Größen */
  h1 { font-size: clamp(2.25rem, 9vw, 3.25rem); line-height: 1.05; }
  h2 { font-size: clamp(1.75rem, 6.5vw, 2.5rem); line-height: 1.1; }
  h3 { font-size: 1.25rem; }
  h4 { font-size: 1.05rem; }
  p { font-size: 1rem; }

  /* Sections: Reduktion des vertikalen Paddings */
  section { padding: 3.5rem 0; }
  .stats { padding: 2.5rem 0; }
  .testphase, .cta-banner { padding: 4rem 0; }

  /* Section-Heads: Anpassung des Margins */
  .section-head { margin-bottom: 2.5rem; }

  /* NAVIGATION: Mobile-Menü als Overlay */
  .nav-inner { padding: 0.85rem var(--gutter); }
  .nav-logo { font-size: 1.2rem; }
  .logo-mark { width: 34px; height: 34px; font-size: 1rem; }

  /* Mobile burger menu styles below in dedicated section */

  .nav-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

  /* HERO: Kompaktere Mobile-Anzeige */
  .hero {
    padding: 6rem 0 3.5rem;
    min-height: auto;
  }

  .hero::before, .hero::after {
    width: 35%;
    height: 12%;
  }

  .hero-top {
    margin-bottom: 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .hero-meta { font-size: 0.78rem; }
  .hero-meta::before { width: 24px; }
  .hero-issue { font-size: 0.7rem; }

  .hero h1 { margin-bottom: 1.25rem; }

  .hero-sub {
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    margin-bottom: 2.5rem;
    gap: 0.6rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 1.1rem 1.5rem;
    min-height: 52px;
  }

  /* HERO-METRICS: Horizontaler Scroll auf Mobile statt Stack */
  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 100%;
  }

  .hero-metric {
    padding: 1.1rem 1.25rem;
  }

  .hero-metric-value { font-size: 1.75rem; }

  /* PAGE HEADER */
  .page-header {
    padding: 7rem 0 3.5rem;
  }

  .page-header::before, .page-header::after {
    width: 35%;
    height: 12%;
  }

  .page-header-meta {
    margin-bottom: 2rem;
    font-size: 0.7rem;
  }

  .page-header-lede { font-size: 1.05rem; }

  /* PILLS */
  .pill {
    font-size: 0.72rem;
    padding: 0.4rem 0.85rem;
  }

  /* BUTTONS: Touch-friendly */
  .btn {
    padding: 1rem 1.5rem;
    min-height: 48px;
    font-size: 0.95rem;
  }

  /* STATS: Single column */
  .stats-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .stat {
    border-left: none;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--line);
  }
  .stat:last-child { border-bottom: none; }
  .stat-value { font-size: 2.5rem; }
  .stat-label { font-size: 0.88rem; }

  /* SERVICES */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    padding: 1.75rem 1.5rem;
  }

  .service-num {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .service-card .lede { font-size: 0.95rem; }

  /* ABOUT */
  .about-grid { gap: 2.5rem; }

  .about-mark {
    max-width: 320px;
    margin: 0 auto;
  }

  .about-mark-q {
    font-size: clamp(8rem, 40vw, 14rem);
  }

  .about-mark-tag, .about-mark-corner {
    font-size: 0.65rem;
    top: 1rem;
    left: 1rem;
  }

  .about-mark-corner {
    bottom: 1rem;
    right: 1rem;
    left: auto;
    top: auto;
  }

  .about-text h2 { margin-top: 0.75rem; }
  .about-text p { font-size: 1rem; line-height: 1.65; }

  /* VALUES */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .value-card {
    padding: 1.5rem 1.4rem;
  }

  .value-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 1rem;
  }

  /* FOUNDERS */
  .founders-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .founder-card {
    padding: 2rem 1.75rem;
  }

  .founder-avatar {
    width: 90px;
    height: 90px;
    font-size: 1.85rem;
    margin-bottom: 1.25rem;
  }

  .founder-name { font-size: 1.5rem; }
  .founder-role { margin-bottom: 1.25rem; font-size: 0.7rem; }

  .founder-contacts a {
    padding: 0.95rem 1rem;
    font-size: 0.95rem;
    min-height: 48px;
  }

  /* TESTPHASE */
  .testphase {
    padding: 3.5rem 0;
  }

  .testphase::before, .testphase::after {
    width: 35%;
    height: 10%;
  }

  .testphase-list {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .testphase-item {
    padding: 1.25rem 1.25rem;
  }

  .testphase-intro { font-size: 1rem; margin-bottom: 2.5rem; }

  /* PROCESS */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .process-step {
    padding: 1.4rem 1.4rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .process-num {
    flex-shrink: 0;
    margin-bottom: 0;
    width: 36px;
    height: 36px;
  }

  .process-step h4 { margin-bottom: 0.2rem; }

  /* REVIEWS */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .review {
    padding: 1.85rem 1.6rem;
  }

  .review-quote { font-size: 1rem; margin-bottom: 1.4rem; }
  .review-stars { font-size: 1rem; letter-spacing: 1px; }

  .reviews-disclaimer {
    padding: 1.15rem 1.25rem;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    flex-direction: column;
    gap: 0.75rem;
  }

  /* CONTACT */
  .contact-info h3 { font-size: 1.6rem; }

  .contact-method {
    padding: 1rem 1.1rem;
    gap: 0.85rem;
  }

  .contact-method-icon {
    width: 40px;
    height: 40px;
  }

  .contact-method-info .val { font-size: 0.95rem; }

  .contact-callout {
    padding: 1.5rem 1.4rem;
  }

  /* FORM: Touch-optimiert */
  .contact-form {
    padding: 1.75rem 1.5rem;
  }

  .contact-form h3 { font-size: 1.35rem; }

  .form-row { grid-template-columns: 1fr; gap: 0; }

  .form-group label { font-size: 0.85rem; }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.95rem 1rem;
    font-size: 16px; /* iOS-Zoom verhindern */
    min-height: 48px;
  }

  .form-group textarea { min-height: 120px; }

  .form-checkbox {
    font-size: 0.85rem;
    gap: 0.5rem;
  }

  .form-checkbox input {
    min-width: 20px;
    min-height: 20px;
    margin-top: 0.15rem;
  }

  .form-submit {
    padding: 1.15rem;
    min-height: 52px;
    font-size: 1rem;
  }

  /* CTA */
  .cta-content h2 { margin-bottom: 1rem; }
  .cta-content p { font-size: 1rem; margin-bottom: 1.75rem; }

  .cta-content .btn {
    width: 100%;
    justify-content: center;
  }

  /* LEGAL */
  .legal-content {
    padding: 2rem 1.5rem;
    border-radius: var(--r-md);
  }

  .legal-content h1 { font-size: clamp(1.75rem, 7vw, 2.25rem); }
  .legal-content h2 { font-size: 1.2rem; margin: 2rem 0 0.75rem; }
  .legal-content h3 { font-size: 1.05rem; }
  .legal-content p, .legal-content li { font-size: 0.95rem; line-height: 1.7; }

  .legal-content table {
    font-size: 0.82rem;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }

  .legal-content th, .legal-content td {
    padding: 0.65rem 0.85rem;
  }

  .legal-content .info-box {
    padding: 1.1rem 1.25rem;
  }

  /* FOOTER */
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .footer-brand p { font-size: 0.9rem; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    font-size: 0.78rem;
  }

  .footer-legal-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-social a {
    width: 42px;
    height: 42px;
  }

  .footer-links a {
    display: inline-block;
    padding: 0.4rem 0;
    min-height: 36px;
  }

  /* COOKIE BANNER: Bottom-fixed mit safe-area */
  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: none;
    padding: 1.25rem;
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom));
  }

  .cookie-banner h4 { font-size: 1rem; }
  .cookie-banner p { font-size: 0.85rem; margin-bottom: 1rem; }

  .cookie-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cookie-actions button {
    padding: 0.95rem 1rem;
    min-height: 48px;
    font-size: 0.92rem;
  }
}

/* SMALL MOBILE (480px und darunter) */
@media (max-width: 480px) {
  :root { --gutter: 1rem; }

  h1 { font-size: clamp(2rem, 10vw, 2.75rem); }
  h2 { font-size: clamp(1.5rem, 7vw, 2.1rem); }

  .hero { padding: 5.5rem 0 3rem; }
  .page-header { padding: 6.5rem 0 3rem; }

  .stat-value { font-size: 2.25rem; }
  .service-card { padding: 1.5rem 1.25rem; }
  .review { padding: 1.5rem 1.35rem; }
  .legal-content { padding: 1.75rem 1.25rem; }
  .contact-form { padding: 1.5rem 1.25rem; }
  .founder-card { padding: 1.75rem 1.5rem; }

  .nav-cta {
    padding: 0.6rem 1rem !important;
    font-size: 0.85rem !important;
  }

  .nav-cta svg { display: none; }
}

/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  html { scroll-behavior: auto; }
}

/* ============================================================================
   MOBILE BURGER MENU - SIMPEL: erweitert die Nav nach unten
   ============================================================================ */
@media (max-width: 768px) {
  /* Nav darf nach unten wachsen wenn menu offen */
  .nav {
    background: rgba(255,255,255,.98) !important;
  }

  .nav-inner {
    flex-wrap: wrap !important;
    padding: 12px 16px !important;
  }

  /* Menu standardmäßig nicht im Layout */
  ul.nav-links {
    display: none !important;
    width: 100% !important;
    flex-basis: 100% !important;
    order: 3 !important;
    flex-direction: column !important;
    background: transparent !important;
    padding: 8px 0 4px !important;
    margin: 8px 0 0 !important;
    gap: 2px !important;
    list-style: none !important;
    border-top: 1px solid rgba(27,58,111,.08) !important;
    position: static !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    z-index: auto !important;
  }

  ul.nav-links.open {
    display: flex !important;
  }

  ul.nav-links > li {
    width: 100% !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
  }

  ul.nav-links > li > a {
    display: block !important;
    width: 100% !important;
    padding: 12px 14px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #0B1A35 !important;
    background: transparent !important;
    border-radius: 8px !important;
    line-height: 1.3 !important;
    text-align: left !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
  }

  ul.nav-links > li > a:active {
    background: #E8EFF9 !important;
    color: #1B3A6F !important;
  }

  ul.nav-links > li > a.nav-cta {
    margin-top: 4px !important;
    background: #1B3A6F !important;
    color: #ffffff !important;
    text-align: center !important;
    justify-content: center !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }

  ul.nav-links > li > a.nav-cta svg {
    display: inline-block !important;
  }

  ul.nav-links > li > a.nav-cta:active {
    background: #2C5AA0 !important;
    color: #ffffff !important;
  }

  /* Hero bekommt mehr Top-Padding damit Nav-Erweiterung nicht überlagert */
  .hero {
    padding-top: 80px !important;
  }
  .page-header {
    padding-top: 90px !important;
  }
}
