/* ==========================================================================
   GFGH Schwerin – zentrales Stylesheet
   Design: Variante B – Bold & Professional (navy + amber)
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1e3a5f;
  --navy-dk:   #0f1f36;
  --amber:     #e07b2a;
  --amber-lt:  #f09040;
  --amber-bg:  #fff5eb;
  --bg:        #f8f7f4;
  --bg2:       #ffffff;
  --text:      #111827;
  --text-mid:  #4b5563;
  --text-dim:  #9ca3af;
  --border:    #e5e7eb;
  --r:         8px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* ─── TOPBAR ─── */
.topbar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-dim);
  height: 38px;
}
.topbar a { color: var(--text-dim); text-decoration: none; transition: color .15s; }
.topbar a:hover { color: var(--navy); }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; }

/* ─── NAVIGATION ─── */
nav.mainnav {
  background: var(--bg2);
  border-bottom: 2px solid var(--border);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(15,31,54,.06);
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 38px; width: auto; }
.nav-logo-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.1;
}
.nav-logo-label small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background .15s, color .15s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--amber);
  color: #fff;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  border-radius: var(--r);
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--amber-lt); transform: translateY(-1px); }

/* ─── HERO (Startseite) ─── */
.hero {
  height: 92vh;
  min-height: 620px;
  display: grid;
  grid-template-columns: 55% 45%;
  background: var(--navy-dk);
  position: relative;
  overflow: hidden;
}
.hero-left {
  padding: 80px 60px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-left > * { max-width: 480px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
}
.hero-tag::before { content: ''; display: block; width: 28px; height: 2px; background: var(--amber); }
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: .03em;
  margin-bottom: 32px;
  color: #fff;
}
.hero-line-1 { font-size: clamp(30px, 3.4vw, 48px); font-weight: 400; display: block; }
.hero-line-2 {
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 600;
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px var(--amber);
}
.hero-line-3 {
  font-size: clamp(17px, 1.8vw, 22px);
  display: block;
  color: rgba(255,255,255,.4);
  font-style: italic;
  font-weight: 400;
  letter-spacing: .01em;
  margin-top: 14px;
}
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  max-width: 420px;
  margin-bottom: 44px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.btn-fill {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  padding: 15px 34px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  border-radius: var(--r);
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(224,123,42,.4);
  border: none;
  cursor: pointer;
}
.btn-fill:hover { background: var(--amber-lt); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(224,123,42,.5); }

.btn-line {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.8);
  padding: 15px 34px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--r);
  transition: border-color .2s, color .2s, background .2s;
}
.btn-line:hover { border-color: rgba(255,255,255,.7); color: #fff; background: rgba(255,255,255,.06); }

.hero-scroll-hint {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.scroll-dot {
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

.hero-right { position: relative; overflow: hidden; }
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(.45) saturate(.8);
}
.hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--navy-dk) 0%, transparent 35%);
  z-index: 1; pointer-events: none;
}
.hero-deco {
  position: absolute; bottom: -20px; right: -30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 220px;
  color: rgba(255,255,255,.025);
  line-height: 1; pointer-events: none; z-index: 0; user-select: none;
}
.hero-clip {
  height: 80px;
  background: var(--navy-dk);
  clip-path: polygon(0 0, 100% 0, 100% 20%, 0 100%);
}

/* ─── PAGE-HEADER (Unterseiten) ─── */
.page-hero {
  background: var(--navy-dk);
  padding: 64px 80px 72px;
  position: relative;
  overflow: hidden;
}
.page-hero-deco {
  position: absolute; top: -30px; right: -40px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 200px;
  color: rgba(255,255,255,.025);
  line-height: 1; pointer-events: none; user-select: none;
}
.breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--amber); }
.page-hero h1.display { color: #fff; margin-bottom: 16px; }
.page-hero h1.display em { font-style: italic; color: var(--amber); }
.page-hero .lead { color: rgba(255,255,255,.65); }

/* ─── LEISTUNGSLEISTE ─── */
.strip {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 22px 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  justify-content: center;
}
.strip-item {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.strip-item::before { content: '·'; color: var(--amber); margin-right: 8px; font-weight: 800; }
.strip-item:first-child::before { content: none; }

/* ─── ABSCHNITT-GRUNDLAGEN ─── */
.section { padding: 100px 80px; }
.section--tight { padding: 64px 80px; }
.container { max-width: 1280px; margin: 0 auto; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--amber); }

h2.display, h1.display {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  color: var(--navy);
  margin-bottom: 20px;
}
h2.display em, h1.display em { font-style: italic; color: var(--amber); }

.lead { font-size: 18px; color: var(--text-mid); max-width: 600px; line-height: 1.8; }

/* ─── DIENSTLEISTUNGEN / SERVICE-CARDS ─── */
.services { background: var(--bg2); }
.services-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; gap: 40px; flex-wrap: wrap; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); }

.service-card {
  background: var(--bg2);
  padding: 40px 32px;
  position: relative;
  transition: background .2s;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--amber);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover { background: var(--amber-bg); }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 64px;
  color: rgba(30,58,95,.06);
  line-height: 1; margin-bottom: -10px;
  transition: color .3s;
}
.service-card:hover .service-num { color: rgba(224,123,42,.12); }
.service-icon { font-size: 30px; margin-bottom: 16px; display: block; }
.service-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px; color: var(--navy); margin-bottom: 12px; transition: color .2s; }
.service-card:hover h3 { color: var(--amber); }
.service-card p { font-size: 13px; color: var(--text-mid); line-height: 1.7; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--navy); text-decoration: none;
  transition: gap .2s, color .2s;
}
.service-link::after { content: '→'; transition: transform .2s; }
.service-link:hover { color: var(--amber); gap: 10px; }

/* ─── ÜBER UNS / ZWEISPALTIG ─── */
.about { background: var(--bg); }
.about .container { display: grid; grid-template-columns: 5fr 4fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { border-radius: 12px; overflow: hidden; box-shadow: 0 24px 64px rgba(15,31,54,.15); min-height: 320px; background: var(--navy); }
.about-img-main img { width: 100%; display: block; transition: transform .5s ease; }
.about-img-main:hover img { transform: scale(1.03); }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--amber); color: #fff;
  border-radius: 12px; padding: 20px 24px; text-align: center;
  box-shadow: 0 8px 32px rgba(224,123,42,.4);
}
.about-badge-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 38px; line-height: 1; display: block; }
.about-badge-text { font-size: 12px; font-weight: 600; opacity: .85; }
.about-content { padding: 20px 0; }
.about-content p { color: var(--text-mid); margin-bottom: 20px; font-size: 16px; }
.about-features { list-style: none; margin: 32px 0; display: flex; flex-direction: column; gap: 0; }
.about-features li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text); font-weight: 500;
}
.about-features li:last-child { border-bottom: none; }
.about-features li::before { content: ''; width: 8px; height: 8px; background: var(--amber); border-radius: 50%; flex-shrink: 0; }

/* ─── SORTIMENT / KATEGORIEN ─── */
.categories { background: var(--bg2); }
.categories .lead { margin-bottom: 56px; }

.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; gap: 16px; }
.cat-card { position: relative; overflow: hidden; border-radius: 10px; }
.cat-card--large { grid-column: span 2; }
.cat-card--tall { grid-row: span 2; }
.cat-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--navy); }
.cat-card--tall .cat-card-img { aspect-ratio: unset; height: 100%; }
.cat-card--large .cat-card-img { aspect-ratio: 16/7; }
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.5) saturate(.75); transition: transform .5s ease, filter .4s; }
.cat-card:hover .cat-card-img img { transform: scale(1.07); filter: brightness(.35) saturate(.6); }
.cat-card-body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(15,31,54,.85) 0%, transparent 55%);
}
.cat-card-tag { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }
.cat-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 22px; color: #fff; margin-bottom: 6px; }
.cat-card--large h3 { font-size: 32px; }
.cat-card p { font-size: 13px; color: rgba(255,255,255,.65); }

/* ─── KENNZAHLEN ─── */
.stats { background: var(--navy); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { padding: 56px 40px; border-right: 1px solid rgba(255,255,255,.08); position: relative; overflow: hidden; transition: background .2s; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,.03); }
.stat-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(52px, 4.5vw, 30px); color: #fff; line-height: 1; display: block; margin-bottom: 8px; }
.stat-num span { color: var(--amber); }
.stat-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; }

/* ─── GENERISCHE CARD-GRIDS (Zielgruppen, Downloads, Jobs, Ausstattung) ─── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.info-card {
  background: var(--bg2);
  border-radius: 12px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.info-card:hover { border-color: var(--amber); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(30,58,95,.1); }
.info-icon { font-size: 36px; margin-bottom: 18px; display: block; }
.info-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 19px; color: var(--navy); margin-bottom: 10px; }
.info-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.info-examples { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-dim); }

/* ─── PARTNER ─── */
.partners { background: var(--bg); }
.partners-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
.partners-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.partner-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 10px;
  aspect-ratio: 2/1; display: flex; align-items: center; justify-content: center;
  padding: 16px 20px; text-align: center;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; color: var(--text-mid);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.partner-card:hover { border-color: var(--navy); box-shadow: 0 4px 20px rgba(30,58,95,.1); transform: translateY(-2px); color: var(--navy); }
.partner-card img {
  max-width: 100%; max-height: 38px; object-fit: contain;
  filter: grayscale(1) opacity(.6);
  transition: filter .2s;
}
.partner-card:hover img { filter: grayscale(0) opacity(1); }

/* ─── KONTAKT CTA ─── */
.cta { background: var(--bg); }
.cta .container {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px;
  padding: 56px 64px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.cta h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(26px, 3vw, 38px); color: var(--navy); line-height: 1.15; margin-bottom: 10px; }
.cta p { color: var(--text-mid); font-size: 16px; }
.cta-buttons { display: flex; gap: 14px; flex-direction: column; }
.btn-outline {
  display: inline-block; border: 1.5px solid var(--navy); color: var(--navy);
  padding: 14px 28px; font-size: 14px; font-weight: 700;
  text-decoration: none; border-radius: var(--r); text-align: center;
  transition: border-color .2s, background .2s, color .2s; white-space: nowrap;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ─── PROSE (Markdown-Inhalt auf Unterseiten) ─── */
.prose { max-width: 760px; }
.prose--wide { max-width: none; }
.prose h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 26px; color: var(--navy); margin: 40px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 19px; color: var(--navy); margin: 28px 0 12px; }
.prose p { color: var(--text-mid); margin-bottom: 16px; font-size: 16px; }
.prose a { color: var(--amber); }
.prose strong { color: var(--text); }
.prose ul, .prose ol { margin: 0 0 20px 20px; color: var(--text-mid); }
.prose li { margin-bottom: 8px; }
.prose ul li::marker { color: var(--amber); }
.prose table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.prose th, .prose td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--border); }
.prose th { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--navy); }
.prose blockquote { border-left: 3px solid var(--amber); padding-left: 20px; color: var(--text-mid); font-style: italic; margin: 24px 0; }

/* ─── KONTAKT-SEITE ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-list { list-style: none; }
.contact-list li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-list li:last-child { border-bottom: none; }
.contact-icon { font-size: 20px; flex-shrink: 0; }
.contact-list strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-dim); margin-bottom: 4px; }
.contact-list a { color: var(--navy); text-decoration: none; font-weight: 600; }
.contact-list a:hover { color: var(--amber); }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: var(--r);
  font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text);
  background: var(--bg2);
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--amber); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy-dk);
  color: rgba(255,255,255,.7);
  padding: 72px 80px 36px;
}
.footer-top {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 56px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 32px;
}
.footer-brand-logo p { font-size: 13px; color: rgba(255,255,255,.5); max-width: 240px; line-height: 1.8; }
.footer-brand-name { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 18px; color: #fff; margin-bottom: 18px; }
footer h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
footer ul { list-style: none; }
footer ul li + li { margin-top: 10px; }
footer ul a { color: rgba(255,255,255,.5); text-decoration: none; font-size: 13px; transition: color .15s; }
footer ul a:hover { color: var(--amber); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.35); flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: rgba(255,255,255,.35); text-decoration: none; transition: color .15s; }
.footer-bottom a:hover { color: var(--amber); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .section, .section--tight { padding: 72px 40px; }
  .page-hero { padding: 48px 40px 56px; }
  footer { padding: 56px 40px 32px; }
  nav.mainnav, .topbar { padding-left: 32px; padding-right: 32px; }
  .hero-left { padding: 60px 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .cat-card--large { grid-column: span 2; }
  .cat-card--tall { grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .topbar { display: none; }
  .hero { height: auto; min-height: 92vh; grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { min-height: 90vh; padding: 60px 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about .container { grid-template-columns: 1fr; }
  .card-grid, .card-grid--2 { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .cta .container { grid-template-columns: 1fr; gap: 32px; }
  .cta-buttons { flex-direction: row; }
}
@media (max-width: 580px) {
  .section, .section--tight { padding: 56px 24px; }
  .page-hero { padding: 40px 24px 48px; }
  .hero-left { padding: 48px 24px; }
  .services-grid { grid-template-columns: 1fr; background: none; gap: 16px; }
  .service-card { border: 1px solid var(--border); border-radius: var(--r); }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card--large { grid-column: span 1; }
  .card-grid, .card-grid--2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-buttons { flex-direction: column; }
}
