.home-page {
  display: block;
  padding: 1.25rem 1.25rem 3rem;
}

.home-shell {
  width: min(100%, 75rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.ContentSection,
.hero-visual,
.info-card {
  background: rgba(255, 255, 255, 0.72);
  border: 2px solid rgba(67, 129, 168, 0.22);
  box-shadow: 0 16px 30px rgba(67, 129, 168, 0.12);
}

.ContentSection {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
}

.ContentSection::before {
  content: "";
  position: absolute;
  inset: auto -3rem -4rem auto;
  width: 12rem;
  height: 12rem;
  border-radius: 999px;
  background: rgba(217, 40, 40, 0.14);
}

.eyebrow,
.card-label,
.secondary-link {
  letter-spacing: 0.04em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #d92828;
  background: rgba(245, 243, 135, 0.75);
  border: 2px solid rgba(217, 40, 40, 0.12);
  padding: 0.55rem 1rem;
  border-radius: 999px;
}

.textSection {
  position: relative;
  z-index: 1;
}

.textSection > h1 {
  font-weight: 400;
  font-size: clamp(2.75rem, 8vw, 5rem);
  color: #ffffff;
  -webkit-text-stroke: 2px #4381a8;
  margin: 1rem 0 0.9rem;
  line-height: 1;
}

.textSection > p {
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: #265676;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.75rem;
  position: relative;
  z-index: 1;
}

#start_btn {
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.25rem, 4vw, 2rem);
  color: #ffffff;
  min-width: 13rem;
  min-height: 3.5rem;
  padding: 0.95rem 1.6rem;
  background: linear-gradient(135deg, #d92828, #ef6554);
  border: none;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(217, 40, 40, 0.28);
}

#start_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(217, 40, 40, 0.32);
}

#start_btn:active {
  transform: translateY(1px);
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  color: #2b5f80;
  border: 2px solid rgba(67, 129, 168, 0.22);
  background: rgba(255, 255, 255, 0.6);
}

.hero-highlights {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

.highlight-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(67, 129, 168, 0.16);
}

.highlight-value {
  font-size: clamp(1.25rem, 4vw, 2rem);
  color: #d92828;
}

.highlight-label {
  font-size: 1rem;
  color: #336987;
  line-height: 1.4;
}

.happyImg {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual {
  position: relative;
  min-height: 24rem;
  padding: 1.5rem;
  border-radius: 2rem;
  overflow: hidden;
}

.hero-mascot-card {
  width: min(100%, 27rem);
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(245, 243, 135, 0.95), rgba(255, 255, 255, 0.8));
  border-radius: 2rem;
  padding: 1rem;
  box-shadow: inset 0 0 0 2px rgba(67, 129, 168, 0.12);
}

.happyImg img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-note {
  position: absolute;
  max-width: 14rem;
  background: #ffffff;
  border: 2px solid rgba(67, 129, 168, 0.18);
  border-radius: 1.25rem;
  padding: 0.85rem 1rem;
  color: #2c617f;
  box-shadow: 0 12px 24px rgba(67, 129, 168, 0.14);
}

.hero-note strong {
  display: block;
  color: #d92828;
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.hero-note span {
  display: block;
  line-height: 1.4;
  font-size: 0.98rem;
}

.hero-note-top {
  top: 1.25rem;
  left: 1.25rem;
}

.hero-note-bottom {
  right: 1.25rem;
  bottom: 1.25rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.info-card {
  padding: 1.5rem;
  border-radius: 1.6rem;
}

.card-label {
  color: #d92828;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.info-card h2,
.info-card h3 {
  font-weight: 400;
  color: #ffffff;
  -webkit-text-stroke: 1.4px #4381a8;
  line-height: 1.05;
  margin-bottom: 0.85rem;
}

.info-card h2 {
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.info-card h3 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
}

.info-card p {
  color: #2e607f;
  font-size: 1.05rem;
  line-height: 1.6;
}

.intro-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(245, 243, 135, 0.6));
}

.wide-card {
  background: linear-gradient(135deg, rgba(67, 129, 168, 0.12), rgba(255, 255, 255, 0.88));
}

.steps-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: #4381a8;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
  .home-page {
    padding: 1.5rem 5% 3rem;
  }

  .hero-panel {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 1.25rem;
  }

  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-card,
  .wide-card {
    grid-column: span 2;
  }

  .steps-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media screen and (max-width: 767px) {
  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .hero-note {
    position: static;
    max-width: none;
    width: 100%;
  }

  .hero-visual {
    display: grid;
    gap: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .home-page {
    padding: 1rem 0.85rem 2rem;
  }

  .ContentSection,
  .hero-visual,
  .info-card {
    border-radius: 1.4rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  #start_btn,
  .secondary-link {
    width: 100%;
  }

  .step-item {
    grid-template-columns: 1fr;
  }

  .step-number {
    margin-bottom: 0.25rem;
  }
}
