.page-hero{
  padding:40px 0 24px;
  background:linear-gradient(180deg, #eef4f8 0%, #f8fbfd 100%);
  border-bottom:1px solid #e5e7eb;
}

.breadcrumbs{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:18px;
  font-size:14px;
  color:var(--muted);
}

.breadcrumbs a{
  color:var(--brand);
  font-weight:700;
  text-decoration:none;
}

.page-hero__layout{
  display:grid;
  grid-template-columns:minmax(0, 1.45fr) minmax(280px, .8fr);
  gap:36px;
  align-items:center;
}

.page-hero__content{
  max-width:none;
}

.page-hero__content h1{
  margin:0 0 16px;
  max-width:860px;
  font-size:clamp(42px, 5vw, 76px);
  line-height:.98;
  letter-spacing:-.04em;
  color:#0f172a;
}

.page-hero__content p{
  margin:0;
  max-width:820px;
  font-size:clamp(18px, 2vw, 24px);
  line-height:1.6;
  color:#334155;
}

.page-hero .hero-actions{
  margin-top:28px;
}

.page-hero-card{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:24px;
  padding:28px 26px;
  box-shadow:0 18px 50px rgba(15, 23, 42, .08);
}

.page-hero-card__icon{
  width:56px;
  height:56px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:rgba(0,74,127,.08);
  color:var(--brand);
  font-size:24px;
  margin-bottom:18px;
}

.page-hero-card h3{
  margin:0 0 10px;
  font-size:28px;
  line-height:1.15;
  color:#0f172a;
}

.page-hero-card p{
  margin:0 0 18px;
  font-size:17px;
  line-height:1.6;
  color:#475569;
}

.page-hero-card__list{
  display:grid;
  gap:12px;
}

.page-hero-card__list div{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:16px;
  color:#1e293b;
}

.page-hero-card__list i{
  color:#16a34a;
  margin-top:3px;
}

.page-hero + .trust{
  border-top:none;
}

.faq-nav-section{
  background:#fff;
}

.faq-topic-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.faq-topic-card{
  text-align:center;
  transition:.2s ease;
}

.faq-topic-card h3{
  margin:0 0 8px;
}

.faq-topic-card p{
  margin:0;
}

.faq-list{
  display:grid;
  gap:22px;
  max-width:920px;
  margin:0 auto;
}

.faq-list .faq-item{
  padding:26px 28px;
}

.faq-list .faq-item h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.25;
}

.faq-list .faq-item p{
  margin:0;
  color:var(--muted);
  font-size:17px;
}

.faq-cta-buttons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

@media (max-width: 1024px){
  .page-hero__layout{
    grid-template-columns:1fr;
    gap:24px;
  }

  .faq-topic-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 768px){
  .page-hero{
    padding:28px 0 12px;
  }

  .breadcrumbs{
    margin-bottom:14px;
    font-size:13px;
  }

  .page-hero__content h1{
    max-width:none;
    font-size:clamp(34px, 9vw, 52px);
    line-height:1.02;
  }

  .page-hero__content p{
    font-size:18px;
    line-height:1.55;
  }

  .page-hero .hero-actions{
    margin-top:22px;
  }

  .page-hero-card{
    padding:22px 20px;
    border-radius:20px;
  }

  .page-hero-card h3{
    font-size:24px;
  }

  .faq-topic-grid{
    grid-template-columns:1fr;
  }

  .faq-cta-buttons{
    width:100%;
    flex-direction:column;
  }

  .faq-cta-buttons .btn{
    width:100%;
    justify-content:center;
  }
}