/* ═══════════════════════════════════════════════
   DESIGN TOKENS - 工业钢铁感
═══════════════════════════════════════════════ */
:root {
  --coal: #0D0F12;
  --steel-dark: #151A22;
  --steel-mid: #1E2733;
  --steel-light: #2A3647;
  --orange: #E85D04;
  --orange-rgb: 232, 93, 4;
  --orange-dim: #FF7F3F;
  --silver: #8B96A8;
  --silver-light: #C4CDD8;
  --off-white: #F0F2F5;
  --white: #FFFFFF;
  --border: rgba(255, 255, 255, .08);
  --border-light: rgba(0, 0, 0, .1);
  --ff-display: 'Bebas Neue', 'Noto Sans SC', sans-serif;
  --ff-body: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --r-sm: 3px;
  --r-md: 8px;
  --r-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .25);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, .35);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, .45);
  --glow: 0 0 32px rgba(var(--orange-rgb), .25);
  --transition: .22s cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--ff-body);
  background: var(--coal);
  color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden
}

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

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

ul,
ol {
  list-style: none
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px
}

/* Typography */
.label {
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--orange);
  text-transform: uppercase
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: .02em;
  color: var(--white)
}

.section-title span {
  color: var(--orange)
}

.section-sub {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.85;
  max-width: 600px
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--r-sm);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: .03em
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(var(--orange-rgb), .4)
}

.btn--primary:hover {
  background: var(--orange-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(var(--orange-rgb), .55)
}

.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .3)
}

.btn--ghost-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .06)
}

.btn--ghost-orange {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange)
}

.btn--ghost-orange:hover {
  background: rgba(var(--orange-rgb), .1)
}

/* Topbar */
.topbar {
  background: var(--steel-dark);
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
  font-size: 12.5px;
  color: var(--silver)
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 24px
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 6px
}

.topbar__phone {
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
  transition: color var(--transition)
}

.topbar__phone:hover {
  color: var(--orange-dim)
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 16px
}

.topbar__link {
  transition: color var(--transition)
}

.topbar__link:hover {
  color: var(--white)
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 15, 18, .96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border)
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0
}

.logo__mark {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.logo__name {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--white);
  line-height: 1
}

.logo__tag {
  font-size: 11px;
  color: var(--silver);
  letter-spacing: .05em;
  margin-top: 2px
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2px
}

.nav__link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--silver-light);
  border-radius: var(--r-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap
}

.nav__link:hover,
.nav__link--active {
  color: var(--white);
  background: rgba(255, 255, 255, .06)
}

.nav__link--active {
  color: var(--orange) !important
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 10px
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--silver-light);
  border-radius: 2px;
  transition: all var(--transition)
}

.mobile-nav {
  display: none;
  background: var(--steel-dark);
  border-top: 1px solid var(--border);
  padding: 16px 28px 24px
}

.mobile-nav.is-open {
  display: block
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.mobile-nav__link {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--silver-light);
  border-radius: var(--r-sm);
  border-left: 3px solid transparent;
  transition: all var(--transition)
}

.mobile-nav__link:hover {
  background: rgba(255, 255, 255, .05);
  border-left-color: var(--orange);
  color: var(--white)
}

.mobile-nav__phone {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--orange);
  border-radius: var(--r-sm);
  color: var(--white);
  font-weight: 700;
  font-size: 16px
}

/* Page Hero (inner pages) */
.page-hero {
  background: var(--steel-dark);
  border-bottom: 1px solid var(--border);
  padding: 60px 0 52px;
  position: relative;
  overflow: hidden
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none
}

.page-hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background: radial-gradient(ellipse 80% 100% at 100% 50%, rgba(var(--orange-rgb), .08) 0%, transparent 70%);
  pointer-events: none
}

.page-hero__inner {
  position: relative;
  z-index: 1
}

.page-hero__crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--silver);
  margin-bottom: 18px
}

.page-hero__crumb a {
  color: var(--silver);
  transition: color var(--transition)
}

.page-hero__crumb a:hover {
  color: var(--orange)
}

.page-hero__crumb svg {
  opacity: .5
}

.page-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(38px, 6vw, 66px);
  color: var(--white);
  letter-spacing: .03em;
  line-height: 1.0;
  margin-bottom: 14px
}

.page-hero__title span {
  color: var(--orange)
}

.page-hero__desc {
  font-size: 15px;
  color: var(--silver);
  max-width: 580px;
  line-height: 1.85
}

/* Footer */
.footer {
  background: var(--steel-dark);
  border-top: 1px solid var(--border);
  padding: 64px 0 0
}

.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border)
}

.footer__desc {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.85;
  margin-bottom: 24px
}

.footer__nap {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer__nap-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--silver)
}

.footer__nap-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
  opacity: .7
}

.footer__nap-phone {
  font-size: 18px;
  font-weight: 700;
  color: var(--orange);
  transition: color var(--transition)
}

.footer__nap-phone:hover {
  color: var(--orange-dim)
}

.footer__heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--silver-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer__link {
  font-size: 13.5px;
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color var(--transition)
}

.footer__link::before {
  content: '';
  width: 3px;
  height: 3px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: .7
}

.footer__link:hover {
  color: var(--off-white)
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 12.5px;
  color: var(--silver);
  opacity: .6;
  flex-wrap: wrap;
  gap: 10px
}

.footer__bottom a {
  color: var(--silver);
  transition: color var(--transition)
}

.footer__bottom a:hover {
  color: var(--off-white)
}

/* Float CTA */
.float-cta {
  position: fixed;
  right: 22px;
  bottom: 36px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border-radius: 40px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  font-family: var(--ff-body)
}

.float-btn:hover {
  transform: translateY(-2px)
}

.float-btn--phone {
  background: var(--orange);
  color: var(--white)
}

.float-btn--top {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  background: var(--steel-light);
  color: var(--silver-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border)
}

/* CTA Banner */
.cta-banner {
  background: var(--orange);
  padding: 60px 0;
  position: relative;
  overflow: hidden
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, .06) 1px, transparent 1px);
  background-size: 40px 40px
}

.cta-banner__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px
}

.cta-banner__title {
  font-family: var(--ff-display);
  font-size: clamp(26px, 4vw, 42px);
  color: var(--white);
  letter-spacing: .03em;
  margin-bottom: 6px
}

.cta-banner__sub {
  font-size: 15px;
  color: rgba(255, 255, 255, .8)
}

.cta-banner__actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap
}

.btn--cta-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
  font-weight: 700
}

.btn--cta-white:hover {
  background: var(--off-white)
}

.btn--cta-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .6)
}

.btn--cta-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--white)
}

/* ═══ HERO (homepage) ═══ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--coal)
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 56px 56px
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
 /* background: radial-gradient(ellipse 70% 70% at 110% 50%, rgba(var(--orange-rgb), .12) 0%, transparent 60%), radial-gradient(ellipse 60% 80% at -10% 60%, rgba(30, 39, 51, .8) 0%, transparent 70%) */
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px
}

.hero__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--orange)
}

.hero__display {
  font-family: var(--ff-display);
  font-size: clamp(52px, 7vw, 88px);
  line-height: .95;
  letter-spacing: .02em;
  color: var(--white);
  margin-bottom: 8px
}

.hero__display-accent {
  color: var(--orange);
  display: block
}

.hero__h1 {
  font-size: 16px;
  color: var(--silver);
  line-height: 1.85;
  max-width: 520px;
  margin-top: 20px;
  margin-bottom: 36px;
  font-weight: 400
}

.hero__h1 strong {
  color: var(--silver-light);
  font-weight: 700
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px
}

.hero__phone-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 52px
}

.hero__phone-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(var(--orange-rgb), .4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.hero__phone-label {
  font-size: 11px;
  color: var(--silver);
  letter-spacing: .07em;
  text-transform: uppercase
}

.hero__phone-number {
  font-family: var(--ff-display);
  font-size: 26px;
  letter-spacing: .04em;
  color: var(--white)
}

.hero__phone-number:hover {
  color: var(--orange)
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden
}

.hero__stat {
  background: var(--steel-dark);
  padding: 20px 18px;
  text-align: center;
  transition: background var(--transition)
}

.hero__stat:hover {
  background: var(--steel-mid)
}

.hero__stat-num {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: .02em
}

.hero__stat-label {
  font-size: 12px;
  color: var(--silver);
  letter-spacing: .04em
}

/* Notice */
.notice {
  background: var(--steel-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  overflow: hidden
}

.notice__inner {
  display: flex;
  align-items: center;
  gap: 16px
}

.notice__tag {
  font-family: var(--ff-display);
  font-size: 12px;
  letter-spacing: .12em;
  background: var(--orange);
  color: var(--white);
  padding: 3px 12px;
  flex-shrink: 0
}

.notice__text {
  font-size: 14px;
  color: var(--silver-light)
}

.notice__text a {
  color: var(--orange);
  font-weight: 700;
  transition: color var(--transition)
}

.notice__text a:hover {
  color: var(--orange-dim)
}

/* Advantages */
.adv {
  background: var(--steel-dark);
  border-bottom: 1px solid var(--border)
}

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

.adv__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  transition: background var(--transition)
}

.adv__item:last-child {
  border-right: none
}

.adv__item:hover {
  background: var(--steel-mid)
}

.adv__icon {
  width: 46px;
  height: 46px;
  background: rgba(var(--orange-rgb), .12);
  border: 1px solid rgba(var(--orange-rgb), .25);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange)
}

.adv__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px
}

.adv__desc {
  font-size: 12.5px;
  color: var(--silver)
}

/* Products */
.products {
  padding: 90px 0;
  background: var(--coal)
}

.products__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 24px
}

.products__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap
}

.products__tab {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  border-radius: 40px;
  color: var(--silver);
  cursor: pointer;
  transition: all var(--transition);
  background: none
}

.products__tab:hover {
  border-color: var(--orange);
  color: var(--orange-dim)
}

.products__tab.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white)
}

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

.product-card {
  background: var(--steel-dark);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition)
}

.product-card:hover {
  border-color: rgba(var(--orange-rgb), .4);
  box-shadow: var(--glow), var(--shadow-lg);
  transform: translateY(-4px)
}

.product-card__thumb {
  height: 190px;
  background: var(--steel-mid);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--ff-display);
  font-size: 11px;
  letter-spacing: .1em;
  padding: 3px 10px;
  border-radius: 2px
}

.badge--hot {
  background: var(--orange);
  color: var(--white)
}

.badge--new {
  background: var(--steel-light);
  color: var(--silver-light);
  border: 1px solid var(--border)
}

.product-card__body {
  padding: 20px
}

.product-card__name {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: .03em;
  color: var(--white);
  margin-bottom: 4px
}

.product-card__type {
  font-size: 12.5px;
  color: var(--orange);
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: .04em
}

.product-card__params {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px
}

.param {
  background: var(--steel-mid);
  border-radius: var(--r-sm);
  padding: 8px 12px
}

.param__label {
  font-size: 11px;
  color: var(--silver);
  margin-bottom: 2px;
  letter-spacing: .03em
}

.param__value {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--off-white)
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 16px
}

.product-card__standard {
  font-size: 11.5px;
  color: var(--silver)
}

.product-card__more {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition)
}

.product-card:hover .product-card__more {
  gap: 8px
}

/* About section */
.about {
  background: var(--steel-dark);
  padding: 90px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.about__title {
  font-family: var(--ff-display);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: .02em
}

.about__title span {
  color: var(--orange)
}

.about__text {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.9;
  margin-bottom: 28px
}

.about__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 36px
}

.about__list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--silver-light)
}

.about__list-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px
}

.about__metric {
  background: var(--coal);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 20px;
  transition: border-color var(--transition)
}

.about__metric:hover {
  border-color: rgba(var(--orange-rgb), .3)
}

.about__metric-num {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--orange);
  line-height: 1;
  letter-spacing: .02em;
  margin-bottom: 4px
}

.about__metric-label {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.5
}

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

.case-card {
  background: var(--steel-dark);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition)
}

.case-card:hover {
  border-color: rgba(var(--orange-rgb), .3);
  transform: translateY(-3px)
}

.case-card__img {
  height: 168px;
  background: var(--steel-mid);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden
}

.case-region {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(var(--orange-rgb), .85);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 2px;
  letter-spacing: .06em
}

.case-card__body {
  padding: 18px 20px 22px
}

.case-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.4
}

.case-card__note {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.6;
  margin-bottom: 14px
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.case-meta li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  color: var(--silver)
}

.case-meta li svg {
  color: var(--orange);
  opacity: .7;
  flex-shrink: 0
}

.stat-bar {
  background: var(--steel-dark);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center
}

/* News */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.news-card {
  background: var(--steel-dark);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition)
}

.news-card:hover {
  border-color: rgba(var(--orange-rgb), .3);
  transform: translateY(-3px)
}

.news-card__img {
  height: 160px;
  background: var(--steel-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden
}

.news-card__body {
  padding: 20px
}

.news-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.45
}

.news-card__excerpt {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 16px
}

.news-card__more {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  transition: gap var(--transition)
}

.news-card:hover .news-card__more {
  gap: 9px
}

/* Tech FAQ */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.faq__item {
  background: var(--steel-dark);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--transition)
}

.faq__item.is-open {
  border-color: rgba(var(--orange-rgb), .35)
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 700;
  transition: background var(--transition)
}

.faq__question:hover {
  background: rgba(255, 255, 255, .03)
}

.faq__item.is-open .faq__question {
  background: rgba(var(--orange-rgb), .08);
  color: var(--white)
}

.faq__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--silver);
  transition: transform var(--transition), border-color var(--transition), color var(--transition)
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
  border-color: var(--orange);
  color: var(--orange)
}

.faq__answer {
  display: none;
  padding: 4px 24px 22px;
  font-size: 14px;
  color: var(--silver);
  line-height: 1.85;
  border-top: 1px solid var(--border)
}

.faq__item.is-open .faq__answer {
  display: block
}

/* Metrics */
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.metric-box {
  background: var(--steel-dark);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--transition)
}

.metric-box:hover {
  border-color: rgba(var(--orange-rgb), .3)
}

.metric-box__num {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: .02em
}

.metric-box__label {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.5
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start
}

.info-card {
  background: var(--steel-dark);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  margin-bottom: 16px
}

.info-card__icon {
  width: 46px;
  height: 46px;
  background: rgba(var(--orange-rgb), .12);
  border: 1px solid rgba(var(--orange-rgb), .25);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 16px
}

.info-card__label {
  font-size: 12px;
  color: var(--silver);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px
}

.info-card__value {
  font-family: var(--ff-display);
  font-size: 26px;
  letter-spacing: .04em;
  color: var(--white);
  line-height: 1.2
}

.info-card__value a {
  color: var(--orange);
  transition: color var(--transition)
}

.info-card__value a:hover {
  color: var(--orange-dim)
}

.info-card__note {
  font-size: 13px;
  color: var(--silver);
  margin-top: 6px
}

.form-wrap {
  background: var(--steel-dark);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 36px
}

.form-group {
  margin-bottom: 20px
}

.form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--silver-light);
  margin-bottom: 8px
}

.form-label span {
  color: var(--orange)
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--steel-mid);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--off-white);
  font-family: var(--ff-body);
  font-size: 14px;
  transition: border-color var(--transition);
  outline: none
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--orange)
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--silver);
  opacity: .6
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.form-textarea {
  min-height: 120px;
  resize: vertical
}

.form-select {
  appearance: none;
  cursor: pointer
}

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--r-sm);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  letter-spacing: .04em
}

.form-submit:hover {
  background: var(--orange-dim);
  transform: translateY(-1px)
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 28px
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange) 0%, rgba(var(--orange-rgb), .2) 100%)
}

.timeline__item {
  position: relative;
  padding-bottom: 36px
}

.timeline__item:last-child {
  padding-bottom: 0
}

.timeline__dot {
  position: absolute;
  left: -34px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--coal);
  box-shadow: 0 0 0 2px var(--orange)
}

.timeline__year {
  font-family: var(--ff-display);
  font-size: 20px;
  color: var(--orange);
  letter-spacing: .04em;
  margin-bottom: 4px
}

.timeline__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px
}

.timeline__desc {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.8
}

/* Placeholder */
.placeholder-text {
  font-size: 11px;
  color: rgba(255, 255, 255, .2);
  position: relative
}

/* Responsive */
@media(max-width:1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr
  }

  .adv__grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:900px) {

  .cases-grid,
  .news-grid {
    grid-template-columns: 1fr 1fr
  }

  .stat-bar {
    grid-template-columns: 1fr 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .products__grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:768px) {
  .topbar {
    display: none
  }

  nav.desktop-nav {
    display: none
  }

  .hamburger {
    display: flex
  }

  .header__cta .btn {
    display: none
  }

  .footer__grid {
    grid-template-columns: 1fr
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center
  }

  .cta-banner__actions {
    justify-content: center
  }

  .float-cta {
    right: 14px;
    bottom: 20px
  }

  .hero__stats {
    grid-template-columns: 1fr 1fr
  }

  .about__inner {
    grid-template-columns: 1fr
  }

  .metric-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:560px) {

  .cases-grid,
  .news-grid,
  .products__grid {
    grid-template-columns: 1fr
  }
}