/* ============================================================
   Aplowski Websolutions – TYPO3 Entwicklung
   Design: technisch-editorial, Anthrazit + TYPO3-Orange
   ============================================================ */

:root {
  --ink: #0d0e11;
  --ink-soft: #16181d;
  --ink-line: #26292f;
  --paper: #f4f1ea;
  --paper-line: #ddd8cc;
  --orange: #ff8700;          /* TYPO3 Brand */
  --orange-deep: #e06c00;
  --text-dark: #1a1b1e;
  --text-muted: #5c5e63;
  --text-light: #e9e6df;
  --text-light-muted: #9a9da4;

  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body: "Archivo", "Helvetica Neue", sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --container: 1180px;
  --radius: 6px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
ul[class], ol[class] { list-style: none; }
a { color: inherit; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--orange); color: var(--ink);
  padding: 10px 18px; font-weight: 600; text-decoration: none;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

/* ---------- Typo ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 600; line-height: 1.25; }

.section-no {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 18px;
}
.section-no-light { color: var(--orange); }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  border: 1px solid var(--ink-line);
  padding: 8px 16px;
  border-radius: 99px;
}
.kicker-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #3ddc84;
  box-shadow: 0 0 0 0 rgba(61, 220, 132, .6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(61, 220, 132, .55); }
  70% { box-shadow: 0 0 0 9px rgba(61, 220, 132, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--orange); color: var(--ink); }
.btn-primary:hover { background: #ffa033; }
.btn-ghost { border-color: var(--ink-line); color: var(--text-light); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-light { background: var(--ink); color: var(--text-light); }
.btn-light:hover { background: #000; }
.btn-xl { padding: 18px 36px; font-size: 1.1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13, 14, 17, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text-light);
  font-family: var(--font-mono); font-size: 1.02rem;
}
.brand-mark {
  width: 14px; height: 14px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 35%, 35% 35%, 35% 100%, 0 100%); /* abstraktes "T" */
}
.brand-text b { color: var(--orange); font-weight: 500; }
.brand-tld { color: var(--text-light-muted); }

.nav-list { display: flex; align-items: center; gap: 6px; }
.nav-list a {
  display: block;
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--text-light-muted);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color .15s ease;
}
.nav-list a:hover { color: var(--orange); }
.nav-list .nav-cta {
  color: var(--ink);
  background: var(--orange);
  font-weight: 600;
  margin-left: 10px;
}
.nav-list .nav-cta:hover { color: var(--ink); background: #ffa033; }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--text-light);
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--ink-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink-line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 60% 10%, black 30%, transparent 75%);
  opacity: .5;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
  padding-block: 110px 90px;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
  position: relative;
}
.hero h1 em::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0.06em;
  height: 0.1em;
  background: var(--orange);
  opacity: .35;
}
.hero-sub {
  max-width: 54ch;
  margin-top: 26px;
  color: var(--text-light-muted);
  font-size: 1.12rem;
}
.hero-copy h1 { margin-top: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.hero-stats {
  display: flex; gap: 48px;
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid var(--ink-line);
}
.hero-stats dt {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.hero-stats dd { color: var(--text-light-muted); font-size: 0.92rem; margin-top: 6px; }

/* Terminal-Karte */
.hero-terminal {
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-radius: 10px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(255,135,0,.06);
  transform: rotate(1.2deg);
  transition: transform .35s ease;
}
.hero-terminal:hover { transform: rotate(0deg) scale(1.01); }
.terminal-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--ink-line);
}
.t-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--ink-line); }
.t-dot:first-child { background: #e0563f; }
.t-dot:nth-child(2) { background: #e0a23f; }
.t-dot:nth-child(3) { background: #3ddc84; }
.terminal-title {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-light-muted);
}
.terminal-body {
  padding: 22px 22px 26px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text-light);
  overflow-x: auto;
}
.tc-c { color: #5f646e; }
.tc-p { color: var(--orange); }
.tc-o { color: #c8ccd4; }
.tc-s { color: #9ece6a; }
.tc-ok { color: #3ddc84; }
.tc-warn { color: #e0a23f; }

/* Ticker */
.ticker {
  position: relative;
  border-top: 1px solid var(--ink-line);
  overflow: hidden;
  padding-block: 16px;
}
.ticker-track {
  display: flex; align-items: center; gap: 28px;
  width: max-content;
  animation: ticker 36s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  white-space: nowrap;
}
.ticker-track i { color: var(--orange); font-style: normal; font-size: 0.5rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding-block: 110px; }
.section-light { background: var(--paper); color: var(--text-dark); }
.section-dark { background: var(--ink); color: var(--text-light); }
#ablauf { background: var(--ink-soft); }
.section-head { margin-bottom: 64px; }

/* ---------- Leistungen ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--paper-line);
  border-left: 1px solid var(--paper-line);
}
.card {
  position: relative;
  padding: 36px 30px 42px;
  border-right: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  background: var(--paper);
  transition: background .25s ease;
}
.card:hover { background: #fffdf7; }
.card::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.card:hover::before { transform: scaleX(1); }
.card-no {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--orange-deep);
}
.card h3 { margin-top: 14px; }
.card p { margin-top: 12px; color: var(--text-muted); font-size: 0.98rem; }

/* ---------- Upgrade-Band ---------- */
.section-band {
  background: var(--orange);
  color: var(--ink);
}
.band-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: start;
}
.band-copy .section-no { color: rgba(13,14,17,.65); }
.band-copy p { margin-block: 22px 30px; max-width: 56ch; font-size: 1.08rem; }
.band-list {
  display: grid; gap: 0;
  border-top: 2px solid var(--ink);
}
.band-list li {
  padding: 18px 4px 18px 36px;
  border-bottom: 2px solid var(--ink);
  position: relative;
  font-weight: 500;
}
.band-list li::before {
  content: "→";
  position: absolute; left: 4px;
  font-family: var(--font-mono);
}

/* ---------- Über mich ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.about-copy p + p { margin-top: 18px; }
.about-copy { color: var(--text-muted); font-size: 1.06rem; }
.check-list { margin-top: 30px; display: grid; gap: 12px; }
.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--text-dark);
  font-weight: 500;
}
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: -1px;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: var(--orange);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 4px;
}

/* ---------- Referenzen ---------- */
.refs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ref {
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-radius: 10px;
  padding: 30px 28px 34px;
  transition: border-color .25s ease, transform .25s ease;
}
.ref:hover { border-color: var(--orange); transform: translateY(-4px); }
.ref-tag {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
}
.ref h3 { margin-top: 14px; color: var(--text-light); }
.ref p { margin-top: 12px; color: var(--text-light-muted); font-size: 0.97rem; }
.ref-meta {
  margin-top: 18px !important;
  padding-top: 16px;
  border-top: 1px solid var(--ink-line);
  font-family: var(--font-mono);
  font-size: 0.76rem !important;
  color: #6f737c !important;
}

.quote {
  margin-top: 72px;
  padding: 44px 48px;
  border-left: 4px solid var(--orange);
  background: var(--ink-soft);
  border-radius: 0 10px 10px 0;
}
.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-light);
}
.quote figcaption {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

/* ---------- Ablauf ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 24px 32px;
  background: #fffdf7;
  color: var(--text-dark);
  border: 1px solid var(--paper-line);
  border-radius: 10px;
}
.step-no {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--ink);
  color: var(--orange);
  border-radius: 50%;
}
.step h3 { margin-top: 18px; font-size: 1.15rem; }
.step p { margin-top: 10px; color: var(--text-muted); font-size: 0.95rem; }

/* ---------- FAQ ---------- */
.faq-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.faq-inner .section-head { margin-bottom: 0; position: sticky; top: 100px; }
.faq-list details {
  border-bottom: 1px solid var(--paper-line);
}
.faq-list details:first-child { border-top: 1px solid var(--paper-line); }
.faq-list summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  cursor: pointer;
  list-style: none;
  padding: 24px 4px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  transition: color .15s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--orange-deep); }
.faq-icon {
  flex: 0 0 auto;
  position: relative;
  width: 18px; height: 18px;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute; inset: 0; margin: auto;
  background: var(--orange-deep);
  transition: transform .25s ease;
}
.faq-icon::before { width: 18px; height: 2px; }
.faq-icon::after { width: 2px; height: 18px; }
details[open] .faq-icon::after { transform: rotate(90deg); }
.faq-list details p {
  padding: 0 4px 26px;
  color: var(--text-muted);
  max-width: 62ch;
}

/* ---------- Kontakt ---------- */
.section-contact {
  position: relative;
  background: var(--ink);
  color: var(--text-light);
  text-align: center;
  overflow: hidden;
  padding-block: 130px;
}
.section-contact .hero-grid-bg {
  mask-image: radial-gradient(ellipse 70% 90% at 50% 100%, black 20%, transparent 75%);
}
.contact-inner { position: relative; }
.contact-sub { margin-top: 22px; color: var(--text-light-muted); font-size: 1.1rem; }
.contact-actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
  margin-top: 40px;
}
.contact-note {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 38px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--ink-line);
  padding-block: 28px;
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-light-muted);
}
.footer-inner nav { display: flex; gap: 24px; }
.footer-inner a { color: var(--text-light-muted); text-decoration: none; }
.footer-inner a:hover { color: var(--orange); }

/* ---------- Scroll-Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
.d-1 { transition-delay: .1s; }
.d-2 { transition-delay: .2s; }
.d-3 { transition-delay: .3s; }
.d-4 { transition-delay: .4s; }

/* No-JS & reduced motion: alles sichtbar */
.no-observer .reveal,
html:not(.js) .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
  .kicker-dot, .contact-note .kicker-dot { animation: none; }
}

/* ---------- Unterseiten: Page-Hero ---------- */
.page-hero {
  position: relative;
  background: var(--ink);
  color: var(--text-light);
  overflow: hidden;
  padding-block: 80px 70px;
}
.page-hero .hero-grid-bg {
  mask-image: radial-gradient(ellipse 90% 110% at 50% 0%, black 25%, transparent 72%);
}
.page-hero-inner { position: relative; max-width: 820px; }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); }
.page-hero .lead {
  margin-top: 24px;
  font-size: 1.15rem;
  color: var(--text-light-muted);
  max-width: 60ch;
}
.page-hero .hero-actions { margin-top: 34px; }

.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  margin-bottom: 26px;
}
.breadcrumb a { color: var(--text-light-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--ink-line); }
.breadcrumb [aria-current] { color: var(--orange); }

/* ---------- Unterseiten: Artikel / Prose ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 56px 0 18px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.2rem; margin: 36px 0 12px; }
.prose p { color: var(--text-muted); margin-bottom: 16px; }
.prose strong { color: var(--text-dark); }
.prose a { color: var(--orange-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose a:hover { text-decoration: none; }
.prose ul:not([class]) { margin: 0 0 16px 22px; color: var(--text-muted); }
.prose ul:not([class]) li { margin-bottom: 8px; }
.prose ul:not([class]) li::marker { color: var(--orange-deep); }

/* ---------- Versionstabelle ---------- */
.version-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0 16px;
  font-size: 0.95rem;
}
.version-table th, .version-table td {
  text-align: left;
  padding: 13px 16px;
  border-bottom: 1px solid var(--paper-line);
}
.version-table th {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border-bottom: 2px solid var(--ink);
}
.version-table td:first-child { font-family: var(--font-mono); font-weight: 500; white-space: nowrap; }
.version-table .v-current { background: rgba(255, 135, 0, .1); }
.badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 99px;
  white-space: nowrap;
}
.badge-danger { background: #fdded6; color: #a3341a; }
.badge-warn { background: #fbecd0; color: #8a5a09; }
.badge-ok { background: #ddf2e4; color: #1d7a44; }
.badge-info { background: #e3e8f2; color: #3b5687; }

/* ---------- CTA-Banner (Unterseiten) ---------- */
.cta-banner {
  background: var(--orange);
  color: var(--ink);
  padding-block: 80px;
}
.cta-banner-inner {
  display: flex; flex-wrap: wrap; gap: 32px;
  align-items: center; justify-content: space-between;
}
.cta-banner h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); max-width: 22ch; }
.cta-banner p { margin-top: 12px; max-width: 50ch; font-size: 1.05rem; }

/* ---------- Pakete (Wartung) ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan {
  display: flex; flex-direction: column;
  background: #fffdf7;
  border: 1px solid var(--paper-line);
  border-radius: 10px;
  padding: 34px 30px 38px;
}
.plan-featured {
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--text-light);
  position: relative;
}
.plan-featured .plan-list li { color: var(--text-light-muted); }
.plan-featured .plan-list li::before { background: var(--orange); color: var(--ink); }
.plan-flag {
  position: absolute; top: -13px; left: 28px;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
}
.plan h3 { font-size: 1.35rem; }
.plan-tag {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-deep);
  margin-bottom: 10px;
}
.plan-featured .plan-tag { color: var(--orange); }
.plan-desc { margin-top: 10px; font-size: 0.95rem; color: var(--text-muted); }
.plan-featured .plan-desc { color: var(--text-light-muted); }
.plan-list { margin-top: 24px; display: grid; gap: 11px; flex: 1; }
.plan-list li {
  position: relative;
  padding-left: 30px;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.plan-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 1px;
  width: 19px; height: 19px;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 4px;
}
.plan .btn { margin-top: 28px; text-align: center; }

/* ---------- Karten-Links (index) ---------- */
.card-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--orange-deep);
  text-decoration: none;
}
.card-link::after { content: " →"; transition: margin-left .2s ease; }
.card-link:hover::after { margin-left: 6px; }
.card-link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Footer: Leistungs-Links ---------- */
.footer-services {
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--ink-line);
  font-size: 0.88rem;
}
.footer-services a { color: var(--text-light-muted); text-decoration: none; }
.footer-services a:hover { color: var(--orange); }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding-block: 80px 70px; }
  .hero-terminal { max-width: none; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; }
  .band-inner, .about-inner, .faq-inner { grid-template-columns: 1fr; gap: 44px; }
  .faq-inner .section-head { position: static; }
  .refs { grid-template-columns: 1fr; }

  /* Mobile-Nav */
  .nav-toggle {
    display: grid; gap: 6px;
    background: none; border: 0; cursor: pointer;
    padding: 10px;
  }
  .nav-toggle-bar {
    width: 24px; height: 2px;
    background: var(--text-light);
    transition: transform .25s ease, opacity .25s ease;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child { transform: translateY(-4px) rotate(-45deg); }

  .nav-list {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--ink-line);
    padding: 12px 24px 20px;
    display: none;
  }
  .nav-list.is-open { display: flex; }
  .nav-list a { padding: 14px 8px; font-size: 1.05rem; }
  .nav-list .nav-cta { margin: 12px 0 0; text-align: center; }
}

@media (max-width: 720px) {
  .section { padding-block: 80px; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .quote { padding: 30px 26px; }
}
