﻿:root {
  --red: #e60000;
  --charcoal: #25282b;
  --white: #ffffff;
  --grey: #7e7e7e;
  --light: #f2f2f2;
  --blue: #3860be;
  --deep-red: #ac1811;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video, iframe, svg { max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(37,40,43,0.08);
  height: 72px;
  display: flex; align-items: center;
  padding: 0 48px;
  transition: box-shadow 0.2s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  width: 100%; max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center; gap: 0;
}
.nav-logo { height: 38px; cursor: pointer; flex-shrink: 0; margin-right: 48px; }
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-link {
  font-size: 12px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; color: var(--charcoal);
  text-decoration: none; padding: 8px 16px; border-radius: 2px;
  cursor: pointer; transition: color 0.15s; white-space: nowrap;
  border: none; background: none;
}
.nav-link:hover { color: var(--red); }
.nav-link.active { color: var(--red); }
.nav-cta {
  background: var(--red); color: var(--white);
  font-size: 12px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; padding: 12px 24px;
  border-radius: 60px; cursor: pointer; border: none;
  transition: opacity 0.15s; flex-shrink: 0; margin-left: 16px;
}
.nav-cta:hover { opacity: 0.88; }
.nav-toggle {
  display: none; align-items: center; justify-content: center; flex-direction: column;
  gap: 5px; width: 44px; height: 44px; margin-left: auto;
  border: 1px solid rgba(37,40,43,0.14); border-radius: 6px; background: var(--white);
  cursor: pointer; flex-shrink: 0;
}
.nav-toggle span {
  width: 18px; height: 2px; background: var(--charcoal);
  border-radius: 999px; transition: transform 0.2s ease, opacity 0.2s ease;
}

/* PAGE ROUTING */
.page { display: none; padding-top: 72px; overflow-x: clip; }
.page.active { display: block; }

/* HERO */
.hero {
  background: var(--charcoal); min-height: 620px;
  display: flex; align-items: center;
  padding: 100px 48px; position: relative; overflow: hidden;
}
.hero-accent {
  position: absolute; top: -20%; right: -5%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,0,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1440px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; align-items: center;
}
.hero-inner.full { grid-template-columns: 1fr; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(230,0,0,0.14); border: 1px solid rgba(230,0,0,0.28);
  color: #ff5555; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 24px; margin-bottom: 32px;
}
.pill-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
.hero-headline {
  font-size: 76px; font-weight: 800; color: var(--white);
  text-transform: uppercase; letter-spacing: -2px; line-height: 1.02;
  margin-bottom: 24px; text-wrap: balance;
}
.hero-sub {
  font-size: 18px; font-weight: 400; color: rgba(255,255,255,0.58);
  line-height: 1.75; margin-bottom: 44px; max-width: 500px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--white);
  font-size: 13px; font-weight: 800; letter-spacing: 0.8px;
  text-transform: uppercase; padding: 16px 32px;
  border-radius: 60px; cursor: pointer; border: none;
  transition: opacity 0.15s; text-decoration: none;
}
.btn-primary:hover { opacity: 0.88; }
.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: rgba(255,255,255,0.8);
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
  padding: 15px 32px; border-radius: 60px; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.28); transition: border-color 0.15s, color 0.15s;
  text-decoration: none;
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--charcoal);
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
  padding: 15px 32px; border-radius: 60px; cursor: pointer;
  border: 1px solid rgba(37,40,43,0.3); transition: opacity 0.15s;
}
.btn-ghost:hover { opacity: 0.65; }
.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.hero-stat {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px; padding: 28px 24px;
  transition: background 0.2s;
}
.hero-stat:hover { background: rgba(255,255,255,0.08); }
.hero-stat-num {
  font-size: 44px; font-weight: 800; color: var(--white);
  letter-spacing: -1.5px; line-height: 1; margin-bottom: 8px;
}
.hero-stat-num em { color: var(--red); font-style: normal; }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* RED BAND */
.red-band { height: 5px; background: var(--red); }

/* SECTIONS */
.section { padding: 96px 48px; }
.section-light { background: var(--light); }
.section-dark { background: var(--charcoal); }
.section-inner { max-width: 1440px; margin: 0 auto; }
.section-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--light); color: var(--charcoal);
  font-size: 10px; font-weight: 800; letter-spacing: 1.8px;
  text-transform: uppercase; padding: 6px 14px; border-radius: 32px;
  margin-bottom: 20px;
}
.section-dark .section-pill { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.65); }
.section-headline {
  font-size: 48px; font-weight: 800; color: var(--charcoal);
  text-transform: uppercase; letter-spacing: -1.2px; line-height: 1.08;
  margin-bottom: 16px; text-wrap: balance;
}
.section-dark .section-headline { color: var(--white); }
.section-sub {
  font-size: 17px; color: var(--grey); line-height: 1.75; max-width: 560px;
}
.section-dark .section-sub { color: rgba(255,255,255,0.52); }
.centered { text-align: center; }
.centered .section-sub { margin: 0 auto; }

/* SPLIT */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-start { align-items: flex-start; }

/* FEATURE GRID */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 64px; }
.feature-card { padding: 40px 32px; background: var(--light); border-radius: 6px; }
.section-dark .feature-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
}
.feature-icon {
  width: 48px; height: 48px; background: var(--red);
  border-radius: 6px; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-title { font-size: 20px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; line-height: 1.25; }
.section-dark .feature-title { color: var(--white); }
.feature-body { font-size: 14px; color: var(--grey); line-height: 1.7; }
.section-dark .feature-body { color: rgba(255,255,255,0.5); }

/* STATS ROW */
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--light); border-radius: 6px; overflow: hidden; gap: 1px;
}
.stat-item { background: var(--white); padding: 40px 28px; text-align: center; }
.stat-num { font-size: 52px; font-weight: 800; color: var(--charcoal); letter-spacing: -2px; line-height: 1; margin-bottom: 8px; }
.stat-num em { color: var(--red); font-style: normal; }
.stat-label { font-size: 13px; color: var(--grey); line-height: 1.4; }

/* FEATURE ROWS */
.feature-rows { display: flex; flex-direction: column; }
.feature-row {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 28px 0; border-bottom: 1px solid var(--light);
}
.feature-row:last-child { border-bottom: none; }
.feature-row-num { font-size: 12px; font-weight: 800; color: var(--red); min-width: 28px; padding-top: 3px; letter-spacing: 0.5px; }
.feature-row-title { font-size: 17px; font-weight: 700; color: var(--charcoal); margin-bottom: 5px; }
.feature-row-body { font-size: 14px; color: var(--grey); line-height: 1.65; }

/* CTA BAND */
.cta-band { background: var(--red); padding: 88px 48px; text-align: center; }
.cta-band h2 {
  font-size: 56px; font-weight: 800; color: var(--white);
  text-transform: uppercase; letter-spacing: -1.5px; margin-bottom: 14px; text-wrap: balance;
}
.cta-band p { font-size: 18px; color: rgba(255,255,255,0.72); margin-bottom: 44px; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 16px; }

/* FOOTER */
footer { background: var(--charcoal); padding: 72px 48px 36px; }
.footer-inner { max-width: 1440px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 28px;
}
.footer-brand-text { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-top: 18px; max-width: 300px; }
.footer-col h4 {
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--white); margin-bottom: 20px;
}
.footer-col a, .footer-col p {
  display: block; font-size: 13px; color: rgba(255,255,255,0.45);
  text-decoration: none; margin-bottom: 10px; cursor: pointer; transition: color 0.15s; border: none; background: none;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.28);
}

/* CARDS */
.white-card {
  background: var(--white); border-radius: 6px; padding: 40px 32px;
}
.red-top { border-top: 4px solid var(--red); }
.charcoal-top { border-top: 4px solid var(--charcoal); }

/* BULLET LIST */
.bullet-list { display: flex; flex-direction: column; gap: 16px; }
.bullet-item { display: flex; gap: 14px; align-items: flex-start; }
.bullet-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; margin-top: 5px; flex-shrink: 0; }
.bullet-title { font-size: 14px; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.bullet-body { font-size: 13px; color: var(--grey); line-height: 1.6; }

/* TIMELINE */
.timeline { display: flex; gap: 0; position: relative; margin-top: 64px; overflow-x: auto; padding-bottom: 8px; }
.timeline::before {
  content: ''; position: absolute; top: 19px; left: 0; right: 0;
  height: 2px; background: var(--light);
}
.timeline-item { flex: 1; min-width: 120px; position: relative; padding-top: 48px; padding-right: 20px; }
.timeline-dot {
  position: absolute; top: 11px; left: 0;
  width: 16px; height: 16px; background: var(--red);
  border-radius: 50%; border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
}
.timeline-year { font-size: 12px; font-weight: 800; color: var(--red); letter-spacing: 0.8px; margin-bottom: 6px; }
.timeline-label { font-size: 13px; font-weight: 600; color: var(--charcoal); line-height: 1.4; }

/* VALUES GRID */
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 48px; }
.value-card {
  padding: 28px 24px; border-top: 3px solid var(--red);
  background: var(--light); border-radius: 0 6px 6px 6px;
}
.value-title { font-size: 14px; font-weight: 800; color: var(--charcoal); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.value-body { font-size: 13px; color: var(--grey); line-height: 1.6; }

/* FORM */
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--charcoal); margin-bottom: 8px; }
.form-input {
  width: 100%; padding: 14px 16px; border: 1px solid rgba(37,40,43,0.25);
  border-radius: 6px; font-family: inherit; font-size: 15px;
  color: var(--charcoal); background: var(--white); outline: none; transition: border-color 0.15s;
}
.form-input:focus { border-color: var(--red); }
textarea.form-input { height: 140px; resize: vertical; }
select.form-input { appearance: none; cursor: pointer; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* MACHINE CARD */
.machine-card {
  background: var(--white); border-radius: 6px; padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
}
.machine-name { font-size: 14px; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.machine-spec { font-size: 12px; color: var(--grey); }
.machine-cap { font-size: 12px; font-weight: 700; color: var(--red); white-space: nowrap; }

/* FINISH TAGS */
.finish-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.finish-tag {
  background: var(--light); font-size: 10px; font-weight: 800;
  letter-spacing: 1.2px; text-transform: uppercase; padding: 6px 12px;
  border-radius: 32px; color: var(--charcoal);
}

/* ISO BADGE */
.iso-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--charcoal); color: var(--white);
  font-size: 12px; font-weight: 700; padding: 10px 18px; border-radius: 6px;
}
.iso-badge em { color: var(--red); font-style: normal; font-size: 15px; font-weight: 800; }

/* INDUSTRY CARD */
.industry-card {
  background: var(--white); border-radius: 6px; padding: 36px 28px;
}
.industry-card.red-top { border-top: 4px solid var(--red); }
.industry-card.charcoal-top { border-top: 4px solid var(--charcoal); }
.industry-title { font-size: 18px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.industry-body { font-size: 14px; color: var(--grey); line-height: 1.7; }

/* CAPACITY BADGE */
.cap-badge {
  background: var(--light); border-radius: 6px; padding: 14px 18px;
  font-size: 13px; font-weight: 700; color: var(--charcoal);
}
.cap-label { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--grey); margin-bottom: 4px; }
.cap-value { font-size: 20px; font-weight: 800; color: var(--charcoal); }

/* CONTACT INFO */
.contact-block { margin-bottom: 32px; }
.contact-label { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.contact-value { font-size: 16px; color: var(--charcoal); line-height: 1.7; }

@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .nav-logo { margin-right: 24px; }
  .hero { min-height: auto; padding: 88px 24px 72px; }
  .hero-inner,
  .split,
  .split-start,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-inner,
  .split,
  .split-start { gap: 48px; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns:1fr 1fr 1fr"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .section,
  .cta-band,
  footer { padding-left: 24px; padding-right: 24px; }
  .section { padding-top: 80px; padding-bottom: 80px; }
  .cta-band { padding-top: 72px; padding-bottom: 72px; }
  .section-headline { font-size: 40px; }
  .hero-headline[style],
  .section-headline[style] { font-size: 48px !important; }
  .cta-band h2 { font-size: 44px; }
}

@media (max-width: 900px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }

  body { min-width: 320px; }

  .page,
  nav,
  .nav-inner,
  .hero,
  .hero-inner,
  .section,
  .section-inner,
  .cta-band,
  footer,
  .footer-inner {
    width: 100%;
    max-width: 100%;
  }

  .page.active {
    overflow-x: clip;
  }

  .hero-headline,
  .section-headline,
  .cta-band h2,
  .feature-title {
    overflow-wrap: anywhere;
  }

  .hero-inner,
  .section-inner,
  .footer-inner,
  .split,
  .feature-grid,
  .hero-stats,
  .stats-row,
  .values-grid,
  .form-grid-2,
  .footer-grid,
  .machine-card,
  .feature-row,
  .bullet-item,
  .cta-btns,
  .hero-btns {
    min-width: 0;
  }

  [style*="max-width"] {
    max-width: 100% !important;
  }

  [style*="width:"] {
    max-width: 100% !important;
  }

  img,
  video,
  iframe,
  svg,
  table,
  pre {
    max-width: 100%;
  }

  pre,
  table {
    overflow-x: auto;
  }

  nav {
    height: auto; min-height: 64px; padding: 10px 16px;
    align-items: flex-start; max-height: 100dvh; overflow-y: auto;
  }
  .nav-inner {
    position: relative; gap: 12px; flex-wrap: wrap; align-items: center;
  }
  .nav-logo {
    height: 40px !important; width: auto; margin-right: 0;
    max-width: calc(100% - 56px); object-fit: contain;
  }
  .nav-toggle { display: inline-flex; }
  .nav-links,
  .nav-cta {
    display: none;
  }
  nav.nav-open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 8px;
    width: 100%; padding: 12px 0 0;
  }
  nav.nav-open .nav-cta {
    display: inline-flex; width: 100%; justify-content: center; margin-left: 0; margin-top: 4px;
  }
  nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-link,
  .nav-cta {
    width: 100%; min-height: 44px; justify-content: center; text-align: center;
  }
  .page { padding-top: 64px; }
  nav.nav-open + .page,
  nav.nav-open ~ .page { padding-top: 96px; }
  .hero {
    padding: 48px 16px 48px;
  }
  .hero-accent {
    width: 360px; height: 360px; top: -120px; right: -160px;
  }
  .hero-inner,
  .hero-stats,
  .feature-grid,
  .stats-row,
  .values-grid,
  .form-grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-inner,
  .split,
  .split-start { gap: 32px; }
  .split,
  .split-start,
  .hero-inner,
  .hero-stats,
  .feature-grid,
  .stats-row,
  .values-grid,
  .form-grid-2,
  .footer-grid {
    width: 100%;
  }
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr 1fr"],
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  [style*="display:grid"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
  }
  .split > *,
  [style*="display:grid"] > * {
    min-width: 0;
    max-width: 100%;
  }
  .hero-headline {
    font-size: 46px; letter-spacing: 0;
  }
  .hero-headline[style],
  .section-headline[style] { font-size: 42px !important; }
  .hero-sub,
  .section-sub,
  .cta-band p {
    font-size: 16px; line-height: 1.7;
  }
  .hero-btns,
  .cta-btns {
    flex-direction: column; align-items: stretch;
  }
  .btn-primary,
  .btn-ghost-white,
  .btn-ghost {
    width: 100%; min-height: 48px; justify-content: center;
    padding-left: 18px; padding-right: 18px; text-align: center;
  }
  .hero-stat,
  .feature-card,
  .white-card,
  .industry-card {
    padding: 24px 20px;
  }
  .hero-stat-num { font-size: 36px; }
  .section,
  .cta-band,
  footer { padding-left: 16px; padding-right: 16px; }
  .section { padding-top: 64px; padding-bottom: 64px; }
  .section-headline { font-size: 32px; }
  .feature-grid { margin-top: 40px; }
  .stats-row { gap: 12px; background: transparent; }
  .stat-item {
    border-radius: 6px; padding: 28px 20px;
  }
  .stat-num { font-size: 40px; }
  .cta-band {
    padding-top: 56px; padding-bottom: 56px;
  }
  .cta-band h2 { font-size: 34px; }
  .footer-grid { gap: 32px; }
  .footer-bottom {
    flex-direction: column; align-items: flex-start; gap: 8px;
  }
  .timeline { margin-top: 40px; }
  .timeline-item { min-width: 160px; flex: 0 0 70%; }
  [style*="font-size:128px"] {
    font-size: 78px !important; letter-spacing: 0 !important;
  }
  .machine-card {
    flex-direction: column; gap: 8px;
  }
  .machine-cap { white-space: normal; }
  #tweaks-panel {
    left: 16px; right: 16px; bottom: 16px; width: auto !important;
  }
}

@media (max-width: 480px) {
  nav { padding-left: 12px; padding-right: 12px; }
  .nav-logo { height: 44px !important; max-width: calc(100% - 52px); }
  .nav-toggle { width: 40px; height: 40px; }
  .pill,
  .section-pill {
    max-width: 100%; letter-spacing: 0.8px; line-height: 1.4;
    white-space: normal;
  }
  .hero-headline { font-size: 38px; line-height: 1.05; }
  .hero-headline[style],
  .section-headline[style] { font-size: 36px !important; }
  .hero-sub,
  .section-sub,
  .feature-body,
  .industry-body,
  .bullet-body { line-height: 1.65; }
  .section-headline,
  .cta-band h2 { font-size: 28px; }
  .section { padding-top: 52px; padding-bottom: 52px; }
  .hero { padding-top: 40px; padding-bottom: 40px; }
  .hero-accent {
    width: 260px; height: 260px; top: -88px; right: -118px;
  }
  .hero-stat,
  .feature-card,
  .white-card,
  .industry-card,
  .value-card { padding: 22px 18px; }
  .feature-grid,
  .values-grid { gap: 14px; }
  .feature-icon { width: 42px; height: 42px; margin-bottom: 18px; }
  .feature-icon svg { width: 21px; height: 21px; }
  .stat-num { font-size: 36px; letter-spacing: -1px; }
  .feature-title,
  .industry-title { font-size: 18px; }
  .form-input { min-height: 48px; font-size: 16px; }
  textarea.form-input { min-height: 132px; }
  .cta-band { padding-top: 48px; padding-bottom: 48px; }
  .contact-value { font-size: 15px; }
  footer { padding-top: 52px; }
  [style*="font-size:128px"] { font-size: 52px !important; }
}

@media (max-width: 360px) {
  .hero-headline,
  .hero-headline[style],
  .section-headline,
  .section-headline[style],
  .cta-band h2 {
    font-size: 31px !important;
  }
  .hero-stat-num { font-size: 32px; }
  .stat-num { font-size: 32px; }
  .nav-link,
  .nav-cta,
  .btn-primary,
  .btn-ghost-white,
  .btn-ghost {
    letter-spacing: 0.5px;
  }
}
