/* =============================================
   SELF-HOSTED FONTS — Inter
   Dateien herunterladen: https://rsms.me/inter/
   Ablegen unter: fonts/inter/*.woff2
============================================= */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/inter/web/Inter-Light.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter/web/Inter-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter/web/Inter-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter/web/Inter-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/inter/web/Inter-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/inter/web/Inter-ExtraBold.woff2') format('woff2');
}

/* =============================================
   CUSTOM PROPERTIES
============================================= */
:root {
  --navy:       #1e407a;
  --navy-light: #2a56b0;
  --gold:       #C9952A;
  --gold-light: #dba83a;
  --teal:       #1B6B5C;
  --teal-light: #25876e;
  --bg:         #F5F3EE;
  --white:      #FFFFFF;
  --text:       #111827;
  --text-mid:   #4B5563;
  --text-dim:   #9CA3AF;
  --border:     #E5E7EB;

  --font: 'Inter', 'Noto Sans SC', -apple-system, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --max-w: 1200px;
  --r: 12px;
  --r-sm: 8px;

  --sh-sm: 0 1px 4px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --sh:    0 4px 20px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --sh-lg: 0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);

  --t: 0.25s ease;
}

/* =============================================
   RESET
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

/* =============================================
   LAYOUT
============================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all var(--t);
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--gold);
  color: #fff;
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,149,42,0.35);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}
.btn--nav {
  background: var(--gold);
  color: #fff;
  padding: 10px 20px;
  font-size: 0.875rem;
}
.btn--nav:hover { background: var(--gold-light); }
.btn--full { width: 100%; }

/* =============================================
   SCROLL ANIMATION
============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* =============================================
   SECTION HEADERS
============================================= */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header--light .section-title { color: #fff; }
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* =============================================
   NAVIGATION
============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background var(--t), box-shadow var(--t);
}
.nav.scrolled {
  background: #fff;
  box-shadow: var(--sh-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark { width: 52px; height: 36px; }
.logo-mark--sm { width: 40px; height: 28px; }
.logo-text { display: flex; flex-direction: column; }
.logo-text__main {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1;
  transition: color var(--t);
}
.logo-text__main--light { color: #fff; }
.logo-text__sub {
  font-size: 0.58rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 3px;
  transition: color var(--t);
}
.logo-text__sub--dim { color: rgba(255,255,255,0.3); }
.nav.scrolled .logo-text__main  { color: var(--navy); }
.nav.scrolled .logo-text__sub   { color: var(--text-mid); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.93);
  padding: 8px 12px;
  border-radius: 6px;
  transition: all var(--t);
}
.nav__links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav.scrolled .nav__links a { color: var(--text-mid); }
.nav.scrolled .nav__links a:hover { color: var(--navy); background: var(--bg); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
}
.lang-sep {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  padding: 0 2px;
}
.nav.scrolled .lang-sep { color: var(--border); }
.lang-btn {
  background: none;
  border: none;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  padding: 5px 7px;
  border-radius: 5px;
  transition: all var(--t);
  letter-spacing: 0.04em;
}
.lang-btn:hover, .lang-btn.active { color: var(--gold); }
.nav.scrolled .lang-btn          { color: var(--text-dim); }
.nav.scrolled .lang-btn:hover,
.nav.scrolled .lang-btn.active   { color: var(--gold); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--t);
}
.nav.scrolled .nav__toggle span { background: var(--navy); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
============================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 55%, #1a4a88 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__graphic {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.n--hub { animation: pulse 3s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: 0.7; r: 16; }
  50%       { opacity: 0.4; r: 22; }
}
.bridge { stroke-dasharray: 200; stroke-dashoffset: 200; animation: draw 2s ease forwards; }
.bridge:last-of-type { animation-delay: 0.4s; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero__headline {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero__headline em { font-style: normal; color: var(--gold); }
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.90);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 540px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero__stats {
  display: flex;
  gap: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.68);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =============================================
   SERVICES
============================================= */
.services {
  padding: 100px 0;
  background: var(--white);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  padding: 32px 26px;
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  background: #fff;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}
.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  padding: 12px;
  flex-shrink: 0;
  transition: all var(--t);
}
.service-card:hover .service-card__icon {
  background: var(--navy);
  color: var(--gold);
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
}
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.service-card__tags li {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--teal);
  background: rgba(27,107,92,0.08);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(27,107,92,0.15);
}

/* =============================================
   PROCESS
============================================= */
.process {
  padding: 100px 0;
  background: var(--navy);
}
.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  padding: 0 24px;
  text-align: center;
}
.process-step__number {
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(201,149,42,0.18);
  line-height: 1;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}
.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.process-step p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
}
.process__connector {
  flex-shrink: 0;
  width: 40px;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process__connector::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(201,149,42,0.3), rgba(201,149,42,0.6));
  border-radius: 2px;
}

/* =============================================
   AUDIENCE
============================================= */
.audience {
  padding: 100px 0;
  background: var(--bg);
}
.audience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.audience-card {
  background: #fff;
  padding: 36px 26px 28px;
  border-radius: var(--r);
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
}
.audience-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}
.audience-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 4px;
}
.audience-card__icon svg { width: 40px; height: 40px; }
.audience-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.audience-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
}
.audience-card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}

/* =============================================
   TEAM
============================================= */
.team {
  padding: 100px 0;
  background: #fff;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 560px;
  margin: 0 auto;
}
.team-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  transition: all 0.3s ease;
}
.team-card:hover {
  border-color: var(--gold);
  box-shadow: var(--sh);
  transform: translateY(-3px);
}
.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 20px;
  letter-spacing: 0.05em;
}
.team-card__avatar--navy { background: var(--navy); }
.team-card__avatar--gold { background: var(--gold); }
.team-card__avatar--teal { background: var(--teal); }
.team-card__avatar--photo {
  background: none;
  overflow: hidden;
}
.team-card__avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}
.team-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.team-card__role {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* =============================================
   CONTACT
============================================= */
.contact {
  padding: 100px 0;
  background: var(--bg);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact__left h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}
.contact__left p {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 36px;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__link, .contact__location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--t);
}
.contact__link:hover { color: var(--gold); }
.contact__link svg, .contact__location svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}
.contact__location { color: var(--text-mid); }

.contact__form {
  background: #fff;
  padding: 40px;
  border-radius: var(--r);
  box-shadow: var(--sh);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15,37,69,0.06);
}
.form-group textarea { resize: vertical; }
.form-notice {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: -4px;
}

/* =============================================
   FOOTER
============================================= */
.footer {
  background: #0d1e3d;
  color: rgba(255,255,255,0.55);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 56px;
  padding-top: 64px;
  padding-bottom: 60px;
}
.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.52);
  margin-top: 12px;
  font-style: italic;
}
.footer h4 {
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--t);
}
.footer__col ul a:hover { color: var(--gold); }
.footer__col a, .footer__col p {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  transition: color var(--t);
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); }
.footer__bottom .container {
  padding-top: 20px;
  padding-bottom: 20px;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
}

/* =============================================
   NAV — STATIC MODE (Unterseiten)
============================================= */
.nav--static,
.nav--static.scrolled {
  background: #fff;
  box-shadow: var(--sh-sm);
}
.nav--static .logo-text__main  { color: var(--navy); }
.nav--static .logo-text__sub   { color: var(--text-mid); }
.nav--static .nav__links a     { color: var(--text-mid); }
.nav--static .nav__links a:hover { color: var(--navy); background: var(--bg); }
.nav--static .lang-btn         { color: var(--text-dim); }
.nav--static .lang-btn:hover,
.nav--static .lang-btn.active  { color: var(--gold); }
.nav--static .lang-sep         { color: var(--border); }
.nav--static .nav__toggle span { background: var(--navy); }

/* =============================================
   LEGAL PAGES (Impressum, Datenschutz)
============================================= */
.legal-page {
  padding: 140px 0 100px;
  min-height: 72vh;
  background: var(--white);
}
.legal-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.legal-page h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 8px;
}
.legal-page .legal-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 640px;
  line-height: 1.75;
  margin-top: 16px;
}
.legal-content {
  max-width: 760px;
  margin-top: 56px;
  border-top: 2px solid var(--border);
  padding-top: 48px;
}
.legal-content h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 10px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.legal-content h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin: 20px 0 6px;
}
.legal-content p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}
.legal-content ul li {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 4px;
}
.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-all;
}
.legal-content a:hover { color: var(--gold-light); }
.legal-content strong { color: var(--navy); font-weight: 600; }
.legal-placeholder {
  display: inline-block;
  background: rgba(201,149,42,0.1);
  border: 1.5px dashed var(--gold);
  border-radius: 4px;
  padding: 1px 8px;
  font-size: 0.82rem;
  color: #a0720d;
  font-weight: 600;
  font-style: normal;
}

/* =============================================
   RESPONSIVE — 1024px
============================================= */
@media (max-width: 1024px) {
  .services__grid  { grid-template-columns: repeat(2, 1fr); }
  .audience__grid  { grid-template-columns: repeat(2, 1fr); }
  .footer__inner   { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact__inner  { grid-template-columns: 1fr; gap: 48px; }
  .process__steps  { flex-wrap: wrap; justify-content: center; }
  .process-step    { flex: 0 0 calc(50% - 24px); }
  .process__connector { display: none; }
}

/* =============================================
   RESPONSIVE — 768px
============================================= */
@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: #fff;
    padding: 12px 16px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    box-shadow: var(--sh);
    z-index: 199;
  }
  .nav__links.open { display: flex; }
  .nav__links a {
    color: var(--text-mid);
    padding: 12px 16px;
    border-radius: 8px;
  }
  .nav__links a:hover { color: var(--navy); background: var(--bg); }
  .nav__toggle { display: flex; }
  .btn--nav { display: none; }

  .hero { padding: 96px 0 56px; }
  .hero__stats { gap: 28px; flex-wrap: wrap; }

  .services__grid { grid-template-columns: 1fr; }
  .audience__grid { grid-template-columns: 1fr; }

  .process__steps  { flex-direction: column; }
  .process-step    { flex: none; padding: 0 0 32px; text-align: left; }

  .team__grid { grid-template-columns: 1fr; max-width: 300px; }

  .contact__form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .btn--ghost { width: auto; }
}
