:root {
  --ui-scale: 1;
  --black: #030405;
  --dark: #071018;
  --navy: #101828;
  --text: #283241;
  --muted: #667085;
  --line: #dfe4ea;
  --soft: #f7f8fa;
  --white: #fff;
  --orange: #f96302;
  --orange-dark: #d95100;
  --shadow: 0 16px 45px rgba(16, 24, 40, 0.12);
  --max: 1320px;
}

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

html {
  scroll-behavior: smooth;
  zoom: var(--ui-scale);
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(249, 99, 2, 0.45);
  outline-offset: 2px;
}

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

ul {
  list-style: none;
}

button {
  font: inherit;
}

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

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-flex;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga";
}

.icon::before {
  font-family: "Material Symbols Outlined";
  content: var(--i);
  font-size: var(--s, 24px);
  display: inline-flex;
  color: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 10px 25px rgba(249, 99, 2, 0.23);
}

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

.btn-outline {
  color: var(--navy);
  background: #fff;
  border-color: var(--orange);
}

.btn-outline:hover {
  color: #fff;
  background: var(--orange);
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  height: 72px;
  width: auto;
  line-height: 0;
}

.brand svg {
  display: block;
  height: 52px;
  width: auto;
  max-width: none;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  height: 52px;
  width: auto;
  max-width: none;
  flex: 0 0 auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.desktop-nav a {
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 13px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.18s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--orange);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
  padding: 0 20px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 700;
}

.site-header.nav-open .mobile-nav {
  display: block;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.98) 42%,
      rgba(255, 255, 255, 0.72) 58%,
      rgba(255, 255, 255, 0.08) 78%
    ),
    linear-gradient(90deg, #fff, #d7dde5);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 18% 18%, rgba(249, 99, 2, 0.09), transparent 28%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 630px) 1fr;
  align-items: center;
  padding: 36px 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
}

h1 {
  max-width: 640px;
  font-size: clamp(36px, 4.1vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  font-weight: 800;
}

h1 span {
  color: var(--orange);
}

.hero-copy {
  max-width: 560px;
  margin-top: 16px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.trust-row {
  max-width: 660px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.trust-item {
  min-height: 72px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 10px 12px;
  border-right: 1px solid var(--line);
}

.trust-item:first-of-type {
  padding: 12px 16px 10px 0;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  color: var(--orange);
}

.trust-icon::before {
  --s: 34px;
}

.trust-title {
  display: block;
  font-size: 13px;
  font-weight: 800;
}

.trust-text {
  display: block;
  margin-top: 2px;
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
}

.stats-bar {
  background: linear-gradient(90deg, #02070b, #07131d 48%, #02070b);
  color: #fff;
}

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

.stat {
  min-height: 86px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

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

.stat-icon {
  color: var(--orange);
}

.stat-icon::before {
  --s: 44px;
}

.stat-number {
  display: block;
  font-size: clamp(22px, 1.3vw, 31px);
  line-height: 1;
  font-weight: 800;
}

.stat-label {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: 52px 0;
}

.section-tight {
  padding: 32px 0;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.section-title h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.section-title p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.page-hero {
  background: linear-gradient(90deg, #fafbfc, #f3f6f9);
  border-bottom: 1px solid var(--line);
}

.page-hero .hero-inner {
  min-height: 250px;
  grid-template-columns: 1fr;
  padding: 40px 0 30px;
}

.page-title {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.page-subtitle {
  max-width: 780px;
  margin-top: 16px;
  color: var(--text);
  font-size: 17px;
}

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

.content-card {
  padding: 26px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
}

.content-card h3 {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.content-card p {
  margin-top: 10px;
  color: #2d3542;
  font-size: 14px;
}

.content-card ul {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.content-card li {
  color: #2d3542;
  font-size: 14px;
}

.content-card li::before {
  content: "• ";
  color: var(--orange);
}

.contact-form {
  margin-top: 24px;
  padding: 26px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 16px;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #cfd5df;
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-size: 14px;
}

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

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

.form-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.form-status {
  margin-top: 10px;
  color: #1d4f2e;
  font-size: 12px;
  font-weight: 600;
}

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

.service-card {
  min-height: 154px;
  padding: 28px 22px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.07);
  transition: 0.18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 99, 2, 0.38);
  box-shadow: var(--shadow);
}

.service-icon {
  color: var(--orange);
  margin: 0 auto 14px;
}

.service-icon::before {
  --s: 46px;
}

.service-card h3 {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
}

.service-card p {
  max-width: 240px;
  margin: 8px auto 0;
  color: #252c38;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.process {
  background: #f8fafc;
  border-block: 1px solid var(--line);
}

.process-group {
  margin-top: 30px;
}

.process-group:first-of-type {
  margin-top: 0;
}

.process-group-title {
  margin-bottom: 18px;
  text-align: center;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid var(--line);
}

.data-table th {
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  padding: 10px 12px;
}

.data-table td {
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  color: var(--text);
  vertical-align: top;
}

.data-table tbody tr:nth-child(even) td {
  background: var(--soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.process-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.process-grid-3 {
  max-width: 980px;
  margin-inline: auto;
  grid-template-columns: repeat(3, 1fr);
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
}

.step-badge {
  position: absolute;
  top: 10px;
  left: -10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.step-icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.08);
  margin: 20px 0;
}

.step-icon::before {
  --s: 42px;
}

.process-step h3 {
  font-size: 15px;
  font-weight: 800;
}

.process-step p {
  margin-top: 4px;
  color: #2d3542;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.serve-testimonial {
  display: grid;
  grid-template-columns: 1fr minmax(420px, 0.88fr);
  gap: 36px;
  align-items: stretch;
}

.industries h2 {
  margin-bottom: 18px;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-inline: 1px solid var(--line);
}

.industry-grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.industry {
  min-height: 92px;
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid var(--line);
}

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

.industry-icon {
  color: var(--navy);
  margin-bottom: 8px;
}

.industry-icon::before {
  --s: 38px;
}

.industry strong {
  display: block;
  color: #273142;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 700;
}

.quote-card {
  position: relative;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 34px 24px 78px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
}

.quote-mark {
  position: absolute;
  top: 16px;
  left: 28px;
  color: var(--orange);
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
}

.quote-text {
  color: #111827;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1.45;
}

.quote-author {
  margin-top: 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quote-author span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.cta-band {
  background: #030303;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.cta-inner h2 {
  font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.cta-inner p {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 500;
}

.site-footer {
  background: #020202;
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
  gap: 52px;
  padding: 28px 0 18px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: auto;
  line-height: 0;
  margin-bottom: 14px;
}

.footer-brand svg {
  display: block;
  height: 54px;
  width: auto;
  max-width: 260px;
  flex: 0 0 auto;
}

.footer-brand img {
  display: block;
  height: 54px;
  width: auto;
  max-width: 260px;
  flex: 0 0 auto;
}

.footer-about p {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.7;
}

.footer-col h3 {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-list {
  display: grid;
  gap: 7px;
}

.footer-list a,
.footer-list span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 500;
}

.footer-list a:hover {
  color: var(--orange);
}

.contact-line {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  align-items: center;
}

.contact-line .icon::before {
  --s: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.socials a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.socials a:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 16px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.footer-bottom a:hover {
  color: var(--orange);
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .stats-grid,
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .process-grid,
  .process-grid-5,
  .process-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid-3 {
    max-width: none;
  }

  .serve-testimonial {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

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

  .brand svg {
    height: 44px;
  }

  .brand img {
    height: 44px;
  }

  .hero-inner {
    min-height: auto;
    padding: 42px 0 18px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-actions,
  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .trust-item:last-child {
    border-bottom: 0;
  }

  .stats-grid,
  .services-grid,
  .process-grid,
  .industry-grid,
  .footer-main,
  .card-grid {
    grid-template-columns: 1fr;
  }

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

  .stat,
  .stat:nth-child(2),
  .stat:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

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

  .industry-grid {
    border: 1px solid var(--line);
  }

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

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

  .quote-card {
    padding: 64px 22px 22px;
  }

  .quote-mark {
    left: 22px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
    text-align: center;
  }

  .footer-bottom {
    flex-wrap: wrap;
    text-align: center;
  }
}

@media (min-width: 2000px) {
  :root {
    --ui-scale: 1.1 !important;
  }
}
@media (min-width: 2500px) {
  :root {
    --ui-scale: 1.25 !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .btn:hover,
  .service-card:hover {
    transform: none;
  }
}
