/* ==========================================================================
   Teach 'n Go — Solution Page Template CSS (v1)
   Use alongside: ../css/solutions.css
   ========================================================================== */

/* ===== Section wrappers (homepage-like rhythm) ===== */
.solution-section { padding: 56px 0; }

.solution-section--soft{
  background:#f7f7fc;
  border-top:1px solid rgba(17,24,39,.08);
  border-bottom:1px solid rgba(17,24,39,.08);
}

.solution-heading{
  text-align:center;
  max-width:920px;
  margin:0 auto 26px auto;
}

.solution-heading p{
  margin:10px auto 0;
  color:#6b7280;
  line-height:1.6;
  max-width:820px;
}

/* ===== Criss-cross media (Pana illustrations) =====
   Pana works best without screenshot-like borders/shadows */
.cc-media img{
  width:100%;
  max-width:420px;
  height:auto;
  border-radius:0;
  border:0;
  background:transparent;
  box-shadow:none;
  margin:0 auto;
  display:block;
}

/* Content */
.cc-content h4{
  text-align:left;
  margin-bottom:10px;
  font-size:24px;
}

.cc-content p{ color:#6b7280; }

.features-include{
  margin:12px 0 6px;
  font-weight:700;
  font-size:14px;
  color:#111827;
}

/* ===== Hero polish ===== */
.hero-card{
  background:rgba(255,255,255,.95);
  border:1px solid rgba(17,24,39,.08);
  border-radius:18px;
  box-shadow:0 12px 30px rgba(17,24,39,.12);
  padding:12px;
  display:inline-block;
}

.hero-microcopy{
  font-size:12px;
  color:rgba(255,255,255,.9);
  margin-top:10px;
}

/* ===== FAQ cards ===== */
.faq-wrap{ max-width:920px; margin:0 auto; }

.faq-list{
  display:grid;
  gap:14px;
  margin-top:18px;
}

.faq-item{
  background:#fff;
  border:1px solid rgba(17,24,39,.08);
  border-radius:14px;
  box-shadow:0 10px 26px rgba(17,24,39,.06);
  overflow:hidden;
}

.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  font-weight:700;
  color:#111827;
  font-size:15px;
  line-height:1.35;
}

.faq-item summary::-webkit-details-marker{ display:none; }

.faq-item .faq-content{
  padding:0 18px 18px 18px;
  color:#6b7280;
  font-size:14px;
  line-height:1.65;
}

.faq-item .faq-content p{ margin:10px 0 0; }

/* plus / minus icon */
.faq-icon{
  width:18px;
  height:18px;
  position:relative;
  flex:0 0 18px;
  opacity:.9;
}

.faq-icon:before,
.faq-icon:after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:14px;
  height:2px;
  background:#6b7280;
  transform:translate(-50%,-50%);
  border-radius:2px;
}

.faq-icon:after{ transform:translate(-50%,-50%) rotate(90deg); }
details[open] .faq-icon:after{ opacity:0; }

.qualifier{
  text-align:center;
  color:#6b7280;
  max-width:820px;
  margin:22px auto 0;
  font-size:13px;
  line-height:1.6;
}

/* ===== Testimonials (bubble cards) ===== */
.t-card{
  background:#fff;
  border:1px solid rgba(59,130,246,.18); /* soft blue border */
  border-radius:18px;
  box-shadow:0 12px 30px rgba(17,24,39,.06);
  padding:22px 18px 18px;
  margin:14px 0;
  min-height:320px;
  position:relative;
}

.t-quote{
  font-size:34px;
  line-height:1;
  color:#c7cbd6;
  margin-bottom:10px;
  font-weight:800;
}

.t-highlight{
  font-weight:700;
  color:#111827;
  font-size:15px;
  line-height:1.4;
  margin:0 0 10px 0;
}

.t-body{
  color:#6b7280;
  font-size:14px;
  line-height:1.7;
  margin:0;
}

.t-footer{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(17,24,39,.06);
}

.t-name{
  font-weight:800;
  color:#111827;
  font-size:14px;
  margin-bottom:2px;
}

.t-role{
  color:#6b7280;
  font-size:13px;
  line-height:1.4;
}

/* Mobile */
@media (max-width:767px){
  .t-card{ min-height:auto; }
}