/* ----------------------------------------
   Features Section Styles
---------------------------------------- */

/* Section wrapper spacing */
#features.wrapper.style2 {
  padding: clamp(3rem, 6vw, 6rem) 0;
}

/* Keep all style2 content aligned with the rest of the site */
#features .container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--site-gutter);
}

/* Card grid */
#features .features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: stretch;
}

/* Feature boxes */
#features .feature-box {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

#features .feature-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

#features .feature-box h3 {
  margin: 0 0 0.6rem 0;
  font-size: clamp(1.25rem, 1.6vw, 1.7rem);
  color: #cd533b;
}

#features .feature-box p {
  margin: 0;
  font-size: clamp(1.05rem, 1.1vw, 1.2rem);
  color: #243447;
  line-height: 1.7;
}

/* CTA block keeps text + button visually unified */
#features .cta-block {
  max-width: 900px;
  margin: 3rem auto 0;
  text-align: center;
}

#features .cta-block h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  color: #cd533b;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
  line-height: 1.4;
}

/* Button row */
#features .actions {
  text-align: center;
  margin-top: 1rem;
}

/* Responsive: 1 column when needed */
@media screen and (max-width: 900px) {
  #features .features-grid {
    grid-template-columns: 1fr;
  }
}

.home-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

@media screen and (max-width: 900px) {
  .home-split {
    grid-template-columns: 1fr;
  }
}

.home-about-card,
.home-offer-card {
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: clamp(1.25rem, 2.2vw, 1.9rem);
}

.home-about-card img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--card-radius) - 2px);
  display: block;
  margin-bottom: 1rem;
}

.home-about-card p {
  max-width: 52ch;
  margin: 0 auto 1rem;
  line-height: 1.7;
  text-align: center;
}

.home-offer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.6rem;
  text-align: center;
}

.home-offer-list li {
  padding: 0.75rem 0.9rem;
  background: rgba(255, 255, 255, 0.65);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
}

#features .actions {
  text-align: center;
}

.home-offer-card h3 {
  margin: 0 0 0.75rem;
  text-align: center;
  color: #cd533b;
  font-size: clamp(1.35rem, 1.6vw, 1.75rem);
}

.home-offer-leadin {
  max-width: 52ch;
  margin: 0 auto 1.25rem;
  line-height: 1.7;
  text-align: center;
  color: #243447;
}

.home-mini-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.mini-card {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  padding: 0.95rem 1rem;
  text-align: center;
}

.mini-card h4 {
  margin: 0 0 0.35rem;
  color: #cd533b;
  font-size: 1.1rem;
}

.mini-card p {
  margin: 0;
  color: #243447;
  line-height: 1.6;
  font-size: 1rem;
}
