:root {
  --c2-blue:        #1f4dad;
  --c2-blue-dk:     #163a85;
  --c2-blue-deep:   #142a52;
  --c2-blue-50:     #e8f0fb;
  --c2-green:       #5baa34;
  --c2-green-dk:    #4c9128;
  --c2-green-50:    #ecf7e3;
  --c2-ink:         #14213d;
  --c2-ink-soft:    #2c3a5f;
  --c2-muted:       #6b7589;
  --c2-line:        #e3e7ee;
  --c2-bg:          #ffffff;
  --c2-bg-soft:     #f5f7fa;
  --c2-shadow-sm:   0 1px 2px rgba(20,33,61,.06);
  --c2-shadow:      0 8px 24px rgba(20,33,61,.10);
}

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

/* Buttons */
.c2-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 700; font-size: 13px; line-height: 1;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; border: 1.5px solid transparent;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.c2-btn--lg { padding: 15px 24px; font-size: 13.5px; }
/* Compound selectors so .c2 a (specificity 0,1,1) doesn't override button color */
.c2-btn.c2-btn--green { background: var(--c2-green); color: #fff; }
.c2-btn.c2-btn--green:hover { background: var(--c2-green-dk); color: #fff; }
.c2-btn.c2-btn--blue { background: var(--c2-blue); color: #fff; }
.c2-btn.c2-btn--blue:hover { background: var(--c2-blue-dk); color: #fff; }
.c2-btn.c2-btn--white { background: #fff; color: var(--c2-ink); border-color: var(--c2-line); }
.c2-btn.c2-btn--white:hover { background: var(--c2-bg-soft); color: var(--c2-blue); border-color: var(--c2-blue-50); }
.c2-ico { display: inline-block; }

/* Section title with underline rule */
.c2-section__title {
  font-size: clamp(26px, 2.8vw, 36px);
  text-align: center;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--c2-ink);
}
.c2-section__rule {
  width: 56px; height: 3px;
  background: var(--c2-green);
  margin: 0 auto 40px;
  border-radius: 2px;
}

/* Brand mark */
.c2-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.c2-brand__mark { height: 50px; width: auto; }
.c2-brand__wordmark { display: flex; flex-direction: column; line-height: 1.1; }
.c2-brand__wordmark strong {
  font-size: 21px; color: var(--c2-blue); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1;
}
.c2-brand__wordmark small {
  font-size: 9.5px; color: var(--c2-blue);
  letter-spacing: 0.02em; line-height: 1.2;
  font-weight: 600;
  text-transform: lowercase;
  margin-top: 3px;
}
.c2-brand__wordmark--light strong { color: #fff; }
.c2-brand__wordmark--light small { color: rgba(255,255,255,.85); }

/* TOPBAR */
.c2-topbar { background: #fff; border-bottom: 1px solid var(--c2-line); position: sticky; top: 0; z-index: 50; }
.c2-topbar__inner { display: flex; align-items: center; gap: 24px; height: 88px; }
.c2-nav { display: flex; gap: 32px; flex: 1; justify-content: center; }
.c2-nav a {
  color: var(--c2-ink); font-weight: 600; font-size: 13.5px;
  letter-spacing: 0.04em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 4px;
}
.c2-nav a:hover { color: var(--c2-green); }
.c2-caret { font-size: 10px; color: var(--c2-muted); }

/* HERO */
.c2-hero { background: #fff; padding: 24px 0 0; }
.c2-hero__inner {
  display: grid; grid-template-columns: 0.85fr 1.1fr; gap: 32px;
  align-items: center;
  padding-bottom: 24px;
}
.c2-hero__copy h1 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--c2-ink);
}
.c2-hero__copy h1 span { color: var(--c2-green); }
.c2-hero__copy p {
  color: var(--c2-ink-soft);
  font-size: 16px;
  margin: 0 0 28px;
  max-width: 460px;
}
.c2-hero__cta { display: flex; gap: 10px; flex-wrap: wrap; }
.c2-hero__media {
  position: relative;
  border-radius: 0 0 0 12px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
}
.c2-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.c2-hero__tag {
  position: absolute; right: 18px; bottom: 18px;
  width: 78px; height: 78px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: grid; place-items: center;
  box-shadow: var(--c2-shadow);
}
.c2-hero__tag img { width: 64px; height: 64px; }

/* TRUST STRIP */
.c2-trust {
  background: var(--c2-bg-soft);
  border-top: 1px solid var(--c2-line);
  border-bottom: 1px solid var(--c2-line);
  padding: 18px 0;
}
.c2-trust__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.c2-trust__lede {
  font-size: 13.5px; color: var(--c2-ink-soft); font-weight: 500;
  margin: 0;
}
.c2-trust__items {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 32px; flex-wrap: wrap;
}
.c2-trust__items li { display: flex; align-items: center; gap: 10px; }
.c2-trust__ico {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
}
.c2-trust__ico--blue { background: var(--c2-blue-50); color: var(--c2-blue); }
.c2-trust__ico--green { background: var(--c2-green-50); color: var(--c2-green); }
.c2-trust__lbl { font-size: 12.5px; color: var(--c2-ink); line-height: 1.25; font-weight: 600; }

/* SERVICES */
.c2-services { padding: 64px 0; background: #fff; }
.c2-services__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.c2-service { text-align: center; padding: 0 8px; }
.c2-service__icon {
  width: 84px; height: 84px; border-radius: 50%;
  display: grid; place-items: center; margin: 0 auto 18px;
  border: 2px solid;
}
.c2-service__icon--green { color: var(--c2-green); border-color: var(--c2-green-50); background: #fff; }
.c2-service__icon--blue { color: var(--c2-blue); border-color: var(--c2-blue-50); background: #fff; }
.c2-service h3 {
  font-size: 14.5px; text-transform: uppercase; letter-spacing: 0.06em;
  margin: 0 0 12px; color: var(--c2-ink);
}
.c2-service p {
  font-size: 14px; color: var(--c2-muted); line-height: 1.6;
  margin: 0;
  max-width: 240px; margin-left: auto; margin-right: auto;
}

/* OPPORTUNITY */
.c2-opp { padding: 56px 0; background: var(--c2-bg-soft); }
.c2-opp__inner {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 40px;
  align-items: center;
}
.c2-opp__copy h2 {
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 28px;
  color: var(--c2-blue-dk);
}
.c2-opp__copy h2 span { color: var(--c2-green); }
.c2-opp__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.c2-opp__stats > div {
  text-align: left;
}
.c2-opp__ico {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px;
  margin-bottom: 8px;
}
.c2-opp__ico--green { color: var(--c2-green); }
.c2-opp__ico--blue { color: var(--c2-blue); }
.c2-opp__stats strong {
  display: block; font-size: 17px; font-weight: 800;
  color: var(--c2-green);
  margin-bottom: 4px;
}
.c2-opp__stats > div:nth-child(2) strong,
.c2-opp__stats > div:nth-child(3) strong { color: var(--c2-blue); }
.c2-opp__stats span {
  display: block; font-size: 13px; color: var(--c2-muted); line-height: 1.4;
}
.c2-opp__media {
  border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 3;
  box-shadow: var(--c2-shadow-sm);
}
.c2-opp__media img { width: 100%; height: 100%; object-fit: cover; }

/* EVENT */
.c2-event { padding: 56px 0; background: #fff; }
.c2-event__inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 36px;
  align-items: center;
}
.c2-event__media {
  border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 3;
  box-shadow: var(--c2-shadow-sm);
}
.c2-event__media img { width: 100%; height: 100%; object-fit: cover; }
.c2-event__copy h2 {
  font-size: clamp(24px, 2.4vw, 32px);
  text-transform: uppercase;
  color: var(--c2-blue-dk);
  margin-bottom: 22px;
  line-height: 1.15;
}
.c2-checklist { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.c2-checklist li {
  position: relative; padding-left: 30px;
  color: var(--c2-ink-soft); font-size: 15px;
}
.c2-checklist li::before {
  content: ''; position: absolute; left: 0; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--c2-green);
}
.c2-checklist li::after {
  content: ''; position: absolute; left: 5px; top: 9px;
  width: 8px; height: 4px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* PROGRAMS */
.c2-programs { padding: 56px 0; background: var(--c2-bg-soft); }
.c2-programs__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.c2-program {
  display: grid; grid-template-columns: 1.05fr 1fr;
  background: #fff;
  border: 1px solid var(--c2-line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--c2-shadow-sm);
  min-height: 240px;
}
.c2-program__copy {
  padding: 22px 22px 22px 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.c2-program__icon { color: var(--c2-green); margin-bottom: 6px; }
.c2-program h3 {
  font-size: 14px; text-transform: uppercase;
  color: var(--c2-ink); letter-spacing: 0.05em;
}
.c2-program p {
  margin: 0; font-size: 13.5px; color: var(--c2-muted); line-height: 1.5;
  flex: 1;
}
.c2-program img { width: 100%; height: 100%; object-fit: cover; }
.c2 .c2-learn {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--c2-green);
}
.c2 .c2-learn:hover { color: var(--c2-green-dk); }

/* BUSINESS BAND */
.c2-biz {
  position: relative;
  padding: 64px 0;
  color: #fff;
  overflow: hidden;
  background: var(--c2-blue-deep);
}
.c2-biz__bg { position: absolute; inset: 0; z-index: 0; opacity: 0.32; }
.c2-biz__bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.c2-biz__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,42,82,.92) 0%, rgba(20,42,82,.55) 50%, rgba(20,42,82,.20) 100%);
}
.c2-biz__inner { position: relative; z-index: 1; }
.c2-biz__copy { max-width: 540px; }
.c2-biz__copy h2 {
  color: #fff;
  font-size: clamp(26px, 2.6vw, 36px);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.c2-biz__copy p {
  color: rgba(255,255,255,.92); font-size: 15px;
  margin: 0 0 22px;
  max-width: 480px;
}
.c2-biz__points {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; gap: 24px; flex-wrap: wrap;
}
.c2-biz__points li {
  display: flex; flex-direction: column; gap: 6px;
  align-items: center; text-align: center;
  font-size: 12px; line-height: 1.3; font-weight: 600;
  color: rgba(255,255,255,.92);
}
.c2-biz__points svg { color: #fff; }

/* LOCATIONS */
.c2-locations { padding: 48px 0; background: #fff; }
.c2-locations__grid {
  display: grid; grid-template-columns: 1fr 1.4fr 1fr;
  gap: 32px; align-items: center;
}
.c2-locations__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px;
}
.c2-locations__list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14.5px; color: var(--c2-ink); font-weight: 500;
}
.c2-locations__list li small { color: var(--c2-muted); font-weight: 500; }
.c2-locations__more {
  grid-column: 1 / -1;
  margin-top: 4px;
  color: var(--c2-blue-dk) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
}
.c2-locations__map { width: 100%; }
.c2-locations__map svg { width: 100%; height: auto; }
.c2-locations__cta {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: var(--c2-bg-soft);
  border: 1px solid var(--c2-line);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
}
.c2-locations__cta:hover { background: #fff; border-color: var(--c2-green-50); }
.c2-locations__cta-mark {
  width: 56px; height: 56px; border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  box-shadow: var(--c2-shadow-sm);
}
.c2-locations__cta-mark img { width: 44px; }
.c2-locations__cta strong {
  font-size: 13px; color: var(--c2-ink);
  text-transform: uppercase; letter-spacing: 0.04em;
}

/* ACTION STRIP */
.c2-action { background: var(--c2-green); padding: 18px 0; }
.c2-action__inner {
  display: flex; gap: 0; justify-content: space-between; flex-wrap: wrap;
}
.c2-action a {
  color: #fff !important; font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  flex: 1; justify-content: center;
  border-right: 1px solid rgba(255,255,255,.22);
}
.c2-action a:last-child { border-right: 0; }
.c2-action a:hover { background: rgba(255,255,255,.10); }

/* FOOTER */
.c2-footer { background: var(--c2-blue-deep); color: rgba(255,255,255,.82); padding: 48px 0 0; }
.c2-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(6, 1fr);
  gap: 28px;
  padding-bottom: 32px;
}
.c2-footer h4 {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 0 0 14px;
}
.c2-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.c2-footer ul li, .c2-footer ul a { font-size: 13px; color: rgba(255,255,255,.78); }
.c2-footer ul a:hover { color: #fff; }
.c2-footer__brand { display: flex; flex-direction: column; gap: 12px; }
.c2-footer__brand p {
  margin: 0; font-size: 13px; color: rgba(255,255,255,.78); line-height: 1.5;
}
.c2-footer__social { display: flex; gap: 8px; padding-top: 4px; }
.c2-footer__social a {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.10);
  display: grid; place-items: center;
  color: #fff;
}
.c2-footer__social a:hover { background: var(--c2-green); }
.c2-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 16px 0;
}
.c2-footer__bottom-inner {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: rgba(255,255,255,.65);
}
.c2-footer__bottom p { margin: 0; }
.c2-footer__bottom a { color: rgba(255,255,255,.78); }
.c2-footer__bottom a:hover { color: #fff; }
.c2-footer__concepts strong { color: var(--c2-green); }

/* RESPONSIVE */
@media (max-width: 1180px) {
  .c2-services__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .c2-opp__stats { grid-template-columns: repeat(2, 1fr); }
  .c2-footer__inner { grid-template-columns: 1.4fr repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .c2-hero__inner { grid-template-columns: 1fr; }
  .c2-hero__media { aspect-ratio: 16 / 9; border-radius: 12px; }
  .c2-opp__inner { grid-template-columns: 1fr; }
  .c2-event__inner { grid-template-columns: 1fr; }
  .c2-programs__grid { grid-template-columns: 1fr; }
  .c2-locations__grid { grid-template-columns: 1fr; gap: 24px; }
  .c2-locations__list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .c2-nav { display: none; }
  .c2-services__grid { grid-template-columns: 1fr; }
  .c2-trust__items { gap: 18px; }
  .c2-opp__stats { grid-template-columns: 1fr; }
  .c2-program { grid-template-columns: 1fr; }
  .c2-program img { aspect-ratio: 16 / 10; }
  .c2-locations__list { grid-template-columns: 1fr; }
  .c2-action__inner { flex-direction: column; gap: 4px; }
  .c2-action a { border-right: 0; }
  .c2-footer__inner { grid-template-columns: 1fr 1fr; }
  .c2-footer__brand { grid-column: 1 / -1; }
  .c2-biz__points { gap: 16px; }
}
