:root {
  --bg: #0b1010;
  --bg-soft: #111818;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --text: #f7f8f8;
  --muted: #b8c0be;
  --red: #d91f26;
  --green: #0e9d46;
  --white: #f4f5f5;
  --black: #090909;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(217,31,38,.18), transparent 26%),
    radial-gradient(circle at 85% 20%, rgba(14,157,70,.16), transparent 24%),
    linear-gradient(180deg, #0a0f0f 0%, #0d1313 40%, #0a0d0d 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.site-shell { overflow: clip; }
.section { padding: 96px 0; }
.section-dark { background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.04)); }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(7, 10, 10, 0.65);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}
.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(217,31,38,.2));
}
.brand-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.brand-sub {
  display: block;
  font-size: 0.83rem;
  color: var(--muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.nav-links a:not(.btn) {
  color: #e8eceb;
  font-size: 0.95rem;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  margin: 5px 0;
}

.hero {
  position: relative;
  padding: 84px 0 70px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #a6ffcb;
  font-size: 0.76rem;
  font-weight: 700;
}
.eyebrow.light { color: #d5f9e1; }
.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.hero h1 { font-size: clamp(2.7rem, 5vw, 5.4rem); max-width: 10.5ch; }
.section h2 { font-size: clamp(2rem, 3vw, 3.2rem); max-width: 15ch; }
.lead,
.section-head p,
.body-copy,
.cta-box p,
.highlight-copy p,
.about-grid p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
.hero-copy .lead { max-width: 62ch; margin: 1.2rem 0 0; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(90deg, var(--red), var(--green));
  box-shadow: 0 14px 30px rgba(217,31,38,.22);
}
.btn-ghost, .btn-outline {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.03);
}
.btn-sm { min-height: 42px; padding: 0 1rem; font-size: 0.92rem; }
.btn-light {
  background: var(--white);
  color: #081010;
}
.btn-outline-light {
  border-color: rgba(255,255,255,.3);
  color: var(--white);
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.hero-metrics article,
.card,
.industry-card,
.mini-card,
.hero-card,
.highlight-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.hero-metrics article {
  padding: 1rem;
  border-radius: 18px;
}
.hero-metrics strong { display: block; margin-bottom: .45rem; }
.hero-metrics span { color: var(--muted); font-size: .92rem; line-height: 1.6; }

.glass {
  backdrop-filter: blur(20px);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
}
.hero-card {
  padding: 1.25rem;
  border-radius: 28px;
  position: relative;
}
.hero-card-head {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #d6f9e2;
  font-size: .92rem;
  padding: .6rem .85rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
}
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--red), var(--green));
  box-shadow: 0 0 18px rgba(14,157,70,.8);
}
.hero-logo-wrap {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 1rem;
}
.hero-logo-wrap img {
  max-width: 82%;
  filter: drop-shadow(0 12px 38px rgba(0,0,0,.45));
}
.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.hero-card-grid div {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}
.hero-card-grid h3,
.service-card h3,
.industry-card h3,
.mini-card h3 { margin: 0 0 .55rem; }
.hero-card-grid p,
.service-card p,
.industry-card p,
.mini-card p { margin: 0; color: var(--muted); line-height: 1.7; }

.hero-glow {
  position: absolute;
  inset: auto;
  width: 440px;
  height: 440px;
  filter: blur(90px);
  opacity: .22;
  pointer-events: none;
}
.hero-glow-red { background: var(--red); top: -120px; left: -110px; }
.hero-glow-green { background: var(--green); right: -140px; bottom: -120px; }

.trust-strip {
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding: 1.15rem 0;
}
.trust-items span {
  text-align: center;
  color: #d7dddd;
  font-size: .93rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.3rem;
}
.section-head.narrow { max-width: 620px; }
.section-head.light p { color: #c5d0ce; }
.service-grid,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.service-card,
.industry-card,
.mini-card {
  padding: 1.35rem;
  border-radius: 22px;
}
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  font-weight: 800;
  margin-bottom: 1rem;
  background: rgba(255,255,255,.06);
}
.accent-red .icon { box-shadow: inset 0 0 0 1px rgba(217,31,38,.4); color: #ff9498; }
.accent-green .icon { box-shadow: inset 0 0 0 1px rgba(14,157,70,.4); color: #8fffbb; }
.accent-black .icon { box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); color: #fafafa; }
.accent-white .icon { box-shadow: inset 0 0 0 1px rgba(255,255,255,.28); color: #ffffff; }

.two-col,
.highlight-grid,
.about-grid,
.cta-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: .85rem;
}
.feature-list li {
  padding-left: 1.2rem;
  position: relative;
  color: #e4ebea;
}
.feature-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: .7rem;
  background: linear-gradient(90deg, var(--red), var(--green));
}
.stacked-cards {
  display: grid;
  gap: 1rem;
}
.mini-card span {
  display: inline-flex;
  margin-bottom: .7rem;
  color: #baf8d1;
  font-weight: 800;
}
.highlight-section {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
}
.highlight-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.3rem;
  border-radius: 28px;
}
.panel-item {
  padding: 1.15rem;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}
.panel-item strong { display: block; margin-bottom: .45rem; }
.panel-item span { color: var(--muted); }

.cta-section { padding-top: 20px; }
.cta-box {
  background: linear-gradient(135deg, rgba(217,31,38,.18), rgba(14,157,70,.16), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 32px;
  padding: 2rem;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 1040px) {
  .hero-grid,
  .two-col,
  .highlight-grid,
  .about-grid,
  .cta-box,
  .service-grid,
  .industry-grid,
  .trust-items,
  .hero-metrics {
    grid-template-columns: 1fr 1fr;
  }
  .hero h1 { max-width: 12ch; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }
  .nav-links {
    position: absolute;
    top: 82px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(10, 15, 15, 0.96);
    border: 1px solid rgba(255,255,255,.08);
  }
  .nav-links.open { display: flex; }
  .hero-grid,
  .two-col,
  .highlight-grid,
  .about-grid,
  .cta-box,
  .service-grid,
  .industry-grid,
  .trust-items,
  .hero-metrics,
  .hero-card-grid,
  .highlight-panel {
    grid-template-columns: 1fr;
  }
  .section { padding: 78px 0; }
  .hero { padding-top: 46px; }
  .hero-logo-wrap { min-height: 240px; }
  .cta-actions { justify-content: flex-start; }
}
