:root {
  --c1-bg:        #0b1428;
  --c1-surface:   #13203a;
  --c1-surface-2: #1a2a4a;
  --c1-line:      #1f3055;
  --c1-text:      #e6ecf5;
  --c1-text-2:    #c4cee0;
  --c1-muted:     #8a97b1;
  --c1-green:     #5baa34;
  --c1-green-dk:  #4c9128;
  --c1-radius:    6px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body.c1 {
  background: var(--c1-bg);
  color: var(--c1-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.c1 img { max-width: 100%; display: block; }
.c1 a { color: var(--c1-text); text-decoration: none; }
.c1 a:hover { color: var(--c1-green); }
.c1 h1, .c1 h2, .c1 h3, .c1 h4 {
  margin: 0; font-weight: 800;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

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

/* Common */
.c1-eyebrow {
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--c1-green); font-weight: 700;
  margin: 0 0 14px;
}
.c1-eyebrow--center { text-align: center; }
.c1-section__title {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  text-align: center;
  margin: 0 0 14px;
}
.c1-section__lede {
  text-align: center; max-width: 640px; margin: 0 auto 40px;
  color: var(--c1-text-2); font-size: 16px;
  text-transform: none; letter-spacing: 0;
}

/* Buttons */
.c1-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px;
  border-radius: var(--c1-radius);
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.04em; text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.c1-btn--lg { padding: 15px 26px; font-size: 14.5px; }
.c1-btn--green { background: var(--c1-green); color: #fff; }
.c1-btn--green:hover { background: var(--c1-green-dk); color: #fff; }
.c1-btn--ghost { background: transparent; color: var(--c1-text); border-color: rgba(255,255,255,.25); }
.c1-btn--ghost:hover { border-color: var(--c1-green); color: var(--c1-green); }

/* TOPBAR */
.c1-topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,20,40,.95);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--c1-line);
}
.c1-topbar__inner {
  display: flex; align-items: center; gap: 24px;
  height: 72px;
}
.c1-brand { display: flex; align-items: center; gap: 10px; }
.c1-brand img { height: 36px; width: auto; }
.c1-brand__wordmark {
  font-size: 12px; letter-spacing: 0.04em; line-height: 1.1;
  color: var(--c1-text); font-weight: 600; text-transform: lowercase;
  max-width: 110px;
}
.c1-nav {
  display: flex; gap: 24px; flex: 1; justify-content: center;
}
.c1-nav a {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--c1-text-2);
}
.c1-nav a:hover { color: var(--c1-green); }

/* HERO */
.c1-hero {
  position: relative;
  padding: 120px 0 110px;
  overflow: hidden;
  background: var(--c1-bg);
}
.c1-hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(11,20,40,.92) 0%, rgba(11,20,40,.78) 45%, rgba(11,20,40,.55) 100%),
    url('/images/real-hero.jpg?v=20260505-1') center / cover no-repeat;
  z-index: 0;
}
.c1-hero__inner { position: relative; z-index: 1; max-width: 880px; }
.c1-hero__title {
  font-size: clamp(48px, 7vw, 96px);
  line-height: .95;
  margin: 0 0 22px;
}
.c1-hero__title span { color: var(--c1-green); }
.c1-hero__lede {
  font-size: 17px; line-height: 1.55;
  color: var(--c1-text-2);
  max-width: 580px;
  margin: 0 0 32px;
  text-transform: none; letter-spacing: 0;
}
.c1-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* COMPLIANCE */
.c1-compliance {
  background: var(--c1-surface);
  border-top: 1px solid var(--c1-line);
  border-bottom: 1px solid var(--c1-line);
  padding: 26px 0;
}
.c1-compliance__caption {
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--c1-muted); font-weight: 700; text-transform: uppercase;
  margin: 0 0 14px; text-align: center;
}
.c1-compliance__row {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 32px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--c1-text); text-transform: uppercase;
}
.c1-compliance__row li {
  position: relative; padding: 0 0 0 16px;
}
.c1-compliance__row li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c1-green); transform: translateY(-50%);
}

/* STATS */
.c1-stats { padding: 80px 0; }
.c1-stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--c1-line);
  border-bottom: 1px solid var(--c1-line);
}
.c1-stats__grid > div {
  padding: 36px 28px;
  border-right: 1px solid var(--c1-line);
}
.c1-stats__grid > div:last-child { border-right: 0; }
.c1-stat__num {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: var(--c1-text);
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex; align-items: baseline; gap: 6px;
}
.c1-stat__num span {
  font-size: .42em; color: var(--c1-green);
  font-weight: 700; letter-spacing: 0;
}
.c1-stat__label {
  margin-top: 12px;
  font-size: 13px;
  color: var(--c1-text-2);
  letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 600;
}

/* SERVICES */
.c1-services { padding: 80px 0; background: var(--c1-bg); }
.c1-services__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.c1-service {
  background: var(--c1-surface);
  border: 1px solid var(--c1-line);
  border-radius: var(--c1-radius);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .15s ease, transform .15s ease;
}
.c1-service:hover {
  border-color: var(--c1-green);
  transform: translateY(-2px);
}
.c1-service__num {
  font-size: 13px; font-weight: 800;
  color: var(--c1-green); letter-spacing: 0.12em;
}
.c1-service h3 {
  font-size: 17px;
  color: var(--c1-text);
}
.c1-service ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.c1-service li {
  font-size: 13.5px; line-height: 1.5;
  color: var(--c1-text-2);
  text-transform: none; letter-spacing: 0;
  position: relative; padding-left: 14px;
}
.c1-service li::before {
  content: ''; position: absolute; left: 0; top: .55em;
  width: 6px; height: 1.5px; background: var(--c1-green);
}

/* PROCESS */
.c1-process { padding: 80px 0; background: var(--c1-surface); border-top: 1px solid var(--c1-line); }
.c1-stepper {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  counter-reset: c1-step;
}
.c1-stepper li {
  background: var(--c1-bg);
  border: 1px solid var(--c1-line);
  border-radius: var(--c1-radius);
  padding: 22px 18px;
  display: flex; flex-direction: column; gap: 6px;
  position: relative;
}
.c1-stepper__n {
  font-size: 11px; font-weight: 800;
  color: var(--c1-green);
  letter-spacing: 0.18em;
}
.c1-stepper strong {
  font-size: 14px; font-weight: 800;
  color: var(--c1-text);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.c1-stepper p {
  font-size: 13px; line-height: 1.5;
  color: var(--c1-text-2);
  margin: 0;
}

/* QUOTE */
.c1-quote {
  padding: 96px 0;
  background: var(--c1-bg);
  text-align: center;
}
.c1-quote blockquote {
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.3;
  font-weight: 700;
  color: var(--c1-text);
  max-width: 880px;
  margin: 0 auto 24px;
  letter-spacing: -0.01em;
  text-transform: none;
}
.c1-quote__attr {
  color: var(--c1-muted);
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  margin: 0;
}

/* LOCATIONS */
.c1-locations { padding: 80px 0; background: var(--c1-surface); border-top: 1px solid var(--c1-line); }
.c1-locations__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.c1-loc {
  display: flex; align-items: baseline; gap: 10px;
  background: var(--c1-bg);
  border: 1px solid var(--c1-line);
  border-radius: var(--c1-radius);
  padding: 22px 22px;
  transition: border-color .15s ease;
}
.c1-loc:hover { border-color: var(--c1-green); color: var(--c1-text); }
.c1-loc span {
  font-size: 17px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--c1-text);
}
.c1-loc small {
  font-size: 12px; font-weight: 700;
  color: var(--c1-green); letter-spacing: 0.16em;
}

/* CTA STRIP */
.c1-cta {
  padding: 64px 0;
  background: var(--c1-green);
}
.c1-cta__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.c1-cta h2 {
  font-size: clamp(24px, 2.6vw, 36px);
  color: #fff; margin: 0 0 6px;
}
.c1-cta p {
  margin: 0; color: rgba(255,255,255,.92);
  font-size: 15px; text-transform: none; letter-spacing: 0;
}
.c1-cta .c1-btn {
  background: #0b1428; color: #fff;
  border-color: #0b1428;
}
.c1-cta .c1-btn:hover { background: #000; border-color: #000; }

/* FOOTER */
.c1-footer { background: var(--c1-bg); padding: 56px 0 0; border-top: 1px solid var(--c1-line); }
.c1-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.c1-footer__brand p {
  margin: 14px 0 0;
  font-size: 13.5px; line-height: 1.6;
  color: var(--c1-muted);
  text-transform: none; letter-spacing: 0;
  max-width: 320px;
}
.c1-footer__col h4 {
  font-size: 12px; letter-spacing: 0.18em;
  color: var(--c1-green);
  margin-bottom: 14px;
}
.c1-footer__col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.c1-footer__col li, .c1-footer__col a {
  font-size: 13.5px;
  color: var(--c1-text-2);
  text-transform: none; letter-spacing: 0;
}
.c1-footer__bottom {
  border-top: 1px solid var(--c1-line);
  padding: 18px 0;
}
.c1-footer__bottom-inner {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--c1-muted);
}
.c1-footer__bottom p { margin: 0; }
.c1-footer__bottom a { color: var(--c1-green); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .c1-services__grid { grid-template-columns: repeat(2, 1fr); }
  .c1-stepper { grid-template-columns: repeat(3, 1fr); }
  .c1-locations__grid { grid-template-columns: repeat(2, 1fr); }
  .c1-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .c1-stats__grid > div:nth-child(2) { border-right: 0; }
  .c1-stats__grid > div:nth-child(1), .c1-stats__grid > div:nth-child(2) { border-bottom: 1px solid var(--c1-line); }
  .c1-footer__inner { grid-template-columns: 1fr 1fr; }
  .c1-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .c1-nav { display: none; }
  .c1-services__grid { grid-template-columns: 1fr; }
  .c1-stepper { grid-template-columns: 1fr; }
  .c1-locations__grid { grid-template-columns: 1fr; }
  .c1-stats__grid { grid-template-columns: 1fr; }
  .c1-stats__grid > div { border-right: 0; border-bottom: 1px solid var(--c1-line); }
  .c1-stats__grid > div:last-child { border-bottom: 0; }
  .c1-cta__inner { flex-direction: column; align-items: flex-start; }
  .c1-footer__inner { grid-template-columns: 1fr; }
}
