/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --bg-alt: #f7f9fc;
  --bg-dark: #1a2332;
  --bg-card: #ffffff;
  --fg: #1a2332;
  --fg-muted: #5c6a7f;
  --fg-light: #ffffff;
  --accent: #0ea5e9;
  --accent-dark: #0369a1;
  --accent-light: #e0f2fe;
  --teal: #14b8a6;
  --teal-light: #ccfbf1;
  --green: #10b981;
  --green-light: #d1fae5;
  --orange: #f97316;
  --orange-light: #ffedd5;
  --red: #ef4444;
  --red-light: #fee2e2;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.05);
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

/* === LAYOUT === */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  height: 60px;
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--fg);
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; }
.nav-logo img { height: 28px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  color: var(--fg-muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); text-decoration: none; }
.nav-cta {
  background: var(--accent);
  color: white !important;
  padding: 7px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-dark); text-decoration: none !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }

/* === HERO === */
.hero {
  padding: 120px 0 80px;
  background: var(--bg);
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-light);
  border: 1px solid rgba(20,184,166,0.2);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.hero-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero-title em { font-style: normal; color: var(--accent); }
.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); text-decoration: none; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px;
  background: white;
  color: var(--fg);
  font-weight: 500;
  font-size: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent-dark); text-decoration: none; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px;
  background: transparent;
  color: var(--fg-muted);
  font-weight: 500;
  font-size: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover { color: var(--fg); border-color: #c1cad6; text-decoration: none; }
.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}
.hero-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--fg-muted);
}
.hero-badges span { display: flex; align-items: center; gap: 5px; }
.hero-badges .check { color: var(--green); }

/* === SECTION HEADER === */
.section {
  padding: 72px 0;
}
.section-alt {
  background: var(--bg-alt);
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}
.section-title em { font-style: normal; color: var(--accent); }

/* === USE ONLINE / USE WITH EXCEL === */
.two-ways { padding: 72px 0; }
.ways-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.way-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  background: var(--bg-card);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.way-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(14,165,233,0.3);
}
.way-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
}
.way-icon.blue { background: var(--accent-light); }
.way-icon.teal { background: var(--teal-light); }
.way-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.way-card .way-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.way-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}
.way-features li {
  font-size: 13px;
  color: var(--fg-muted);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.way-features li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 12px; }

/* === VIDEO SECTION === */
.video-section { padding: 72px 0; background: var(--bg-alt); }
.video-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}
.video-tab {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: white;
  color: var(--fg-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.video-tab.active {
  background: var(--fg);
  color: white;
  border-color: var(--fg);
}
.video-wrapper {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
  aspect-ratio: 16/9;
}
.video-wrapper iframe { width: 100%; height: 100%; border: none; display: block; }
.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a2332 0%, #0f172a 100%);
  color: white;
  font-size: 14px;
  flex-direction: column;
  gap: 12px;
}
.video-placeholder .play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  transition: background 0.2s;
}
.video-placeholder .play-btn:hover { background: rgba(255,255,255,0.25); }

/* === SCREENSHOTS === */
.screenshots { padding: 72px 0; }
.screenshot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.screenshot-grid figure {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 0;
}
.screenshot-grid img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}
.screenshot-grid figcaption {
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  background: white;
  border-top: 1px solid var(--border-light);
}

/* === WHAT MAKES DIFFERENT === */
.different { padding: 72px 0; background: var(--bg-alt); }
.different-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}
.diff-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.diff-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.diff-card .tag {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.diff-card .tag.black { background: var(--fg); color: white; }
.diff-card .tag.glass { background: linear-gradient(135deg, #0ea5e9, #14b8a6); color: white; }
.diff-card .desc { font-size: 13px; color: var(--fg-muted); margin-bottom: 16px; line-height: 1.6; }
.diff-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.diff-box {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 14px;
  font-size: 12px;
}
.diff-box .box-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--fg-muted);
}
.diff-box.bad { border-color: #fca5a5; background: #fff5f5; }
.diff-box.good { border-color: #6ee7b7; background: #f0fdf4; }
.diff-box .box-title { font-weight: 700; font-size: 13px; margin-bottom: 6px; }
.diff-box ul { list-style: none; padding: 0; }
.diff-box ul li { padding: 2px 0; line-height: 1.5; }
.diff-box .result {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border-light);
  font-size: 12px;
  color: var(--fg-muted);
}
.diff-box .result strong { color: var(--fg); }

/* === FIVE BREAKTHROUGHS === */
.breakthroughs { padding: 72px 0; }
.breakthroughs-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}
.breakthroughs-intro p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.bt-list { max-width: 800px; margin: 0 auto; }
.bt-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0;
  margin-bottom: 32px;
}
.bt-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-mono);
  line-height: 1;
  padding-top: 4px;
}
.bt-content { border-top: 2px solid var(--border-light); padding-top: 20px; }
.bt-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fg);
}
.bt-content .bt-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.bt-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bt-box {
  border-radius: var(--radius);
  padding: 16px;
  font-size: 12px;
}
.bt-box.bad { background: #fff5f5; border: 1px solid #fca5a5; }
.bt-box.good { background: #f0fdf4; border: 1px solid #6ee7b7; }
.bt-box .bt-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.bt-box .bt-title { font-weight: 700; font-size: 13px; margin-bottom: 8px; }
.bt-box .bt-desc { color: var(--fg-muted); line-height: 1.5; }
.bt-box .bt-formula { margin-top: 10px; font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted); }
.bt-box .bt-result {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 13px;
  font-weight: 700;
}
.bt-box .bt-check { color: var(--green); }
.bt-sku-table {
  margin-top: 16px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  overflow: hidden;
  font-size: 12px;
}
.bt-sku-table table { width: 100%; border-collapse: collapse; }
.bt-sku-table th { background: var(--bg-alt); padding: 8px 10px; text-align: left; font-weight: 600; color: var(--fg-muted); font-size: 11px; }
.bt-sku-table td { padding: 7px 10px; border-top: 1px solid var(--border-light); color: var(--fg-muted); }
.bt-sku-table tr:first-child td { color: var(--green); font-weight: 600; }
.bt-manual-steps { margin-top: 10px; }
.bt-manual-steps ol { padding-left: 20px; }
.bt-manual-steps li { padding: 3px 0; font-size: 12px; color: var(--fg-muted); }
.bt-manual-steps li strong { color: var(--fg); }
.bt-fast-steps { margin-top: 10px; }
.bt-fast-steps ol { padding-left: 20px; }
.bt-fast-steps li { padding: 3px 0; font-size: 12px; color: var(--fg-muted); }
.bt-fast-steps li strong { color: var(--green); }

/* === AI SECTION === */
.ai-section {
  padding: 72px 0;
  background: var(--bg-dark);
  color: white;
}
.ai-section .section-label { color: #7dd3fc; }
.ai-section .section-title { color: white; }
.ai-section .section-subtitle { color: #94a3b8; }
.ai-card {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.ai-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}
.ai-card .ai-desc { font-size: 14px; color: #94a3b8; line-height: 1.7; margin-bottom: 20px; }
.ai-platform-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: #fbbf24;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.ai-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin: 28px 0;
}
.ai-user-box {
  background: rgba(14,165,233,0.15);
  border: 1px solid rgba(14,165,233,0.3);
  border-radius: var(--radius);
  padding: 16px;
  font-size: 13px;
  color: #7dd3fc;
  font-style: italic;
}
.ai-steps-box {
  background: rgba(20,184,166,0.1);
  border: 1px solid rgba(20,184,166,0.2);
  border-radius: var(--radius);
  padding: 16px;
  font-size: 12px;
}
.ai-steps-box ol { padding-left: 16px; }
.ai-steps-box li { padding: 3px 0; color: #5eead4; }
.ai-steps-box li span { color: #94a3b8; }
.ai-arrow { color: #475569; font-size: 24px; }
.ai-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.ai-method {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px;
}
.ai-method h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ai-method .method-icon { font-size: 18px; }
.ai-method p { font-size: 13px; color: #94a3b8; line-height: 1.6; margin-bottom: 12px; }
.ai-method ul { list-style: none; }
.ai-method li { font-size: 12px; color: #64748b; padding: 2px 0; display: flex; align-items: center; gap: 6px; }
.ai-method li::before { content: '·'; color: #475569; }
.ai-method .method-link { display: inline-block; font-size: 12px; color: var(--accent); margin-top: 8px; }
.ai-section .btn-primary { background: var(--accent); }
.ai-section .btn-primary:hover { background: var(--accent-dark); }

/* === USE CASES === */
.use-cases { padding: 72px 0; background: var(--bg-alt); }
.use-cases-dialogue {
  max-width: 700px;
  margin: 0 auto 40px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 28px 32px;
  box-shadow: var(--shadow);
}
.dialogue-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 16px; }
.dialogue-line { margin-bottom: 16px; }
.dialogue-line .speaker { font-weight: 700; font-size: 13px; margin-bottom: 4px; }
.dialogue-line .boss { color: #1d4ed8; }
.dialogue-line .you { color: #047857; }
.dialogue-line .text { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }
.dialogue-line .thought { font-size: 13px; color: #b45309; font-style: italic; }
.use-cases-questions {
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.8;
}
.who-section { margin-top: 48px; }
.who-section h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; text-align: center; }
.who-section .who-desc { font-size: 14px; color: var(--fg-muted); text-align: center; margin-bottom: 28px; }
.industry-table { width: 100%; border-collapse: collapse; font-size: 12px; margin-bottom: 40px; }
.industry-table th { background: var(--fg); color: white; padding: 10px 12px; text-align: left; font-weight: 600; font-size: 11px; }
.industry-table td { padding: 9px 12px; border-bottom: 1px solid var(--border-light); vertical-align: top; color: var(--fg-muted); line-height: 1.5; }
.industry-table tr:nth-child(even) td { background: var(--bg-alt); }
.industry-table .industry { font-weight: 600; color: var(--fg); font-size: 12px; }

/* === INSTRUCTIONS === */
.instructions { padding: 72px 0; }
.instr-grid { max-width: 800px; margin: 0 auto; }
.instr-two-ways { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.instr-way {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: white;
}
.instr-way h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.instr-way p { font-size: 12px; color: var(--fg-muted); line-height: 1.5; }
.instr-steps { counter-reset: step; }
.instr-step { display: grid; grid-template-columns: 40px 1fr; gap: 16px; margin-bottom: 28px; }
.instr-step-num { counter-increment: step; }
.instr-step-num::before { content: counter(step) ' '; font-size: 22px; font-weight: 800; color: var(--accent); font-family: var(--font-mono); }
.instr-step-content h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.instr-step-content p { font-size: 13px; color: var(--fg-muted); line-height: 1.65; margin-bottom: 10px; }
.instr-step-content p code { background: var(--bg-alt); padding: 1px 5px; border-radius: 3px; font-size: 12px; color: var(--teal); font-family: var(--font-mono); }
.instr-note { font-size: 12px; color: var(--fg-muted); background: var(--bg-alt); padding: 10px 14px; border-radius: var(--radius); margin-bottom: 10px; border-left: 3px solid var(--accent); }
.instr-image { border-radius: var(--radius); border: 1px solid var(--border-light); margin: 12px 0; overflow: hidden; }
.instr-image img { width: 100%; display: block; }
.instr-image figcaption { padding: 8px 12px; font-size: 11px; color: var(--fg-muted); background: var(--bg-alt); }

/* === FOOTER === */
.footer {
  background: var(--fg);
  color: white;
  padding: 48px 0 32px;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; margin-bottom: 20px; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: #94a3b8; margin-bottom: 12px; }
.footer-col a { display: block; font-size: 13px; color: #cbd5e1; text-decoration: none; padding: 4px 0; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: #64748b; }
.footer-bottom a { color: #64748b; text-decoration: none; }
.footer-bottom a:hover { color: #94a3b8; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links { display: none; }
  .ways-grid,
  .screenshots,
  .different-grid,
  .bt-visual,
  .ai-methods,
  .instr-two-ways { grid-template-columns: 1fr; }
  .ai-flow { grid-template-columns: 1fr; }
  .ai-arrow { transform: rotate(90deg); }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .industry-table { font-size: 11px; }
  .section { padding: 56px 0; }
  .hero { padding: 100px 0 60px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}