/* Shared styles for legal/information pages — brand tokens */
.info-page-main {
  padding: 82px 48px 88px;
  background: var(--cream);
  min-height: calc(100vh - 140px);
}
.info-page-wrap {
  max-width: 980px;
  margin: 0 auto;
}
.info-hero {
  margin-bottom: 32px;
}
.info-lead {
  color: var(--body);
  font-size: 15px;
  line-height: 1.7;
  max-width: 760px;
}
.info-card {
  background: var(--white);
  border: none;
  border-radius: var(--r-card, 20px);
  box-shadow: var(--s1, 0 1px 3px rgba(0,0,0,0.05), 0 6px 24px rgba(0,0,0,0.06));
  padding: 28px 32px;
  margin-bottom: 20px;
}
.info-card h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 8px;
}
.info-card p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.65;
}
.info-list {
  margin-top: 8px;
  padding-left: 18px;
}
.info-list li {
  color: var(--body);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 4px;
}
.info-inline-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  background: var(--yellow-soft);
  border: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}
.contact-card {
  background: var(--white);
  border: none;
  border-radius: var(--r-card, 20px);
  box-shadow: var(--s1);
  padding: 28px 32px;
}
.contact-card h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 12px;
  color: var(--ink);
}
.contact-card p,
.contact-card a {
  color: var(--body);
  font-size: 15px;
  line-height: 1.65;
}
.contact-card a {
  color: var(--ink);
  font-weight: 600;
}
.contact-form label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  border: none;
  border-radius: 12px;
  background: var(--cream);
  box-shadow: var(--s1);
  font-family: var(--f-ui);
  font-size: 15px;
}
.contact-form button[type="submit"] {
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  border: none;
  border-radius: 100px;
  padding: 14px 28px;
}
.contact-form button[type="submit"]:hover {
  opacity: 0.82;
}

.about-mission-block {
  background: var(--white);
  border: none;
  border-radius: var(--r-card, 20px);
  box-shadow: var(--s1);
  padding: 28px 32px;
  margin-bottom: 24px;
}
.about-mission-block h2,
.about-story-section h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 8px;
}
.about-mission-block p,
.about-story-section p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.65;
}
.about-story-section {
  margin-bottom: 32px;
}
.about-story-section p {
  margin-bottom: 12px;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.about-value-card {
  background: var(--white);
  border: none;
  border-radius: var(--r-card, 20px);
  padding: 28px 24px;
  box-shadow: var(--s1);
}
.about-value-icon {
  font-size: 24px;
  margin-bottom: 12px;
  display: block;
}
.about-value-card h3 {
  font-family: var(--f-ui);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 8px;
}
.about-value-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.65;
}
.about-cta-block {
  background: var(--ink);
  border-radius: var(--r-card, 20px);
  padding: 32px 28px;
  text-align: center;
  margin-top: 24px;
  box-shadow: var(--s3);
}
.about-cta-block h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 8px;
  color: var(--white);
}
.about-cta-block p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  line-height: 1.65;
}
.about-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--r-pill, 100px);
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--f-ui);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.15s ease, transform 0.15s ease;
}
.about-cta-btn:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
}
.about-values-heading {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(22px, 2.5vw, 28px);
  color: var(--ink);
  margin-bottom: 20px;
}
.about-info-link {
  color: var(--ink);
  font-weight: 600;
}

body.page-home .info-sitelink-related {
  margin-top: 40px;
  padding-top: 24px;
  font-size: 14px;
  color: var(--body);
  line-height: 1.65;
}

.info-sitelink-related {
  margin-top: 32px;
  font-size: 14px;
  color: var(--body);
  line-height: 1.65;
}
.info-sitelink-related a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 24px 0 32px;
}
.info-cta-row--center {
  justify-content: center;
  margin: 0;
}
.about-cta-block .info-cta-row {
  margin-top: 8px;
}
.info-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--r-pill, 100px);
  background: var(--ink);
  color: var(--white);
  font-family: var(--f-ui);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.info-cta-primary:hover {
  opacity: 0.82;
  transform: translateY(-2px);
}
.info-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--r-pill, 100px);
  background: rgba(0, 0, 0, 0.06);
  color: var(--body);
  font-family: var(--f-ui);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.15s ease;
}
.info-cta-whatsapp:hover {
  background: rgba(0, 0, 0, 0.09);
  transform: translateY(-1px);
}
.about-cta-block .info-cta-whatsapp {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}
.about-cta-block .info-cta-whatsapp:hover {
  background: rgba(255, 255, 255, 0.18);
}
.info-cta-wa-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.course-subject-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.course-subject-card {
  background: var(--white);
  border-radius: var(--r-card, 20px);
  box-shadow: var(--s1);
  padding: 24px;
}
.course-subject-card.is-live {
  box-shadow: var(--s2);
}
.course-subject-badge {
  display: inline-block;
  font-family: var(--f-ui);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}
.course-subject-card h3 {
  font-family: var(--f-ui);
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 8px;
}
.course-subject-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.65;
  margin: 0;
}
.course-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.course-meta-card {
  background: var(--white);
  border-radius: var(--r-card, 20px);
  box-shadow: var(--s1);
  padding: 24px;
}
.course-meta-card h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 10px;
}
.course-meta-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.course-meta-list li {
  font-size: 14px;
  color: var(--body);
  line-height: 1.65;
  padding: 4px 0;
}
.course-session-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.course-session-step {
  background: var(--white);
  border-radius: var(--r-card, 20px);
  box-shadow: var(--s1);
  padding: 24px;
}
.course-session-step strong {
  display: block;
  font-family: var(--f-ui);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 8px;
}
.course-session-step span {
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow);
  display: block;
  margin-bottom: 8px;
}
.course-session-step p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .info-page-main {
    padding: 64px 24px 72px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-values-grid {
    grid-template-columns: 1fr;
  }
  .course-subject-grid,
  .course-meta-grid,
  .course-session-steps {
    grid-template-columns: 1fr;
  }
}
