/* ==========================================================================
   Grafikkult – Visual Refresh 2026
   Letzte Kaskaden-Ebene. Lädt nach styles.css und editor.css.
   Farbpalette unverändert: #2b2b2b (Ink), #ffffff (Paper), #3272b1 (Blau),
   #bbbbbb / #696e7b (Grau). Geändert werden Typografie, Flächen, Tiefe,
   Radien, Rhythmus und Motion.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Schrift – Montserrat, selbst gehostet (kein Google-CDN-Aufruf, DSGVO)
   -------------------------------------------------------------------------- */

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("assets/fonts/montserrat-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("assets/fonts/montserrat-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --------------------------------------------------------------------------
   2. Design-Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Palette (unverändert) */
  --gk-ink: #2b2b2b;
  --gk-paper: #ffffff;
  --gk-blue: #3272b1;
  --gk-blue-deep: #245f96;
  --gk-blue-soft: rgba(50, 114, 177, .08);
  --gk-blue-line: rgba(50, 114, 177, .22);
  --gk-muted: #696e7b;

  /* Flächen */
  --gk-surface: #ffffff;
  --gk-surface-tint: #f5f7fa;
  --gk-surface-dark: #2b2b2b;

  /* Text */
  --gk-text: #2b2b2b;
  --gk-text-soft: rgba(43, 43, 43, .66);
  /* .64 statt .48: ergibt 4.5:1 auf Weiß und bleibt damit AA-konform,
     auch bei 11px. */
  --gk-text-faint: rgba(43, 43, 43, .64);
  --gk-text-invert: #ffffff;
  --gk-text-invert-soft: rgba(255, 255, 255, .68);

  /* Linien */
  --gk-line: rgba(43, 43, 43, .09);
  --gk-line-strong: rgba(43, 43, 43, .16);
  --gk-line-invert: rgba(255, 255, 255, .12);

  /* Radien */
  --gk-r-xs: 8px;
  --gk-r-sm: 12px;
  --gk-r-md: 18px;
  --gk-r-lg: 24px;
  --gk-r-xl: 32px;
  --gk-r-pill: 999px;

  /* Schatten – mehrlagig: Nahkante für Definition, Ambient für Tiefe */
  --gk-shadow-xs:
    0 1px 2px rgba(43, 43, 43, .05),
    0 1px 3px rgba(43, 43, 43, .04);
  --gk-shadow-sm:
    0 1px 2px rgba(43, 43, 43, .05),
    0 4px 10px -2px rgba(43, 43, 43, .05),
    0 10px 24px -8px rgba(43, 43, 43, .07);
  --gk-shadow-md:
    0 1px 2px rgba(43, 43, 43, .05),
    0 8px 18px -6px rgba(43, 43, 43, .07),
    0 22px 44px -16px rgba(43, 43, 43, .12);
  --gk-shadow-lg:
    0 1px 2px rgba(43, 43, 43, .06),
    0 14px 30px -10px rgba(43, 43, 43, .10),
    0 40px 70px -24px rgba(43, 43, 43, .16);
  --gk-shadow-blue:
    0 1px 2px rgba(36, 95, 150, .24),
    0 10px 22px -8px rgba(50, 114, 177, .42);
  --gk-shadow-blue-lg:
    0 1px 2px rgba(36, 95, 150, .26),
    0 16px 34px -10px rgba(50, 114, 177, .5);

  /* Motion */
  --gk-ease: cubic-bezier(.16, 1, .3, 1);
  --gk-ease-out: cubic-bezier(.22, .61, .36, 1);
  --gk-dur: 320ms;

  /* Rhythmus */
  --gk-section-y: clamp(84px, 9vw, 140px);
}

/* --------------------------------------------------------------------------
   3. Basis-Typografie
   -------------------------------------------------------------------------- */

html {
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system,
    "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body,
.merch-page {
  background:
    radial-gradient(120% 60% at 50% -10%, rgba(50, 114, 177, .07), transparent 62%),
    #ffffff;
  color: var(--gk-text);
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: 0;
}

p,
.merch-page p,
.split-heading p,
.section-heading p {
  color: var(--gk-text-soft);
  font-size: 16px;
  font-weight: 450;
  line-height: 1.72;
}

/* Überschriften: Gewicht runter von 900/950 auf 800, dafür engeres Tracking.
   Das ist der Unterschied zwischen "fett" und "gesetzt". */
h1,
h2,
h3,
h4,
.brand-name,
strong,
b {
  font-weight: 800;
}

em {
  color: var(--gk-blue);
  font-style: normal;
  font-weight: inherit;
}

/* Versalien nur noch dort, wo sie Signalcharakter haben: Wortmarke, Hero,
   Kicker. Fließüberschriften laufen gemischt – lesbarer und aktueller. */
.section-heading h2,
.projects-intro h2,
.story-copy h2,
.reference-copy h2,
.contact-intro h2,
.process-copy h2,
.about-panel h2,
.process-personal-panel h2,
.merch-section-head h2,
.merch-problem-layout h2,
.merch-benefits-layout h2,
.merch-contact-panel h2,
.service-card h3,
.pricing-card h3,
.review-card h3,
.benefit-tile h3,
.reference-info h3,
.process-card h3,
.timeline-item h3,
.process-personal-panel h3,
.form-heading h3,
.wizard-step legend,
.contact-card h3,
.merch-product-strip h3,
.merch-steps h3,
.site-footer h3,
.hero-proof h2,
.product-card h2 {
  text-transform: none;
  letter-spacing: -.01em;
}

.section-heading h2,
.projects-intro h2,
.story-copy h2,
.reference-copy h2,
.contact-intro h2,
.process-copy h2,
.about-panel h2,
.process-personal-panel h2,
.merch-section-head h2,
.merch-problem-layout h2,
.merch-benefits-layout h2,
.merch-contact-panel h2 {
  font-size: clamp(30px, 3.6vw, 50px);
  font-weight: 800;
  letter-spacing: -.014em;
  line-height: 1.08;
  text-wrap: balance;
}

/* Nur die zentrierte Variante braucht eine Zeilenbremse – in den Spalten
   begrenzt das Raster die Zeilenlänge bereits. */
.center-heading h2 {
  max-width: 24ch;
  margin-inline: auto;
}

.split-heading p,
.center-heading p {
  font-size: 17px;
  line-height: 1.7;
}

.section-heading {
  margin-bottom: clamp(44px, 5vw, 68px);
}

/* --------------------------------------------------------------------------
   4. Kicker – aus der nackten Kapitälchen-Zeile wird ein Pill-Badge
   -------------------------------------------------------------------------- */

.section-kicker,
.merch-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  /* Grid- und Flex-Container blockifizieren inline-flex-Kinder, sonst zieht
     sich das Pill über die ganze Spalte. Nur Self-Alignment verwenden:
     width:max-content würde die Spalte auf die ungebrochene Textbreite
     aufblähen und auf schmalen Viewports den ganzen Hero überlaufen lassen. */
  max-width: 100%;
  justify-self: start;
  align-self: start;
  margin-bottom: 20px;
  padding: 7px 14px 7px 12px;
  border: 1px solid var(--gk-blue-line);
  border-radius: var(--gk-r-pill);
  background: var(--gk-blue-soft);
  color: var(--gk-blue);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.35;
  text-transform: uppercase;
}

/* Der auslaufende Strich hinter dem Kicker wird zum Punkt davor.
   Die zentrierte Variante hat einen zweiten Strich davor (styles.css:1876) –
   der braucht dieselbe Spezifität, sonst bleibt er stehen. */
.section-kicker::after,
.merch-label::after,
.center-heading .section-kicker::after {
  content: none;
}

.section-kicker::before,
.merch-label::before,
.center-heading .section-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: none;
  border-radius: 50%;
  background: var(--gk-blue);
}

.center-heading .section-kicker {
  justify-self: center;
  align-self: center;
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */

.button,
.header-cta {
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: var(--gk-r-pill);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.005em;
  text-transform: none;
  transition:
    transform var(--gk-dur) var(--gk-ease),
    box-shadow var(--gk-dur) var(--gk-ease),
    background-color var(--gk-dur) var(--gk-ease),
    border-color var(--gk-dur) var(--gk-ease),
    color var(--gk-dur) var(--gk-ease);
}

.header-cta {
  min-height: 46px;
  padding: 0 22px;
  border-radius: var(--gk-r-pill);
  font-size: 14px;
}

.button-primary,
.header-cta,
.pricing-card .button,
.merch-steps article > span {
  border: 1px solid transparent;
  background: linear-gradient(180deg, #3d80c0 0%, var(--gk-blue) 52%, var(--gk-blue-deep) 100%);
  color: #ffffff;
  box-shadow: var(--gk-shadow-blue);
}

.button-primary:hover,
.header-cta:hover,
.pricing-card .button:hover {
  background: linear-gradient(180deg, #4a8bc9 0%, #3576b6 52%, var(--gk-blue) 100%);
  color: #ffffff;
  box-shadow: var(--gk-shadow-blue-lg);
  transform: translateY(-2px);
}

.button-secondary,
.button-outline,
.button-secondary--dark,
.references-toggle {
  border: 1px solid var(--gk-line-strong);
  background: #ffffff;
  color: var(--gk-ink);
  box-shadow: var(--gk-shadow-xs);
}

.button-secondary:hover,
.button-outline:hover,
.button-secondary--dark:hover,
.references-toggle:hover {
  border-color: var(--gk-blue-line);
  background: var(--gk-blue-soft);
  color: var(--gk-blue-deep);
  box-shadow: var(--gk-shadow-sm);
  transform: translateY(-2px);
}

.button:active,
.header-cta:active {
  transform: translateY(0);
}

.button-icon {
  display: inline-flex;
  transition: transform var(--gk-dur) var(--gk-ease);
}

.button:hover .button-icon,
.header-cta:hover .button-icon {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */

.site-header {
  min-height: 76px;
  border-bottom: 1px solid var(--gk-line);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 1px 0 rgba(43, 43, 43, .04), 0 10px 30px -18px rgba(43, 43, 43, .3);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
}

.brand-name {
  font-weight: 900;
  letter-spacing: -.014em;
}

.brand-tagline {
  color: var(--gk-text-faint);
  font-weight: 600;
  letter-spacing: .1em;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
  color: var(--gk-text-soft);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -.005em;
  text-transform: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--gk-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--gk-dur) var(--gk-ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gk-ink);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  border-radius: var(--gk-r-sm);
  border-color: var(--gk-line-strong);
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */

.hero-section h1 {
  font-size: clamp(42px, 6.4vw, 88px);
  font-weight: 900;
  letter-spacing: -.012em;
  line-height: .98;
}

.hero-content > p {
  max-width: 52ch;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.68;
}

.hero-actions {
  gap: 14px;
}

.hero-proof {
  border-top: 1px solid var(--gk-line);
  padding-top: 26px;
}

.hero-proof article {
  border-right-color: var(--gk-line);
}

.hero-proof .proof-icon {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  font-variant-numeric: tabular-nums;
}

.hero-proof h2 {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.hero-proof p {
  font-size: 13.5px;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   8. Flächen-Rhythmus
   Statt sieben identisch weißer Blöcke: weiß → getönt → weiß → dunkel →
   getönt → weiß. Alles aus der bestehenden Palette.
   -------------------------------------------------------------------------- */

.services-section,
.projects-section,
.packages-section,
.process-section,
.story-section,
.reviews-section,
.contact-section,
.merch-products-section,
.merch-steps-section,
.merch-problem-section,
.merch-benefits-section,
.merch-contact-section {
  padding: var(--gk-section-y) 0;
  box-shadow: none;
}

.services-section,
.packages-section,
.contact-section,
.merch-products-section,
.merch-contact-section {
  background: var(--gk-surface);
  color: var(--gk-text);
}

.projects-section,
.reviews-section,
.merch-steps-section,
.merch-problem-section,
.merch-benefits-section {
  background: var(--gk-surface-tint);
  color: var(--gk-text);
}

/* Ein blauer Lichtschein oben statt flächiger Verläufe. */
.services-section::after,
.packages-section::after,
.contact-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: min(1100px, 92%);
  height: 320px;
  background: radial-gradient(60% 100% at 50% 0%, rgba(50, 114, 177, .07), transparent 70%);
  pointer-events: none;
  transform: translateX(-50%);
}

.services-section > *,
.packages-section > *,
.contact-section > * {
  position: relative;
  z-index: 1;
}

/* Haarlinie als Sektionstrenner, sichtbarer und ruhiger als ein inset-Schatten. */
.projects-section,
.packages-section,
.reviews-section,
.contact-section {
  border-top: 1px solid var(--gk-line);
}

/* --------------------------------------------------------------------------
   9. Karten – gemeinsame Basis
   Raus: unsichtbare Weiß-auf-Weiß-Verläufe und backdrop-filter auf deckenden
   Flächen. Rein: klare Kante, größerer Radius, mehrlagiger Schatten.
   -------------------------------------------------------------------------- */

.service-card,
.pricing-card,
.review-card,
.benefit-tile,
.about-panel,
.references-panel,
.reference-card,
.contact-card,
.form-shell,
.story-media,
.timeline-summary,
.wizard-summary div,
.process-personal-panel,
.merch-contact-panel,
.merch-product-strip article,
.pain-grid article,
.merch-steps article,
.merch-benefit-list li,
.shop-window {
  border: 1px solid var(--gk-line);
  border-radius: var(--gk-r-lg);
  background: var(--gk-surface);
  box-shadow: var(--gk-shadow-sm);
  color: var(--gk-text);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    transform var(--gk-dur) var(--gk-ease),
    box-shadow var(--gk-dur) var(--gk-ease),
    border-color var(--gk-dur) var(--gk-ease);
}

.service-card:hover,
.pricing-card:hover,
.reference-card:hover,
.merch-product-strip article:hover,
.merch-steps article:hover {
  border-color: var(--gk-blue-line);
  box-shadow: var(--gk-shadow-lg);
  transform: translateY(-6px);
}

/* Auf getöntem Grund brauchen weiße Karten weniger Schatten, sonst wirken
   sie schmutzig. */
.projects-section .reference-card,
.reviews-section .review-card {
  box-shadow: var(--gk-shadow-xs);
}

/* --------------------------------------------------------------------------
   10. Leistungs-Karten
   -------------------------------------------------------------------------- */

.services-grid {
  gap: 24px;
}

.service-card {
  padding: 38px 34px 34px;
  overflow: hidden;
}

/* Akzentkante oben, die beim Hover aufläuft. */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gk-blue), rgba(50, 114, 177, 0));
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition:
    transform 460ms var(--gk-ease),
    opacity 260ms var(--gk-ease);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 26px;
  padding: 10px;
  border: 1px solid var(--gk-blue-line);
  border-radius: var(--gk-r-md);
  background: var(--gk-blue-soft);
  box-sizing: border-box;
}

.service-card:hover .service-icon {
  transform: translateY(-3px) scale(1.04);
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: clamp(19px, 1.5vw, 23px);
  font-weight: 800;
  line-height: 1.22;
}

.service-card p,
.reviews-section .review-card p,
.process-card p {
  font-size: 15px;
  line-height: 1.7;
}

/* Der nackte Pfeil wird zu einem echten Ziel. */
.service-card > a:not(.button) {
  width: 42px;
  height: 42px;
  margin-top: 28px;
  border: 1px solid var(--gk-line-strong);
  border-radius: 50%;
  background: #ffffff;
  color: var(--gk-blue);
  font-size: 18px;
  transition:
    transform var(--gk-dur) var(--gk-ease),
    background-color var(--gk-dur) var(--gk-ease),
    border-color var(--gk-dur) var(--gk-ease),
    color var(--gk-dur) var(--gk-ease);
}

.service-card > a:not(.button):hover {
  border-color: transparent;
  background: var(--gk-blue);
  color: #ffffff;
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   11. Check-Listen
   -------------------------------------------------------------------------- */

.check-list {
  gap: 13px;
}

.check-list li {
  padding-left: 32px;
  color: var(--gk-text-soft);
  font-size: 15px;
  line-height: 1.6;
}

.check-list li::before {
  top: .28em;
  left: 0;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: var(--gk-blue-soft);
  transform: none;
}

.check-list li::after {
  content: "";
  position: absolute;
  top: .62em;
  left: 6px;
  width: 8px;
  height: 4.5px;
  border-bottom: 2px solid var(--gk-blue);
  border-left: 2px solid var(--gk-blue);
  transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------
   12. CrewMerch-Panel in den Leistungen
   -------------------------------------------------------------------------- */

.references-panel,
.merch-preview {
  padding: clamp(32px, 4vw, 52px);
  border-radius: var(--gk-r-xl);
  background: var(--gk-surface-tint);
  box-shadow: none;
}

.references-panel .reference-image img,
.merch-preview .reference-image img {
  border-radius: var(--gk-r-lg);
  box-shadow: var(--gk-shadow-md);
}

/* --------------------------------------------------------------------------
   13. Referenz-Karten
   -------------------------------------------------------------------------- */

.references-grid {
  gap: 20px;
}

.reference-card {
  padding: 22px;
  border-radius: var(--gk-r-md);
  background: #ffffff;
}

.reference-card::before,
.reference-card::after {
  content: none;
}

.reference-card--featured {
  border-color: var(--gk-line);
}

.reference-logo-frame {
  border-radius: var(--gk-r-sm);
  background: transparent;
}

.reference-logo-frame img {
  filter: grayscale(1) contrast(.94);
  opacity: .72;
  transition:
    filter 420ms var(--gk-ease),
    opacity 420ms var(--gk-ease),
    transform 420ms var(--gk-ease);
}

/* Kein Aufblenden in Farbe mehr: neu hochgeladene Logos werden serverseitig
   entsättigt und könnten gar nicht bunt werden – der Effekt würde nur bei den
   alten Farbdateien greifen und die Karten uneinheitlich machen. */
.reference-card:hover .reference-logo-frame img {
  opacity: 1;
  transform: scale(1.03);
}

.reference-info span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.reference-info h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.reference-info p {
  font-size: 13.5px;
  line-height: 1.55;
}

.references-toggle-wrap {
  margin-top: 42px;
}

/* --------------------------------------------------------------------------
   14. Pakete
   -------------------------------------------------------------------------- */

/* stretch, damit alle drei Karten gleich hoch sind – styles.css:4668 schiebt
   den Button per margin-bottom:auto ohnehin an die Unterkante. */
.pricing-grid {
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  height: 100%;
}

.pricing-card {
  padding: 38px 32px;
  gap: 18px;
  border-radius: var(--gk-r-lg);
}

.pricing-badge,
.pill,
.process-tags span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 6px 13px;
  border: 1px solid var(--gk-blue-line);
  border-radius: var(--gk-r-pill);
  background: var(--gk-blue-soft);
  color: var(--gk-blue);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: clamp(21px, 1.7vw, 25px);
  font-weight: 800;
  line-height: 1.2;
}

.pricing-card .price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  color: var(--gk-ink);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 800;
  letter-spacing: -.014em;
  line-height: 1.1;
}

/* Eigene Zeile, sonst steht der Zusatz je nach Preislänge mal daneben und
   mal darunter. */
.pricing-card .price small {
  flex: 0 0 100%;
  color: var(--gk-text-faint);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: none;
}

.pricing-fit {
  font-size: 14.5px;
  line-height: 1.62;
}

/* Das Highlight-Paket wird auch optisch eins. */
.pricing-card.is-featured {
  border-color: var(--gk-blue-line);
  background:
    linear-gradient(180deg, rgba(50, 114, 177, .05), rgba(255, 255, 255, 0) 220px),
    #ffffff;
  box-shadow:
    0 0 0 1px rgba(50, 114, 177, .16),
    var(--gk-shadow-md);
}

.pricing-card.is-featured:hover {
  box-shadow:
    0 0 0 1px rgba(50, 114, 177, .24),
    var(--gk-shadow-lg);
}

.pricing-details summary {
  padding: 12px 0;
  border-top: 1px solid var(--gk-line);
  color: var(--gk-blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
}

.pricing-card .button {
  margin-top: 8px;
  width: 100%;
}

/* --------------------------------------------------------------------------
   15. Ablauf – dunkles Band. Größter Kontrastpunkt der Seite.
   -------------------------------------------------------------------------- */

.process-section {
  border-top: 0;
  background:
    radial-gradient(90% 60% at 15% 0%, rgba(50, 114, 177, .22), transparent 60%),
    radial-gradient(70% 60% at 95% 100%, rgba(50, 114, 177, .14), transparent 62%),
    var(--gk-surface-dark);
  color: var(--gk-text-invert);
}

.process-section .section-kicker {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  color: #a8c8e8;
}

/* Diese Labels sind keine Badges – ohne Polsterung wirkt eine Fläche
   dahinter wie ein Textmarker. */
.process-section .process-label,
.process-section .process-board-head span {
  border: 0;
  background: none;
  color: #7fa8d0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Das ist eine Zwischenüberschrift, kein Label – styles.css:4060 macht
   daraus 12px Versalien. */
.process-section .process-outcome strong {
  display: block;
  margin-bottom: 8px;
  border: 0;
  background: none;
  color: var(--gk-text-invert);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.3;
  text-transform: none;
}

.process-section h2,
.process-section h3,
.process-section strong,
.process-section .about-panel h2,
.process-section .process-personal-panel h2,
.process-section .process-board-head strong {
  color: var(--gk-text-invert);
}

.process-section em {
  color: #6ea8dd;
}

.process-section p,
.process-section li,
.process-section .about-points li {
  color: var(--gk-text-invert-soft);
}

.process-section .process-tags span {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .82);
}

.process-section .button-outline {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .06);
  color: #ffffff;
  box-shadow: none;
}

.process-section .button-outline:hover {
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .12);
  color: #ffffff;
}

.process-section .process-board-head strong {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  letter-spacing: -.01em;
  text-transform: none;
}

.process-section .process-card {
  border-color: rgba(255, 255, 255, .1);
  background: transparent;
  box-shadow: none;
}

.process-section .process-card::before,
.process-section .process-card::after {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .16);
}

.process-section .process-number {
  color: #6ea8dd;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: .04em;
}

.process-section .process-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.008em;
}

.process-section .process-outcome,
.process-section .process-personal-panel,
.process-section .about-panel {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--gk-r-lg);
  background: rgba(255, 255, 255, .045);
  box-shadow: none;
}

.process-section .process-outcome {
  padding: 26px 28px;
}

.process-section .process-personal-panel,
.process-section .about-panel {
  padding: clamp(30px, 3.4vw, 46px);
}

/* styles.css:6000 gibt diesen Punkten ein deckendes Weiß – auf dem dunklen
   Band wäre die weiße Schrift damit unsichtbar. */
.process-section .process-personal-panel .about-points li,
.process-section .about-points li {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--gk-r-sm);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .78);
  font-size: 14.5px;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   16. Bewertungen
   -------------------------------------------------------------------------- */

.reviews-section {
  --reviews-fade-edge: #f5f7fa;
  --reviews-fade-mid: rgba(245, 247, 250, .9);
}

.reviews-count {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid var(--gk-blue-line);
  border-radius: var(--gk-r-pill);
  background: var(--gk-blue-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.reviews-section .review-card {
  padding: 30px 28px;
  border-radius: var(--gk-r-lg);
  background: #ffffff;
}

.reviews-section .review-card::before,
.reviews-section .review-card::after {
  content: none;
}

.reviews-section .review-card > span {
  color: var(--gk-blue);
  font-size: 15px;
  letter-spacing: .18em;
}

.reviews-section .review-card p {
  font-size: 15px;
  line-height: 1.72;
}

.reviews-section .review-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0;
}

/* --------------------------------------------------------------------------
   17. Kontakt & Formular
   -------------------------------------------------------------------------- */

.contact-card-dark {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--gk-r-xl);
  background:
    radial-gradient(80% 80% at 100% 0%, rgba(50, 114, 177, .3), transparent 62%),
    var(--gk-surface-dark);
  box-shadow: var(--gk-shadow-lg);
  color: var(--gk-text-invert);
}

.contact-card-dark::before {
  content: none;
}

.contact-card-dark h3 {
  color: var(--gk-text-invert);
  font-size: clamp(21px, 1.8vw, 26px);
}

.contact-card-dark .pill {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  color: #a8c8e8;
}

.contact-card-dark .contact-list > div {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 14px;
}

.contact-card-dark .contact-list span {
  color: rgba(255, 255, 255, .5);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-card-dark .contact-list a {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.008em;
  text-decoration: none;
}

.contact-card-dark .contact-list a:hover {
  color: #8dbbe6;
}

.form-shell {
  padding: clamp(30px, 3.6vw, 52px);
  border-radius: var(--gk-r-xl);
  background: var(--gk-surface-tint);
  box-shadow: none;
}

.form-shell::before {
  content: none;
}

.project-form input,
.project-form select,
.project-form textarea {
  min-height: 50px;
  padding: 13px 16px;
  border: 1px solid var(--gk-line-strong);
  border-radius: var(--gk-r-sm);
  background: #ffffff;
  color: var(--gk-ink);
  font-family: inherit;
  font-size: 15px;
  transition:
    border-color var(--gk-dur) var(--gk-ease),
    box-shadow var(--gk-dur) var(--gk-ease);
}

.project-form textarea {
  min-height: 130px;
  line-height: 1.6;
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
  border-color: var(--gk-blue);
  box-shadow: 0 0 0 4px rgba(50, 114, 177, .14);
  outline: none;
}

.project-form label > span {
  color: var(--gk-text-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.wizard-step legend {
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 800;
  letter-spacing: -.01em;
}

.wizard-progress {
  height: 5px;
  border-radius: var(--gk-r-pill);
  background: rgba(43, 43, 43, .08);
  overflow: hidden;
}

.wizard-progress > span {
  border-radius: var(--gk-r-pill);
  background: linear-gradient(90deg, var(--gk-blue), #5b9ad6);
  transition: width 520ms var(--gk-ease);
}

.wizard-count {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   18. Footer – dunkler Abschluss
   -------------------------------------------------------------------------- */

.site-footer {
  border-top: 0;
  background: var(--gk-surface-dark);
  color: var(--gk-text-invert-soft);
}

.site-footer .footer-inner {
  padding-top: clamp(56px, 6vw, 84px);
  padding-bottom: clamp(36px, 4vw, 52px);
}

.site-footer .brand-logo,
.site-footer .brand-name,
.site-footer .brand-name span:first-child {
  color: #ffffff;
}

.site-footer .brand-name span:last-child {
  color: #6ea8dd;
}

.site-footer .brand-tagline {
  color: rgba(255, 255, 255, .5);
}

.site-footer h3 {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a,
.site-footer span,
.site-footer small,
.site-footer address {
  color: rgba(255, 255, 255, .62);
  font-size: 14.5px;
  font-style: normal;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 22px;
  padding-bottom: 26px;
}

.site-footer .footer-bottom span,
.site-footer .footer-bottom a {
  font-size: 13.5px;
}

/* --------------------------------------------------------------------------
   19. Motion – Blur-Einblendung mit leichtem Auflauf
   Der Blur ist der ursprüngliche Effekt aus styles.css:5897. Neu ist nur die
   Aufwärtsbewegung. Wichtig: Blur läuft monoton von 14px auf 0, ohne
   Helligkeits- oder Kontraststufen dazwischen – genau die haben in der ganz
   frühen Fassung das Flackern erzeugt.
   -------------------------------------------------------------------------- */

@keyframes gkReveal {
  from {
    opacity: 0;
    filter: blur(14px) saturate(.92);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    filter: blur(0) saturate(1);
    transform: none;
  }
}

html.has-js [data-animate],
body.is-loaded [data-animate]:not(.is-visible) {
  opacity: 0;
  filter: blur(14px) saturate(.92);
  transform: translate3d(0, 20px, 0);
}

/* fill-mode backwards statt both: während der Staffel-Verzögerung gilt der
   Startzustand (kein Aufblitzen), nach dem Lauf fällt das Element auf
   filter:none zurück, statt dauerhaft mit blur(0) auf einer eigenen
   Compositing-Ebene liegen zu bleiben. */
html.has-js [data-animate].is-visible,
body.is-loaded [data-animate].is-visible {
  opacity: 1;
  filter: none;
  transform: none;
  animation: gkReveal 620ms var(--gk-ease) var(--delay, 0ms) backwards;
}

/* Gestaffelter Einlauf in den Rastern.
   Hinweis: index.html:990 setzt --delay zusätzlich inline per JS
   (index % 5 * 24ms). Inline gewinnt, diese Werte greifen also nur, wenn das
   Skript nicht läuft. */
.services-grid > [data-animate]:nth-child(2),
.references-grid > [data-animate]:nth-child(2),
.pricing-grid > [data-animate]:nth-child(2),
.hero-proof > [data-animate]:nth-child(2) {
  --delay: 90ms;
}

.services-grid > [data-animate]:nth-child(3),
.references-grid > [data-animate]:nth-child(3),
.pricing-grid > [data-animate]:nth-child(3),
.hero-proof > [data-animate]:nth-child(3) {
  --delay: 180ms;
}

.references-grid > [data-animate]:nth-child(4),
.hero-proof > [data-animate]:nth-child(4) {
  --delay: 270ms;
}

.references-grid > [data-animate]:nth-child(n + 5) {
  --delay: 340ms;
}

/* --------------------------------------------------------------------------
   19b. Hero – choreografierter Auftritt beim Laden
   Statt eines gemeinsamen Blocks laufen die Teile nacheinander ein:
   Bild setzt sich, dann Kicker, dann die beiden Headline-Zeilen als
   Maskenreveal, dann Text, Buttons und zuletzt die vier Punkte.
   Läuft identisch auf Mobil – dort ist nur das Hintergrundbild ausgeblendet
   (styles.css:6186), die Textfolge bleibt dieselbe.
   -------------------------------------------------------------------------- */

@keyframes gkHeroImage {
  0% {
    opacity: 0;
    /* Endwert ist scale(1.055), nicht 1 – styles.css:321 setzt das als
       Ruhezustand, sonst würde das Bild am Ende springen. */
    transform: scale(1.12);
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: scale(1.055);
  }
}

@keyframes gkHeroFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes gkHeroRise {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 16px, 0);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}

/* Maskenreveal: die Zeile schiebt sich hinter ihrer eigenen Kante hervor.
   Negative Endwerte, damit Unterlängen und der blaue Punkt nicht abschneiden. */
@keyframes gkHeroLine {
  from {
    opacity: 0;
    clip-path: inset(0 0 106% 0);
    transform: translate3d(0, .32em, 0);
  }

  to {
    opacity: 1;
    clip-path: inset(-30% -12% -30% -12%);
    transform: none;
  }
}

/* Der gemeinsame Reveal wird im Hero abgeschaltet, sonst liefe er zusätzlich
   über die Einzelteile. Höhere Spezifität als html.has-js [data-animate]. */
html.has-js .hero-section [data-animate],
html.has-js .hero-section [data-animate].is-visible {
  opacity: 1;
  filter: none;
  transform: none;
  animation: none;
}

html.has-js .hero-image img {
  animation: gkHeroImage 1400ms var(--gk-ease-out) backwards;
}

html.has-js .hero-overlay {
  animation: gkHeroFade 800ms ease-out backwards;
}

html.has-js .hero-content .section-kicker {
  animation: gkHeroRise 560ms var(--gk-ease) 150ms backwards;
}

html.has-js .hero-content h1 > span:nth-child(1) {
  animation: gkHeroLine 820ms var(--gk-ease) 260ms backwards;
}

html.has-js .hero-content h1 > span:nth-child(2) {
  animation: gkHeroLine 820ms var(--gk-ease) 360ms backwards;
}

html.has-js .hero-content > p {
  animation: gkHeroRise 640ms var(--gk-ease) 560ms backwards;
}

html.has-js .hero-actions > :nth-child(1) {
  animation: gkHeroRise 560ms var(--gk-ease) 680ms backwards;
}

html.has-js .hero-actions > :nth-child(2) {
  animation: gkHeroRise 560ms var(--gk-ease) 750ms backwards;
}

html.has-js .hero-section .hero-proof article:nth-child(1) {
  animation: gkHeroRise 560ms var(--gk-ease) 820ms backwards;
}

html.has-js .hero-section .hero-proof article:nth-child(2) {
  animation: gkHeroRise 560ms var(--gk-ease) 880ms backwards;
}

html.has-js .hero-section .hero-proof article:nth-child(3) {
  animation: gkHeroRise 560ms var(--gk-ease) 940ms backwards;
}

html.has-js .hero-section .hero-proof article:nth-child(4) {
  animation: gkHeroRise 560ms var(--gk-ease) 1000ms backwards;
}

/* --------------------------------------------------------------------------
   20. Fokus & Zugänglichkeit
   -------------------------------------------------------------------------- */

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gk-blue);
  outline-offset: 3px;
  border-radius: var(--gk-r-xs);
}

.process-section a:focus-visible,
.process-section button:focus-visible,
.site-footer a:focus-visible,
.contact-card-dark a:focus-visible {
  outline-color: #8dbbe6;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  /* filter muss hier mit zurückgesetzt werden – sonst bliebe der Inhalt
     dauerhaft unscharf, weil der Startzustand blur(14px) trägt. */
  html.has-js [data-animate],
  html.has-js [data-animate].is-visible,
  body.is-loaded [data-animate]:not(.is-visible) {
    opacity: 1;
    filter: none;
    animation: none;
    transform: none;
  }

  /* Hero-Choreografie aus. !important, weil die Animationsregeln oben mit
     :nth-child spezifischer sind als jeder vernünftige Reset-Selektor hier –
     ohne das liefen Headline und Buttons weiter.
     animation:none allein genügt: die Startzustände (opacity 0, clip-path,
     transform) stehen ausschließlich in den Keyframes und gelten nur über
     fill-mode backwards. Ohne Animation greifen sie gar nicht, und der
     Ruhezustand des Bildes (scale 1.055 plus Helligkeitsfilter) bleibt
     unangetastet. */
  html.has-js .hero-section,
  html.has-js .hero-section * {
    animation: none !important;
  }

  .service-card,
  .pricing-card,
  .reference-card,
  .button,
  .header-cta {
    transition: none;
  }

  .service-card:hover,
  .pricing-card:hover,
  .reference-card:hover,
  .button:hover,
  .header-cta:hover {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   21. Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 980px) {
  :root {
    --gk-section-y: clamp(64px, 9vw, 96px);
  }

  .section-heading h2,
  .projects-intro h2,
  .story-copy h2,
  .reference-copy h2,
  .contact-intro h2,
  .process-copy h2,
  .about-panel h2 {
    max-width: none;
  }

  .service-card {
    padding: 30px 26px;
  }

  .pricing-card {
    padding: 30px 26px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15.5px;
  }

  .hero-section h1 {
    letter-spacing: -.014em;
    line-height: 1.02;
  }

  .section-heading h2,
  .projects-intro h2,
  .story-copy h2,
  .reference-copy h2,
  .contact-intro h2,
  .process-copy h2,
  .about-panel h2 {
    font-size: clamp(27px, 7.4vw, 34px);
  }

  .button,
  .header-cta {
    min-height: 50px;
    padding: 0 22px;
    font-size: 14.5px;
  }

  .service-card,
  .pricing-card,
  .reviews-section .review-card {
    border-radius: var(--gk-r-md);
  }

  .references-panel,
  .merch-preview,
  .form-shell,
  .contact-card-dark {
    border-radius: var(--gk-r-lg);
  }
}
