/* AdjustableTableLegs.com — DESIGN SYSTEM v2 (web-design-layout skill applied) */
:root {
  /* Brand — 60-30-10: primary surfaces / white cards / orange accents */
  --primary: #1B4965;
  --primary-dark: #153750;
  --primary-light: #2A6A8F;
  --accent: #E8652D;
  --accent-dark: #D1541C;
  --accent-soft: rgba(232,101,45,.12);

  /* Surfaces */
  --neutral: #F5F6F7;
  --surface: #FFFFFF;
  --surface-alt: #F8FAFC;
  --ink: #0F172A;
  --ink-secondary: #1E293B;
  --muted: #475569;
  --muted-light: #64748B;
  --line: #E2E8F0;
  --success: #2E7D46;

  /* Layout */
  --container: 1200px;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --section: 96px;

  /* 4px spacing grid */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Typography scale */
  --font-display: "Geist", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Geist Sans", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: clamp(2.5rem, 5vw, 3.75rem);

  /* Shadow system */
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 15px -3px rgba(27,73,101,0.10), 0 4px 6px -4px rgba(27,73,101,0.10);
  --shadow-xl: 0 20px 25px -5px rgba(27,73,101,0.14), 0 8px 10px -6px rgba(27,73,101,0.14);
  --shadow-hero: 0 24px 64px rgba(0,0,0,0.35);

  /* Transitions */
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--neutral);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-6); }
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--duration-fast) var(--ease-out); }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: var(--space-4); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin: var(--space-12) 0 var(--space-5); font-weight: 700; }
h3 { font-size: var(--text-xl); margin-bottom: var(--space-2); font-weight: 600; }
p { margin-bottom: var(--space-4); }
.lead { font-size: var(--text-lg); color: var(--muted); margin-bottom: var(--space-4); line-height: 1.65; }
.muted { color: var(--muted); }
.container.page { padding-top: var(--space-10); padding-bottom: var(--space-10); }

/* Reveal animation on scroll (soft, performance-safe) */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: fadeUp .5s var(--ease-out) both; }
.reveal-1 { animation-delay: .05s; }
.reveal-2 { animation-delay: .12s; }
.reveal-3 { animation-delay: .19s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: var(--text-base);
  border: 2px solid transparent;
  transition: background var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-outline { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; }

/* ---------- Header / Nav ---------- */
.site-header { background: var(--surface); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--ink); }
.brand span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--ink); font-weight: 500; font-size: .95rem; }
.nav-links a:hover { color: var(--accent); }
.nav-links .dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius); min-width: 220px;
  padding: 8px; box-shadow: var(--shadow-lg); z-index: 60;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 8px 12px; border-radius: 6px; }
.dropdown-menu a:hover { background: var(--neutral); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(232,101,45,.18), transparent 60%),
    linear-gradient(135deg, #12374D 0%, var(--primary) 55%, #1E5A7E 100%);
  color: #fff;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 44px 44px;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--space-12); align-items: center; padding-top: var(--space-20); padding-bottom: var(--space-24); }
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25);
  border-radius: 9999px; font-size: var(--text-sm); font-weight: 600;
  color: rgba(255,255,255,.92); margin-bottom: var(--space-4);
}
.hero h1 { color: #fff; font-weight: 800; font-size: var(--text-5xl); line-height: 1.1; }
.hero .lead { color: rgba(255,255,255,.85); font-size: var(--text-xl); margin-bottom: var(--space-6); }
.hero-cta { display: flex; gap: var(--space-4); margin-top: var(--space-7); flex-wrap: wrap; }
.hero .btn-primary { background: var(--accent); box-shadow: 0 8px 20px rgba(232,101,45,.35); }
.hero .btn-primary:hover { background: var(--accent-dark); }
.hero .btn-outline { border-color: rgba(255,255,255,.75); color: #fff; }
.hero .btn-outline:hover { background: rgba(255,255,255,.14); border-color: #fff; }
.hero-img { background: #fff; padding: 10px; border-radius: var(--radius-xl); box-shadow: var(--shadow-hero); }
.hero-img img { border-radius: var(--radius-lg); }

/* ---------- Stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-4);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-6); margin-top: -36px; position: relative; z-index: 2;
  box-shadow: var(--shadow-xl);
}
.stats > div { text-align: center; }
.stats strong { font-family: var(--font-display); font-size: 1.7rem; color: var(--primary); display: block; margin-bottom: var(--space-1); }
.stats span { color: var(--muted); font-size: var(--text-sm); }

/* ---------- Category cards ---------- */
.cat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.cat-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; padding-bottom: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.cat-card img { width: 100%; height: 220px; object-fit: cover; }
.cat-card h3, .cat-card p { padding: 0 var(--space-6); }
.cat-card h3 { margin-top: var(--space-5); }
.cat-card .btn { margin: var(--space-4) var(--space-6) 0; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: var(--text-sm); color: var(--muted); margin-bottom: var(--space-6); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }

/* ---------- Kicker / eyebrow ---------- */
.kicker {
  display: inline-block; font-family: var(--font-mono); font-size: var(--text-xs);
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--space-3);
}

/* ---------- Section head (skill pattern) ---------- */
.section { padding: var(--section) 0; }
.section-sm { padding: var(--space-20) 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto var(--space-12); }
.section-head .section-tag {
  display: inline-flex; align-items: center; gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  background: var(--accent-soft); color: var(--accent);
  border-radius: 9999px; font-size: var(--text-sm); font-weight: 600;
  margin-bottom: var(--space-3);
}
.section-head h2 { margin: 0 0 var(--space-3); }
.section-head p { color: var(--muted); font-size: var(--text-lg); line-height: 1.6; margin: 0; }

/* ---------- Cat hero ---------- */
.cat-hero {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: var(--space-12); align-items: center;
  background: linear-gradient(135deg, rgba(27,73,101,.07), rgba(27,73,101,.02) 60%), var(--surface);
  border: 1px solid var(--line); border-left: 4px solid var(--accent);
  border-radius: var(--radius-xl); padding: var(--space-10) var(--space-12); margin-bottom: var(--space-10);
  box-shadow: var(--shadow-md);
}
.cat-hero h1 { margin-top: 0; }
.cat-hero-img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-lg); }
.cat-cta { display: flex; gap: var(--space-4); margin-top: var(--space-6); flex-wrap: wrap; }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.spec-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.spec-table th, .spec-table td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); font-size: .95rem; }
.spec-table thead th { background: var(--surface-alt); font-family: var(--font-display); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.spec-table tbody tr:last-child td { border-bottom: none; }
.spec-table tbody tr:hover { background: #FAFBFC; }
.table-thumb { width: 80px; height: 80px; object-fit: contain; border: 1px solid var(--line); border-radius: 6px; }
.model-link { font-family: var(--font-mono); font-weight: 600; }

/* ---------- Model hero ---------- */
.model-hero {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: var(--space-12); align-items: center;
  background: linear-gradient(135deg, rgba(27,73,101,.07), rgba(27,73,101,.02) 60%), var(--surface);
  border: 1px solid var(--line); border-left: 4px solid var(--accent);
  border-radius: var(--radius-xl); padding: var(--space-10) var(--space-12); margin-bottom: var(--space-8);
  box-shadow: var(--shadow-md);
}
.model-hero h1 { margin-top: 0; }
.model-hero .model-badge {
  display: inline-block; font-family: var(--font-mono); font-weight: 700; font-size: var(--text-xs);
  letter-spacing: .06em; color: var(--primary); background: rgba(27,73,101,.08);
  border: 1px solid rgba(27,73,101,.18); border-radius: var(--radius); padding: var(--space-1) var(--space-3); margin-bottom: var(--space-3);
}
.model-cta { display: flex; gap: var(--space-4); margin-top: var(--space-6); flex-wrap: wrap; }
.model-hero-img { width: 100%; aspect-ratio: 4/3; object-fit: contain; background: linear-gradient(180deg, #F7F9FA, #EDF1F4); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--space-6); box-shadow: var(--shadow-lg); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--space-4); }
.gallery img { width: 100%; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out); }
.gallery img:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(600px 200px at 90% 0%, rgba(232,101,45,.35), transparent 65%),
    linear-gradient(120deg, #12374D 0%, var(--primary) 60%, #1E5A7E 100%);
  color: #fff; border-radius: var(--radius-xl);
  padding: var(--space-16) var(--space-12); text-align: center; margin-top: var(--space-12); position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; margin-top: 0; font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: var(--space-3); }
.cta-band p { color: rgba(255,255,255,.85); margin-bottom: var(--space-6); font-size: var(--text-lg); }
.cta-band .btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(232,101,45,.35); }
.cta-band .btn-primary:hover { background: var(--accent-dark); }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.why-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out), border-color var(--duration-normal) var(--ease-out);
}
.why-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); border-color: rgba(27,73,101,.28); }
.why-card .ico, .app-item .ico, .mat-card .ico { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: var(--radius); background: rgba(27,73,101,.08); margin-bottom: var(--space-4); }
.ico-svg { width: 28px; height: 28px; stroke: var(--primary); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.app-item .ico { width: 48px; height: 48px; margin-bottom: var(--space-3); }
.app-item .ico-svg { width: 24px; height: 24px; }
.why-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.why-card p { color: var(--muted); font-size: var(--text-base); line-height: 1.65; margin: 0; }

/* ---------- Featured models ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.feat-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}
.feat-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.feat-card .ph { height: 180px; background: linear-gradient(180deg, #F7F9FA, #EEF1F4); display: flex; align-items: center; justify-content: center; padding: var(--space-3); border-bottom: 1px solid var(--line); }
.feat-card .ph img { max-height: 100%; object-fit: contain; }
.feat-card .fc-body { padding: var(--space-4) var(--space-5) var(--space-6); }
.feat-card .fc-model { font-family: var(--font-mono); font-weight: 700; color: var(--primary); font-size: var(--text-lg); }
.feat-card .fc-series { color: var(--muted); font-size: var(--text-sm); margin: var(--space-1) 0 var(--space-4); min-height: 2.6em; }
.feat-card a.btn { display: block; text-align: center; padding: var(--space-2) var(--space-4); font-size: var(--text-sm); border-radius: var(--radius); }

/* ---------- Applications ---------- */
.apps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.app-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-4); text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}
.app-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.app-item span.lbl { font-size: var(--text-base); font-weight: 600; display: block; color: var(--ink-secondary); }

/* ---------- Materials ---------- */
.mat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.mat-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}
.mat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.mat-card h3 { color: var(--primary); margin-bottom: var(--space-2); font-size: var(--text-xl); }
.mat-card p { color: var(--muted); font-size: var(--text-base); margin-bottom: var(--space-3); }
.mat-card ul { color: var(--muted); font-size: var(--text-sm); padding-left: var(--space-5); }

/* ---------- Inline SVG icon helper ---------- */
.ico-wrap { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: var(--radius); background: rgba(27,73,101,.08); margin-bottom: var(--space-4); }
.ico-wrap svg { width: 28px; height: 28px; stroke: var(--primary); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ico-wrap.sm { width: 48px; height: 48px; margin-bottom: var(--space-3); }
.ico-wrap.sm svg { width: 24px; height: 24px; }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-4); counter-reset: step; }
.step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5); position: relative; counter-increment: step;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out), border-color var(--duration-normal) var(--ease-out);
}
.step:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: rgba(232,101,45,.35); }
.step::before {
  content: counter(step); font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm);
  color: #fff; background: var(--accent); width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-4);
  box-shadow: 0 4px 10px rgba(232,101,45,.30);
}
.step h3 { font-size: var(--text-lg); margin-bottom: var(--space-1); }
.step p { color: var(--muted); font-size: var(--text-sm); line-height: 1.6; margin: 0; }

/* ---------- Certifications ---------- */
.cert-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--space-12); align-items: center; }
.cert-list { list-style: none; }
.cert-list li { padding: var(--space-4) 0 var(--space-4) 40px; position: relative; border-bottom: 1px solid var(--line); font-size: var(--text-base); }
.cert-list li::before { content: '✓'; position: absolute; left: 4px; color: var(--success); font-weight: 700; font-size: var(--text-lg); }
.factory-facts { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.factory-facts .ff {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--space-5); text-align: center;
  box-shadow: var(--shadow-sm);
}
.factory-facts strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--primary); display: block; margin-bottom: var(--space-1); }
.factory-facts span { color: var(--muted); font-size: var(--text-sm); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  margin-bottom: var(--space-3); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--duration-fast) var(--ease-out);
}
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary { cursor: pointer; padding: var(--space-4) var(--space-6); font-weight: 600; font-family: var(--font-display); list-style: none; position: relative; padding-right: 48px; color: var(--ink-secondary); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: var(--space-5); top: 50%; transform: translateY(-50%); font-size: var(--text-xl); color: var(--accent); font-weight: 700; }
.faq details[open] summary::after { content: '−'; }
.faq details p { padding: 0 var(--space-6) var(--space-5); color: var(--muted); font-size: var(--text-base); line-height: 1.65; margin: 0; }
/* article / resource pages */
.prose { max-width: 820px; margin: 0 auto; }
.prose.narrow { max-width: 780px; margin: 0; }
.prose h2 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin: 40px 0 14px; }
.prose p { color: var(--ink-secondary); font-size: 1rem; line-height: 1.8; margin-bottom: 14px; }
.prose .lead { font-size: var(--text-lg); }
.article-meta { color: var(--muted); font-size: var(--text-sm); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em; margin-bottom: var(--space-3); }
.article-cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.article-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-7); transition: box-shadow .18s, transform .18s; }
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.article-card .section-tag { display: inline-block; background: var(--surface-alt); border-radius: 2px; text-transform: uppercase; letter-spacing: .1em; font-family: var(--font-mono); font-size: .7rem; padding: 4px 10px; color: var(--muted); margin-bottom: var(--space-3); }
.article-card h3 { margin: 0 0 var(--space-2); font-size: 1.1rem; }
.article-card h3 a { color: var(--ink); }
.article-card h3 a:hover { color: var(--accent); }
.article-card p { color: var(--muted); font-size: .93rem; line-height: 1.6; margin: 0; }
@media (max-width: 720px) { .article-cards { grid-template-columns: 1fr; } }

/* ---------- Cross category ---------- */
.cross-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }

/* ---------- Related models ---------- */
.rel-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-4); }
.rel-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--space-3); text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}
.rel-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.rel-card img { height: 72px; width: auto; margin: 0 auto var(--space-2); object-fit: contain; }
.rel-card .m { font-family: var(--font-mono); font-weight: 600; font-size: var(--text-sm); color: var(--primary); display: block; }

/* ---------- Contact form ---------- */
.contact-form { max-width: 640px; display: flex; flex-direction: column; gap: var(--space-4); }
.contact-form label { display: flex; flex-direction: column; gap: var(--space-1); font-weight: 500; font-size: var(--text-sm); color: var(--ink-secondary); }
.contact-form input, .contact-form textarea {
  padding: var(--space-3) var(--space-4); border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: var(--text-base); background: var(--surface);
  transition: border-color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(27,73,101,.10); }
.form-note { color: var(--muted); font-size: var(--text-sm); }

/* ---------- contact two-column ---------- */
.contact-wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: var(--space-10); align-items: start; }
.contact-aside { background: var(--surface-alt, #F2F5F7); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-7); }
.contact-aside h3 { font-size: 1.05rem; margin-bottom: var(--space-4); }
.contact-aside .ci-row { display: flex; gap: 12px; align-items: flex-start; padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: .9rem; color: var(--ink-secondary); }
.contact-aside .ci-row:last-of-type { border-bottom: 0; }
.contact-aside .ci-row b { display: block; color: var(--ink); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 2px; }
.contact-aside .ci-ico { flex: 0 0 34px; height: 34px; border-radius: 8px; background: var(--primary); color: #fff; display: grid; place-items: center; }
.contact-aside .ci-ico svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-aside .hours { margin-top: var(--space-4); font-size: .84rem; color: var(--muted); background: var(--surface); border-radius: 8px; padding: 10px 12px; border: 1px solid var(--line); }
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: #14232E; color: rgba(255,255,255,.8); margin-top: var(--space-16); padding-top: var(--space-12); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: var(--space-8); padding-bottom: var(--space-8); }
.site-footer h4 { color: #fff; margin-bottom: var(--space-3); font-size: var(--text-base); }
.site-footer a { color: rgba(255,255,255,.75); }
.site-footer a:hover { color: var(--accent); }
.site-footer p { font-size: var(--text-sm); margin-bottom: var(--space-1); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: var(--space-4) 0; font-size: var(--text-xs); color: rgba(255,255,255,.5); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .cat-hero, .model-hero, .cert-wrap, .cross-grid { grid-template-columns: 1fr; }
  .cat-hero, .model-hero { padding: var(--space-6); }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .cat-cards, .why-grid, .mat-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .apps-grid { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .rel-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column;
    background: var(--surface); border-bottom: 1px solid var(--line); padding: var(--space-4); gap: var(--space-3); z-index: 100;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .dropdown-menu { position: static; box-shadow: none; display: none; }
  .dropdown.open .dropdown-menu { display: block; }
  .section { padding: var(--space-16) 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* ---------- Industrial B2B visual direction v3 ---------- */
:root {
  --industrial-ink: #0B1F2A;
  --industrial-blue: #123E56;
  --industrial-orange: #F26B38;
  --industrial-paper: #F1F4F5;
}
body { background: var(--industrial-paper); }
.site-header { background: var(--industrial-ink); border-bottom-color: rgba(255,255,255,.12); box-shadow: none; }
.brand, .nav-links a, .nav-toggle { color: #fff; }
.brand span { color: var(--industrial-orange); }
.nav-links a:hover { color: #FF9A70; }
.site-header .btn-primary { background: var(--industrial-orange); border-color: var(--industrial-orange); }
.hero { min-height: 560px; background: var(--industrial-ink); }
.hero::before { content: 'ADJUST / LEVEL / BUILD'; position: absolute; right: -34px; bottom: 25px; color: rgba(255,255,255,.06); font: 800 clamp(4rem,10vw,9rem)/.8 var(--font-display); letter-spacing: -.08em; transform: rotate(-90deg); transform-origin: right bottom; }
.hero::after { background-image: linear-gradient(rgba(242,107,56,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(242,107,56,.11) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(90deg, transparent, black 30%, black); }
.hero-grid { min-height: 560px; padding-top: var(--space-16); padding-bottom: var(--space-16); }
.hero-copy { max-width: 680px; }
.hero h1 { font-size: clamp(2.5rem,5.5vw,5rem); letter-spacing: -.055em; max-width: 690px; }
.hero .lead { max-width: 590px; font-size: 1.15rem; }
.hero-badge { border-radius: 2px; border-left: 3px solid var(--industrial-orange); background: rgba(242,107,56,.12); }
.hero-img { border-radius: 3px; padding: 14px; transform: rotate(2deg); box-shadow: 22px 26px 0 rgba(242,107,56,.75), var(--shadow-hero); }
.stats { border-radius: 3px; border-top: 3px solid var(--industrial-orange); margin-top: -28px; }
.stats strong { color: var(--industrial-blue); font-size: 2rem; }
.section { position: relative; }
.section-alt { background: var(--industrial-blue); border: 0; color: #fff; }
.section-alt h2, .section-alt h3, .section-alt .section-head p, .section-alt .lead { color: #fff; }
.section-alt .section-tag { background: rgba(242,107,56,.18); color: #FFAD8D; }
.section-alt .why-card, .section-alt .mat-card, .section-alt .app-item, .section-alt .step, .section-alt .faq details { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); box-shadow: none; }
.section-alt .why-card p, .section-alt .mat-card p, .section-alt .mat-card ul, .section-alt .step p, .section-alt .faq details p, .section-alt .faq summary { color: rgba(255,255,255,.76); }
.section-alt .why-card .ico-wrap, .section-alt .app-item .ico-wrap { background: rgba(242,107,56,.16); }
.section-alt .why-card .ico-wrap svg, .section-alt .app-item .ico-wrap svg { stroke: #FFAD8D; }
.section-head { margin-bottom: var(--space-10); }
.section-head .section-tag { border-radius: 2px; text-transform: uppercase; letter-spacing: .1em; font-family: var(--font-mono); font-size: .7rem; }
.cat-cards { gap: 0; }
.cat-card { border-radius: 3px; border: 0; box-shadow: none; display: grid; grid-template-columns: .85fr 1.15fr; grid-template-rows: auto 1fr auto; }
.cat-card img { grid-row: 1 / span 3; height: 100%; min-height: 260px; }
.cat-card h3 { margin: var(--space-8) var(--space-8) var(--space-2); }
.cat-card p { padding: 0 var(--space-8); }
.cat-card .btn { margin: var(--space-4) var(--space-8) var(--space-8); width: fit-content; }
.cat-card + .cat-card { background: var(--industrial-orange); color: #fff; }
.cat-card + .cat-card h3, .cat-card + .cat-card p { color: #fff; }
.cat-card + .cat-card .btn { border-color: #fff; color: #fff; }
.feat-grid { gap: 1px; background: var(--line); border: 1px solid var(--line); }
.feat-card { border: 0; border-radius: 0; box-shadow: none; position: relative; }
.feat-card::before { content: ''; height: 4px; background: var(--industrial-orange); position: absolute; left: 0; right: 0; top: 0; z-index: 1; transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.feat-card:hover::before { transform: scaleX(1); }
.feat-card .ph { height: 210px; background: #E6ECEE; }
.feat-card .fc-body { padding: var(--space-5) var(--space-5) var(--space-6); }
.feat-card .fc-model { font-size: 1.25rem; color: var(--industrial-ink); }
.process { gap: 0; background: rgba(255,255,255,.1); }
.section-alt .process { background: transparent; }
.step { border-radius: 0; border-width: 0 1px 0 0; min-height: 190px; }
.step:last-child { border-right: 0; }
.step::before { border-radius: 2px; background: var(--industrial-orange); }
.cta-band { border-radius: 3px; border-left: 8px solid var(--industrial-orange); text-align: left; padding-left: var(--space-12); }
.cta-band .btn { float: right; margin-top: -52px; }
.model-hero, .cat-hero { border-radius: 3px; border-left-width: 8px; box-shadow: 10px 10px 0 rgba(242,107,56,.18); }
.model-hero-img, .cat-hero-img { border-radius: 3px; }
.table-wrap { border-radius: 3px; color: var(--ink); }
.table-wrap, .table-wrap * { color: var(--ink); }
.spec-table thead th { background: var(--industrial-ink); color: #fff !important; }
.spec-table tbody tr:nth-child(even) { background: #F7F9FA; }
.spec-table tbody td a { color: var(--industrial-blue); }
.site-footer { background: var(--industrial-ink); }
@media (max-width: 900px) {
  .hero, .hero-grid { min-height: auto; }
  .hero::before { display: none; }
  .cat-card { display: block; }
  .cat-card img { height: 220px; min-height: 0; }
  .step { border-width: 0 0 1px; }
  .cta-band .btn { float: none; margin-top: var(--space-2); }
}
