/* HayaPrep — shared surface (marketing, legal, products). Load after Google Fonts. */
:root {
  --hp-void: #030712;
  --hp-void-mid: #0a0f1a;
  --hp-slate: #0f172a;
  --hp-text: #e2e8f0;
  --hp-muted: #94a3b8;
  --hp-accent: #818cf8;
  --hp-accent-dim: rgba(129, 140, 248, 0.2);
  --hp-gold: #c9a84c;
  --hp-gold-light: #e8c87a;
  --hp-border: rgba(129, 140, 248, 0.15);
  --hp-font: "Outfit", system-ui, sans-serif;
  --hp-display: "Playfair Display", Georgia, serif;
}

.hp-page {
  font-family: var(--hp-font);
  background: linear-gradient(180deg, var(--hp-void) 0%, var(--hp-slate) 45%, var(--hp-void-mid) 100%);
  color: var(--hp-text);
  min-height: 100vh;
  line-height: 1.65;
}

.hp-page a {
  color: var(--hp-accent);
  text-decoration: none;
}
.hp-page a:hover {
  text-decoration: underline;
}

.hp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hp-border);
}
.hp-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.hp-logo {
  font-family: var(--hp-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.hp-logo span {
  color: var(--hp-gold);
}
.hp-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.hp-nav a {
  color: var(--hp-muted);
  font-size: 0.88rem;
  font-weight: 500;
}
.hp-nav a:hover {
  color: var(--hp-text);
  text-decoration: none;
}

.hp-main {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 5% 5rem;
}
.hp-main h1 {
  font-family: var(--hp-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 0.5rem;
}
.hp-main .hp-updated {
  color: var(--hp-muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}
.hp-main h2 {
  font-family: var(--hp-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #f1f5f9;
  margin: 2.25rem 0 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--hp-border);
}
.hp-main h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #cbd5e1;
  margin: 1.5rem 0 0.5rem;
}
.hp-main p,
.hp-main li {
  font-size: 0.95rem;
  color: var(--hp-muted);
  margin-bottom: 0.75rem;
}
.hp-main ul,
.hp-main ol {
  margin: 0.5rem 0 1rem 1.25rem;
}

.hp-footer {
  border-top: 1px solid var(--hp-border);
  padding: 2rem 5%;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.7);
}
.hp-footer a {
  color: var(--hp-gold);
  margin: 0 0.65rem;
}

/* Products / pricing sections on shared page */
.hp-hero {
  text-align: center;
  padding: 4rem 5% 3rem;
  border-bottom: 1px solid var(--hp-border);
}
.hp-hero h1 {
  font-family: var(--hp-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.hp-hero p {
  color: var(--hp-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

@media (max-width: 640px) {
  .hp-nav {
    gap: 0.75rem;
  }
  .hp-header-inner {
    flex-wrap: wrap;
    height: auto;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

/* Products page (courses + pricing in one place) */
.hp-products-hero {
  text-align: center;
  padding: 4rem 5% 3rem;
  border-bottom: 1px solid var(--hp-border);
}
.hp-products-hero h1 {
  font-family: var(--hp-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.hp-products-hero h1 em {
  font-style: normal;
  color: var(--hp-gold);
}
.hp-products-hero p {
  color: var(--hp-muted);
  max-width: 560px;
  margin: 0 auto;
}
.hp-courses-wrap {
  max-width: 1100px;
  margin: -2rem auto 0;
  padding: 0 2rem 4rem;
  position: relative;
  z-index: 1;
}
.hp-course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.hp-card {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid var(--hp-border);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.hp-card-top {
  background: linear-gradient(145deg, #1e1b4b 0%, #0f172a 100%);
  padding: 1.75rem;
}
.hp-card-top h3 {
  font-family: var(--hp-display);
  font-size: 1.35rem;
  color: #fff;
  margin-top: 0.5rem;
}
.hp-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c7d2fe;
  background: rgba(129, 140, 248, 0.15);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
}
.hp-card-body {
  padding: 1.5rem;
}
.hp-card-body p {
  color: var(--hp-muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}
.hp-card-body ul {
  list-style: none;
  margin: 0 0 1.25rem 0;
  padding: 0;
}
.hp-card-body li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.45rem;
  font-size: 0.88rem;
  color: var(--hp-muted);
}
.hp-card-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hp-accent);
}
.hp-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--hp-border);
}
.hp-price {
  font-family: var(--hp-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: #f8fafc;
}
.hp-btn-enroll {
  display: inline-block;
  background: linear-gradient(135deg, #a5b4fc, #6366f1);
  color: #030712;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55rem 1.2rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.hp-btn-enroll:hover {
  filter: brightness(1.05);
  text-decoration: none;
}
.hp-badge-soon {
  font-size: 0.78rem;
  font-weight: 600;
  color: #a5b4fc;
  background: rgba(129, 140, 248, 0.12);
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(129, 140, 248, 0.25);
}
.hp-features {
  padding: 4rem 5%;
  background: rgba(3, 7, 18, 0.5);
  border-top: 1px solid var(--hp-border);
}
.hp-features h2 {
  font-family: var(--hp-display);
  text-align: center;
  color: #f8fafc;
  margin-bottom: 0.5rem;
}
.hp-features > p {
  text-align: center;
  color: var(--hp-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}
.hp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.hp-feat {
  padding: 1.5rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid var(--hp-border);
}
.hp-feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(129, 140, 248, 0.12);
  border: 1px solid rgba(129, 140, 248, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #c7d2fe;
  margin-bottom: 0.85rem;
}
.hp-feat h4 {
  font-size: 0.95rem;
  color: #f1f5f9;
  margin-bottom: 0.4rem;
}
.hp-feat p {
  font-size: 0.86rem;
  color: var(--hp-muted);
  line-height: 1.55;
}
.hp-guarantee {
  text-align: center;
  padding: 3.5rem 5%;
}
.hp-guarantee h2 {
  font-family: var(--hp-display);
  color: #f8fafc;
  margin-bottom: 0.75rem;
}
.hp-guarantee p {
  color: var(--hp-muted);
  max-width: 520px;
  margin: 0 auto;
}
.hp-nav-btn {
  background: none;
  border: none;
  color: var(--hp-muted);
  font-family: inherit;
  font-size: 0.88rem;
  cursor: pointer;
}
.hp-nav-btn:hover {
  color: #fff;
}
