/* ========================= */
/* INTRO / ABOUT             */
/* ========================= */
.sct-intro__wrap {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: start;
}

.sct-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(216,15,95,.08);
  border: 1px solid rgba(216,15,95,.18);
  color: #7a0b36;
  font-weight: 1100;
  font-size: 13px;
  margin-bottom: 14px;
  width: fit-content;
}

.sct-intro__text h2 {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -.3px;
}

.sct-intro__text p {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 900;
  line-height: 1.65;
}

.sct-intro__neighborhoods {
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(11,47,102,.04);
  border: 1px solid rgba(11,47,102,.10);
  border-radius: 18px;
}

.sct-nbhood-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 1100;
  color: var(--blue);
  font-size: 13px;
  margin-bottom: 12px;
}

.sct-nbhood-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sct-nbhood-list span {
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(11,47,102,.14);
  font-weight: 1000;
  font-size: 13px;
  color: rgba(11,47,102,.85);
}

/* ========================= */
/* OTHER AREAS GRID          */
/* ========================= */
.sct-other-areas {
  background: linear-gradient(180deg, rgba(11,47,102,.04), rgba(216,15,95,.03));
}

.sct-areas-grid {
  grid-template-columns: repeat(2, 1fr);
}
.sct-areas-grid .cov-card:nth-child(4),
.sct-areas-grid .cov-card:nth-child(5) {
  grid-column: auto;
  margin: 0;
}

@media (max-width: 560px) {
  .sct-areas-grid { grid-template-columns: 1fr; }
}


/* Highlights column */
.sct-stat-card {
  background: linear-gradient(135deg, var(--blue), #1a4a8a);
  border-radius: 22px;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
  color: #fff;
}

.sct-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.sct-stat__num {
  font-size: 24px;
  font-weight: 1100;
  letter-spacing: -.3px;
}

.sct-stat__label {
  font-size: 12px;
  color: rgba(255,255,255,.72);
  font-weight: 900;
}

.sct-trust-list {
  display: grid;
  gap: 12px;
}

.sct-trust-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
}

.sct-trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pink), #ff4d8b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex: 0 0 auto;
}

.sct-trust-title {
  font-weight: 1100;
  font-size: 14px;
  color: #111827;
  margin-bottom: 3px;
}

.sct-trust-desc {
  font-size: 13px;
  color: var(--muted);
  font-weight: 900;
  line-height: 1.45;
}

/* INTRO responsive */
@media (max-width: 980px) {
  .sct-intro__wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}


/* ========================= */
/* SERVICES GRID             */
/* ========================= */
.sct-services {
  background: linear-gradient(180deg, rgba(11,47,102,.04), rgba(216,15,95,.04));
}

.sct-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.sct-svc-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 22px;
  box-shadow: 0 8px 22px rgba(0,0,0,.07);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  transition: transform .15s ease, box-shadow .15s ease;
}
.sct-svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0,0,0,.12);
}

/* Accent card */
.sct-svc-card--accent {
  border-color: rgba(216,15,95,.18);
}

.sct-svc-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--pink), #ff4d8b);
  box-shadow: 0 12px 26px rgba(216,15,95,.24);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  flex: 0 0 auto;
}

.sct-svc-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.sct-svc-card__popular {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), #ff4d8b);
  color: #fff;
  font-weight: 1100;
  font-size: 11px;
  width: fit-content;
}

.sct-svc-card__body h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -.2px;
  color: #111827;
}

.sct-svc-card__body p {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
  line-height: 1.6;
  font-size: 14px;
}

.sct-svc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.sct-svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 900;
  font-size: 13.5px;
  color: #111827;
}
.sct-svc-list i { color: var(--pink); margin-top: 2px; flex: 0 0 auto; }

.sct-svc-card__body .btn { margin-top: auto; align-self: flex-start; }

@media (max-width: 980px) {
  .sct-svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .sct-svc-grid { grid-template-columns: 1fr; }
  .sct-svc-card { padding: 18px; gap: 10px; }
  .sct-svc-card__icon { width: 44px; height: 44px; font-size: 18px; border-radius: 12px; }
  .sct-svc-card__body h3 { font-size: 16px; }
  .sct-svc-list li { font-size: 13px; }
  .sct-svc-card__body .btn { width: 100%; justify-content: center; }
}



/* ========================= */
/* WHY US                    */
/* ========================= */
.sct-why {
  background: #fff;
}

.sct-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.sct-why-card {
  padding: 22px;
  background: var(--bg);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 22px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.sct-why-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.10);
}

.sct-why-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--pink), #ff4d8b);
  box-shadow: 0 12px 24px rgba(216,15,95,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  margin-bottom: 14px;
}

.sct-why-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #111827;
}

.sct-why-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
  line-height: 1.6;
  font-size: 14px;
}

/* WHY responsive */
@media (max-width: 980px) {
  .sct-why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .sct-why__grid { grid-template-columns: 1fr; }
}


/* ========================= */
/* OVERRIDES                 */
/* ========================= */
.footer { margin-top: 0; }

.footer__inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
.footer__cols  { display: contents; }

@media (max-width: 980px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols  { display: grid; grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .footer__cols { grid-template-columns: 1fr; }
}
