:root {
  --bg: #f7f6f2;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --surface-muted: #fbfaf7;
  --ink: #171717;
  --ink-strong: #0d0d0d;
  --muted: #5f5f5f;
  --muted-2: #7c7c7c;
  --line: rgba(23, 23, 23, 0.12);
  --line-strong: rgba(23, 23, 23, 0.2);
  --brand: #ea2804;
  --brand-2: #ff6a3d;
  --brand-dark: #b51f03;
  --accent: #111111;
  --good: #0f8f5f;
  --warning: #d28a00;
  --shadow-sm: 0 8px 20px rgba(17, 17, 17, 0.06);
  --shadow-md: 0 16px 40px rgba(17, 17, 17, 0.1);
  --shadow-lg: 0 28px 80px rgba(17, 17, 17, 0.14);
  --radius-xs: 14px;
  --radius-sm: 20px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --radius-pill: 9999px;
  --container: 1240px;
  --gutter: clamp(18px, 3vw, 32px);
  --section-y: clamp(72px, 9vw, 120px);
  --section-y-tight: clamp(48px, 6vw, 72px);
  --font-display: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(234, 40, 4, 0.12), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(255, 106, 61, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f6f2 18%, #f5f3ee 100%);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--brand);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(234, 40, 4, 0.4);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-pill);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-shell {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(247, 246, 242, 0.76);
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--brand) 0%, #ff6f3d 58%, #0d0d0d 100%);
  box-shadow: 0 10px 20px rgba(234, 40, 4, 0.24);
  position: relative;
  flex: 0 0 auto;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.94);
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text span:first-child {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 700;
}

.brand-text span:last-child {
  font-size: 1.05rem;
  color: var(--ink-strong);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  padding: 11px 14px;
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink-strong);
  background: rgba(234, 40, 4, 0.08);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--ink);
  border-radius: var(--radius-pill);
  padding: 11px 14px;
  box-shadow: var(--shadow-sm);
}

.menu-toggle svg {
  width: 18px;
  height: 18px;
}

.mobile-nav {
  display: none;
  padding: 0 0 16px;
}

.mobile-nav[aria-hidden="false"] {
  display: block;
}

.mobile-nav-inner {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.mobile-nav a {
  padding: 14px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  color: var(--ink);
  background: rgba(17, 17, 17, 0.03);
}

main {
  display: block;
}

.hero {
  padding: clamp(22px, 3vw, 34px) 0 var(--section-y);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: clamp(34px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(234, 40, 4, 0.98) 0%, rgba(255, 106, 61, 0.96) 38%, rgba(17, 17, 17, 0.98) 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
}

.hero-card::before {
  width: 360px;
  height: 360px;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 68%);
}

.hero-card::after {
  width: 260px;
  height: 260px;
  left: -80px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(22px, 4vw, 48px);
  padding: clamp(24px, 4.4vw, 56px);
  align-items: stretch;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.94;
  font-size: clamp(3rem, 7vw, 6.5rem);
  max-width: 11ch;
}

.hero p.lead,
.page-hero p.lead {
  margin: 0;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.6;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: #fff;
  color: var(--ink-strong);
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.18);
}

.btn-primary:hover {
  background: #fff6f2;
  color: var(--ink-strong);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: #000;
  color: #fff;
}

.hero-aside {
  display: grid;
  gap: 16px;
  align-content: center;
}

.hero-panel {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  padding: 18px;
}

.hero-panel--visual {
  min-height: 430px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.visual-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
}

.visual-topline strong {
  color: #fff;
}

.machine-viz {
  position: relative;
  min-height: 260px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.9) 0 7px, transparent 8px),
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.2) 0 42px, transparent 43px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.8));
  overflow: hidden;
}

.machine-viz::before,
.machine-viz::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.machine-viz::before {
  inset: 24px 20px auto;
  height: 14px;
  background: linear-gradient(90deg, rgba(234, 40, 4, 0.28), rgba(234, 40, 4, 0.02));
}

.machine-viz::after {
  width: 220px;
  height: 220px;
  right: -44px;
  bottom: -34px;
  border: 16px solid rgba(17, 17, 17, 0.08);
}

.machine-frame {
  position: absolute;
  inset: 34px 24px 34px;
  border-radius: 20px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.03) 0%, transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f8f7f4 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.machine-frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 16px;
  border: 2px dashed rgba(234, 40, 4, 0.26);
}

.machine-tool {
  position: absolute;
  left: 50%;
  top: 36px;
  width: 68px;
  height: 168px;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    linear-gradient(180deg, #1d1d1d 0%, #303030 42%, #f2f2f2 43%, #f2f2f2 55%, #1d1d1d 56%, #1d1d1d 100%);
  box-shadow: 0 20px 24px rgba(17, 17, 17, 0.18);
}

.machine-tool::before,
.machine-tool::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.machine-tool::before {
  top: -18px;
  width: 24px;
  height: 28px;
  border-radius: 10px 10px 12px 12px;
  background: #111;
}

.machine-tool::after {
  bottom: -18px;
  width: 96px;
  height: 24px;
  border-radius: 999px;
  background: rgba(234, 40, 4, 0.9);
  box-shadow: 0 0 0 14px rgba(234, 40, 4, 0.08);
}

.machine-bed {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 20px;
  height: 64px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.06) 0 10%, transparent 10% 20%, rgba(17, 17, 17, 0.06) 20% 30%, transparent 30% 40%, rgba(17, 17, 17, 0.06) 40% 50%, transparent 50% 60%, rgba(17, 17, 17, 0.06) 60% 70%, transparent 70% 80%, rgba(17, 17, 17, 0.06) 80% 90%, transparent 90% 100%),
    linear-gradient(180deg, #d8d8d8, #eceae6);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.machine-bed::before {
  content: "";
  position: absolute;
  inset: 14px 14px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(234, 40, 4, 0.18), rgba(17, 17, 17, 0.05));
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stat-pill {
  padding: 15px 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-pill strong {
  display: block;
  font-size: 1.08rem;
  color: #fff;
}

.stat-pill span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  line-height: 1.45;
}

.section {
  padding: var(--section-y) 0;
}

.section-tight {
  padding: var(--section-y-tight) 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.section-heading h2,
.page-hero h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  line-height: 0.98;
  font-size: clamp(2rem, 4.2vw, 3.75rem);
}

.section-heading p,
.page-hero p.sublead {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.65;
}

.grid-3,
.grid-4,
.grid-2,
.detail-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-2,
.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.feature-card,
.product-card,
.case-card,
.solution-card,
.info-card,
.contact-card,
.principle-card,
.metric-card,
.timeline-card,
.page-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  box-shadow: var(--shadow-sm);
}

.feature-card,
.product-card,
.case-card,
.solution-card,
.info-card,
.contact-card,
.principle-card,
.metric-card,
.timeline-card,
.page-card {
  padding: 24px;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card .index {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(234, 40, 4, 0.08);
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 0.92rem;
}

.feature-card h3,
.product-card h3,
.case-card h3,
.solution-card h3,
.info-card h3,
.contact-card h3,
.principle-card h3,
.metric-card h3,
.timeline-card h3,
.page-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.feature-card p,
.product-card p,
.case-card p,
.solution-card p,
.info-card p,
.contact-card p,
.principle-card p,
.metric-card p,
.timeline-card p,
.page-card p,
.list-copy,
.mini-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.tag-row,
.badge-row,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag,
.badge,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(17, 17, 17, 0.03);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 600;
}

.badge {
  background: rgba(234, 40, 4, 0.08);
  border-color: rgba(234, 40, 4, 0.16);
  color: var(--brand-dark);
}

.metric-card strong,
.principle-card strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.metric-card strong small {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.detail-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.detail-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.6;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 18px;
  align-items: stretch;
}

.panel-rail {
  border-radius: var(--radius-md);
  padding: 24px;
  background: linear-gradient(180deg, rgba(234, 40, 4, 0.08), rgba(17, 17, 17, 0.02));
  border: 1px solid rgba(234, 40, 4, 0.14);
}

.process-list,
.timeline-list,
.contact-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li,
.timeline-list li,
.contact-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.process-step,
.timeline-step {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(234, 40, 4, 0.1);
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 0.88rem;
  flex: 0 0 auto;
}

.process-list h3,
.timeline-list h3,
.contact-list h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.inline-link {
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.inline-link:hover {
  color: var(--brand);
}

.icon-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.icon-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 0 5px rgba(234, 40, 4, 0.1);
}

.subtle-bar {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(234, 40, 4, 0.2), rgba(234, 40, 4, 0.02));
}

.form-shell {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(23, 23, 23, 0.14);
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 14px 16px;
  min-height: 50px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 148px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(234, 40, 4, 0.45);
  box-shadow: 0 0 0 4px rgba(234, 40, 4, 0.08);
  outline: none;
}

.form-note {
  color: var(--muted-2);
  font-size: 0.92rem;
  line-height: 1.55;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.5;
}

.consent input {
  margin-top: 4px;
}

.page-hero {
  padding: clamp(34px, 5vw, 56px) 0 clamp(28px, 4vw, 44px);
}

.page-hero-shell {
  border-radius: clamp(30px, 4vw, 48px);
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.98) 0%, rgba(35, 35, 35, 0.95) 48%, rgba(234, 40, 4, 0.92) 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.page-hero .sublead,
.page-hero .lead {
  color: rgba(255, 255, 255, 0.86);
}

.page-hero .badge,
.page-hero .tag {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.page-hero .badge {
  background: rgba(255, 255, 255, 0.16);
}

.footer {
  margin-top: var(--section-y);
  padding: 34px 0 48px;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
  background: rgba(255, 255, 255, 0.56);
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: start;
}

.footer h2,
.footer h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.footer p,
.footer a,
.footer li {
  color: var(--muted);
  line-height: 1.7;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer .brand {
  margin-bottom: 14px;
}

.footer-legal {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}

.shell-note {
  color: var(--muted-2);
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 12ch;
  }

  .grid-3,
  .grid-2,
  .detail-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel--visual {
    min-height: 370px;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 16px;
  }

  .header-inner {
    padding: 14px 0;
  }

  .brand-text span:first-child {
    display: none;
  }

  .hero-card,
  .page-hero-shell {
    border-radius: 30px;
  }

  .hero-grid,
  .page-hero-shell {
    padding: 18px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .hero-panel--visual {
    min-height: 320px;
  }

  .stat-strip,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .product-card,
  .case-card,
  .solution-card,
  .info-card,
  .contact-card,
  .principle-card,
  .metric-card,
  .timeline-card,
  .page-card,
  .panel-rail {
    padding: 20px;
  }

  .footer-legal {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}