:root {
  --bg: #f4f5fa;
  --bg-deep: #eceff6;
  --bg-soft: #ced6ea;
  --panel: #ffffff;
  --line: #d8deec;
  --text: #22253d;
  --muted: #5b6289;
  --primary: #bf0300;
  --primary-dark: #8f0200;
  --slate: #3d436d;
  --light-bg: #ffffff;
  --light-line: #d8deec;
  --light-text: #22253d;
  --light-muted: #5b6289;
  --shadow: 0 18px 45px rgba(34, 37, 61, 0.08);
  --radius: 20px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Mulish", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(191,3,0,0.08), transparent 22%),
    linear-gradient(180deg, #f7f8fc 0%, #eef1f7 100%);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }

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

.nav-wrap {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.brand-wrap {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  height: 48px;
  width: auto;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  flex-wrap: wrap;
}

.nav a:hover { color: var(--text); }

.hero {
  padding: 96px 0 72px;
}

.hero-grid,
.two-col,
.contact-card {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: start;
}

.hero-copy,
.hero-proof-panel,
.card,
.contact-card {
  position: relative;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
}

.eyebrow.small {
  font-size: 0.72rem;
}

h1,h2,h3 {
  margin: 0 0 14px;
  line-height: 1.08;
  font-family: "Kumbh Sans", sans-serif;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  max-width: 13ch;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  max-width: 16ch;
}

.lead,
p,
.form-note,
.list-clean,
.nav,
.trust-grid span {
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.btn-primary {
  background: linear-gradient(180deg, #d20b07, var(--primary));
  color: #fff;
  box-shadow: 0 14px 30px rgba(191,3,0,0.28);
}

.btn-outline {
  border-color: var(--line);
  background: #ffffff;
  color: var(--text);
}

.btn-sm { padding: 10px 16px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-pill {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.8);
  padding: 14px;
  display: grid;
  gap: 4px;
}

.stat-pill strong {
  color: var(--text);
  font-size: 0.98rem;
}

.stat-pill span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-proof-panel,
.card,
.contact-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-proof-panel,
.card {
  padding: 24px;
}

.proof-list li + li,
.list-clean li + li {
  margin-top: 10px;
}

.section {
  padding: 76px 0;
}

.light-section {
  background: var(--bg-deep);
  color: var(--light-text);
  border-top: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
}

.light-section .eyebrow {
  color: var(--primary);
}

.light-section .lead,
.light-section p,
.light-section .form-note,
.light-section .list-clean,
.light-section .card p,
.light-section .card li,
.light-section .contact-form span {
  color: var(--light-muted);
}

.light-section .card,
.light-section .contact-card {
  background: #ffffff;
  border-color: var(--light-line);
  box-shadow: 0 16px 40px rgba(34,37,61,0.08);
}

.trust-strip {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.6);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.trust-grid div {
  display: grid;
  gap: 4px;
}

.trust-grid strong {
  color: var(--text);
  font-size: 0.95rem;
}

.light-section .trust-grid strong {
  color: var(--light-text);
}

.grid.four,
.grid.three {
  display: grid;
  gap: 18px;
}

.grid.four {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(191,3,0,0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.solution-card,
.industry-card,
.proof-card {
  min-height: 100%;
}

.proof-stack {
  display: grid;
  gap: 16px;
}

.proof-card.strong {
  background: linear-gradient(180deg, rgba(191,3,0,0.08), rgba(191,3,0,0.03));
}

.list-clean {
  margin: 0;
  padding-left: 18px;
}

.contact-card {
  padding: 32px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: inherit;
  padding: 14px 16px;
  font: inherit;
}

.light-section .contact-form input,
.light-section .contact-form textarea {
  border-color: var(--light-line);
  background: #f9fafe;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .contact-card,
  .grid.four,
  .grid.three,
  .trust-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  h1,h2 { max-width: none; }
}

@media (max-width: 640px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .hero { padding: 56px 0 42px; }
  .section { padding: 58px 0; }
  .hero-actions,
  .nav {
    display: grid;
    grid-template-columns: 1fr;
  }
  .btn,
  .btn-sm {
    width: 100%;
  }
  .brand-logo {
    height: 42px;
  }
  .contact-card,
  .card,
  .hero-proof-panel {
    border-radius: 18px;
  }
}
