/* ==========================================================================
   CNSTECH — Μηχανές Γραφείου / Office Machines
   Static prototype stylesheet
   ========================================================================== */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Liberation Sans", "Noto Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video, svg { display: block; max-width: 100%; height: auto; }

a { color: var(--accent); text-decoration: none; }
a:hover, a:focus-visible { color: var(--accent-hi); }

button { font: inherit; cursor: pointer; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 8px; top: -40px;
  background: var(--accent); color: #001018; padding: 8px 12px; border-radius: 6px;
  font-weight: 600; z-index: 100; transition: top .2s ease;
}
.skip-link:focus { top: 8px; }

/* ---------- Theme tokens ---------- */
:root {
  --bg:           #0a0e14;
  --bg-alt:       #0e1620;
  --surface:      #11161f;
  --surface-hi:   #161e2c;
  --border:       #232c3a;
  --border-hi:    #2f3a4d;
  --text:         #e6ecf3;
  --text-mute:    #94a3b8;
  --text-dim:     #6b7787;

  --accent:       #22d3ee;   /* cyan */
  --accent-hi:    #67e8f9;
  --accent-deep:  #0891b2;
  --accent-glow:  rgba(34, 211, 238, 0.18);

  --warn:         #facc15;
  --service:      #ef4444;
  --ok:           #22c55e;

  --radius:       8px;
  --radius-sm:    6px;
  --shadow:       0 6px 20px rgba(0, 0, 0, 0.35);
  --shadow-hi:    0 10px 30px rgba(0, 0, 0, 0.45);

  --max:          1200px;
  --pad:          clamp(20px, 4vw, 40px);
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.container--narrow { max-width: 880px; }

.section {
  padding-block: clamp(56px, 9vw, 96px);
}
.section--alt {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  border-block: 1px solid var(--border);
}

.section-head { max-width: 760px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 12px;
}
.section h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.2; margin: 0 0 12px;
  color: var(--text); letter-spacing: -0.01em;
}
.section-sub { color: var(--text-mute); margin: 0; font-size: 1.02rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 14, 20, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 14px; gap: 16px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: 34px; width: auto; object-fit: contain; }

.primary-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 4px; align-items: center;
}
.primary-nav a {
  display: inline-block;
  padding: 10px 14px;
  color: var(--text);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background-color .18s ease, color .18s ease;
}
.primary-nav a:hover, .primary-nav a:focus-visible {
  background: var(--surface-hi); color: var(--accent-hi);
}
.primary-nav .nav-cta {
  background: var(--accent); color: #001018; margin-left: 6px;
}
.primary-nav .nav-cta:hover { background: var(--accent-hi); color: #001018; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 10px;
  flex-direction: column; gap: 5px; justify-content: center;
}
.nav-toggle-bar {
  display: block; width: 100%; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(48px, 8vw, 96px);
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(34, 211, 238, 0.10), transparent 60%),
    linear-gradient(180deg, #0a0e14 0%, #0c121a 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  position: relative;
}

.breadcrumbs ol {
  list-style: none; margin: 0 0 20px; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
  font-size: 0.85rem; color: var(--text-dim);
}
.breadcrumbs li + li::before {
  content: "/"; padding: 0 6px 0 0; color: var(--text-dim);
}
.breadcrumbs a { color: var(--text-mute); }
.breadcrumbs a:hover { color: var(--accent-hi); }
.breadcrumbs [aria-current] { color: var(--text); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--text-mute);
  margin: 0 0 18px;
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
}

h1 {
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  line-height: 1.1; letter-spacing: -0.015em;
  margin: 0 0 18px; color: var(--text); font-weight: 700;
}
.lead {
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  color: var(--text-mute);
  margin: 0 0 28px; max-width: 56ch;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-row--end { justify-content: flex-end; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--accent); color: #001018;
  box-shadow: 0 6px 18px var(--accent-glow);
}
.btn--primary:hover { background: var(--accent-hi); color: #001018; box-shadow: 0 8px 22px var(--accent-glow); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-hi);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-hi); background: var(--surface); }

.trust-chips {
  list-style: none; margin: 32px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.trust-chips li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.88rem; color: var(--text-mute);
}
.chip-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
}

/* Hero visual */
.hero-visual { position: relative; }
.hero-media {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-hi);
  background: #000;
  aspect-ratio: 1080 / 606;
  box-shadow: var(--shadow-hi);
}
.hero-video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 14, 20, 0.6) 100%);
  pointer-events: none;
}

.status-panel {
  position: absolute;
  right: -8px; bottom: -16px;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 6px 18px;
  box-shadow: var(--shadow);
  font-size: 0.85rem; color: var(--text-mute);
  min-width: 200px;
}
.status-row { display: inline-flex; align-items: center; gap: 8px; }
.toner-bar {
  grid-column: 1 / -1;
  height: 6px; border-radius: 99px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.toner-bar span {
  display: block; height: 100%; width: 64%;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  animation: tonerFill 5s ease-in-out infinite alternate;
}

/* LEDs */
.led {
  display: inline-block; width: 9px; height: 9px; border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.4);
}
.led--ready    { background: var(--ok);    animation: ledPulse 2.0s ease-in-out infinite; box-shadow: 0 0 0 2px rgba(0,0,0,.4), 0 0 10px rgba(34,197,94,.6); }
.led--warn     { background: var(--warn);  animation: ledPulse 2.6s ease-in-out infinite; }
.led--service  { background: var(--service); animation: ledPulse 3.2s ease-in-out infinite; }

@keyframes ledPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}
@keyframes tonerFill {
  0%   { width: 24%; }
  100% { width: 78%; }
}

/* ---------- Services cards grid ---------- */
.cards-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute; inset: -1px; pointer-events: none;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), transparent 40%);
  opacity: 0; transition: opacity .25s ease; z-index: -1;
}
.card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(34, 211, 238, 0.10), 0 4px 12px rgba(0,0,0,0.4);
  background: var(--surface-hi);
}
.card:hover::before { opacity: 1; }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: rgba(34, 211, 238, 0.10);
  color: var(--accent);
  border: 1px solid rgba(34, 211, 238, 0.25);
  margin-bottom: 14px;
}
.card h3 {
  font-size: 1.1rem; margin: 0 0 8px; color: var(--text); letter-spacing: -0.005em;
}
.card p { margin: 0; color: var(--text-mute); font-size: 0.96rem; }

/* ---------- Process / steps ---------- */
.steps {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  counter-reset: step;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  transition: border-color .2s ease, transform .2s ease;
}
.step:hover { border-color: var(--accent); transform: translateY(-2px); }
.step-num {
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  color: var(--accent);
  background: rgba(34, 211, 238, 0.10);
  border: 1px solid rgba(34, 211, 238, 0.25);
  padding: 3px 8px; border-radius: 4px;
  margin-bottom: 12px; letter-spacing: 0.05em;
}
.step h3 { font-size: 1.05rem; margin: 0 0 6px; color: var(--text); }
.step p { margin: 0; color: var(--text-mute); font-size: 0.95rem; }

/* Print queue card */
.queue-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  max-width: 720px;
  margin: 24px auto 0;
  box-shadow: var(--shadow);
}
.queue-head {
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 12px; margin-bottom: 12px;
  font-size: 0.92rem; color: var(--text-mute);
}
.queue-head strong { color: var(--text); }
.queue-meta { margin-left: auto; font-family: ui-monospace, monospace; font-size: 0.78rem; color: var(--text-dim); }
.queue-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.queue-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  position: relative; overflow: hidden;
}
.q-name { color: var(--text); font-family: ui-monospace, monospace; font-size: 0.85rem; }
.q-state { color: var(--text-mute); font-size: 0.85rem; }
.queue-item.is-done    .q-state { color: var(--ok); }
.queue-item.is-printing .q-state { color: var(--accent); }
.queue-item.is-waiting  .q-state { color: var(--warn); }
.queue-item.is-printing::after {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 35%;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  animation: queueSweep 2.4s ease-in-out infinite;
}
@keyframes queueSweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(320%); }
}

/* ---------- Maintenance split ---------- */
.split-grid {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
}
.split-grid--reverse { grid-template-columns: 1fr 1.05fr; }
.split-grid--reverse .image-wrap { order: -1; }
@media (min-width: 900px) {
  .split-grid--reverse .image-wrap { order: 0; }
}

.check-list { list-style: none; padding: 0; margin: 18px 0 24px; display: grid; gap: 10px; }
.check-list li {
  position: relative; padding-left: 28px; color: var(--text);
  font-size: 0.98rem;
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 16px; height: 16px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 0 0 3px rgba(34,211,238,.12);
}
.check-list li::after {
  content: "";
  position: absolute; left: 4px; top: 11px;
  width: 8px; height: 4px;
  border-left: 2px solid #001018;
  border-bottom: 2px solid #001018;
  transform: rotate(-45deg);
}

.scanner-visual {
  position: relative;
  border: 1px solid var(--border-hi);
  background: linear-gradient(180deg, #0d141d, #0b1118);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  aspect-ratio: 3/2;
}
.scanner-visual svg { width: 100%; height: 100%; }
.paper-out { animation: paperEmerge 4.5s ease-in-out infinite; transform-origin: 180px 145px; }
@keyframes paperEmerge {
  0%, 100% { transform: translateY(8px); opacity: 0.85; }
  50%      { transform: translateY(-2px); opacity: 1; }
}
.scan-light { animation: scanSweep 3.2s ease-in-out infinite; }
@keyframes scanSweep {
  0%   { transform: translateX(0); opacity: 0.0; }
  10%  { opacity: 0.55; }
  50%  { transform: translateX(220px); opacity: 0.55; }
  60%  { opacity: 0.0; }
  100% { transform: translateX(220px); opacity: 0.0; }
}

/* ---------- Image wrap ---------- */
.image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-hi);
  aspect-ratio: 3/2;
  background: var(--surface);
}
.image-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ---------- Audience grid ---------- */
.audience-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.audience-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color .2s ease, transform .2s ease, background-color .2s ease;
}
.audience-tile:hover { border-color: var(--accent); transform: translateY(-2px); background: var(--surface-hi); }
.audience-tile svg { color: var(--accent); margin-bottom: 12px; }
.audience-tile h3 { font-size: 1.02rem; margin: 0 0 6px; color: var(--text); }
.audience-tile p { margin: 0; color: var(--text-mute); font-size: 0.92rem; }

/* ---------- Internal links list ---------- */
.link-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.link-list a {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}
.link-list a:hover {
  border-color: var(--accent); background: var(--surface-hi); transform: translateX(2px);
}
.link-list strong { color: var(--accent-hi); font-weight: 600; }
.link-list span { color: var(--text-mute); font-size: 0.9rem; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  transition: background-color .18s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--surface-hi); }
.faq-icon {
  width: 16px; height: 16px; position: relative; flex: none;
  display: inline-block;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 12px; height: 2px; background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform .25s ease, opacity .2s ease;
  border-radius: 1px;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0); opacity: 0; }
.faq-body { padding: 0 20px 18px; color: var(--text-mute); }
.faq-body p { margin: 0; }

/* ---------- Final CTA ---------- */
.final-cta { padding-block: clamp(60px, 8vw, 100px); }
.final-cta-card {
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-alt) 100%);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: 0 12px 36px rgba(34, 211, 238, 0.10), var(--shadow);
  position: relative;
  overflow: hidden;
}
.final-cta-card h2 { margin: 0 0 6px; font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
.final-cta-card p { margin: 0; color: var(--text-mute); max-width: 56ch; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
  color: var(--text-mute);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}
.footer-brand img { height: 28px; width: auto; margin-bottom: 16px; }
.footer-brand p {
  margin: 0;
  max-width: 320px;
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.6;
}
.footer-title {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
}
.footer-nav ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a,
.footer-contact a {
  font-size: 0.88rem;
  color: var(--text-dim);
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--accent-hi); }
.footer-bottom {
  max-width: var(--max);
  margin: 40px auto 0;
  border-top: 1px solid var(--border);
  padding: 18px var(--pad) 24px;
  color: var(--text-dim);
  font-size: 0.85rem;
}
.footer-bottom p { margin: 0; }

/* ---------- Reveal animation (progressive) ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .split-grid, .split-grid--reverse { grid-template-columns: 1fr; }
  .status-panel { position: static; margin-top: 14px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .final-cta-card { grid-template-columns: 1fr; }
  .cta-row--end { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    transform-origin: top;
    transform: scaleY(0); opacity: 0;
    transition: transform .22s ease, opacity .22s ease;
    pointer-events: none;
    padding: 12px var(--pad) 18px;
  }
  .primary-nav.is-open { transform: scaleY(1); opacity: 1; pointer-events: auto; }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .primary-nav a { padding: 12px 14px; }
  .primary-nav .nav-cta { margin-left: 0; text-align: center; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
