/* ============================================
   myetrain Landing — Local Fonts (Inter Variable)
   ============================================ */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ============================================
   Design tokens
   ============================================ */

:root {
  --bg:            #05070d;
  --bg-elevated:   #0b0f1a;
  --surface:       rgba(255, 255, 255, 0.035);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --border:        rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --text:       #f4f6fb;
  --text-soft:  #c4cadb;
  --text-muted: #8c93a8;

  --accent:      #00e5c7;      /* petrol-teal, inspired by realmaker */
  --accent-2:    #3b82f6;
  --accent-glow: rgba(0, 229, 199, 0.35);

  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 4px 12px -4px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 30px 80px -20px rgba(0, 0, 0, 0.6);

  --container: 1240px;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-feature-settings: "cv11", "ss01", "ss03";
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

::selection {
  background: var(--accent);
  color: #001a16;
}

/* ============================================
   Background ambient
   ============================================ */

.bg-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.35;
}

.bg-glow.one {
  top: -250px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #00e5c7 0%, transparent 70%);
}

.bg-glow.two {
  top: 40%;
  right: -250px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
  opacity: 0.25;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 20%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 20%, black 0%, transparent 70%);
}

/* ============================================
   Header
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(5, 7, 13, 0.72);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #00e5c7 0%, #3b82f6 100%);
  display: grid;
  place-items: center;
  color: #03211c;
  box-shadow: 0 10px 30px -10px var(--accent-glow);
}

.brand-mark svg { width: 20px; height: 20px; }

.brand-name {
  font-weight: 700;
}

.brand-name b {
  font-weight: 700;
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav a {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}

.nav a:hover { color: var(--text); }

.header-cta { display: flex; align-items: center; gap: 12px; }

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn svg { width: 16px; height: 16px; transition: transform 0.2s var(--ease); }

.btn-primary {
  background: var(--accent);
  color: #03211c;
  box-shadow: 0 10px 30px -10px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px -10px var(--accent-glow);
}

.btn-primary:hover svg { transform: translateX(3px); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  background: var(--surface-hover);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-lg { padding: 17px 32px; font-size: 15.5px; }

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  padding: 120px 0 80px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 32px;
  font-weight: 500;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 229, 199, 0.15);
}

.hero h1 {
  font-size: clamp(44px, 6.2vw, 80px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}

.hero h1 .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.hero p.lead {
  font-size: 20px;
  color: var(--text-soft);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  color: var(--text-muted);
  font-size: 14px;
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta-item svg { width: 18px; height: 18px; color: var(--accent); }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 660px;
  justify-self: end;
  width: 100%;
}

.hero-media {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: linear-gradient(160deg, rgba(0, 229, 199, 0.1), rgba(59, 130, 246, 0.04));
  box-shadow: var(--shadow-lg);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder visualization used when no image present */
.hero-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  background:
    radial-gradient(circle at 25% 20%, rgba(0, 229, 199, 0.3), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.28), transparent 55%),
    linear-gradient(160deg, #091018 0%, #050810 100%);
}

.hero-placeholder .ph-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}

.ph-pill {
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(0, 229, 199, 0.15);
  color: var(--accent);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 229, 199, 0.3);
}

.ph-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ph-row {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(10px);
}

.ph-row .ph-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.ph-row .ph-value {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ph-row .ph-value small {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 4px;
}

.ph-row svg { color: var(--accent); width: 32px; height: 32px; }

.floating-card {
  position: absolute;
  background: rgba(11, 15, 26, 0.85);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 14px 18px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.floating-card .fc-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, #00e5c7, #3b82f6);
  display: grid;
  place-items: center;
  color: #03211c;
  flex-shrink: 0;
}

.floating-card .fc-icon svg { width: 18px; height: 18px; }

.floating-card .fc-label { color: var(--text-muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
.floating-card .fc-value { font-weight: 700; font-size: 15px; color: var(--text); }

.floating-card.top    { top: 8%;    left: -40px; }
.floating-card.bottom { bottom: 8%; right: -40px; }

/* ============================================
   Stats bar
   ============================================ */

.stats {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-value {
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-value .unit { color: var(--accent); }

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   Section base
   ============================================ */

.section {
  padding: 140px 0;
  position: relative;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
}

.section-head.left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-label {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

.section-head h2 .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.section-head p {
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ============================================
   Features grid
   ============================================ */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 229, 199, 0.3);
  background: var(--surface-hover);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 229, 199, 0.18), rgba(59, 130, 246, 0.06));
  border: 1px solid rgba(0, 229, 199, 0.3);
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  color: var(--accent);
}

.feature-icon svg { width: 26px; height: 26px; }

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   Showcase — product screenshots
   ============================================ */

.showcase {
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.showcase-row.reverse .showcase-media { order: 2; }
.showcase-row.reverse .showcase-text  { order: 1; }

.showcase-media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(circle at 30% 30%, rgba(0, 229, 199, 0.18), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.15), transparent 55%),
    #0a0f1a;
  box-shadow: var(--shadow-lg);
}

.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-media .media-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.15);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.showcase-label {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}

.showcase-text h3 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.showcase-text p {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 24px;
}

.showcase-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
}

.showcase-list svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   Steps
   ============================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.step:hover {
  border-color: rgba(0, 229, 199, 0.25);
  background: var(--surface-hover);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00e5c7, #3b82f6);
  color: #03211c;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px -8px var(--accent-glow);
}

.step h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.step p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ============================================
   Audience
   ============================================ */

.audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.audience-card:hover {
  border-color: rgba(0, 229, 199, 0.3);
  background: var(--surface-hover);
}

.audience-card h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.audience-card > p {
  color: var(--text-soft);
  margin-bottom: 30px;
  font-size: 16.5px;
  line-height: 1.55;
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
}

.audience-list li svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   CTA
   ============================================ */

.cta {
  padding: 120px 0;
}

.cta-inner {
  background: linear-gradient(135deg, rgba(0, 229, 199, 0.1), rgba(59, 130, 246, 0.06));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 88px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(0, 229, 199, 0.25), transparent 55%),
    radial-gradient(circle at 85% 70%, rgba(59, 130, 246, 0.18), transparent 55%);
  pointer-events: none;
}

.cta-inner > * { position: relative; }

.cta h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.08;
}

.cta h2 .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.cta p {
  font-size: 18.5px;
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 40px;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a { transition: color 0.2s var(--ease); }
.footer-links a:hover { color: var(--text); }

/* ============================================
   Impressum
   ============================================ */

.legal {
  padding: 72px 0 120px;
  max-width: 860px;
  margin: 0 auto;
}

.legal h1 {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}

.legal .subtitle {
  color: var(--text-muted);
  margin-bottom: 48px;
  font-size: 16px;
}

.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 20px;
}

.legal-card h2 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
  color: var(--text);
}

.legal-card p, .legal-card address {
  color: var(--text-soft);
  font-style: normal;
  line-height: 1.8;
  font-size: 15.5px;
}

.legal-card a {
  color: var(--accent);
  transition: color 0.2s var(--ease);
}

.legal-card a:hover { text-decoration: underline; }

.legal-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 14px 32px;
  margin-top: 6px;
}

.legal-grid dt {
  color: var(--text-muted);
  font-size: 14px;
}

.legal-grid dd {
  color: var(--text);
  font-size: 15.5px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 36px;
  transition: color 0.2s var(--ease);
}

.back-link:hover { color: var(--text); }
.back-link svg { width: 16px; height: 16px; }

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .showcase-row { gap: 48px; }
}

@media (max-width: 860px) {
  .hero { padding: 72px 0 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-height: 520px; justify-self: center; max-width: 460px; }
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 56px; }
  .features, .steps { grid-template-columns: 1fr; }
  .audience { grid-template-columns: 1fr; }
  .audience-card { padding: 40px; }
  .showcase-row { grid-template-columns: 1fr; gap: 32px; }
  .showcase-row.reverse .showcase-media { order: 0; }
  .showcase-row.reverse .showcase-text  { order: 0; }
  .showcase { gap: 64px; }
  .cta-inner { padding: 56px 28px; }
  .cta { padding: 80px 0; }
  .nav { display: none; }
  .floating-card.top    { left: -8px; }
  .floating-card.bottom { right: -8px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .legal-grid { grid-template-columns: 1fr; gap: 4px 0; }
  .legal-grid dt { margin-top: 14px; }
}

@media (max-width: 560px) {
  .header-inner { height: 64px; }
  .brand-name { font-size: 17px; }
  .btn { padding: 11px 20px; font-size: 13.5px; }
  .btn-lg { padding: 14px 24px; font-size: 14.5px; }
  .feature-card, .step, .audience-card, .legal-card { padding: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .footer-inner { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
