/* ============================= */
/* HOME RESIDENTIAL CTA */
/* ============================= */

.home-residential-cta {
  position: relative;
  overflow: hidden;

  padding: 90px 0;

  background:
    linear-gradient(rgba(16, 185, 129, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 18% 28%, rgba(16, 185, 129, 0.14), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(37, 99, 235, 0.10), transparent 30%),
    linear-gradient(180deg, #f8fffc 0%, #ecfdf5 100%);

  background-size:
    34px 34px,
    34px 34px,
    auto,
    auto,
    auto;
}

/* ============================= */
/* SHELL */
/* ============================= */

.home-residential-shell {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 54px;
  align-items: center;

  padding: 50px;

  border-radius: 38px;

  background:
    radial-gradient(
      circle at 38% 42%,
      rgba(16, 185, 129, 0.10),
      transparent 36%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.96),
      rgba(236, 253, 245, 0.86)
    );

  border: 1px solid rgba(16, 185, 129, 0.14);

  box-shadow:
    0 34px 90px rgba(16, 185, 129, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.home-residential-shell::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;

  width: 360px;
  height: 360px;

  border-radius: 999px;

  background: rgba(37, 99, 235, 0.08);

  filter: blur(8px);
  pointer-events: none;
}

/* ============================= */
/* CONTENT */
/* ============================= */

.home-residential-content {
  position: relative;
  z-index: 2;
}

.home-residential-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 22px;
  padding: 9px 16px;

  border-radius: 999px;

  background: rgba(16, 185, 129, 0.10);
  border: 1px solid rgba(16, 185, 129, 0.15);

  color: #047857;

  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.home-residential-kicker span {
  width: 9px;
  height: 9px;

  border-radius: 999px;

  background: #10b981;

  box-shadow:
    0 0 0 6px rgba(16, 185, 129, 0.12);
}

.home-residential-content h2 {
  max-width: 720px;

  margin: 0 0 20px;

  color: #07122f;

  font-size: clamp(3.1rem, 5.4vw, 5.4rem);
  font-weight: 760;
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.home-residential-content p {
  max-width: 610px;

  margin: 0 0 30px;

  color: #334155;

  font-size: 1.02rem;
  line-height: 1.75;
}

/* ============================= */
/* ACTIONS */
/* ============================= */

.home-residential-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-bottom: 34px;
}

.home-residential-btn-primary,
.home-residential-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;

  padding: 13px 21px;

  border-radius: 16px;

  text-decoration: none;

  font-size: 0.94rem;
  font-weight: 850;

  transition:
    transform 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.home-residential-btn-primary {
  color: #ffffff;

  background: #10b981;

  box-shadow:
    0 18px 36px rgba(16, 185, 129, 0.22);
}

.home-residential-btn-primary:hover {
  color: #ffffff;

  background: #059669;

  transform: translateY(-2px);
}

.home-residential-btn-secondary {
  color: #064e3b;

  background: rgba(255, 255, 255, 0.82);

  border: 1px solid rgba(16, 185, 129, 0.16);
}

.home-residential-btn-secondary:hover {
  color: #064e3b;

  background: #ffffff;

  transform: translateY(-2px);
}

/* ============================= */
/* POINTS */
/* ============================= */

.home-residential-points {
  position: relative;
  z-index: 2;

  display: grid;
  gap: 18px;
}

.home-residential-points article {
  position: relative;

  min-height: 128px;

  padding: 28px 26px 28px 62px;

  border-radius: 28px;

  background: rgba(255, 255, 255, 0.72);

  border: 1px solid rgba(16, 185, 129, 0.10);

  box-shadow:
    0 18px 42px rgba(16, 185, 129, 0.08);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.home-residential-points article:hover {
  transform: translateY(-3px);

  background: rgba(255, 255, 255, 0.86);

  border-color: rgba(16, 185, 129, 0.18);

  box-shadow:
    0 24px 54px rgba(16, 185, 129, 0.12);
}

.home-residential-points article::before {
  content: "";
  position: absolute;

  left: 28px;
  top: 34px;

  width: 14px;
  height: 14px;

  border-radius: 50%;

  background: #10b981;

  outline: 7px solid rgba(16, 185, 129, 0.10);

  box-shadow:
    0 0 24px rgba(16, 185, 129, 0.18);
}

.home-residential-points strong {
  display: block;

  margin-bottom: 10px;

  color: #0f172a;

  font-size: 1.1rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.home-residential-points span {
  display: block;

  color: #475569;

  font-size: 0.95rem;
  line-height: 1.58;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 991px) {
  .home-residential-shell {
    grid-template-columns: 1fr;
    gap: 34px;

    padding: 38px 28px;
  }

  .home-residential-points {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .home-residential-points article {
    min-height: auto;
    padding: 24px 22px 24px 58px;
  }

  .home-residential-points article::before {
    left: 24px;
    top: 31px;
  }
}

@media (max-width: 768px) {
  .home-residential-cta {
    padding: 64px 0;
  }

  .home-residential-shell {
    padding: 28px 20px;
    border-radius: 30px;
  }

  .home-residential-content h2 {
    font-size: 3.3rem;
  }

  .home-residential-actions {
    flex-direction: column;
  }

  .home-residential-btn-primary,
  .home-residential-btn-secondary {
    width: 100%;
  }

  .home-residential-points {
    grid-template-columns: 1fr;
  }

  .home-residential-points article {
    padding: 22px 20px 22px 54px;
  }

  .home-residential-points article::before {
    left: 22px;
    top: 29px;

    width: 12px;
    height: 12px;

    outline-width: 6px;
  }

  .home-residential-points strong {
    font-size: 1.02rem;
  }

  .home-residential-points span {
    font-size: 0.9rem;
  }
}