:root {
  --bg: #0c2f26;
  --bg-soft: #f6f6f2;
  --text: #1e2220;
  --gold: #d7a343;
  --muted: #6d726e;
  --white: #ffffff;
  --card-border: #e6e8e3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
}

h1, h2, h3, h4 {
  margin: 0 0 0.6rem;
  font-family: "Playfair Display", serif;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 82vh;
  color: var(--white);
  background:
    linear-gradient(rgba(3, 20, 15, 0.56), rgba(3, 20, 15, 0.72)),
    radial-gradient(circle at 80% 20%, rgba(122, 111, 65, 0.3), transparent 45%),
    linear-gradient(120deg, #1f3a31, #0d201a);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, rgba(3, 20, 15, 0.74)),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  mix-blend-mode: screen;
  opacity: 0.35;
}

.navbar {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.nav-btn {
  appearance: none;
  background: transparent;
  text-decoration: none;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.88rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  cursor: pointer;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 5rem 0 4rem;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #efdfb4;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 4rem);
  max-width: 640px;
  line-height: 1.06;
}

h1 span {
  color: #d8a84c;
  font-style: italic;
}

.hero-sub {
  max-width: 620px;
  color: #e1e5de;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 1.1rem 0 1.6rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: #1f1b10;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 0.8rem;
  max-width: 700px;
}

.quick-stats div {
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(13, 31, 24, 0.46);
  border-radius: 12px;
}

.quick-stats strong {
  display: block;
  font-size: 1rem;
}

.quick-stats span {
  font-size: 0.82rem;
  color: #d7dcd5;
}

.section {
  padding: 4.5rem 0;
}

.light {
  background: var(--bg-soft);
}

.section h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  max-width: 660px;
  margin-bottom: 1.3rem;
}

.section-tag {
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #b69558;
  font-size: 0.68rem;
  font-weight: 600;
}

.why-invest h2 {
  max-width: 680px;
  line-height: 1.04;
}

.why-invest h2 em {
  font-style: italic;
}

.grid {
  display: grid;
  gap: 0.9rem;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

.cards-2 {
  grid-template-columns: repeat(2, 1fr);
}

.info-card, .mini-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1rem;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #f4efe1;
  color: #a2711f;
  font-size: 1rem;
  margin-bottom: 0.55rem;
}

.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.emoji-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.info-card p, .mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.mini-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.cta-strip {
  margin-top: 2rem;
  background: linear-gradient(90deg, #0f3d31, #0a2e25);
  color: var(--white);
  padding: 1rem;
  text-align: center;
  border-radius: 14px;
  font-weight: 500; font-size: 35px;
}

.cta-strip span {
  color: #d8a84c;
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.4rem;
  align-items: stretch;
}

.split.reverse {
  grid-template-columns: 1fr 1.1fr;
}

.split.center {
  align-items: center;
}

.media-box {
  border-radius: 14px;
  min-height: 280px;
  background-size: cover;
  background-position: center;
}

.project-highlights {
  background: #f7f6f1;
}

.project-grid {
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
}

.project-highlights .media-box {
  min-height: 420px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(14, 30, 20, 0.12);
}

.project-highlights h2 {
  max-width: 520px;
  line-height: 0.98;
  color: #103f32;
}

.project-highlights h2 em {
  font-style: italic;
}

.project-highlights .cards-2 {
  gap: 0.65rem;
}

.project-highlights .mini-card {
  min-height: 56px;
  border-radius: 10px;
  padding: 0.7rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.project-highlights .mini-card .emoji-icon {
  margin: 0;
  width: 20px;
  height: 20px;
  font-size: 0.88rem;
}

.project-highlights .mini-card h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Playfair Display", serif;
}

.image-one {
  background-image: url("images/about.jpg");
}

.image-two {
  background-image: url("images/location-aerial-Cx83ZM0u.jpg");
}

.location-advantage {
  background: #f5f5f1;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.location-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 0.95;
  max-width: 500px;
  color: #113f32;
}

.location-copy h2 em {
  font-style: italic;
}

.location-eyebrow {
  margin-bottom: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #b69558;
  font-size: 0.7rem;
  font-weight: 600;
}

.location-sub {
  color: #4f554f;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.location-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer p a{ color:#fff; }
.location-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 42px;
  padding: 0.52rem 0.75rem;
  background: #fff;
  border: 1px solid #dfe3dc;
  border-radius: 10px;
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
}

.icon-box {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #132019;
  font-size: 0.72rem;
  border: 1px solid rgba(0, 0, 0, 0.16);
}

.icon-box.red { background: #fbd9d5; }
.icon-box.yellow { background: #ffe68c; }
.icon-box.sky { background: #c3efff; }
.icon-box.sand { background: #ffdca8; }
.icon-box.green { background: #9af0a2; }
.icon-box.emerald { background: #56df5a; }

.location-quote {
  margin-top: 0.95rem;
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: #262f2c;
}

.location-image {
  min-height: 430px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(14, 30, 20, 0.11);
}

.content-box,
.dark-copy {
  padding: 0.25rem;
}

.feature-list {
  margin: 0;
  padding-left: 0;
  color: var(--muted);
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.feature-list i {
  color: #0f6a55;
  margin-top: 0.1rem;
}

.dark {
  background: var(--bg);
  color: var(--white);
}

.dark h2,
.dark p {
  color: var(--white);
}

.scarcity-section {
  background: linear-gradient(108deg, #083426 0%, #064126 55%, #053a23 100%);
}

.scarcity-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 2.1rem;
  align-items: center;
}

.scarcity-copy {
  max-width: 560px;
}

.scarcity-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(215, 163, 67, 0.45);
  border-radius: 999px;
  color: #dcb874;
  font-size: 0.72rem;
  padding: 0.23rem 0.7rem;
}

.scarcity-copy h2 {
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  line-height: 1.03;
  margin-bottom: 0.9rem;
  max-width: 560px;
}

.scarcity-copy h2 span {
  color: #d8a84c;
}

.scarcity-sub {
  max-width: 520px;
  color: #d7ddd5;
  font-size: 0.98rem;
  margin-bottom: 1rem;
}

.scarcity-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.scarcity-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: #eef2ea;
  font-size: 0.92rem;
}

.scarcity-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #d6a241;
}

.price-card {
  background: #fff;
  color: var(--text);
  padding: 1.5rem;
  border-radius: 16px;
  width: min(410px, 100%);
}

.luxury-card {
  box-shadow: 0 14px 36px rgba(1, 19, 12, 0.28);
}

.price-title {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #998665 !important;
  margin-bottom: 0.15rem;
}

.price {
  font-family: "Poppins", serif;
  font-size: clamp(2.5rem, 3.6vw, 3.35rem);
  margin: 0.15rem 0 0.9rem;
  color: #133f32 !important; font-weight: 700;
  line-height: 1;
}

.price span {
  color: #d7a343;
}

.price-card ul {
  margin: 0 0 0.95rem;
  padding-left: 0;
  color: #4f554f;
  list-style: none;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #ece9e1;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
  font-size: 0.93rem;
}

.price-card li i {
  color: #be984d;
  font-size: 0.88rem;
}

.price-note {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 0.95rem;
  color: #45463f !important;
  margin-bottom: 1rem;
}

.block {
  width: 100%;
  text-align: center;
  padding: 0.78rem 1rem;
}

.final-cta {
  background: #f8f8f4;
  text-align: center;
}

.final-cta-wrap {
  max-width: 980px;
}

.final-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ba9a60;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.final-cta h2 {
  margin: 0 auto 0.95rem;
  font-size: clamp(2.4rem, 5.2vw, 4.7rem);
  line-height: 1.05;
  color: #0f4738;
  max-width: 950px;
}

.final-cta h2 em {
  color: #d5a043;
  font-style: italic;
}

.final-sub {
  max-width: 620px;
  margin: 0 auto 1.65rem;
  color: #4e5651;
  font-size: 1.03rem;
}

.final-actions {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.final-btn {
  min-width: 210px;
  padding: 0.84rem 1.15rem;
  font-size: 1.05rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 600;
}

.wa-btn {
  background: linear-gradient(90deg, #efc24f, #e39a1f);
  color: #15251d;
}

.call-btn {
  background: #0f4f39;
  color: #fff;
}

.call-btn i {
  color: #df4343;
}

.final-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.final-badge {
  border: 1px solid #e1e4de;
  background: #fff;
  border-radius: 999px;
  padding: 0.52rem 0.95rem;
  font-size: 0.98rem;
  color: #2d3430;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.final-badge i {
  color: #12ae35;
}

.final-badge.highlight {
  background: #f7f1df;
  border-color: #ead8aa;
  font-weight: 600;
}

.final-badge.highlight i {
  color: #2f2714;
}

.footer {
  background: #0a2a21;
  color: #d0d5d1;
  padding: 1.25rem 0;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-meta {
  text-align: left;
}

.footer-meta p {
  margin: 0 0 0.35rem;
}

.footer-meta p:last-child {
  margin-bottom: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #e8ebe6;
  font-size: 1.05rem;
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.footer-social a:hover {
  color: #d7a343;
  border-color: rgba(215, 163, 67, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.social-follow {
  margin-top: 1.75rem;
  text-align: center;
}

.social-follow__label {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9aa39d;
}

.social-follow__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.social-follow__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
  border: 1px solid #d9ded9;
  color: #0f4738;
  font-size: 1.15rem;
  text-decoration: none;
  background: #fff;
  transition: border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.social-follow__link:hover {
  border-color: #c99a40;
  color: #a2711f;
  box-shadow: 0 4px 14px rgba(15, 71, 56, 0.1);
}

.success-social {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e6e8e3;
}

.success-social__label {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6d726e;
}

.success-social__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.success-social__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  border: 1px solid #d6dcd7;
  color: #103f32;
  font-size: 1.05rem;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.success-social__links a:hover {
  border-color: #c99a40;
  color: #a2711f;
  background: #f9f7f2;
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-meta {
    text-align: center;
  }
}

.policy-hero {
  background: linear-gradient(120deg, #0f4738, #0a2f25);
  color: #fff;
  padding: 3rem 0 2.4rem;
}

.policy-tag {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #d9be80;
  font-size: 0.72rem;
  margin-bottom: 0.3rem;
}

.policy-hero h1 {
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  margin-bottom: 0.3rem;
}

.policy-sub {
  color: #e1e8e2;
  margin: 0;
}

.policy-main {
  background: #f7f6f1;
  padding: 2rem 0 3rem;
}

.policy-card {
  background: #fff;
  border: 1px solid #e5e8e2;
  border-radius: 14px;
  padding: 1.4rem;
}

.policy-card h2 {
  font-size: 1.35rem;
  margin: 1.3rem 0 0.55rem;
  color: #123f32;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  margin: 0.75rem 0 0.4rem;
  color: #1d2c26;
}

.policy-card p,
.policy-card li {
  color: #4d544f;
  font-size: 0.96rem;
}

.policy-card ul {
  margin: 0.2rem 0 0.9rem 1rem;
  padding: 0;
}

.policy-card a {
  color: #0f5a45;
}

.policy-footer a {
  color: #f1cf88;
}

.flash-wrap {
  margin-top: 1.2rem;
}

.flash-message {
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.flash-success {
  background: #e6f7ea;
  border: 1px solid #afd8b9;
  color: #175f31;
}

.flash-error {
  background: #fdeaea;
  border: 1px solid #f0bcbc;
  color: #8f1c1c;
}

.lead-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 50;
}

.lead-modal.is-open {
  display: block;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 19, 14, 0.6);
}

.lead-modal__card {
  position: relative;
  width: min(520px, 92%);
  margin: 3rem auto;
  background: #fff;
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.lead-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.85rem;
  border: 0;
  background: transparent;
  font-size: 1.9rem;
  cursor: pointer;
  line-height: 1;
}

.lead-modal__card h3 {
  margin-bottom: 0.2rem;
  color: #123f32;
}

.lead-modal__subtitle {
  color: #55615b;
  font-size: 0.9rem;
}

.thank-modal__card {
  text-align: center;
  width: min(440px, 92%);
  padding: 1.6rem 1.2rem 1.2rem;
}

.thank-icon {
  font-size: 2.6rem;
  color: #1f9e4d;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.lead-form {
  margin-top: 0.75rem;
}

.lead-form__row {
  margin-bottom: 0.7rem;
}

.lead-form__row label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.lead-form__row input,
.lead-form__row select,
.lead-form__row textarea {
  width: 100%;
  border: 1px solid #d6dcd7;
  border-radius: 8px;
  padding: 0.62rem 0.75rem;
  font-size: 0.93rem;
  font-family: "Poppins", sans-serif;
}

.lead-form__row input:focus,
.lead-form__row select:focus,
.lead-form__row textarea:focus {
  outline: none;
  border-color: #c99a40;
  box-shadow: 0 0 0 2px rgba(215, 163, 67, 0.2);
}

.leads-page {
  background: #f7f6f2;
}

.success-page {
  min-height: 100vh;
  background: linear-gradient(125deg, #0f3d31, #0a2e24);
}

.success-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.success-card {
  width: min(640px, 95%);
  background: #ffffff;
  border-radius: 18px;
  padding: 2rem 1.6rem;
  text-align: center;
  box-shadow: 0 18px 42px rgba(2, 15, 11, 0.3);
}

.success-icon {
  font-size: 3rem;
  line-height: 1;
  color: #1f9e4d;
  margin-bottom: 0.8rem;
}

.success-tag {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #b69558;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.success-card h1 {
  color: #103f32;
  margin-bottom: 0.75rem;
}

.success-text {
  color: #58615c;
  max-width: 520px;
  margin: 0 auto 1.35rem;
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.success-btn-ghost {
  border: 1px solid #d0d8d3;
  color: #154a3b;
}

.success-btn-ghost:hover {
  background: #f4f7f5;
}

.leads-container {
  padding: 2rem 0 3rem;
}

.leads-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.leads-header h1 {
  color: #103f32;
  margin: 0;
}

.table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid #e2e6e1;
  border-radius: 12px;
}

.leads-table {
  width: 100%;
  border-collapse: collapse;
}

.leads-table th,
.leads-table td {
  text-align: left;
  border-bottom: 1px solid #edf0eb;
  padding: 0.72rem;
  font-size: 0.9rem;
  vertical-align: top;
}

.leads-table th {
  background: #f3f5f1;
  color: #204639;
  font-weight: 600;
}

.empty-cell {
  text-align: center !important;
  color: #58625d;
}

@media (max-width: 992px) {
  .cards-3,
  .cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .scarcity-grid {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .luxury-card {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding-top: 3.4rem;
  }

  .quick-stats {
    grid-template-columns: 1fr;
  }

  .cards-2,
  .cards-3,
  .cards-4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.3rem 0;
  }

  .final-btn {
    min-width: 100%;
  }

  .leads-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .lead-modal__card {
    margin-top: 1.4rem;
  }

  .success-actions .btn {
    width: 100%;
  }
}
