/* ============================================================
   IT Support Ulm – Global Stylesheet
   Palette: Kobaltblauer Himmel · ADMIN INTELLIGENCE GmbH
   ============================================================ */

/* ── LOCAL FONTS ─────────────────────────────────────────── */
@font-face {
  font-family: 'Cantata One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/references/fonts/cantata-one-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;
}
@font-face {
  font-family: 'Cantata One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/references/fonts/cantata-one-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: 'Google Sans Flex';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url('/references/fonts/google-sans-flex-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;
}
@font-face {
  font-family: 'Google Sans Flex';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url('/references/fonts/google-sans-flex-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;
}

/* ── CUSTOM PROPERTIES ───────────────────────────────────── */
:root {
  --color-cobalt:       #0047ab;
  --color-navy:         #000080;
  --color-ice:          #82c8e5;
  --color-steel:        #6d8196;
  --color-cobalt-dark:  #003a8c;
  --color-cobalt-light: #e8f0fb;
  --color-navy-light:   #0a0a6e;
  --color-ice-dark:     #5ab3d4;
  --color-steel-light:  #a8b9c8;
  --color-white:        #ffffff;
  --color-bg:           #f4f7fb;
  --color-surface:      #ffffff;
  --color-border:       #dde3eb;
  --color-text:         #1a2332;
  --color-text-muted:   #5a6a7a;
  --color-success:      #22c55e;
  --color-warning:      #f59e0b;
  --color-error:        #ef4444;

  --font-sans:    'Google Sans Flex', system-ui, sans-serif;
  --font-heading: 'Cantata One', Georgia, serif;
  --font-mono:    ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, monospace;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;

  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-24: 6rem;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   20px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,71,171,.12), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 30px rgba(0,71,171,.16), 0 4px 8px rgba(0,0,0,.08);

  --transition: 150ms ease;
  --nav-h: 72px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: var(--text-base);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2 { font-family: var(--font-heading); font-weight: 400; font-synthesis: none; line-height: 1.15; }
h3, h4, h5, h6 { font-family: var(--font-sans); font-weight: 700; line-height: 1.3; }

/* ── COOKIE BANNER ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--color-navy);
  color: rgba(255,255,255,.9);
  padding: var(--sp-4) var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  font-size: var(--text-sm);
  transform: translateY(0);
  transition: transform .3s ease;
}
.cookie-banner.hidden { transform: translateY(100%); pointer-events: none; }
.cookie-banner p { flex: 1; min-width: 200px; }
.cookie-banner p a { color: var(--color-ice); text-decoration: underline; }
.cookie-btns { display: flex; gap: var(--sp-3); flex-shrink: 0; }
.cookie-accept {
  background: var(--color-cobalt);
  color: white;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-accept:hover { background: var(--color-cobalt-dark); }
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.25);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.cookie-decline:hover { border-color: rgba(255,255,255,.5); color: white; }

/* ── NAVIGATION ──────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--color-navy);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--sp-8);
  box-shadow: 0 2px 16px rgba(0,0,80,.3);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-nav.scrolled {
  background: rgba(0,0,128,.97);
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}
.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  color: white;
  font-weight: 800;
  font-size: var(--text-base);
  line-height: 1.2;
  letter-spacing: -.01em;
}
.nav-logo span { color: var(--color-ice); font-size: var(--text-xs); font-weight: 400; letter-spacing: 0; }
.nav-logo-img { height: 28px; width: auto; display: block; opacity: .8; }
.footer-logo-img { height: 44px; width: auto; display: block; margin-bottom: var(--sp-4); opacity: .9; }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-md);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--color-ice);
  background: rgba(255,255,255,.06);
}
/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: var(--sp-2) 0;
  z-index: 100;
  margin-top: 8px;
}
/* Invisible bridge covers the 8px gap so :hover doesn't drop mid-travel */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 8px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: var(--sp-2) var(--sp-4);
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: 0;
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown-menu a:hover { background: var(--color-cobalt-light); color: var(--color-cobalt); }
.nav-cta {
  background: var(--color-cobalt);
  color: white !important;
  padding: var(--sp-2) var(--sp-4) !important;
  border-radius: var(--radius-md) !important;
  font-weight: 600 !important;
  transition: background var(--transition), box-shadow var(--transition) !important;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--color-cobalt-dark) !important; box-shadow: var(--shadow-md) !important; color: white !important; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-ice);
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: opacity var(--transition);
}
.nav-phone:hover { opacity: .75; }

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  flex-direction: column;
  gap: 5px;
  color: white;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--color-navy);
  z-index: 999;
  padding: var(--sp-4) var(--sp-6) var(--sp-6);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  color: rgba(255,255,255,.85);
  font-size: var(--text-base);
  font-weight: 500;
  padding: var(--sp-3) var(--sp-2);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--color-ice); }
.nav-mobile a.sub { padding-left: var(--sp-6); font-size: var(--text-sm); color: rgba(255,255,255,.6); }
.nav-mobile a.sub:hover { color: var(--color-ice); }
.nav-mobile .mobile-cta {
  display: block;
  background: var(--color-cobalt);
  color: white;
  text-align: center;
  padding: var(--sp-3);
  border-radius: var(--radius-md);
  font-weight: 600;
  margin-top: var(--sp-4);
  border: none;
}
.nav-mobile a.nav-mobile-phone {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-ice);
  padding-bottom: var(--sp-4);
  border-bottom: 2px solid rgba(130,200,229,.2);
  margin-bottom: var(--sp-2);
}
.nav-mobile a.nav-mobile-phone:hover { color: white; }

/* ── LAYOUT HELPERS ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-8);
}
.container-sm {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--sp-8);
}
.section { padding: var(--sp-24) 0; }
.section-sm { padding: var(--sp-16) 0; }
.section-alt { background: var(--color-cobalt-light); }
.section-dark {
  background: var(--color-navy);
  color: white;
}
.pt-nav { padding-top: var(--nav-h); }

/* ── PAGE HEADER ─────────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-cobalt) 70%, var(--color-ice-dark) 100%);
  padding: calc(var(--nav-h) + var(--sp-16)) 0 var(--sp-16);
  color: white;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-header-content { position: relative; z-index: 1; }
.page-header-tag {
  display: inline-block;
  background: rgba(130,200,229,.2);
  border: 1px solid rgba(130,200,229,.4);
  color: var(--color-ice);
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--sp-4);
}
.page-header h1 {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  letter-spacing: -.02em;
  margin-bottom: var(--sp-4);
}
.page-header p {
  font-size: var(--text-lg);
  opacity: .85;
  max-width: 600px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,.6);
  margin-top: var(--sp-6);
}
.breadcrumb a { color: var(--color-ice); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span::before { content: '›'; margin-right: var(--sp-2); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/references/assets/www.it-support-ulm.de/assets/images/ulmer-muenster.jpg') center center / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,128,.82) 0%, rgba(0,71,171,.72) 55%, rgba(90,179,212,.35) 100%);
}
.hero-pattern {
  display: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  color: white;
}
.hero-tag {
  display: inline-block;
  background: rgba(130,200,229,.2);
  border: 1px solid rgba(130,200,229,.4);
  color: var(--color-ice);
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--sp-6);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(var(--text-3xl), 6vw, var(--text-5xl));
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: var(--sp-6);
  max-width: 800px;
}
.hero-sub {
  font-size: clamp(var(--text-base), 2vw, var(--text-xl));
  opacity: .85;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}
.hero-btns {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 1;
  animation: scroll-float 2.4s cubic-bezier(0.37, 0, 0.63, 1) infinite;
}
.hero-scroll:hover { color: rgba(255,255,255,.85); }
@keyframes scroll-float {
  0%   { transform: translateX(-50%) translateY(0);    opacity: .5; }
  50%  { transform: translateX(-50%) translateY(8px);  opacity: .9; }
  100% { transform: translateX(-50%) translateY(0);    opacity: .5; }
}
.hero-scroll svg { width: 20px; height: 20px; opacity: .6; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--color-cobalt); color: white; }
.btn-primary:hover { background: var(--color-cobalt-dark); box-shadow: var(--shadow-md); color: white; }
.btn-dark { background: var(--color-navy); color: white; }
.btn-dark:hover { background: #000060; box-shadow: var(--shadow-md); color: white; }
.btn-outline { background: transparent; color: var(--color-cobalt); border-color: var(--color-cobalt); }
.btn-outline:hover { background: var(--color-cobalt-light); color: var(--color-cobalt); }
.btn-outline-white { background: transparent; color: white; border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: white; color: white; }
.btn-ghost { background: transparent; color: var(--color-cobalt); }
.btn-ghost:hover { background: var(--color-cobalt-light); color: var(--color-cobalt); }
.btn-ice { background: var(--color-ice); color: var(--color-navy); }
.btn-ice:hover { background: var(--color-ice-dark); color: white; }
.btn-sm { padding: 0.4rem 1rem; font-size: var(--text-sm); }
.btn-lg { padding: 0.875rem 2rem; font-size: var(--text-lg); }
.btn-pill { border-radius: var(--radius-full); }
.btn-block { width: 100%; justify-content: center; }

/* ── SECTION HEADINGS ────────────────────────────────────── */
.section-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--sp-12);
}
.section-eyebrow {
  display: inline-block;
  color: var(--color-cobalt);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}
.section-eyebrow-white {
  color: var(--color-ice);
}
.section-heading h2 {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  color: var(--color-navy);
  margin-bottom: var(--sp-4);
  line-height: 1.15;
}
.section-heading.white h2 { color: white; }
.section-heading p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 65ch;
  margin: 0 auto;
}
.section-heading.white p { color: rgba(255,255,255,.75); }
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-cobalt), var(--color-ice));
  border-radius: var(--radius-full);
  margin: var(--sp-4) auto 0;
}

/* ── CARDS ───────────────────────────────────────────────── */
.card-grid {
  display: grid;
  gap: var(--sp-6);
}
.card-grid-2 { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.card-grid-4 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--color-cobalt-light);
}
.card-icon {
  width: 56px;
  height: 56px;
  background: var(--color-cobalt-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--sp-6);
  flex-shrink: 0;
}
.card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--sp-3);
}
.card p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
  color: var(--color-cobalt);
  font-size: var(--text-sm);
  font-weight: 700;
  transition: gap var(--transition);
}
.card-link:hover { gap: var(--sp-3); }
.card-link::after { content: '→'; }

/* Service card variant */
.service-card {
  border-top: 3px solid var(--color-cobalt);
}
.service-card:hover { border-top-color: var(--color-ice-dark); }

/* Feature list */
.feature-list {
  margin-top: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}
.feature-list li::before {
  content: '✓';
  color: var(--color-cobalt);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── INTRO SECTION ───────────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.intro-text h2 {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  color: var(--color-navy);
  margin-bottom: var(--sp-4);
  line-height: 1.2;
}
.intro-text p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}
.intro-credo {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
  margin-top: var(--sp-6);
}
.credo-badge {
  background: var(--color-cobalt-light);
  color: var(--color-cobalt);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
  border: 1px solid rgba(0,71,171,.15);
}
.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

/* ── INTRO CENTERED + STAT STRIP ────────────────────────── */
.intro-centered {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-12);
}
.intro-centered h2 {
  font-size: clamp(var(--text-3xl), 4.5vw, var(--text-5xl));
  color: var(--color-navy);
  margin-bottom: var(--sp-4);
  line-height: 1.15;
}
.intro-centered p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-6);
}
.intro-centered .intro-credo { justify-content: center; }
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.stat-strip-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-6) var(--sp-4);
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  transition: box-shadow var(--transition), transform var(--transition);
}
.stat-strip-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stat-strip-icon {
  width: 44px;
  height: 44px;
  background: var(--color-cobalt-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cobalt);
  margin-bottom: var(--sp-1);
}
.stat-strip-number {
  font-size: clamp(var(--text-2xl), 2.5vw, var(--text-4xl));
  font-weight: 400;
  font-family: var(--font-heading);
  color: var(--color-cobalt);
  line-height: 1;
  font-synthesis: none;
}
.stat-strip-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ── COVERAGE BAND ──────────────────────────────────────── */
.coverage-band {
  background: linear-gradient(135deg, var(--color-navy) 0%, #0055cc 100%);
  border-radius: var(--radius-xl);
  padding: var(--sp-12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}
.coverage-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-ice);
  margin-bottom: var(--sp-3);
}
.coverage-band-text h2 {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  color: var(--color-white);
  margin-bottom: var(--sp-4);
  line-height: 1.2;
}
.coverage-band-text p {
  font-size: var(--text-base);
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  margin-bottom: var(--sp-3);
}
.coverage-feat-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
.coverage-feat {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}
.coverage-feat-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ice);
  flex-shrink: 0;
}
.coverage-feat strong {
  display: block;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 2px;
}
.coverage-feat p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.62);
  margin: 0;
  line-height: 1.5;
}
.stat-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-number {
  font-size: var(--text-4xl);
  font-weight: 400;
  font-synthesis: none;
  color: var(--color-cobalt);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: var(--sp-1);
}
.stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ── TECH LOGOS / PARTNER STRIP ──────────────────────────── */
.tech-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  align-items: center;
}
.tech-badge {
  display: inline-flex;
  align-items: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.tech-badge:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }

/* ── CUSTOMER LOGOS CAROUSEL ─────────────────────────────── */
.logo-carousel-wrap {
  overflow: hidden;
  position: relative;
  padding: var(--sp-4) 0;
}
.logo-carousel-wrap::before,
.logo-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.logo-carousel-wrap::before { left: 0; background: linear-gradient(90deg, var(--color-bg), transparent); }
.logo-carousel-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--color-bg), transparent); }
.section-alt .logo-carousel-wrap::before { background: linear-gradient(90deg, var(--color-cobalt-light), transparent); }
.section-alt .logo-carousel-wrap::after  { background: linear-gradient(-90deg, var(--color-cobalt-light), transparent); }
.logo-carousel {
  display: flex;
  gap: var(--sp-6);
  animation: scroll-logos 80s linear infinite;
  width: max-content;
}
.logo-carousel:hover { animation-play-state: paused; }
@keyframes scroll-logos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-item {
  flex-shrink: 0;
  width: 140px;
  height: 70px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-3);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  width: auto;
  height: auto;
  filter: grayscale(60%);
  transition: filter var(--transition);
}
.logo-item:hover img { filter: grayscale(0%); }

/* ── TESTIMONIALS CAROUSEL ───────────────────────────────── */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform .5s ease;
}
.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 var(--sp-2);
}
.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-12) var(--sp-8);
  text-align: center;
  box-shadow: var(--shadow-md);
  max-width: 740px;
  margin: 0 auto;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--sp-6);
  left: var(--sp-8);
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--color-cobalt-light);
  font-weight: 700;
}
.testimonial-quote {
  font-size: var(--text-lg);
  color: var(--color-text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: var(--sp-8);
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
}
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 3px solid var(--color-cobalt-light);
}
.testimonial-avatar-initials {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  border: 3px solid var(--color-cobalt-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--text-sm);
  color: white;
  flex-shrink: 0;
  letter-spacing: .04em;
  user-select: none;
}
.testimonial-name {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-navy);
}
.testimonial-company {
  font-size: var(--text-sm);
  color: var(--color-cobalt);
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-cobalt);
  background: transparent;
  color: var(--color-cobalt);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  font-size: var(--text-lg);
}
.slider-btn:hover { background: var(--color-cobalt); color: white; }
.slider-dots {
  display: flex;
  gap: var(--sp-2);
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-border);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.slider-dot.active {
  background: var(--color-cobalt);
  transform: scale(1.3);
}

/* ── JOBS BANNER ─────────────────────────────────────────── */
.jobs-banner {
  background: linear-gradient(135deg, var(--color-cobalt) 0%, var(--color-cobalt-dark) 100%);
  border-radius: var(--radius-xl);
  padding: var(--sp-12) var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
  color: white;
  overflow: hidden;
  position: relative;
}
.jobs-banner::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.04);
}
.jobs-banner-text h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--sp-2);
}
.jobs-banner-text p { opacity: .85; font-size: var(--text-base); }

/* ── FOOTER CTA ──────────────────────────────────────────── */
.footer-cta {
  background: var(--color-cobalt-light);
  text-align: center;
  padding: var(--sp-16) 0;
}
.footer-cta h2 {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  color: var(--color-navy);
  margin-bottom: var(--sp-4);
}
.footer-cta p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--sp-8);
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}
.footer-cta-btns { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--color-navy);
  color: rgba(255,255,255,.7);
  padding: var(--sp-16) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-12);
}
.footer-brand-name {
  color: white;
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: var(--sp-1);
  font-family: var(--font-sans);
}
.footer-brand-sub {
  color: var(--color-ice);
  font-size: var(--text-sm);
  margin-bottom: var(--sp-4);
}
.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  margin-bottom: var(--sp-3);
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; opacity: .6; }
.footer-contact-item a { color: var(--color-ice); transition: color var(--transition); }
.footer-contact-item a:hover { color: white; }

.footer-col h4 {
  color: white;
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--sp-4);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-col ul li { margin-bottom: var(--sp-2); }
.footer-col ul li a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--color-ice); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: var(--sp-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  font-size: var(--text-sm);
}
.footer-bottom-links {
  display: flex;
  gap: var(--sp-6);
}
.footer-bottom-links a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--color-ice); }

/* ── BADGES / TAGS ───────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
}
.badge-primary { background: var(--color-cobalt-light); color: var(--color-cobalt); border: 1px solid rgba(0,71,171,.2); }
.badge-navy    { background: var(--color-navy); color: white; }
.badge-ice     { background: var(--color-ice); color: var(--color-navy); }
.badge-steel   { background: #e8edf2; color: #3d5166; } /* #3d5166 on #e8edf2 = 6.95:1 contrast (WCAG AA ✓) */
.badge-success { background: #dcfce7; color: #16a34a; }
.badge-row { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

/* ── FORM ────────────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem var(--sp-4);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-cobalt);
  box-shadow: 0 0 0 3px rgba(0,71,171,.12);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-hint { font-size: var(--text-xs); color: var(--color-text-muted); margin-top: -var(--sp-1); }
.form-success { color: var(--color-success); font-size: var(--text-sm); margin-top: var(--sp-2); display: none; }
.form-error-msg { color: var(--color-error); font-size: var(--text-sm); margin-top: var(--sp-2); display: none; }
.form-field-error { color: var(--color-error); font-size: var(--text-xs); display: none; }
.form-field-error:not(:empty) { display: block; }

/* ── CONTACT PAGE LAYOUT ─────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-12);
  align-items: start;
}
.contact-info { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--sp-8); box-shadow: var(--shadow-sm); }
.contact-info h3 { font-size: var(--text-xl); font-weight: 700; color: var(--color-navy); margin-bottom: var(--sp-6); }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--color-cobalt-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cobalt);
  flex-shrink: 0;
  font-size: 1.25rem;
}
.contact-detail-text strong { display: block; font-size: var(--text-sm); font-weight: 700; color: var(--color-navy); margin-bottom: 2px; }
.contact-detail-text a { color: var(--color-cobalt); font-size: var(--text-sm); }
.contact-detail-text a:hover { text-decoration: underline; }
.contact-detail-text p { color: var(--color-text-muted); font-size: var(--text-sm); }
.contact-form-wrap { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--sp-8); box-shadow: var(--shadow-sm); }
.contact-form-wrap h3 { font-size: var(--text-xl); font-weight: 700; color: var(--color-navy); margin-bottom: var(--sp-6); }

/* ── PRICING CARDS ───────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--sp-6);
}
.pricing-card {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-cobalt);
}
.pricing-card.featured {
  border-color: var(--color-cobalt);
  background: linear-gradient(135deg, var(--color-cobalt-light) 0%, white 100%);
}
.pricing-icon {
  font-size: 2.5rem;
  margin-bottom: var(--sp-4);
}
.pricing-card h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--sp-2);
}
.pricing-price {
  font-size: var(--text-4xl);
  font-weight: 400;
  font-synthesis: none;
  color: var(--color-cobalt);
  font-family: var(--font-heading);
  margin-bottom: var(--sp-4);
}
.pricing-price span {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text-muted);
}
.pricing-desc {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

/* ── LEGAL PAGES ─────────────────────────────────────────── */
.legal-content {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-12);
  box-shadow: var(--shadow-sm);
}
.legal-content h2 {
  font-size: var(--text-2xl);
  color: var(--color-navy);
  margin: var(--sp-8) 0 var(--sp-4);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: var(--text-lg);
  color: var(--color-navy);
  margin: var(--sp-6) 0 var(--sp-3);
}
.legal-content p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}
.legal-content address {
  font-style: normal;
  color: var(--color-text-muted);
  line-height: 1.8;
}
.legal-content a { color: var(--color-cobalt); }
.legal-content a:hover { text-decoration: underline; }

/* ── KOMPETENZ DETAIL ────────────────────────────────────── */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}
.detail-content h2 {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  color: var(--color-navy);
  margin-bottom: var(--sp-4);
  line-height: 1.2;
}
.detail-content p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}
.detail-sidebar {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-4));
}
.detail-sidebar h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--sp-6);
}

/* ── REFERENZEN PAGE ─────────────────────────────────────── */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--sp-4);
}
.logo-grid-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
}
.logo-grid-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.logo-grid-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(40%);
  transition: filter var(--transition);
}
.logo-grid-item:hover img { filter: grayscale(0%); }

/* ── JOBS PAGE ───────────────────────────────────────────── */
.job-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-6);
  flex-wrap: wrap;
  transition: box-shadow var(--transition), transform var(--transition);
}
.job-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.job-card .btn { flex-shrink: 0; margin-top: var(--sp-1); }
.job-title { font-size: var(--text-xl); font-weight: 700; color: var(--color-navy); margin-bottom: var(--sp-2); }
.job-meta { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* ── ÜBER UNS PAGE ───────────────────────────────────────── */
.team-values {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-6);
}
.value-card {
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.value-icon { font-size: 2.5rem; margin-bottom: var(--sp-4); }
.value-card h3 { font-size: var(--text-lg); font-weight: 700; color: var(--color-navy); margin-bottom: var(--sp-2); }
.value-card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; }

/* ── STATIC TESTIMONIAL CARD (Referenzen) ────────────────── */
.testimonial {
  background: var(--color-cobalt-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-cobalt);
  opacity: .25;
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-4);
}
.testimonial p {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
  padding-top: var(--sp-6);
}
.testimonial strong {
  font-size: var(--text-sm);
  color: var(--color-navy);
  font-weight: 700;
}
.testimonial-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: var(--sp-3);
  border: 2px solid var(--color-cobalt);
}

/* ── SERVICES GRID ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--sp-6);
  align-items: stretch;
}
.service-featured {
  background: linear-gradient(145deg, var(--color-navy) 0%, var(--color-cobalt) 100%);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
.service-featured-eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-ice);
}
.service-featured h3 {
  font-size: var(--text-2xl);
  color: white;
  line-height: 1.2;
  margin: 0;
}
.service-featured > p {
  font-size: var(--text-base);
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin: 0;
}
.service-featured-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
  margin: 0;
}
.service-featured-benefits li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,.9);
}
.service-featured-benefits li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(130,200,229,.2);
  color: var(--color-ice);
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.services-secondary {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
.service-secondary {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-secondary:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-secondary-icon { font-size: 1.75rem; line-height: 1; }
.service-secondary h3 {
  font-size: var(--text-xl);
  color: var(--color-navy);
  margin: 0;
}
.service-secondary > p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
  margin: 0;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .intro-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .coverage-band { grid-template-columns: 1fr; padding: var(--sp-8); gap: var(--sp-8); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 var(--sp-4); }
  .container-sm { padding: 0 var(--sp-4); }
  .section { padding: var(--sp-16) 0; }
  .section-sm { padding: var(--sp-12) 0; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { min-height: 80vh; }
  .hero-btns { flex-direction: column; align-items: flex-start; }

  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .jobs-banner { flex-direction: column; text-align: center; }
  .footer-cta-btns { flex-direction: column; align-items: center; }
  .legal-content { padding: var(--sp-6); }
  .section-heading { margin-bottom: var(--sp-8); }
  .intro-stats { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .intro-centered { margin-bottom: var(--sp-8); }
  .coverage-band { padding: var(--sp-6); border-radius: var(--radius-lg); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: var(--text-3xl); }
  .hero-scroll { display: none; }
  .testimonial-card { padding: var(--sp-8) var(--sp-4); }
  .testimonial-card::before { font-size: 4rem; }
}

/* ── FORM ERROR STATE ─────────────────────────────────────── */
.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .12);
}

/* ── ACCESSIBILITY: BODY-TEXT LINK CONTRAST (WCAG 2.1 AA) ─── */
/*
   Global reset strips all link styling (color:inherit; text-decoration:none).
   Re-apply underline + a compliant colour for links inside prose content:
   #0047ab on white (#fff) = 7.32:1 contrast ✓ (requires ≥ 4.5:1)
   Underline satisfies WCAG 1.4.1 (non-colour link indicator).
*/
p a,
.prose a,
.detail-content p a,
.form-hint a,
.legal-content p a,
.legal-content li a,
.contact-detail-text a {
  color: var(--color-cobalt);       /* #0047ab – 7.32:1 on white ✓ */
  text-decoration: underline;
  text-underline-offset: 2px;
}
p a:hover,
.prose a:hover,
.detail-content p a:hover,
.form-hint a:hover,
.legal-content p a:hover,
.legal-content li a:hover,
.contact-detail-text a:hover {
  color: var(--color-cobalt-dark);  /* #003a8c – even higher contrast on hover */
}

/* ── ACCESSIBILITY: MOBILE TOUCH TARGETS (WCAG 2.5.5 ≥ 44 × 44 px) ── */
@media (max-width: 768px) {
  /* Footer navigation column links */
  .footer-col ul li {
    margin-bottom: 0;               /* collapse margin; let padding carry spacing */
  }
  .footer-col ul li a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: var(--sp-2) 0;        /* adds ~8px top/bottom on top of line-height */
  }

  /* Footer legal links (Impressum · Datenschutz · AGB) */
  .footer-bottom-links {
    gap: 0;
    flex-wrap: wrap;
  }
  .footer-bottom-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: var(--sp-2) var(--sp-3);
  }

  /* Mobile nav — top-level items already approach 44 px;
     make sub-items (smaller font) explicitly meet the target */
  .nav-mobile a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding-top: var(--sp-3);
    padding-bottom: var(--sp-3);
  }
  .nav-mobile a.sub {
    min-height: 44px;
    padding-top: var(--sp-3);
    padding-bottom: var(--sp-3);
  }
}

/* ── REDUCED MOTION ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  /* Stop logo carousel scroll */
  .logo-carousel { animation: none; }
  /* Stop hero scroll-indicator float */
  .hero-scroll { animation: none; }
  /* Remove card lift on hover */
  .card:hover,
  .logo-grid-item:hover,
  .job-card:hover,
  .value-card:hover,
  .tech-badge:hover,
  .pricing-card:hover,
  .service-secondary:hover { transform: none; }
  /* Slow down all transitions to imperceptible (preserve behaviour, remove flash) */
  .btn,
  .card,
  .nav-links a,
  .nav-dropdown-menu a,
  .cookie-accept,
  .cookie-decline,
  .form-input,
  .form-textarea,
  .form-select,
  .slider-btn,
  .slider-dot,
  .footer-col ul li a,
  .footer-contact-item a,
  .footer-bottom-links a { transition-duration: 0.01ms !important; }
  /* Testimonial track transition */
  .testimonial-track { transition-duration: 0.01ms !important; }
}
