/* Clean hero section */

.hero {
  padding: 56px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 18px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dfe7eb;
  font-size: 13px;
  font-weight: 700;
  color: #4f6771;
  box-shadow: 0 3px 10px rgba(55, 71, 79, 0.08);
}

.hero-art {
  position: relative;
  min-height: 360px;
  height: 360px;
  border-radius: 34px;
  overflow: hidden;
  border: 8px solid rgba(255,255,255,0.95);
  background: linear-gradient(135deg, #67c8ef, #56ddc5);
  box-shadow: 0 14px 34px rgba(55,71,79,0.14);
}

/* If your page uses the old lion class */
.hero-art .mascot {
  position: absolute;
  left: 50%;
  top: 72px;
  transform: translateX(-50%);
  font-size: 92px;
  line-height: 1;
  z-index: 4;
}

/* If your page uses the newer mascot-scene layout */
.mascot-scene {
  position: absolute;
  left: 50%;
  top: 78px;
  transform: translateX(-50%);
  z-index: 4;
  text-align: center;
}

.mascot-main {
  font-size: 96px;
  line-height: 1;
}

.mascot-friends {
  display: none;
}

.hero-art .cloud1 {
  position: absolute;
  left: 18px;
  top: 18px;
  font-size: 54px;
}

.hero-art .cloud2 {
  display: none;
}

.hero-art .sun {
  position: absolute;
  right: 22px;
  top: 18px;
  font-size: 70px;
}

.hero-art .bubble.learn {
  display: none;
}

.hero-art .bubble.smile {
  position: absolute;
  left: 20px;
  top: 118px;
  bottom: auto;
  right: auto;
}

.hero-art .ground {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -75px;
  height: 145px;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    height: 320px;
    min-height: 320px;
  }
}

@media (max-width: 680px) {
  .hero-actions .btn {
    width: 100%;
  }

  .trust-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Footer correction */

.site-footer {
  padding: 30px 0;
  background: #24333a;
  color: #ffffff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 48px;
}

.footer-brand span {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  color: #ffffff;
  font-size: 16px;
}

.footer-brand small {
  margin-top: 3px;
  color: #aac1cb;
  font-size: 12px;
}

.footer-copyright {
  color: #d8e3e8;
  font-size: 13px;
  text-align: right;
}

@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-copyright {
    text-align: left;
  }
}
