/* ── HOME PAGE STYLES ── */

/* HERO */
.hero {
  background: var(--navy-dark);
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  margin: 50px 0 0 0;
}

.hero-bg-deco {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  background: var(--navy-mid);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
  pointer-events: none;
}

.hero-circle-1 {
  width: 600px;
  height: 600px;
  border: 90px solid var(--gold);
  top: -140px;
  right: -100px;
}

.hero-circle-2 {
  width: 300px;
  height: 300px;
  border: 60px solid var(--red);
  bottom: 20px;
  left: -80px;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--red) 50%, var(--gold) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(244, 184, 0, .14);
  border: 1px solid rgba(244, 184, 0, .28);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--r-full);
  margin-bottom: 22px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .4;
    transform: scale(1.6);
  }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 4px;
}

.hero-accent {
  color: var(--gold);
  display: block;
}

.hero-desc {
  color: rgba(255, 255, 255, .65);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 18px 0 32px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 26px;
  flex-wrap: wrap;
}

.hs-item {
  text-align: center;
  padding: 0 15px;
}

.hs-item:first-child {
  padding-left: 0;
}

.hs-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.hs-label {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .07em;
  margin-top: 5px;
}

.hs-sep {
  width: 1px;
  background: rgba(255, 255, 255, .1);
  align-self: stretch;
  margin: 0 4px;
}

/* Hero Card */
.hero-card-area {
  position: relative;
}

.hero-main-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 38px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}

.hmc-tag {
  margin-bottom: 10px;
}

.hero-main-card h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.hero-main-card p {
  color: var(--grey-600);
  font-size: .9rem;
  margin-bottom: 18px;
}

.hmc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}

.chip {
  background: var(--grey-100);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--r-full);
}

.chip-gold {
  background: rgba(244, 184, 0, .15);
  color: var(--gold-dark);
}

.chip-red {
  background: rgba(201, 17, 31, .1);
  color: var(--red);
}

.hmc-meta {
  display: flex;
  gap: 20px;
  font-family: var(--font-display);
  font-size: .8rem;
  color: var(--grey-600);
  padding-top: 14px;
  border-top: 1px solid var(--grey-100);
}

.hero-float {
  position: absolute;
  background: var(--navy);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  text-align: center;
}

.hero-float-tl {
  top: -48px;
  left: -22px;
}

.hero-float-br {
  bottom: -48px;
  right: -22px;
}

.hf-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--gold);
  line-height: 1;
}

.hf-label {
  font-family: var(--font-display);
  font-size: .67rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .06em;
  white-space: nowrap;
  margin-top: 4px;
}

/* PROGRAMS */
.programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
  margin-top: 52px;
}

.prog-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px 15px;
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid var(--grey-200);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}

.prog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-bottom-color: var(--navy);
}

.prog-card-featured {
  border-bottom-color: var(--gold);
}

.prog-card-featured:hover {
  border-bottom-color: var(--gold-dark);
}

.prog-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.prog-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.prog-card h3 {
  font-size: .98rem;
  margin-bottom: 10px;
}

.prog-card p {
  font-size: .84rem;
  color: var(--grey-600);
  line-height: 1.65;
  margin-bottom: 16px;
}

.prog-feat-list {
  margin-bottom: 16px;
}

.prog-feat-list li {
  font-family: var(--font-display);
  font-size: .78rem;
  color: var(--grey-800);
  padding: 4px 0;
  border-bottom: 1px dotted var(--grey-200);
}

.prog-feat-list li:last-child {
  border-bottom: none;
}

.prog-footer {
  margin-top: auto;
}

.prog-meta-row {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--grey-100);
  padding-top: 14px;
}

.prog-meta-row span {
  flex: 1;
  text-align: center;
  font-family: var(--font-display);
  font-size: .72rem;
  color: var(--grey-600);
  line-height: 1.5;
  border-right: 1px solid var(--grey-100);
  padding: 0 8px;
}

.prog-meta-row span:last-child {
  border-right: none;
}

.prog-meta-row span strong {
  display: block;
  font-size: .82rem;
  color: var(--navy);
}

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.why-feat {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 18px;
  box-shadow: var(--shadow-xs);
  transition: var(--ease);
}

.why-feat:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.wf-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-feat h4 {
  font-size: .88rem;
  margin-bottom: 4px;
}

.why-feat p {
  font-size: .8rem;
  color: var(--grey-600);
  line-height: 1.55;
}

.why-visual-inner {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 38px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.why-visual-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(244, 184, 0, .12) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(201, 17, 31, .12) 0%, transparent 50%);
}

.why-visual-inner>* {
  position: relative;
  z-index: 1;
}

.wv-top-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-md);
  padding: 16px 20px;
  margin-bottom: 24px;
}

.wv-top-card strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: .9rem;
}

.wv-top-card small {
  color: rgba(255, 255, 255, .5);
  font-size: .78rem;
}

.wv-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.wv-s {
  background: rgba(255, 255, 255, .06);
  border-radius: var(--r-sm);
  padding: 16px;
  text-align: center;
}

.wv-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}

.wv-lbl {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .07em;
  margin-top: 5px;
}

.wv-quote {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 20px;
}

.wv-quote p {
  color: rgba(255, 255, 255, .7);
  font-style: italic;
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.wv-quote cite {
  font-family: var(--font-display);
  font-size: .72rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}

/* TESTIMONIALS PREVIEW */
.testi-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.tp-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
  border-top: 3px solid var(--grey-200);
  position: relative;
}

.tp-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-top-color: var(--gold);
}

.tp-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.tp-card p {
  font-size: .9rem;
  color: var(--grey-800);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 20px;
}

.tp-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--grey-100);
  padding-top: 16px;
}

.tp-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .85rem;
  color: var(--white);
  flex-shrink: 0;
  border: 2px solid var(--gold);
}

.tp-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: .88rem;
  color: var(--navy);
}

.tp-author small {
  font-family: var(--font-display);
  font-size: .73rem;
  color: var(--grey-600);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .programs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-card-area {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-visual {
    display: none;
  }
}

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

  .testi-preview-grid {
    grid-template-columns: 1fr;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 8px;
  }

  .hs-sep {
    display: none;
  }

  .hs-item {
    padding: 0 14px;
  }
}