/* ================================================================
   SONA SKILL – HOMEPAGE REDESIGN
   ================================================================ */

/* ── HERO ── */
.hp-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 70% at 90% 40%, rgba(139,26,47,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(245,217,184,0.22) 0%, transparent 55%),
    linear-gradient(160deg, #fffdfb 0%, #fff6f2 50%, #fff9fb 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hp-hero::before {
  content: "";
  position: absolute;
  top: -10%; right: -5%;
  width: 55%; height: 120%;
  background: radial-gradient(ellipse at 60% 40%, rgba(253,246,240,0.95) 0%, rgba(248,235,228,0.80) 100%);
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

.hp-hero__grid {
  position: relative; z-index: 1;
  max-width: 1240px; margin: 0 auto;
  padding: 80px 32px 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hp-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(203,165,107,0.35);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(122,31,51,0.07);
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #b8832a;
  margin-bottom: 28px;
}

.hp-hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--vc-red);
  box-shadow: 0 0 0 3px rgba(139,26,47,0.15);
}

.hp-hero__title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 5.5vw, 5.4rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--vc-text);
  margin-bottom: 28px;
  text-wrap: balance;
}

.hp-hero__title em {
  font-style: italic;
  color: var(--vc-red);
}

.hp-hero__lead {
  font-family: var(--font-body);
  font-size: 1.12rem; font-weight: 500;
  line-height: 1.78;
  color: #5c636e;
  max-width: 52ch;
  margin-bottom: 36px;
}

.hp-hero__actions {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 44px;
}

.hp-hero__cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 36px;
  background: var(--vc-red);
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 32px rgba(139,26,47,0.30);
  transition: background 200ms, transform 180ms, box-shadow 200ms;
  cursor: pointer;
}
.hp-hero__cta-primary:hover {
  background: var(--vc-red-dark); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(139,26,47,0.38);
}
.hp-hero__cta-primary svg { width: 18px; height: 18px; }

.hp-hero__cta-secondary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 16px 28px;
  background: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(139,26,47,0.15);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.98rem; font-weight: 700;
  color: var(--vc-text);
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: background 200ms, border-color 200ms, transform 180ms;
}
.hp-hero__cta-secondary:hover {
  background: rgba(255,255,255,0.95);
  border-color: rgba(139,26,47,0.30);
  color: var(--vc-red);
  transform: translateY(-2px);
}
.hp-hero__cta-secondary svg { width: 18px; height: 18px; }

.hp-hero__trust {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}

.hp-hero__avatars {
  display: flex;
}

.hp-hero__av {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-left: -10px;
  background: var(--vc-red-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  color: var(--vc-red);
  overflow: hidden;
}
.hp-hero__av:first-child { margin-left: 0; }

.hp-hero__trust-text {
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 600;
  color: #626673;
}

.hp-hero__trust-text strong {
  color: var(--vc-text);
  font-weight: 700;
}

/* Hero visual side */
.hp-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-hero__img-wrap {
  position: relative;
  width: min(100%, 460px);
}

.hp-hero__main-img {
  width: 100%;
  border-radius: 32px;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: 0 40px 90px rgba(122,31,51,0.16);
}

.hp-hero__card-float {
  position: absolute;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(139,26,47,0.10);
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: 0 16px 42px rgba(122,31,51,0.14);
  backdrop-filter: blur(12px);
}

.hp-hero__card-float--tl {
  top: -18px; left: -32px;
  display: flex; align-items: center; gap: 10px;
}

.hp-hero__card-float--br {
  bottom: 28px; right: -28px;
  min-width: 180px;
}

.hp-hero__float-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--vc-red), #c43255);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.hp-hero__float-icon svg { width: 20px; height: 20px; }

.hp-hero__float-label { font-family: var(--font-body); }
.hp-hero__float-label strong {
  display: block; font-size: 1rem; font-weight: 800; color: var(--vc-text); line-height: 1;
}
.hp-hero__float-label span { font-size: 0.72rem; font-weight: 600; color: #888; }

.hp-hero__float-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #b8832a; margin-bottom: 5px;
  display: block;
}
.hp-hero__float-title {
  font-family: var(--font-head);
  font-size: 1rem; line-height: 1.1;
  color: var(--vc-text); margin-bottom: 3px;
}
.hp-hero__float-sub {
  font-family: var(--font-body);
  font-size: 0.76rem; color: #888; font-weight: 500;
}

.hp-hero__deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(139,26,47,0.15);
  pointer-events: none;
}
.hp-hero__deco-ring--1 { width: 120px; height: 120px; top: -40px; right: -40px; }
.hp-hero__deco-ring--2 { width: 70px; height: 70px; bottom: 60px; left: -50px; opacity: 0.6; }

/* ── STATS RIBBON ── */
.hp-stats {
  background: var(--vc-red);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hp-stats::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.hp-stats__inner {
  position: relative; z-index: 1;
  max-width: 1240px; margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hp-stats__item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.hp-stats__item:last-child { border-right: none; }

.hp-stats__num {
  font-family: var(--font-head);
  font-size: 2.5rem; font-weight: 600;
  color: #fff; line-height: 1;
  margin-bottom: 6px;
  display: block;
}

.hp-stats__label {
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.03em;
}

/* ── ABOUT ── */
.hp-about {
  padding: 100px 32px;
  background: #fff;
}

.hp-about__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hp-about__img-wrap {
  position: relative;
}

.hp-about__img {
  width: 100%;
  border-radius: 28px;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: 0 32px 80px rgba(122,31,51,0.12);
}

.hp-about__badge-float {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--vc-red);
  color: #fff;
  padding: 20px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(139,26,47,0.28);
}
.hp-about__badge-float strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem; font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}
.hp-about__badge-float span {
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 700;
  opacity: 0.85; letter-spacing: 0.05em;
}

.hp-about__eyebrow { margin-bottom: 12px; }

.hp-about__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600; line-height: 1.05;
  color: var(--vc-text);
  margin-bottom: 20px;
}
.hp-about__title em { font-style: italic; color: var(--vc-red); }

.hp-about__desc {
  font-family: var(--font-body);
  font-size: 1rem; line-height: 1.85;
  color: #5c636e; font-weight: 500;
  margin-bottom: 32px;
}

.hp-about__pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 36px;
}

.hp-about__pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--vc-red-light);
  border: 1px solid rgba(139,26,47,0.12);
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 700;
  color: var(--vc-red);
}
.hp-about__pill svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── WHY SECTION ── */
.hp-why {
  padding: 100px 32px;
  background:
    radial-gradient(circle at top right, rgba(139,26,47,0.07), transparent 28%),
    linear-gradient(180deg, #fffaf7 0%, #fff 100%);
}

.hp-why__inner { max-width: 1200px; margin: 0 auto; }

.hp-why__header {
  text-align: center;
  margin-bottom: 60px;
}

.hp-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hp-why-card {
  background: #fff;
  border: 1px solid rgba(139,26,47,0.08);
  border-radius: 24px;
  padding: 36px 28px;
  box-shadow: 0 8px 28px rgba(122,31,51,0.05);
  transition: box-shadow 240ms, transform 240ms, border-color 240ms;
  cursor: default;
}
.hp-why-card:hover {
  box-shadow: 0 20px 54px rgba(122,31,51,0.11);
  transform: translateY(-4px);
  border-color: rgba(139,26,47,0.16);
}

.hp-why-card__icon-wrap {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--vc-red-light), rgba(245,217,184,0.30));
  border: 1px solid rgba(139,26,47,0.10);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--vc-red);
}
.hp-why-card__icon-wrap svg { width: 26px; height: 26px; }

.hp-why-card__num {
  font-family: var(--font-head);
  font-size: 0.78rem; font-weight: 600;
  color: rgba(139,26,47,0.35);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  display: block;
}

.hp-why-card__title {
  font-family: var(--font-head);
  font-size: 1.25rem; font-weight: 600;
  color: var(--vc-text);
  line-height: 1.15;
  margin-bottom: 12px;
}

.hp-why-card__desc {
  font-family: var(--font-body);
  font-size: 0.92rem; line-height: 1.76;
  color: #626673; font-weight: 500;
  margin-bottom: 18px;
}

.hp-why-card__tag {
  display: inline-flex;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--vc-red-light);
  color: var(--vc-red);
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.04em;
}

/* ── COURSES ── */
/* (keep existing .vc-courses styles, just override header) */
.hp-courses {
  padding: 100px 32px;
  background:
    radial-gradient(circle at top right, rgba(139,26,47,0.09), transparent 24%),
    radial-gradient(circle at bottom left, rgba(245,217,184,0.22), transparent 26%),
    linear-gradient(180deg, #fff7f2 0%, #fffdfb 100%);
  position: relative; overflow: hidden;
}
.hp-courses__inner { max-width: 1200px; margin: 0 auto; }
.hp-courses__header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap; gap: 20px;
}

/* ── TESTIMONIALS ── */
.hp-testi {
  padding: 100px 32px;
  background: var(--vc-red);
  position: relative; overflow: hidden;
}

.hp-testi::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hp-testi__inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
}

.hp-testi__header {
  text-align: center;
  margin-bottom: 56px;
}

.hp-testi__eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(245,217,184,0.80);
  margin-bottom: 14px; display: block;
}

.hp-testi__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.2vw, 2.9rem);
  font-weight: 600; color: #fff;
  line-height: 1.05;
}

.hp-testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.hp-testi-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 22px;
  padding: 30px 26px;
  backdrop-filter: blur(8px);
  transition: background 220ms;
}
.hp-testi-card:hover { background: rgba(255,255,255,0.16); }

.hp-testi-card__stars {
  display: flex; gap: 3px; margin-bottom: 16px;
  color: #f5c842;
}
.hp-testi-card__stars svg { width: 15px; height: 15px; }

.hp-testi-card__quote {
  font-family: var(--font-body);
  font-size: 0.95rem; line-height: 1.76;
  color: rgba(255,255,255,0.88);
  font-style: italic;
  margin-bottom: 22px;
}

.hp-testi-card__author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hp-testi-card__av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.20);
  border: 2px solid rgba(255,255,255,0.30);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 600; color: #fff;
  flex-shrink: 0; overflow: hidden;
}
.hp-testi-card__av img { width: 100%; height: 100%; object-fit: cover; }

.hp-testi-card__name {
  font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 700; color: #fff;
  line-height: 1.2;
}
.hp-testi-card__role {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

/* ── CTA BANNER ── */
.hp-cta {
  padding: 100px 32px;
  background:
    radial-gradient(circle at 30% 50%, rgba(139,26,47,0.07), transparent 36%),
    linear-gradient(160deg, #fffdfb, #fff7f3);
  text-align: center;
}

.hp-cta__inner { max-width: 720px; margin: 0 auto; }

.hp-cta__eyebrow { margin-bottom: 14px; }

.hp-cta__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600; line-height: 1.04;
  color: var(--vc-text);
  margin-bottom: 18px;
  text-wrap: balance;
}
.hp-cta__title em { font-style: italic; color: var(--vc-red); }

.hp-cta__sub {
  font-family: var(--font-body);
  font-size: 1.05rem; line-height: 1.8;
  color: #5c636e; font-weight: 500;
  max-width: 55ch; margin: 0 auto 38px;
}

.hp-cta__btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 42px;
  background: var(--vc-red); color: #fff;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1.05rem; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(139,26,47,0.28);
  transition: background 200ms, transform 180ms, box-shadow 200ms;
}
.hp-cta__btn:hover {
  background: var(--vc-red-dark); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(139,26,47,0.36);
}
.hp-cta__btn svg { width: 18px; height: 18px; }

.hp-cta__note {
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 0.82rem; color: #aaa; font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── REVEAL ANIMATIONS ── */
.hp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.hp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .hp-hero__grid {
    grid-template-columns: 1fr;
    gap: 48px; padding: 60px 24px 40px;
    text-align: center;
  }
  .hp-hero__lead { margin: 0 auto 32px; }
  .hp-hero__actions { justify-content: center; }
  .hp-hero__trust { justify-content: center; }
  .hp-hero__visual { display: none; }
  .hp-hero { min-height: auto; }

  .hp-stats__inner { grid-template-columns: repeat(2, 1fr); }
  .hp-stats__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .hp-stats__item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
  .hp-stats__item:nth-last-child(-n+2) { border-bottom: none; }

  .hp-about__inner { grid-template-columns: 1fr; gap: 40px; }
  .hp-about__img-wrap { display: none; }

  .hp-why__grid { grid-template-columns: repeat(2, 1fr); }

  .hp-testi__grid { grid-template-columns: 1fr; }

  .hp-about, .hp-why, .hp-courses, .hp-testi, .hp-cta { padding: 64px 24px; }
}

@media (max-width: 640px) {
  .hp-why__grid { grid-template-columns: 1fr; }
  .hp-stats__inner { grid-template-columns: repeat(2, 1fr); }
  .hp-courses__header { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .hp-reveal { opacity: 1; transform: none; transition: none; }
}
