/* ===== SERVICE SECTION ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

/* ===== RESULTS SECTION ===== */
.results-section {
  background: var(--color-primary-dark);
  padding: var(--spacing-xl) 0;
}

.results-section .section__label { color: #a5d86a; background: rgba(165,216,106,0.15); }
.results-section .section__title { color: var(--color-white); }
.results-section .section__subtitle { color: rgba(255,255,255,0.7); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding: var(--spacing-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,195,74,0.15) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section .section__title {
  color: var(--color-white);
  font-size: var(--size-2xl);
}

.cta-section .section__subtitle {
  color: rgba(255,255,255,0.8);
  max-width: 500px;
}

.cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: var(--spacing-md);
}

/* ===== FOOTER ===== */
.footer {
  background: #0e1f0e;
  color: rgba(255,255,255,0.65);
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 0.8rem;
}
.footer__logo svg { width: 28px; height: 28px; }

.footer__tagline {
  font-size: var(--size-xs);
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.2rem;
}

.footer__col-title {
  font-size: var(--size-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: var(--size-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--color-accent); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--size-xs);
}

.footer__policy-links {
  display: flex;
  gap: 1.5rem;
}
.footer__policy-links a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer__policy-links a:hover { color: rgba(255,255,255,0.7); }
