/* ================================================================
   geo-agentur.css  — Gerlach Media Brand, kein generisches Blau
   ================================================================ */

:root {
  --ink:        #0c0c0c;
  --ink-2:      #212121;
  --ink-3:      #515151;
  --ink-4:      #999;
  --bg:         #fff;
  --bg-soft:    #f7f7f7;
  --bg-warm:    #F5F2EC;
  --bg-teal:    #E2F9F8;
  --bg-blue:    #EEF3FF;
  --bg-peach:   #FFF5EF;
  --border:     #E8E8E8;
  --border-d:   #D4D4D4;
  --r:          12px;
  --r-lg:       18px;
  --shadow:     0 1px 2px rgba(0,0,0,.04), 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg:  0 4px 6px rgba(0,0,0,.03), 0 20px 56px rgba(0,0,0,.10);
}

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.gm-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.gm-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.gm-reveal--d1 { transition-delay: .08s; }
.gm-reveal--d2 { transition-delay: .16s; }
.gm-reveal--d3 { transition-delay: .24s; }
.gm-reveal--d4 { transition-delay: .32s; }
.gm-reveal--d5 { transition-delay: .40s; }
.gm-reveal--d6 { transition-delay: .48s; }

/* ================================================================
   HERO — zweispaltig, Text links / Screenshot rechts
   ================================================================ */
.gm-hero {
  background: #fff;
  padding: 128px 0 0;
  overflow: hidden;
}
.gm-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.gm-hero__copy {
  padding-bottom: 72px;
}
.gm-hero__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink-3);
  border: 1px solid var(--border-d);
  border-radius: 99px;
  padding: 5px 14px;
  margin-bottom: 22px;
}
.gm-hero__h1 {
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 800;
  color: var(--ink-2);
  line-height: 1.1;
  letter-spacing: -.028em;
  margin: 0 0 18px;
}
.gm-hero__sub {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink-3);
  max-width: 500px;
  line-height: 1.65;
  margin: 0 0 30px;
}
.gm-hero__btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 28px;
}
.gm-hero__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-4);
}
.gm-stars { color: #ecbe18; font-size: 13px; letter-spacing: 1px; }
.gm-hero__trust strong { color: var(--ink-3); }

/* Hero screenshot — kein Bottom-Radius, gleitet aus dem Hero */
.gm-hero__shot {
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  align-self: flex-end;
  position: relative;
  top: 1px;
}
.gm-hero__shot-bar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gm-dots { display: flex; gap: 5px; }
.gm-dots span { width: 9px; height: 9px; border-radius: 50%; }
.gm-dots span:nth-child(1) { background: #f87171; }
.gm-dots span:nth-child(2) { background: #fbbf24; }
.gm-dots span:nth-child(3) { background: #4ade80; }
.gm-hero__shot-url {
  font-size: 11px;
  color: var(--ink-4);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 3px 10px;
}
.gm-hero__shot img {
  display: block;
  width: 100%;
  height: auto;
}
@media(max-width:900px) {
  .gm-hero { padding-top: 72px; }
  .gm-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .gm-hero__copy { padding-bottom: 0; }
  .gm-hero__shot { border-radius: var(--r-lg); border-bottom: 1px solid var(--border); }
}

/* ================================================================
   SECTION UTILITIES
   ================================================================ */
.gm-section {
  padding: 88px 0;
}
.gm-section--soft  { background: var(--bg-soft); }
.gm-section--white { background: #fff; }

.gm-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}
.gm-head--left { text-align: left; margin-left: 0; margin-right: 0; }
.gm-head__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink-4);
  display: block;
  margin-bottom: 12px;
}
.gm-head h2 {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 800;
  color: var(--ink-2);
  letter-spacing: -.022em;
  line-height: 1.18;
  margin-bottom: 14px;
}
.gm-head p {
  font-size: 16px;
  color: var(--ink-3);
  line-height: 1.65;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.gm-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .15s, transform .15s;
}
.gm-btn:hover { opacity: .82; transform: translateY(-1px); }
.gm-btn--dark,
.gm-btn--dark:link,
.gm-btn--dark:visited { background: var(--ink); color: #fff !important; }
.gm-btn--light,
.gm-btn--light:link,
.gm-btn--light:visited {
  background: var(--bg-soft);
  color: var(--ink-2) !important;
  border: 1px solid var(--border-d);
}
.gm-btn--light:hover { background: #efefef; opacity: 1; }

/* ================================================================
   STAGGERED FACT CARDS (Visiblie "Why it matters")
   ================================================================ */
.gm-shift-section {
  background: var(--bg-soft);
  padding: 88px 0;
}
.gm-shift-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gm-shift-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 20px;
  transition: box-shadow .15s;
}
.gm-shift-card:hover { box-shadow: var(--shadow); }
.gm-shift-card:nth-child(2) { margin-top: 28px; }
.gm-shift-card:nth-child(5) { margin-top: 28px; }
.gm-shift-card--bordered { border-color: var(--ink); }
.gm-shift-card__icon { font-size: 18px; margin-bottom: 12px; }
.gm-shift-card__stat {
  font-size: 30px;
  font-weight: 900;
  color: var(--ink-2);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.03em;
}
.gm-shift-card__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
  margin-bottom: 6px;
  line-height: 1.4;
}
.gm-shift-card__body {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.6;
}
@media(max-width:860px) {
  .gm-shift-grid { grid-template-columns: repeat(2, 1fr); }
  .gm-shift-card:nth-child(2),
  .gm-shift-card:nth-child(5) { margin-top: 0; }
}
@media(max-width:520px) { .gm-shift-grid { grid-template-columns: 1fr; } }

/* ================================================================
   LEISTUNGEN
   ================================================================ */
.gm-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gm-svc {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 22px;
  background: #fff;
  transition: box-shadow .15s;
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 16px;
  align-items: start;
}
.gm-svc:hover { box-shadow: var(--shadow); }
.gm-svc__num {
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
  letter-spacing: -.01em;
}
.gm-svc h3 { font-size: 15px; font-weight: 700; color: var(--ink-2); margin-bottom: 8px; }
.gm-svc p  { font-size: 14px; color: var(--ink-3); line-height: 1.6; margin: 0; }
@media(max-width:860px) { .gm-services { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:560px) { .gm-services { grid-template-columns: 1fr; } }

/* ================================================================
   FEATURE TABS — Monitoring-Slider (CSS-only, kein JS nötig)
   ================================================================ */

/* Radio inputs aus dem Grid-Flow nehmen */
.gm-ftab-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.gm-ftabs {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}
.gm-ftabs__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gm-ftabs__btn {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--r);
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: background .15s, border-color .15s;
}
/* Aktiver Tab — via :checked Sibling-Selector */
#gm-tab-0:checked ~ .gm-ftabs__nav label[for="gm-tab-0"],
#gm-tab-1:checked ~ .gm-ftabs__nav label[for="gm-tab-1"],
#gm-tab-2:checked ~ .gm-ftabs__nav label[for="gm-tab-2"],
#gm-tab-3:checked ~ .gm-ftabs__nav label[for="gm-tab-3"],
#gm-tab-4:checked ~ .gm-ftabs__nav label[for="gm-tab-4"] {
  background: #fff;
  border-color: var(--border);
  box-shadow: var(--shadow);
}
.gm-ftabs__btn:hover { background: rgba(0,0,0,.03); }
#gm-tab-0:checked ~ .gm-ftabs__nav label[for="gm-tab-0"]:hover,
#gm-tab-1:checked ~ .gm-ftabs__nav label[for="gm-tab-1"]:hover,
#gm-tab-2:checked ~ .gm-ftabs__nav label[for="gm-tab-2"]:hover,
#gm-tab-3:checked ~ .gm-ftabs__nav label[for="gm-tab-3"]:hover,
#gm-tab-4:checked ~ .gm-ftabs__nav label[for="gm-tab-4"]:hover { background: #fff; }
.gm-ftabs__num {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-4);
  letter-spacing: .06em;
  flex-shrink: 0;
  padding-top: 2px;
}
.gm-ftabs__btn-inner { flex: 1; }
.gm-ftabs__btn strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
  margin-bottom: 3px;
  line-height: 1.3;
}
.gm-ftabs__btn p {
  font-size: 13px;
  color: var(--ink-3);
  margin: 0 0 8px;
  line-height: 1.5;
}
.gm-ftabs__prog {
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  display: none;
}
/* Progress-Bar für aktiven Tab anzeigen */
#gm-tab-0:checked ~ .gm-ftabs__nav label[for="gm-tab-0"] .gm-ftabs__prog,
#gm-tab-1:checked ~ .gm-ftabs__nav label[for="gm-tab-1"] .gm-ftabs__prog,
#gm-tab-2:checked ~ .gm-ftabs__nav label[for="gm-tab-2"] .gm-ftabs__prog,
#gm-tab-3:checked ~ .gm-ftabs__nav label[for="gm-tab-3"] .gm-ftabs__prog,
#gm-tab-4:checked ~ .gm-ftabs__nav label[for="gm-tab-4"] .gm-ftabs__prog { display: block; }
.gm-ftabs__prog-bar {
  height: 100%;
  background: var(--ink);
  width: 0%;
}

.gm-ftabs__screens { position: relative; min-height: 300px; }
/* Alle Screens versteckt — erstes Tab per :checked sichtbar */
.gm-ftabs__screen {
  display: none;
  animation: ftabFade .35s ease;
}
#gm-tab-0:checked ~ .gm-ftabs__screens .gm-ftabs__screen[data-screen="0"],
#gm-tab-1:checked ~ .gm-ftabs__screens .gm-ftabs__screen[data-screen="1"],
#gm-tab-2:checked ~ .gm-ftabs__screens .gm-ftabs__screen[data-screen="2"],
#gm-tab-3:checked ~ .gm-ftabs__screens .gm-ftabs__screen[data-screen="3"],
#gm-tab-4:checked ~ .gm-ftabs__screens .gm-ftabs__screen[data-screen="4"] { display: block; }
@keyframes ftabFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* Ohne JS: gm-reveal immer sichtbar */
@media (scripting: none) {
  .gm-reveal { opacity: 1 !important; transform: none !important; }
}

/* Shot inside feature tabs */
.gm-ftabs__shot {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.gm-ftabs__shot-bar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gm-ftabs__shot-url {
  font-size: 11px;
  color: var(--ink-4);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 3px 10px;
}
.gm-ftabs__shot img {
  display: block;
  width: 100%;
  height: auto;
}

/* Counter stat inside feature tabs nav */
.gm-ftabs__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  background: var(--ink);
  border-radius: var(--r);
  text-align: center;
  margin-bottom: 4px;
}
.gm-ftabs__stat-val {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 8px;
}
.gm-ftabs__stat-lbl {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  line-height: 1.35;
}
.gm-ftabs__stat-sub {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-top: 6px;
  line-height: 1.5;
}

@media(max-width:900px) {
  .gm-ftabs { grid-template-columns: 1fr; }
  .gm-ftabs__nav { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .gm-ftabs__btn { flex: 1 1 auto; min-width: 140px; }
}

/* ================================================================
   SPLIT — Text + Screenshot
   ================================================================ */
.gm-split-wrap { padding: 88px 0; }
.gm-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}
.gm-split--rev { direction: rtl; }
.gm-split--rev > * { direction: ltr; }
.gm-split__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-4);
  display: block;
  margin-bottom: 12px;
}
.gm-split__title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  color: var(--ink-2);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.gm-split__body {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.7;
  margin-bottom: 20px;
}
.gm-split__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.gm-split__list li {
  font-size: 14px;
  color: var(--ink-3);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.gm-split__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ink-2);
  font-weight: 700;
}
.gm-split__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.gm-split__shot {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.gm-split__shot-bar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gm-split__shot-url {
  flex: 1;
  font-size: 11px;
  color: var(--ink-4);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 3px 10px;
}
.gm-split__shot img {
  display: block;
  width: 100%;
  height: auto;
}
@media(max-width:860px) {
  .gm-split { grid-template-columns: 1fr; gap: 32px; }
  .gm-split--rev { direction: ltr; }
}

/* ================================================================
   STEPS
   ================================================================ */
.gm-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gm-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px 20px;
}
.gm-step__n {
  font-size: 30px;
  font-weight: 900;
  color: var(--border-d);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -.04em;
}
.gm-step h3 { font-size: 14px; font-weight: 700; color: var(--ink-2); margin-bottom: 7px; }
.gm-step p  { font-size: 13px; color: var(--ink-3); line-height: 1.6; margin: 0; }
@media(max-width:860px) { .gm-steps { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:520px) { .gm-steps { grid-template-columns: 1fr; } }

/* ================================================================
   PLATFORM CARDS
   ================================================================ */
.gm-platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
@media(min-width:1100px) { .gm-platforms { grid-template-columns: repeat(6, 1fr); } }
.gm-platform {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 20px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow .15s;
}
.gm-platform:hover { box-shadow: var(--shadow); border-color: var(--border-d); }
.gm-platform__icon {
  width: 52px; height: 52px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  flex-shrink: 0;
}
.gm-platform__icon img { width: 28px; height: 28px; }
.gm-platform h3 { font-size: 14px; font-weight: 700; color: var(--ink-2); margin-bottom: 6px; }
.gm-platform p  { font-size: 13px; color: var(--ink-3); line-height: 1.55; margin: 0; }
@media(max-width:860px) { .gm-platforms { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:520px) { .gm-platforms { grid-template-columns: 1fr; } }

/* ================================================================
   STATS BAR
   ================================================================ */
.gm-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 48px;
}
.gm-stat {
  background: #fff;
  padding: 26px 18px;
  text-align: center;
}
.gm-stat__val {
  display: block;
  font-size: 30px;
  font-weight: 900;
  color: var(--ink-2);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 5px;
}
.gm-stat__lbl { font-size: 13px; color: var(--ink-3); line-height: 1.4; }
@media(max-width:700px) { .gm-stats { grid-template-columns: repeat(2, 1fr); } }

/* ================================================================
   PROOF BOXES
   ================================================================ */
.gm-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gm-proof-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 20px;
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 16px;
  align-items: start;
}
.gm-proof-box__dot {
  grid-row: 1 / 3;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.gm-proof-box__dot::after {
  content: '\2713';
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.gm-proof-box h3 { font-size: 15px; font-weight: 700; color: var(--ink-2); margin-bottom: 7px; }
.gm-proof-box p  { font-size: 14px; color: var(--ink-3); line-height: 1.6; margin: 0; }
@media(max-width:700px) { .gm-proof { grid-template-columns: 1fr; } }

/* ================================================================
   CTA FINAL
   ================================================================ */
.gm-cta {
  background: var(--ink);
  padding: 80px 0;
  text-align: center;
}
.gm-cta h2 {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.022em;
  margin-bottom: 12px;
}
.gm-cta p {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  max-width: 460px;
  margin: 0 auto 30px;
  line-height: 1.6;
}
.gm-cta__btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.gm-cta-btn {
  display: inline-flex; align-items: center;
  padding: 13px 24px; border-radius: 8px;
  font-size: 14px; font-weight: 700;
  text-decoration: none; transition: opacity .15s;
}
.gm-cta-btn:hover { opacity: .82; }
.gm-cta-btn--white,
.gm-cta-btn--white:link,
.gm-cta-btn--white:visited { background: #fff; color: var(--ink) !important; }
.gm-cta-btn--ghost,
.gm-cta-btn--ghost:link,
.gm-cta-btn--ghost:visited { background: rgba(255,255,255,.08); color: #fff !important; border: 1px solid rgba(255,255,255,.18); }

/* ================================================================
   STICKY SIDEBAR
   ================================================================ */
@media(min-width:1160px) {
  .stickylinks {
    display: inline-block;
    position: sticky;
    top: 100px;
    max-width: 44%;
    padding: 0;
    margin-right: 5%;
    vertical-align: top;
  }
}

/* ================================================================
   PRICING
   ================================================================ */
.geo-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}
.geo-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow .15s;
}
.geo-pricing-card:hover { box-shadow: var(--shadow-lg); }
.geo-pricing-card--featured {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px rgba(12,12,12,.07);
}
.geo-pricing-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--ink); color: #fff;
  font-size: 10px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  border-radius: 99px; padding: 4px 12px;
}
.geo-pricing-card__inner { display: flex; flex-direction: column; height: 100%; padding: 26px; }
.geo-pricing-kicker { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-4); display: block; margin-bottom: 7px; }
.geo-pricing-card h3 { font-size: 20px; font-weight: 800; color: var(--ink-2); margin-bottom: 10px; }
.geo-pricing-text { font-size: 14px; color: var(--ink-3); line-height: 1.6; margin-bottom: 18px; }
.geo-pricing-list { list-style: none; margin: 0 0 auto; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.geo-pricing-list li { font-size: 14px; color: var(--ink-3); padding-left: 18px; position: relative; line-height: 1.45; }
.geo-pricing-list li::before { content: '✓'; position: absolute; left: 0; color: var(--ink-2); font-weight: 700; }
.geo-pricing-footer { display: flex; flex-direction: column; gap: 6px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border); }
.geo-pricing-price { font-size: 24px; font-weight: 800; color: var(--ink-2); letter-spacing: -.02em; }
.geo-pricing-note { font-size: 12px; color: var(--ink-4); }
.geo-pricing-cta,
.geo-pricing-cta:link,
.geo-pricing-cta:visited {
  display: block; text-align: center;
  padding: 12px 20px; background: var(--ink); color: #fff !important;
  border-radius: 8px; font-weight: 700; font-size: 14px;
  text-decoration: none; margin-top: 6px;
  transition: opacity .15s;
}
.geo-pricing-cta:hover { opacity: .82; }
.geo-pricing-meta { text-align: center; margin-top: 20px; font-size: 14px; color: var(--ink-4); }
@media(max-width:860px) { .geo-pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } }

/* ================================================================
   GEO vs SEO VERGLEICH
   ================================================================ */
.gm-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 48px;
}
.gm-compare__col { background: #fff; }
.gm-compare__head {
  padding: 16px 22px;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink-2);
  border-bottom: 2px solid var(--border);
  letter-spacing: -.01em;
}
.gm-compare__head--geo {
  background: var(--ink);
  color: #fff;
  border-bottom-color: transparent;
}
.gm-compare__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 22px;
  font-size: 13px;
  color: var(--ink-3);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.gm-compare__row:last-child { border-bottom: none; }
.gm-compare__icon { flex-shrink: 0; }
.gm-compare__col:last-child .gm-compare__row { color: var(--ink-2); font-weight: 500; }
@media(max-width:600px) { .gm-compare { grid-template-columns: 1fr; } }

/* ================================================================
   CASE STUDIES
   ================================================================ */
.gm-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.gm-case {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: box-shadow .15s;
}
.gm-case:hover { box-shadow: var(--shadow); }
.gm-case__metric {
  font-size: 48px;
  font-weight: 900;
  color: var(--ink-2);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 10px;
}
.gm-case__label {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-2);
  margin-bottom: 8px;
  line-height: 1.3;
}
.gm-case__desc {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.6;
  margin: 0;
}
.gm-case__client {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-top: 16px;
  display: block;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
@media(max-width:700px) { .gm-cases { grid-template-columns: 1fr; } }

/* ================================================================
   COUNTER
   ================================================================ */
.counter { display: inline; }

/* ================================================================
   MID-PAGE CTA
   ================================================================ */
.gm-cta-mid {
  background: var(--ink);
  padding: 36px 0;
}
.gm-cta-mid__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.gm-cta-mid__inner strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.gm-cta-mid__inner p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin: 0;
}
.gm-cta-mid__btn,
.gm-cta-mid__btn:link,
.gm-cta-mid__btn:visited {
  flex-shrink: 0;
  display: inline-block;
  padding: 14px 28px;
  background: #fff;
  color: var(--ink) !important;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .15s;
}
.gm-cta-mid__btn:hover { opacity: .88; }
@media(max-width:640px) {
  .gm-cta-mid__inner { flex-direction: column; align-items: flex-start; }
}

/* ================================================================
   KI-MARKETING-DISZIPLINEN
   ================================================================ */
.gm-disciplines {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 14px;
  margin-top: 48px;
}
.gm-disc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 18px;
  transition: box-shadow .15s, border-color .15s;
}
.gm-disc:hover { box-shadow: var(--shadow); border-color: var(--border-d); }
.gm-disc--active {
  background: var(--ink);
  border-color: var(--ink);
}
.gm-disc__abbr {
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: 5px;
}
.gm-disc--active .gm-disc__abbr { color: #fff; }
.gm-disc__name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.gm-disc--active .gm-disc__name { color: rgba(255,255,255,.7); }
.gm-disc p {
  font-size: 12px;
  color: var(--ink-4);
  line-height: 1.5;
  margin: 0;
}
.gm-disc--active p { color: rgba(255,255,255,.65); }
@media(max-width:600px) { .gm-disciplines { grid-template-columns: repeat(2, 1fr); } }
