/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-color: var(--green-400);
    }

    .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    }

    .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(53, 64, 36, 0.08) 0%,
        rgba(44, 33, 16, 0.55) 60%,
        rgba(44, 33, 16, 0.82) 100%
    );
    }

    .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 60px) clamp(60px, 8vw, 100px);
    width: 100%;
    }

    .hero h1 {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(44px, 7vw, 86px);
        font-weight: 300;
        font-style: italic;
        color: #fff;
        line-height: 1.05;
        max-width: 100%;
        margin-bottom: 28px;
        text-align: center;
    }

    .hero-sub {
        font-family: "Jost", sans-serif;
        font-size: clamp(15px, 1.5vw, 17px);
        font-weight: 400;
        color: rgba(245, 235, 227, 0.82);
        max-width: 100%;
        line-height: 1.75;
        margin-bottom: 40px;
        text-align: center;
    }

    .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    }

    .hero-scroll {
    position: absolute;
    bottom: clamp(24px, 4vw, 48px);
    right: clamp(24px, 5vw, 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(245, 235, 227, 0.5);
    font-family: "Jost", sans-serif;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 2;
    }

    .hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(
        to bottom,
        rgba(245, 235, 227, 0.5),
        transparent
    );
    animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.9;
        transform: scaleY(1.1);
    }
    }

   /* ── About Insurance Band ────────────────────────────────── */
.about-insuracne-band {
  background-color: var(--cream-100);
  padding: clamp(72px, 9vw, 120px) clamp(24px, 5vw, 60px);
}

.about-insuracne-band-inner {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

.about-insuracne-band h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  margin-bottom: 24px;
  padding-bottom: 32px;
}

.about-insuracne-band h2 em {
  font-style: italic;
  color: var(--green-300);
}

.about-insuracne-band > .about-insuracne-band-inner > p {
  max-width: 520px;
  margin: 0 auto 56px;
  color: var(--brown-50);
  font-size: 15px;
  line-height: 1.8;
}

/* 1. Set the default layout for mobile/smaller screens (2 columns) */
.about-insuracne-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Creates the [][] layout */
  gap: 16px; /* Slightly tighter gap for smaller screens */
  margin-bottom: 48px;
}

/* 2. Scale up to 4 columns on desktop/larger screens */
@media (min-width: 768px) {
  .about-insuracne-pillars {
    grid-template-columns: repeat(4, 1fr); /* Restores the [][][][] layout */
    gap: 24px; /* Restores original wider spacing */
  }
}

.about-insuracne-pillar {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(53, 64, 36, 0.04);
}

.about-insuracne-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(53, 64, 36, 0.09);
}

.about-insuracne-pillar-icon {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--green-300);
}

.about-insuracne-pillar h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--brown-100);
  margin-bottom: 8px;
}

.about-insuracne-pillar p {
  font-size: 13px;
  color: var(--brown-50);
  line-height: 1.6;
  text-align: left;
}

/* ── Insurance Questions ──────────────────────────────────── */
.insurance-questions-section {
  background-color: var(--green-400);
  padding: clamp(80px, 10vw, 130px) clamp(24px, 5vw, 60px);
}

.section-label {
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-300);
  margin-bottom: 16px;
}

.insurance-questions-inner {
  max-width: 100%;
  margin: 0 auto;
  display: block;
  gap: 80px;
  justify-content: center;
  align-items: center;
}


.insurance-questions-text .eyebrow {
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-100);
  margin-bottom: 16px;
}

.insurance-questions-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream-50);
  line-height: 1.1;
  margin-bottom: 20px;
  text-align: center;
}

.insurance-questions-text p {
  color: rgba(229, 215, 196, 0.7);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 36px;
  text-align: center;
}

.questions-card {
  width: 80%;
  height: 100%;
  border-radius: 1rem;
  display: block;
  padding: 2rem;
  border-radius: 1rem;
  background-color: var(--green-300);
  margin: 0 auto;
  outline: 1px solid var(--green-200);
}

.questions-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  padding: 0;
  color: var(--cream-100);
  margin-bottom: 20px;
  outline: none;
  pointer-events: none;
  text-align: left;
}

.questions-card p {
    font-family: "Jost", sans-serif;
    color: var(--cream-50);
    text-align: left;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 400px;
}

.questions-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.questions-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--cream-200);
  line-height: 1.45;
  margin-bottom: 15px;
}

.questions-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-100);
  flex-shrink: 0;
}

.questions-card:hover {
    background: rgba(245, 235, 227, 0.09);
    transform: translateY(-4px);
    border-color: rgba(245, 235, 227, 0.22);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    }

/* ── Thrizer ──────────────────────────────────── */

.thrizer-band {
  background-color: var(--cream-50);
  padding: clamp(80px, 10vw, 130px) clamp(24px, 5vw, 60px);
}

.thrizer-band-inner {
  max-width: 80%;
  margin: 0 auto;
  display: block;
  gap: 80px;
  justify-content: center;
  align-items: center;
}

.thrizer-text .eyebrow {
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-300);
  margin-bottom: 16px;
}

.thrizer-text h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  margin-bottom: 16px;
}

.thrizer-text p {
  color: var(--brown-100);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 36px;
  text-align: left;
}