/* Professional template layout rules (global design system handles type/buttons) */

.elevate-pro .grid-2{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:56px;
  align-items:center;
}
.elevate-pro .grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:24px;
}

.elevate-pro .badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:14px;
}
.elevate-pro .badge{
  background:#F1F5F9;
  border:1px solid var(--ed-border);
  color:var(--ed-ink);
  border-radius:999px;
  padding:8px 12px;
  font-weight:700;
  font-size:13px;
}

.elevate-pro .authority{
  background: var(--ed-soft);
}
.elevate-pro .authority .container{
  padding-top: 80px;
  padding-bottom: 80px;
}

.elevate-pro .steps{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:18px;
  margin-top:18px;
}
.elevate-pro .step{
  display:flex;
  gap:14px;
  background: var(--ed-soft);
  border:1px solid var(--ed-border);
  border-radius:18px;
  padding:18px;
}
.elevate-pro .step-num{
  font-weight:900;
  color: var(--ed-accent);
  font-size:20px;
  min-width:42px;
}
.elevate-pro .step-title{
  font-weight:900;
  color:var(--ed-ink);
  margin-bottom:4px;
}
.elevate-pro .step-desc{
  color:var(--ed-muted);
  line-height:1.6;
}

.elevate-pro .case-card{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  background: var(--ed-ink);
  color:#fff;
  border-radius:22px;
  padding:30px;
  box-shadow: var(--ed-shadow-md);
}
.elevate-pro .case-card h2{ color:#fff; }
.elevate-pro .case-stat{ font-size:26px; font-weight:900; margin:10px 0; }
.elevate-pro .case-right{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  align-content:start;
}
.elevate-pro .metric{
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px;
  text-align:center;
}
.elevate-pro .metric-num{ font-size:24px; font-weight:900; }
.elevate-pro .metric-label{ opacity:.85; margin-top:6px; font-weight:700; font-size:13px; }

.elevate-pro .faq{
  background: var(--ed-soft);
}
.elevate-pro .faq .container{
  padding-top: 90px;
  padding-bottom: 90px;
}
.elevate-pro .faq-list{
  display:grid;
  gap:12px;
  margin-top:16px;
}
.elevate-pro .faq-item{
  background:#fff;
  border:1px solid var(--ed-border);
  border-radius:18px;
  padding:14px 16px;
}
.elevate-pro .faq-item summary{
  cursor:pointer;
  font-weight:900;
  color:var(--ed-ink);
}
.elevate-pro .faq-a{
  color:var(--ed-muted);
  line-height:1.7;
  margin-top:10px;
}

.elevate-pro .final-cta{
  background:#EFF6FF;
  text-align:center;
}
.elevate-pro .final-cta .container{
  padding-top: 90px;
  padding-bottom: 90px;
}

@media (max-width: 900px){
  .elevate-pro .grid-2{ grid-template-columns:1fr; }
  .elevate-pro .grid-3{ grid-template-columns:1fr; }
  .elevate-pro .steps{ grid-template-columns:1fr; }
  .elevate-pro .case-card{ grid-template-columns:1fr; }
  .elevate-pro .btn{ width:100%; }
}
