/* =========================================================
   Compass IT Service – pc-compass.de
   Design: Navy (#0B1F3A) + Gold (#E39B1B), clean & modern
   ========================================================= */

:root {
  --navy: #0b1f3a;
  --navy-2: #12294f;
  --navy-3: #1a3564;
  --navy-dark: #071527;
  --gold: #e39b1b;
  --gold-2: #f2b23a;
  --gold-soft: rgba(227, 155, 27, .14);
  --bg: #f5f7fb;
  --bg-2: #eef2f8;
  --white: #ffffff;
  --text: #17213a;
  --muted: #5a6478;
  --line: #e2e7f0;
  --shadow-sm: 0 2px 8px rgba(11, 31, 58, .06);
  --shadow: 0 10px 30px rgba(11, 31, 58, .10);
  --shadow-lg: 0 24px 60px rgba(11, 31, 58, .18);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1200px;
  --nav-h: 76px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; color: var(--navy); font-weight: 800; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.container { width: min(var(--container), 100% - 40px); margin-inline: auto; }
.section { padding: 96px 0; }
.section-alt { background: var(--bg); }
.section-dark { background: var(--navy); color: #d7deea; }
.section-dark h2, .section-dark h3 { color: #fff; }

/* headings */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::after { content: ""; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 17px; }
.section-dark .section-head p { color: #b9c4d6; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 15px;
  border: 2px solid transparent; cursor: pointer; transition: all .25s ease;
  font-family: inherit; line-height: 1.2; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); box-shadow: 0 8px 22px rgba(227, 155, 27, .32); }
.btn-gold:hover { background: var(--gold-2); border-color: var(--gold-2); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(227, 155, 27, .40); }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-2); border-color: var(--navy-2); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--navy); border-color: rgba(11, 31, 58, .25); }
.btn-outline:hover { border-color: var(--navy); background: rgba(11, 31, 58, .04); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }
.btn-lg { padding: 17px 32px; font-size: 16px; }

/* =========================================================
   Top bar + Navigation
   ========================================================= */
.topbar {
  background: var(--navy-dark); color: #b9c4d6; font-size: 13.5px;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 16px; }
.topbar ul { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar li { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 15px; height: 15px; color: var(--gold); }
.topbar a:hover { color: #fff; }
.topbar .hours { display: inline-flex; align-items: center; gap: 7px; }

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.nav.scrolled { box-shadow: 0 6px 24px rgba(11, 31, 58, .08); border-color: var(--line); }
.nav .container { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 24px; }
.nav-logo img { height: 42px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 36px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 600; font-size: 15px; color: var(--navy); position: relative; padding: 6px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--gold); border-radius: 2px; transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 11px 20px; font-size: 14px; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px; padding: 0;
}
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: transform .3s, opacity .3s; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1200px 600px at 85% -10%, #1d3f78 0%, transparent 60%),
              radial-gradient(800px 500px at -10% 110%, #163262 0%, transparent 60%),
              linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 88px 0 0;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .13) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .55), transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .55), transparent 70%);
}
.hero::after {
  /* diagonal gold accent (like the flyer corner) */
  content: ""; position: absolute; top: -140px; left: -160px; width: 420px; height: 420px;
  background: linear-gradient(135deg, var(--gold), transparent 60%);
  opacity: .16; transform: rotate(20deg); pointer-events: none;
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding-bottom: 88px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 10px;
  border-radius: 999px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14);
  font-size: 13.5px; font-weight: 600; color: #e6ecf6; margin-bottom: 26px;
}
.hero-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: #3ddc84; box-shadow: 0 0 0 4px rgba(61, 220, 132, .2); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(61, 220, 132, .2); } 50% { box-shadow: 0 0 0 8px rgba(61, 220, 132, .05); } }
.hero h1 {
  color: #fff; font-size: clamp(38px, 5.6vw, 66px); font-weight: 900; line-height: 1.02; letter-spacing: -.02em;
  text-transform: uppercase; margin-bottom: 22px;
}
.hero h1 .gold { color: var(--gold); display: block; }
.hero h1 .sub { display: block; font-size: .42em; font-weight: 700; letter-spacing: .04em; color: #b9c4d6; text-transform: none; margin-top: 18px; line-height: 1.35; }
.hero p.lead { font-size: 18px; color: #c9d3e3; max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.hero-points li { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 600; color: #e6ecf6; }
.hero-points svg { width: 20px; height: 20px; color: var(--gold); flex: none; }

.hero-visual { position: relative; }
.hero-visual .frame {
  border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, .08);
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform .6s ease;
}
.hero-visual:hover .frame { transform: perspective(1200px) rotateY(-2deg) rotateX(0deg); }
.hero-visual .frame img { width: 100%; aspect-ratio: 1024 / 499; object-fit: cover; }
.hero-card {
  position: absolute; background: #fff; color: var(--navy); border-radius: 14px; padding: 14px 18px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 14px;
  animation: float 6s ease-in-out infinite;
}
.hero-card .ico { width: 40px; height: 40px; border-radius: 10px; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; flex: none; }
.hero-card .ico svg { width: 22px; height: 22px; }
.hero-card small { display: block; font-weight: 500; color: var(--muted); font-size: 12.5px; }
.hero-card.c1 { left: -28px; bottom: 34px; }
.hero-card.c2 { right: -18px; top: 26px; animation-delay: -3s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.hero-strip {
  position: relative; z-index: 1; background: rgba(255, 255, 255, .04); border-top: 1px solid rgba(255, 255, 255, .1);
}
.hero-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding: 0; }
.hero-strip .item { display: flex; align-items: center; gap: 14px; padding: 22px 26px; border-right: 1px solid rgba(255, 255, 255, .1); }
.hero-strip .item:last-child { border-right: 0; }
.hero-strip .item svg { width: 26px; height: 26px; color: var(--gold); flex: none; }
.hero-strip strong { display: block; color: #fff; font-size: 15px; letter-spacing: .06em; text-transform: uppercase; }
.hero-strip span { color: #a9b6cb; font-size: 13px; }

/* =========================================================
   Services
   ========================================================= */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px 30px;
  box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2)); transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(145deg, var(--navy), var(--navy-3)); color: var(--gold); box-shadow: 0 8px 18px rgba(11, 31, 58, .22);
}
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.service-card ul { margin-top: auto; display: grid; gap: 7px; }
.service-card li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--text); }
.service-card li::before {
  content: ""; flex: none; width: 16px; height: 16px; margin-top: 3px; border-radius: 50%;
  background: var(--gold-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e39b1b' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") center/10px no-repeat;
}
.service-brand {
  display: flex; align-items: center; gap: 12px; margin-top: 18px; padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.service-brand span {
  font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}
.service-brand img { height: 40px; width: auto; }
.service-brand img.badge { height: 78px; }
.service-brand.multi { flex-wrap: wrap; gap: 10px 22px; }
/* Letzte Karte allein in der Reihe (3-Spalten-Layout): volle Breite, Liste zweispaltig */
@media (min-width: 1101px) {
  .services-grid .service-card:last-child:nth-child(3n + 1) { grid-column: 1 / -1; }
  .services-grid .service-card:last-child:nth-child(3n + 1) p { max-width: 720px; }
  .services-grid .service-card:last-child:nth-child(3n + 1) ul { grid-template-columns: 1fr 1fr; column-gap: 28px; }
}
.services-more { margin-top: 40px; background: var(--navy); color: #fff; border-radius: var(--radius); padding: 30px 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.services-more h3 { color: #fff; font-size: 20px; margin-bottom: 4px; }
.services-more p { color: #b9c4d6; font-size: 15px; }
.services-more .tags { display: flex; flex-wrap: wrap; gap: 10px; }
.services-more .tags span { padding: 8px 14px; border-radius: 999px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14); font-size: 13.5px; font-weight: 600; }

/* =========================================================
   About / Why us
   ========================================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual { position: relative; }
.about-visual .main { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-visual .main img { width: 100%; aspect-ratio: 788 / 499; object-fit: cover; }
.about-visual .accent { position: absolute; inset: 22px -22px -22px 22px; border: 2px solid var(--gold); border-radius: 26px; z-index: -1; opacity: .7; }
.about-visual .quote {
  position: absolute; left: 24px; bottom: -28px; right: 24px; background: #fff; border-radius: 14px; padding: 18px 22px;
  box-shadow: var(--shadow-lg); display: flex; gap: 14px; align-items: center;
}
.about-visual .quote .q { font-size: 44px; line-height: 1; color: var(--gold); font-weight: 900; font-family: Georgia, serif; }
.about-visual .quote p { font-weight: 700; color: var(--navy); font-size: 15px; }
.about-visual .quote small { display: block; font-weight: 500; color: var(--muted); font-size: 12.5px; margin-top: 2px; }
.about-text h2 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 18px; }
.about-text p { color: var(--muted); font-size: 16.5px; }
.about-features { margin: 30px 0 34px; display: grid; gap: 18px; }
.about-features li { display: flex; gap: 16px; align-items: flex-start; }
.about-features .ico { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; }
.about-features .ico svg { width: 24px; height: 24px; }
.about-features strong { display: block; color: var(--navy); font-size: 16px; margin-bottom: 2px; }
.about-features span { color: var(--muted); font-size: 14.5px; }
.about-owner { display: flex; align-items: center; gap: 16px; padding-top: 26px; border-top: 1px solid var(--line); }
.about-owner .avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: var(--gold); display: grid; place-items: center; font-weight: 800; font-size: 18px; letter-spacing: .02em; }
.about-owner strong { display: block; color: var(--navy); }
.about-owner span { color: var(--muted); font-size: 14px; }

/* =========================================================
   Values strip
   ========================================================= */
.values { background: var(--navy-dark); color: #fff; padding: 34px 0; border-top: 3px solid var(--gold); }
.values ul { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px 24px; align-items: center; }
.values li { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: 15px; }
.values li svg { width: 28px; height: 28px; color: var(--gold); }
.values li.sep { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); padding: 0; }

/* =========================================================
   Process
   ========================================================= */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-grid::before {
  content: ""; position: absolute; top: 44px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .25) 0 8px, transparent 8px 16px);
}
.step { position: relative; text-align: center; padding: 0 12px; }
.step .num {
  width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 22px; display: grid; place-items: center; position: relative;
  background: var(--navy-2); border: 2px solid rgba(255, 255, 255, .12); color: #fff; box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}
.step .num svg { width: 34px; height: 34px; color: var(--gold); }
.step .num b { position: absolute; top: -8px; right: -8px; width: 30px; height: 30px; border-radius: 50%; background: var(--gold); color: var(--navy); font-size: 13px; display: grid; place-items: center; font-weight: 800; }
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: #b9c4d6; font-size: 14.5px; }

/* =========================================================
   Target groups
   ========================================================= */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.audience {
  border-radius: var(--radius); padding: 34px 30px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.audience:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.audience .ico { width: 54px; height: 54px; border-radius: 14px; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; margin-bottom: 20px; }
.audience .ico svg { width: 28px; height: 28px; }
.audience h3 { font-size: 20px; margin-bottom: 10px; }
.audience p { color: var(--muted); font-size: 15px; margin-bottom: 14px; }
.audience ul { display: grid; gap: 6px; }
.audience li { font-size: 14px; color: var(--text); padding-left: 18px; position: relative; }
.audience li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 2px; background: var(--gold); transform: rotate(45deg); }

/* =========================================================
   CTA band
   ========================================================= */
.cta {
  position: relative; overflow: hidden; background: linear-gradient(120deg, var(--gold) 0%, #f0ad2e 60%, var(--gold-2) 100%); color: var(--navy);
  padding: 72px 0;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(11, 31, 58, .14) 1px, transparent 1px); background-size: 20px 20px;
  mask-image: linear-gradient(to right, transparent, rgba(0, 0, 0, .8) 60%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, rgba(0, 0, 0, .8) 60%, transparent);
}
.cta .container { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta h2 { color: var(--navy); font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 8px; }
.cta p { font-size: 17px; color: rgba(11, 31, 58, .8); font-weight: 500; }
.cta .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta .btn-navy { box-shadow: 0 10px 26px rgba(11, 31, 58, .28); }
.cta .btn-outline { border-color: rgba(11, 31, 58, .45); }
.cta .btn-outline:hover { background: rgba(11, 31, 58, .08); border-color: var(--navy); }

/* =========================================================
   Contact
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 40px; align-items: start; }
.contact-info { display: grid; gap: 16px; }
.info-card {
  display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px 22px;
  box-shadow: var(--shadow-sm); transition: box-shadow .3s;
}
.info-card:hover { box-shadow: var(--shadow); }
.info-card .ico { flex: none; width: 48px; height: 48px; border-radius: 12px; background: var(--navy); color: var(--gold); display: grid; place-items: center; }
.info-card .ico svg { width: 24px; height: 24px; }
.info-card h3 { font-size: 16px; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--muted); font-size: 15px; }
.info-card a { display: block; }
.info-card a:hover { color: var(--navy); }
.info-card a.big { color: var(--navy); font-weight: 800; font-size: 20px; letter-spacing: .01em; }
.contact-info .note { font-size: 13.5px; color: var(--muted); padding: 0 4px; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.form-card h3 { font-size: 22px; margin-bottom: 6px; }
.form-card > p { color: var(--muted); font-size: 15px; margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full, .form-grid > .full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 700; color: var(--navy); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font: inherit; font-size: 15px;
  color: var(--text); background: var(--bg); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6478' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px var(--gold-soft); }
.form-status { min-height: 22px; margin: 12px 0 0; font-size: 14.5px; font-weight: 600; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 12px; line-height: 1.5; }
.form-note a { color: var(--navy); text-decoration: underline; }
.captcha-q { color: var(--gold); font-weight: 800; }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--navy-dark); color: #b9c4d6; padding: 64px 0 0; border-top: 3px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-brand img { height: 46px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 14.5px; max-width: 320px; }
.footer h4 { color: #fff; font-size: 15px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { display: grid; gap: 10px; }
.footer li a { font-size: 14.5px; transition: color .2s, padding-left .2s; }
.footer li a:hover { color: var(--gold); padding-left: 4px; }
.footer .contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.footer .contact svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 3px; }
.footer .contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13.5px;
}
.footer-bottom .links { display: flex; gap: 22px; }
.footer-bottom .links a:hover { color: var(--gold); }
.footer-slogan { color: #fff; font-weight: 700; }
.footer-slogan em { color: var(--gold); font-style: normal; }

/* =========================================================
   Sub pages (Impressum / Datenschutz)
   ========================================================= */
.page-hero { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%); color: #fff; padding: 72px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, .13) 1px, transparent 1px); background-size: 22px 22px; mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), transparent); -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), transparent); }
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 8px; }
.page-hero p { color: #b9c4d6; font-size: 17px; }
.legal { max-width: 820px; padding: 64px 20px 96px; }
.legal h2 { font-size: 22px; margin: 36px 0 12px; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 17px; margin: 22px 0 8px; }
.legal p, .legal li { color: var(--text); font-size: 15.5px; }
.legal ul { list-style: disc; padding-left: 22px; display: grid; gap: 6px; margin-bottom: 1em; }
.legal a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.legal .box { background: var(--bg); border-left: 4px solid var(--gold); border-radius: 8px; padding: 18px 22px; margin: 18px 0; }

/* =========================================================
   Utilities & animations
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }
.reveal[data-delay="5"] { transition-delay: .5s; }

.to-top {
  position: fixed; right: 22px; bottom: 22px; width: 48px; height: 48px; border-radius: 50%; border: 0; background: var(--navy); color: #fff;
  display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .3s, transform .3s, background .2s; z-index: 90;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--gold); color: var(--navy); }
.to-top svg { width: 22px; height: 22px; }

.call-fab {
  position: fixed; left: 22px; bottom: 22px; z-index: 90; display: none; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy); font-weight: 800; padding: 12px 18px; border-radius: 999px; box-shadow: var(--shadow-lg); font-size: 15px;
}
.call-fab svg { width: 20px; height: 20px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-card, .hero-badge .dot { animation: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  .hero .container { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-card.c1 { left: 0; }
  .hero-card.c2 { right: 0; }
  .services-grid, .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .process-grid::before { display: none; }
}

@media (max-width: 900px) {
  .topbar .container { justify-content: center; }
  .topbar .hours { display: none; }
  .topbar .topbar-addr { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: var(--nav-h); left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px 20px 22px; box-shadow: 0 20px 40px rgba(11, 31, 58, .12); border-top: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
  }
  .nav.open .nav-menu { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links { flex-direction: column; gap: 0; }
  .nav-links a { display: block; padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-links a::after { display: none; }
  .nav-cta { margin-top: 16px; }
  .nav-cta .btn { width: 100%; }

  .hero { padding-top: 60px; }
  .hero .container { grid-template-columns: 1fr; padding-bottom: 60px; }
  .hero-visual { margin-top: 12px; }
  .hero-visual .frame { transform: none; }
  .hero-card.c1 { left: 12px; bottom: -14px; }
  .hero-card.c2 { right: 12px; top: -14px; }
  .hero-strip .container { grid-template-columns: repeat(2, 1fr); }
  .hero-strip .item:nth-child(2) { border-right: 0; }
  .hero-strip .item { border-bottom: 1px solid rgba(255, 255, 255, .1); }
  .hero-strip .item:nth-child(n+3) { border-bottom: 0; }

  .section { padding: 72px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 64px; }
  .about-visual .accent { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .values ul { justify-content: center; }
  .values li.sep { display: none; }
  .call-fab { display: inline-flex; }
  .to-top { bottom: 84px; }
}

@media (max-width: 600px) {
  .container { width: min(var(--container), 100% - 32px); }
  .services-grid, .audience-grid, .process-grid { grid-template-columns: 1fr; }
  .hero-strip .container { grid-template-columns: 1fr; }
  .hero-strip .item { border-right: 0 !important; border-bottom: 1px solid rgba(255, 255, 255, .1) !important; }
  .hero-strip .item:last-child { border-bottom: 0 !important; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions .btn { width: 100%; }
  .hero-card { position: static; margin-top: 14px; animation: none; }
  .hero-card.c2 { display: none; }
  .services-more { padding: 24px 22px; }
  .about-visual .quote { position: static; margin-top: 16px; }
  .cta .actions .btn { width: 100%; }
}
