:root {
  --ink: #172033;
  --muted: #5f6b7c;
  --line: #dce2ea;
  --soft: #f5f7fa;
  --white: #ffffff;
  --orange: #f36c21;
  --orange-dark: #c94f12;
  --blue: #0f6aa8;
  --teal: #0f8a8a;
  --green: #4b8a3f;
  --dark: #101726;
  --shadow: 0 18px 45px rgba(16, 23, 38, 0.12);
  --radius: 8px;
  --container: 1180px;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.22;
  letter-spacing: 0;
}

h1 {
  font-size: 3.1rem;
}

h2 {
  font-size: 2.15rem;
}

h3 {
  font-size: 1.35rem;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 210px;
}

.brand img {
  width: 54px;
  height: 42px;
  object-fit: contain;
}

.brand-text strong {
  display: block;
  color: var(--dark);
  font-size: 1rem;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.2;
}

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

.site-nav a {
  color: #263244;
  font-size: 0.9rem;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: #fff1e8;
  color: var(--orange-dark);
}

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  font-weight: 700;
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
}

.site-hero {
  position: relative;
  min-height: 600px;
  background-image: linear-gradient(90deg, rgba(16, 23, 38, 0.82), rgba(16, 23, 38, 0.38)), var(--hero-image);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--white);
}

.page-hero {
  position: relative;
  min-height: 360px;
  background-image: linear-gradient(90deg, rgba(16, 23, 38, 0.86), rgba(16, 23, 38, 0.46)), var(--hero-image);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero-content,
.page-hero-content {
  width: min(780px, 100%);
  padding: 4rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 0.85rem;
}

.hero-content p,
.page-hero-content p {
  margin-top: 1rem;
  color: #edf3f8;
  font-size: 1.12rem;
  max-width: 690px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.05rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  background: var(--orange);
  color: var(--white);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-secondary {
  background: var(--white);
  color: var(--dark);
}

.button-secondary:hover {
  background: #eef3f8;
}

.button-outline {
  background: transparent;
  color: var(--blue);
  border-color: #b9cbe0;
}

.button-outline:hover {
  border-color: var(--blue);
  background: #eef7fc;
}

.section {
  padding: 5rem 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-dark p,
.section-dark .muted {
  color: #cdd6e2;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-head > div {
  max-width: 760px;
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 0.75rem;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

.auto-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.stat {
  padding: 1.35rem;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--orange);
  font-size: 1.65rem;
  line-height: 1;
}

.stat span {
  display: block;
  color: var(--muted);
  margin-top: 0.35rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.card-body {
  padding: 1.25rem;
}

.card-body p {
  color: var(--muted);
}

.media-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: #e9eef5;
}

.product-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  background: #e9eef5;
}

.product-card .tag,
.tag {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  background: #eaf5fb;
  border-radius: 999px;
  padding: 0.18rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.feature-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.image-stack img {
  height: 260px;
  object-fit: cover;
}

.image-stack img:first-child {
  grid-column: 1 / -1;
  height: 310px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.logo-tile {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.logo-tile img {
  max-height: 72px;
  object-fit: contain;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--dark);
  background: #eef3f8;
}

td {
  color: var(--muted);
}

tr:last-child td {
  border-bottom: 0;
}

.process {
  counter-reset: step;
}

.process-item {
  position: relative;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.process-item::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
}

.video-frame {
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.9rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row strong {
  color: var(--dark);
}

.contact-row span,
.contact-row a {
  color: var(--muted);
}

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

label {
  display: grid;
  gap: 0.35rem;
  color: var(--dark);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cdd6e2;
  border-radius: var(--radius);
  padding: 0.8rem;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.cta-band {
  background: linear-gradient(90deg, var(--dark), #1b344b);
  color: var(--white);
  padding: 3rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band p {
  color: #d8e3ee;
  max-width: 720px;
}

.article-card h3 {
  margin-bottom: 0.55rem;
}

.article-card a {
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  background: #0d1320;
  color: #d7e1ec;
  padding: 3rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  gap: 1.5rem;
}

.site-footer h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.site-footer a,
.site-footer p {
  color: #b7c3d1;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2rem;
  padding-top: 1rem;
  color: #8fa0b4;
  font-size: 0.9rem;
}

.muted {
  color: var(--muted);
}

.compact-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.highlight {
  color: var(--orange);
}

@media (max-width: 980px) {
  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.8rem 0;
  }

  .site-nav {
    justify-content: flex-start;
    width: 100%;
  }

  .site-hero {
    min-height: 540px;
  }

  .split,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .section-head,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .brand {
    min-width: auto;
  }

  .site-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.2rem;
  }

  .site-nav a {
    white-space: nowrap;
  }

  .site-hero,
  .page-hero {
    min-height: 480px;
  }

  .section {
    padding: 3.4rem 0;
  }

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

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

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

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img,
  .image-stack img:first-child {
    height: 230px;
  }
}
