:root {
  --spc-blue: #A7D8F5;
  --spc-blue-dark: #6FBFEA;
  --spc-blue-soft: #EAF6FD;

  --spc-green: #7FB77E;
  --spc-green-dark: #5C9D5B;
  --spc-green-soft: #EDF6ED;

  --spc-text: #2F3A40;
  --spc-muted: #6C7A80;
  --spc-white: #ffffff;
}

body {
  color: var(--spc-text);
  background-color: var(--spc-cream);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Buttons */
.spc-btn-primary {
  background-color: var(--spc-blue);
  border-color: var(--spc-blue);
  color: #fff;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  font-weight: 600;
}

.spc-btn-primary:hover {
  background-color: var(--spc-blue-dark);
  border-color: var(--spc-blue-dark);
}

.spc-btn-outline {
  border: 1px solid var(--spc-green);
  color: var(--spc-green);
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  font-weight: 600;
  background: transparent;
}

.spc-btn-outline:hover {
  background-color: var(--spc-green);
  color: #fff;
}

/* Hero */
.spc-hero {
  background: linear-gradient(135deg, var(--spc-blue-soft) 0%, #ffffff 100%);
  padding: 3rem 0 2.5rem;
}

.spc-badge {
  display: inline-block;
  background: rgba(167, 216, 245, 0.3);
  color: var(--spc-blue-dark);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.spc-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 1rem;
}

.spc-hero p {
  font-size: 1.1rem;
  color: var(--spc-muted);
  max-width: 38rem;
  margin-bottom: 1.25rem;
}

.spc-hero-card {
  background: var(--spc-white);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(47, 53, 47, 0.08);
}

.spc-hero-img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 1.25rem;
}

/* Sections */
.spc-section {
  padding: 3rem 0;
}

.spc-section-title {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.spc-section-subtitle {
  color: var(--spc-muted);
  max-width: 40rem;
  margin: 0 auto 3rem;
}

/* Cards */
.spc-service-card,
.spc-review-card,
.spc-contact-card {
  background: var(--spc-white);
  border: 1px solid rgba(84, 115, 92, 0.1);
  border-radius: 1.25rem;
  padding: 1.75rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(47, 53, 47, 0.04);
}

.spc-icon {
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(127, 183, 126, 0.2);
  color: var(--spc-green-dark);
  margin-bottom: 1rem;
}

.spc-service-card h3,
.spc-review-card h3,
.spc-contact-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.spc-service-card p,
.spc-review-card p,
.spc-contact-card p,
.spc-contact-card a {
  color: var(--spc-muted);
  margin-bottom: 0;
  text-decoration: none;
}

/* Trust list */
.spc-trust-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.spc-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.spc-trust-list i {
  color: var(--spc-green-dark);
  margin-top: 0.15rem;
}

/* CTA */
.spc-cta {
  background: var(--spc-green-dark);
  color: #fff;
  color: #fff;
  border-radius: 1.75rem;
  padding: 3rem;
}

.spc-cta p {
  color: rgba(255,255,255,0.8);
}

/* Footer */
.spc-footer {
  background: #1f2821;
  color: rgba(255,255,255,0.8);
}

.spc-footer a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

/* Mobile tweaks */
@media (max-width: 991.98px) {
  .spc-hero {
    text-align: center;
  }

  .spc-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .spc-hero-actions {
    justify-content: center;
  }
}

.navbar {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.navbar-brand {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--spc-text) !important;
}

.nav-link {
  color: var(--spc-text) !important;
  font-weight: 500;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.nav-link:hover {
  color: var(--spc-blue-dark) !important;
}

.navbar {
  background-color: var(--spc-white) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-toggler {
  border-radius: 0.75rem;
  padding: 0.5rem 0.7rem;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.spc-footer {
  background: #2f3a40;
  color: rgba(255, 255, 255, 0.88);
}

.spc-footer h4,
.spc-footer h5 {
  color: #fff;
  font-weight: 700;
}

.spc-footer p,
.spc-footer li,
.spc-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.spc-footer a:hover {
  color: var(--spc-blue);
}

.spc-footer ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}