/* =====================
   HERO SECTION
===================== */
.hero {
  position: relative;
  height: 90vh;
  background: #D95427;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.4)
  );
}

.hero-content {
  position: relative;
  max-width: 700px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--primary-red);
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #eaeaea;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: var(--primary-red);
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: var(--burnt-orange);
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

.btn-primary.small {
  padding: 10px 22px;
}

/* =====================
   TRUST STRIP
===================== */
.trust-strip {
  background: #f7f7f7;
  padding: 60px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.trust-grid h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.trust-grid p {
  color: var(--gray);
}

/* =====================
   ABOUT PREVIEW
===================== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 100px 0;
  align-items: center;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  color: var(--gray);
}

.about-visual {
  display: flex;
  justify-content: center;
}

.glass-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  text-align: center;
}

.glass-card h4 {
  margin-bottom: 10px;
  color: var(--primary-red);
}

/* =====================
   CTA SECTION
===================== */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-red),
    var(--burnt-orange)
  );
  padding: 80px 0;
  color: #fff;
}

.cta-box {
  text-align: center;
  max-width: 700px;
}

.cta-box h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta-box p {
  margin-bottom: 25px;
  font-size: 1.05rem;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .about-preview {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
