/* ===== Hi-Fi styles · IT-Service Alexander Trops ===== */

/* Local fonts */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/inter-var.woff2") format("woff2");
}
@font-face {
  font-family: "Architects Daughter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/architects-daughter-400.woff2") format("woff2");
}

:root {
  --ink: #0f1411;
  --ink-2: #4a5752;
  --ink-3: #8a9690;
  --ink-4: #c8d0cb;
  --paper: #ffffff;
  --paper-2: #f6faf5;
  --paper-3: #eef4ec;
  --rule: #e3ebe1;
  --accent: rgb(12, 130, 1);
  --accent-700: rgb(8, 96, 1);
  --accent-tint: rgb(220, 254, 217);
  --accent-tint-2: rgb(238, 252, 235);
  --font-display: "Architects Daughter", "Caveat", system-ui;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --max-w: 1240px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(15, 20, 17, 0.04), 0 1px 3px rgba(15, 20, 17, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 20, 17, 0.06), 0 2px 4px rgba(15, 20, 17, 0.04);
  --shadow-lg: 0 12px 32px rgba(12, 130, 1, 0.10), 0 4px 8px rgba(15, 20, 17, 0.05);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.display { font-family: var(--font-display); font-weight: 400; line-height: 1.05; letter-spacing: -0.01em; }

/* ===== Top bar ===== */
.topbar {
  background: var(--paper-3);
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
  color: var(--ink-2);
}
.topbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 8px 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.topbar a { color: var(--ink-2); white-space: nowrap; }
.topbar a:hover { color: var(--accent); }
.topbar-left { display: flex; gap: 22px; align-items: center; }
.topbar-left .dot { color: var(--accent); }
.topbar-right { display: flex; gap: 18px; align-items: center; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--rule);
  z-index: 50;
}
.site-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}
.brand img { height: 56px; width: auto; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text .name {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1px;
}
.brand-text .sub {
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.2px;
}

.main-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.main-nav a {
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink-2);
  transition: color 0.15s, background 0.15s;
  position: relative;
}
.main-nav a:hover { color: var(--accent); background: var(--accent-tint-2); }
.main-nav a.active {
  color: var(--accent-700);
  background: var(--accent-tint);
  font-weight: 600;
}

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--rule);
  background: white;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s;
}
.nav-toggle:hover { border-color: var(--accent); background: var(--accent-tint-2); }
.nav-toggle-bars {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}
.nav-toggle-bars > span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.15s;
  transform-origin: center;
}
.nav-toggle.is-open .nav-toggle-bars > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle-bars > span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open .nav-toggle-bars > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.18s, background 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 6px 16px rgba(12, 130, 1, 0.22);
}
.btn-primary:hover { background: var(--accent-700); transform: translateY(-1px); box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 10px 22px rgba(12, 130, 1, 0.28); }
.btn-secondary {
  background: white;
  color: var(--ink);
  border-color: var(--ink-4);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent-700); }
.btn-ghost {
  background: transparent;
  color: var(--accent-700);
  padding: 8px 12px;
}
.btn-ghost:hover { background: var(--accent-tint-2); }

.btn .arrow { transition: transform 0.18s; }
.btn:hover .arrow { transform: translateX(2px); }

/* ===== Sections ===== */
section { padding: 88px 28px; }
.container { max-width: var(--max-w); margin: 0 auto; }
.section-tint { background: var(--paper-2); }
.section-deep { background: var(--paper-3); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-700);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--accent);
  display: inline-block;
}

h1, h2, h3 { color: var(--ink); font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; }
h1 { font-size: clamp(40px, 5.5vw, 64px); margin: 0 0 20px; line-height: 1.05; }
h2 { font-size: clamp(28px, 3.5vw, 42px); margin: 0 0 18px; line-height: 1.1; }
h3 { font-size: 22px; margin: 0 0 8px; line-height: 1.25; }
p.lede { font-size: 18px; color: var(--ink-2); max-width: 580px; margin: 0 0 28px; }

/* ===== Hero ===== */
.hero {
  padding: 96px 28px 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 90% 10%, var(--accent-tint) 0%, transparent 60%),
    radial-gradient(500px 350px at 0% 100%, var(--accent-tint-2) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero h1 .accent {
  font-family: var(--font-display);
  color: var(--accent-700);
  display: inline-block;
  position: relative;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px; bottom: 4px;
  height: 14px;
  background: var(--accent-tint);
  z-index: -1;
  border-radius: 2px;
  transform: rotate(-0.5deg);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-trust {
  margin-top: 32px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-2);
}
.hero-trust .item { display: flex; align-items: center; gap: 8px; }
.hero-trust svg { color: var(--accent); flex-shrink: 0; }

/* Hero visual */
.hero-visual {
  position: relative;
  max-width: 440px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 0;
}
.hv-card {
  position: relative;
  background: white;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 20px 22px;
}
.hv-card-1 { transform: rotate(-1.2deg); margin-right: 32px; }
.hv-card-2 { transform: rotate(1.5deg); margin-left: 40px; }
.hv-card-3 { transform: rotate(-0.6deg); margin-right: 16px; }
.hv-card .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-700);
  margin-bottom: 8px;
}
.hv-card .title { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.hv-card .meta { font-size: 12px; color: var(--ink-2); }
.hv-card .bar {
  margin-top: 10px;
  height: 6px;
  background: var(--paper-3);
  border-radius: 3px;
  overflow: hidden;
}
.hv-card .bar > div { height: 100%; background: var(--accent); border-radius: 3px; }

.hv-orb {
  position: absolute;
  inset: 10% 5% 10% 5%;
  background: radial-gradient(circle at 50% 40%, var(--accent-tint) 0%, transparent 65%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

/* ===== Service grid ===== */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-tint);
  color: var(--accent-700);
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}
.service-card h3 { font-size: 22px; }
.service-card .desc { color: var(--ink-2); font-size: 15px; }
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-card li {
  font-size: 14px;
  color: var(--ink-2);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.service-card li::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
  flex-shrink: 0;
}
.service-card .more {
  margin-top: auto;
  padding-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== About strip ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.about-portrait {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--accent-tint) 0%, var(--paper-3) 100%);
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.about-portrait .placeholder {
  text-align: center;
  color: var(--accent-700);
  font-family: var(--font-display);
  font-size: 22px;
}
.about-portrait .placeholder small {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 8px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.about-stat .num {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--accent-700);
  line-height: 1;
}
.about-stat .lab {
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 6px;
}

.signature {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--accent-700);
  margin-top: 20px;
}
.signature small {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 500;
}

/* ===== Process ===== */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-step {
  background: white;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}
.process-step .num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.process-step h3 { font-size: 17px; margin-bottom: 6px; }
.process-step p { font-size: 14px; color: var(--ink-2); margin: 0; }

/* ===== CTA / Contact teaser ===== */
.cta-band {
  background: var(--accent);
  color: white;
  border-radius: var(--radius);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(12, 130, 1, 0.18);
}
.cta-band h2 { color: white; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.88); margin: 0; }
.cta-band .btn-primary {
  background: white;
  color: var(--accent-700);
  box-shadow: none;
}
.cta-band .btn-primary:hover { background: var(--paper-2); }
.cta-band .btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.cta-band .btn-secondary:hover { border-color: white; color: white; background: rgba(255,255,255,0.08); }
.cta-band-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }

/* ===== Footer ===== */
.site-footer {
  background: #0f1411;
  color: #cfd6d2;
  padding: 64px 28px 32px;
}
.site-footer .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.site-footer h4 {
  color: white;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-weight: 600;
}
.site-footer a { color: #cfd6d2; font-size: 14px; }
.site-footer a:hover { color: white; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.site-footer .brand-text .name { color: white; font-size: 16px; }
.site-footer .brand-text .sub { color: #98a39e; }
.site-footer .brand img { filter: brightness(1.05); }
.footer-blurb {
  font-size: 14px;
  color: #98a39e;
  margin: 16px 0 0;
  max-width: 320px;
}
.footer-bottom {
  max-width: var(--max-w);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid #1f2925;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #98a39e;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== Page header (subpages) ===== */
.page-hero {
  padding: 80px 28px 56px;
  background: linear-gradient(180deg, var(--accent-tint-2) 0%, white 100%);
  border-bottom: 1px solid var(--rule);
}
.breadcrumb {
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a { color: var(--ink-2); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--ink-3); }
.page-hero h1 { font-size: clamp(34px, 4.5vw, 52px); margin: 0 0 12px; }
.page-hero p { font-size: 17px; color: var(--ink-2); max-width: 640px; margin: 0; }

/* ===== Two-col content ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.two-col.narrow { grid-template-columns: 1.3fr 1fr; }

.prose p { color: var(--ink-2); margin: 0 0 16px; font-size: 16px; }
.prose strong { color: var(--ink); }
.prose h3 { margin-top: 28px; }

.values {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.value-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 18px;
  background: white;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
}
.value-row .ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-tint);
  color: var(--accent-700);
  display: grid; place-items: center;
}
.value-row h4 { margin: 0 0 4px; font-size: 15px; font-weight: 600; }
.value-row p { margin: 0; font-size: 14px; color: var(--ink-2); }

/* ===== Service detail blocks ===== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.flip { direction: rtl; }
.service-detail.flip > * { direction: ltr; }

.sd-visual {
  background: var(--paper-2);
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  padding: 32px;
  position: relative;
  min-height: 280px;
}
.sd-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.sd-tag {
  font-size: 12px;
  padding: 5px 11px;
  background: var(--paper-3);
  border-radius: 999px;
  color: var(--ink-2);
  font-weight: 500;
}
.sd-tag.accent { background: var(--accent-tint); color: var(--accent-700); }

.sd-bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.sd-bullets li {
  font-size: 14px;
  color: var(--ink-2);
  display: flex;
  gap: 8px;
}
.sd-bullets li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}

/* Service mini visuals */
.sd-mock {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.sd-mock-bar {
  height: 28px;
  background: var(--paper-3);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
}
.sd-mock-bar .d { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-4); }
.sd-mock-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.sd-line { height: 8px; border-radius: 4px; background: var(--paper-3); }
.sd-line.w70 { width: 70%; }
.sd-line.w50 { width: 50%; }
.sd-line.accent { background: var(--accent-tint); }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-card {
  background: var(--paper-2);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--rule);
}
.contact-card h3 { margin: 0 0 14px; }
.contact-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.contact-row:last-child { border-bottom: none; }
.contact-row .ic { color: var(--accent); }
.contact-row .lbl { font-size: 12px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.1em; }
.contact-row .val { font-size: 15px; font-weight: 500; color: var(--ink); }
.contact-row .val a:hover { color: var(--accent); }

form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
}
.field input, .field textarea, .field select {
  padding: 11px 14px;
  border: 1px solid var(--ink-4);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  background: white;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-2);
}
.field-check input { margin-top: 3px; accent-color: var(--accent); }

/* ===== Downloads ===== */
.downloads {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.dl-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 18px;
  align-items: center;
  background: white;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.dl-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }
.dl-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: var(--accent-tint);
  color: var(--accent-700);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.dl-card h4 { margin: 0 0 2px; font-size: 15.5px; font-weight: 600; }
.dl-card .meta { font-size: 13px; color: var(--ink-3); }
.dl-card .dl-btn {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--paper-3);
  color: var(--ink-2);
  transition: background 0.15s, color 0.15s;
}
.dl-card:hover .dl-btn { background: var(--accent); color: white; }

.featured-dl {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-700) 100%);
  color: white;
  border-radius: var(--radius);
  padding: 36px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 28px;
  box-shadow: 0 18px 40px rgba(12, 130, 1, 0.20);
}
.featured-dl h3 { color: white; margin-bottom: 8px; font-size: 24px; }
.featured-dl p { color: rgba(255,255,255,0.88); margin: 0 0 16px; }
.featured-dl .btn-primary { background: white; color: var(--accent-700); }
.featured-dl .btn-primary:hover { background: var(--paper-2); }
.featured-dl .badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.18);
  color: white;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  font-weight: 600;
}

/* ===== Impressum / legal ===== */
.legal-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 760px;
}
.legal-section { padding: 24px; background: var(--paper-2); border: 1px solid var(--rule); border-radius: var(--radius); }
.legal-section h3 { margin: 0 0 8px; font-size: 17px; }
.legal-section p { margin: 0 0 6px; color: var(--ink-2); font-size: 15px; }
.legal-section .label { font-size: 12px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 10px; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-grid, .about-grid, .two-col, .two-col.narrow,
  .service-detail, .service-detail.flip, .contact-grid,
  .featured-dl { grid-template-columns: 1fr; gap: 32px; }
  .service-detail.flip { direction: ltr; }
  .services { grid-template-columns: 1fr; }
  .process, .downloads { grid-template-columns: 1fr 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 32px; }
  .cta-band-actions { align-items: flex-start; }
  .site-footer .container { grid-template-columns: 1fr 1fr; }
  .hero-visual { display: none; }
  .hero { padding: 56px 28px 40px; }
  section { padding: 56px 28px; }
}

/* Mobile nav: hamburger takes over */
@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; }
  .site-header-inner { gap: 12px; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 12px 24px rgba(0,0,0,0.05);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.2s ease;
  }
  .main-nav.is-open {
    max-height: 480px;
    opacity: 1;
    visibility: visible;
    padding: 12px 20px 20px;
  }
  .main-nav a {
    padding: 14px 12px;
    font-size: 22px;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--rule);
  }
  .main-nav a:last-child { border-bottom: 0; }
  .site-header { position: relative; }
  .site-header.sticky-fix { position: sticky; }
}

@media (max-width: 700px) {
  .values { grid-template-columns: 1fr; }
}

.about-stats.four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 700px) {
  .about-stats.four { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .topbar-left { display: none; }
  .topbar-inner { justify-content: flex-end; }
  .topbar-right { gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
  .process, .downloads { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-stats:not(.four) .about-stat:last-child { grid-column: span 2; }
  .site-footer .container { grid-template-columns: 1fr; }
  .brand-text .name { font-size: 13px; }
  .brand-text .sub { font-size: 11px; }
}

@media (max-width: 460px) {
  .brand-text { display: none; }
}
