:root {
  --bg: #fffaf2;
  --bg-alt: #fdf2f7;
  --surface: #ffffff;
  --surface-soft: #fffdf8;
  --ink: #2f1b3d;
  --ink-soft: #6b5875;

  --purple: #6c2a8e;
  --purple-dark: #4a1a64;
  --purple-soft: #f1e6f7;
  --coral: #f4776b;
  --coral-dark: #e05a4d;
  --yellow: #fbd24a;
  --yellow-soft: #fff3cd;
  --sky: #48b6ea;
  --green: #7cc576;
  --pink: #ef6ea8;

  --line: #ecdff2;
  --white: #ffffff;
  --shadow-sm: 0 10px 26px rgba(108, 42, 142, 0.1);
  --shadow-lg: 0 24px 52px rgba(108, 42, 142, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Baloo 2", "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  line-height: 1.7;
  overflow-x: clip;
  background:
    radial-gradient(1200px 640px at 100% -10%, #fde5ef 0%, rgba(253, 229, 239, 0) 60%),
    radial-gradient(1100px 620px at -12% 16%, #fff2c9 0%, rgba(255, 242, 201, 0) 58%),
    linear-gradient(170deg, var(--bg), #ffffff 46%, var(--bg-alt));
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 90;
  background: rgba(108, 42, 142, 0.08);
}

.scroll-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--yellow) 40%, var(--sky) 72%, var(--purple));
  transition: width 0.12s linear;
}

/* ---------------- Announcement ---------------- */

.announce-bar {
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(120deg, var(--purple-dark), var(--purple) 50%, var(--pink));
}

.announce-track {
  display: flex;
  gap: 42px;
  width: max-content;
  padding: 9px 0;
  animation: marquee 28s linear infinite;
}

.announce-track span {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ---------------- Header ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(12px);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.97), rgba(255, 248, 240, 0.97));
  border-bottom: 3px solid var(--yellow);
  box-shadow: 0 8px 26px rgba(108, 42, 142, 0.12);
}

.nav-wrap {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  height: 78px;
  width: auto;
  border-radius: 0;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-text {
  margin: 0;
  color: var(--purple);
  font-family: "Fredoka", "Sora", sans-serif;
  font-size: 1.22rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-tag {
  margin: 0;
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--purple-dark);
  font-size: 0.94rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 9px 14px;
  border: 2px solid transparent;
  transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.site-nav a:hover {
  background: var(--yellow-soft);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.site-nav a.active {
  color: var(--white);
  background: linear-gradient(130deg, var(--purple), #9243bb);
  border-color: var(--purple);
  box-shadow: 0 10px 20px rgba(108, 42, 142, 0.28);
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-family: "Fredoka", "Sora", sans-serif;
  color: var(--purple-dark);
}

/* ---------------- Section nav ---------------- */

.home-section-nav {
  position: sticky;
  top: 96px;
  z-index: 55;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.home-section-nav-wrap {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.home-section-nav-wrap::-webkit-scrollbar {
  display: none;
}

.section-link {
  text-decoration: none;
  color: var(--purple);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 8px 13px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.section-link:hover,
.section-link.active {
  color: var(--purple-dark);
  background: linear-gradient(130deg, var(--yellow-soft), var(--yellow));
  border-color: rgba(230, 178, 20, 0.6);
}

[data-section-track] {
  scroll-margin-top: 168px;
}

/* ---------------- Hero ---------------- */

.hero-slider {
  position: relative;
  overflow: hidden;
}

.slides {
  position: relative;
  min-height: clamp(440px, 70vh, 660px);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  min-height: clamp(440px, 70vh, 660px);
  display: grid;
  align-content: center;
  gap: 14px;
  width: min(780px, 96%);
  color: var(--white);
  animation: reveal 0.8s ease;
}

.kicker {
  margin: 0;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.kicker::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background: var(--coral);
}

.kicker.dark {
  color: var(--coral);
}

.slide-content h1,
.slide-content h2 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.7rem);
  text-shadow: 0 6px 24px rgba(35, 10, 50, 0.45);
}

.slide-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------------- Buttons ---------------- */

.btn {
  border: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  font-weight: 700;
  font-family: inherit;
  padding: 13px 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.06);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(130deg, var(--coral), #f0605a 60%, var(--coral-dark));
  box-shadow: 0 14px 26px rgba(224, 90, 77, 0.32);
}

.btn-accent {
  width: 100%;
  color: var(--white);
  background: linear-gradient(130deg, #8b3fb0, var(--purple) 55%, var(--purple-dark));
  box-shadow: 0 12px 24px rgba(74, 26, 100, 0.3);
}

.btn-sun {
  color: var(--purple-dark);
  background: linear-gradient(130deg, #ffe793, var(--yellow) 60%, #f0be21);
  box-shadow: 0 12px 24px rgba(240, 190, 33, 0.35);
}

.btn-ig {
  color: var(--white);
  background: linear-gradient(135deg, #f09433, #dc2743 48%, #bc1888);
  box-shadow: 0 14px 26px rgba(188, 24, 136, 0.32);
}

.slider-controls {
  position: absolute;
  inset: auto 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 4;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.5);
}

.dot.active {
  background: var(--yellow);
  transform: scale(1.2);
}

/* ---------------- Sections ---------------- */

.section {
  padding: 76px 0;
}

.section-head {
  margin-bottom: 32px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
}

.section-head .kicker,
.section-head .kicker.dark {
  margin: 0 auto 6px;
}

.section-head .lead {
  margin: 10px auto 0;
  max-width: 66ch;
  color: var(--ink-soft);
}

.section-alt {
  background: linear-gradient(178deg, #fdf3f8, #fffdf8);
}

.trust-ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(130deg, #fff6df, #fdeef6);
}

.trust-ticker-grid {
  min-height: 76px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
}

.trust-ticker-grid p {
  margin: 0;
  text-align: center;
  color: var(--purple-dark);
  font-size: 0.96rem;
  font-weight: 700;
}

.features-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card,
.product-card,
.category-card,
.mini-product-card,
.step-card,
.two-col article:not(.testimonial-card),
.faq-list details,
.info-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
  border: 2px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.feature-card,
.step-card,
.info-card {
  padding: 26px;
}

.feature-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--yellow);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  border-radius: 18px;
  margin-bottom: 14px;
  background: var(--purple-soft);
}

.feature-card h3,
.step-card h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.feature-card p,
.step-card p,
.faq-list p,
.category-body p,
.mini-product-card p,
.testimonial-card p,
.info-card p {
  margin: 0;
  color: var(--ink-soft);
}

.stats-strip {
  padding: 36px 0;
  background: linear-gradient(120deg, var(--purple-dark), var(--purple) 55%, #8b3fb0);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  color: var(--white);
  text-align: center;
  padding: 22px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.11);
}

.stat-card h3 {
  color: var(--yellow);
  font-size: 2.1rem;
}

.stat-card p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.category-grid,
.mini-product-grid,
.steps-grid {
  display: grid;
  gap: 22px;
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card,
.mini-product-card,
.product-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-card:hover,
.mini-product-card:hover,
.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--coral);
  box-shadow: var(--shadow-lg);
}

.category-body {
  padding: 20px;
}

.category-body h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.category-body p {
  margin: 0 0 14px;
}

.mini-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mini-product-card {
  padding-bottom: 18px;
}

.mini-product-card h3 {
  padding: 16px 16px 8px;
  font-size: 1.2rem;
}

.mini-product-card p {
  padding: 0 16px 14px;
}

.mini-product-card .btn {
  margin: 0 16px;
}

/* ---------------- Hover image swap ---------------- */

.swap-media {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: var(--purple-soft);
}

.swap-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.55s ease, transform 0.7s ease;
}

.swap-media .swap-hover {
  opacity: 0;
}

.category-card:hover .swap-base,
.mini-product-card:hover .swap-base,
.course-card:hover .swap-base,
.category-card:focus-within .swap-base,
.mini-product-card:focus-within .swap-base,
.course-card:focus-within .swap-base {
  opacity: 0;
  transform: scale(1.08);
}

.category-card:hover .swap-hover,
.mini-product-card:hover .swap-hover,
.course-card:hover .swap-hover,
.category-card:focus-within .swap-hover,
.mini-product-card:focus-within .swap-hover,
.course-card:focus-within .swap-hover {
  opacity: 1;
  transform: scale(1.08);
}

.swap-media .media-tag {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(74, 26, 100, 0.85);
  backdrop-filter: blur(4px);
}

.mini-product-card .swap-media {
  height: 200px;
}

/* ---------------- Steps ---------------- */

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card span {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(130deg, var(--coral), var(--pink));
}

.testimonials-wrap {
  gap: 22px;
}

.testimonial-card {
  padding: 30px;
  border-radius: 22px;
  color: var(--white);
  background: linear-gradient(130deg, var(--purple), #a94fc9);
  box-shadow: var(--shadow-lg);
}

.testimonial-card h2,
.testimonial-card h3 {
  color: var(--white);
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.92);
  margin: 14px 0;
}

.testimonial-card h3 {
  font-size: 1.14rem;
}

.testimonial-card small {
  color: var(--yellow);
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 16px 18px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--purple-dark);
}

.faq-list p {
  margin-top: 10px;
}

.home-cta {
  padding: 20px 0 78px;
}

.cta-box {
  text-align: center;
  padding: 40px;
  border-radius: 26px;
  color: var(--white);
  background: linear-gradient(120deg, var(--coral), var(--pink) 55%, var(--purple));
  box-shadow: var(--shadow-lg);
}

.cta-box h2 {
  color: var(--white);
}

.cta-box p {
  margin: 10px auto 0;
  max-width: 68ch;
  color: rgba(255, 255, 255, 0.94);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cta-actions .btn {
  width: auto;
}

.page-banner {
  color: var(--white);
  background-size: cover;
  background-position: center;
}

.page-banner .container {
  min-height: 320px;
  display: grid;
  align-content: center;
  gap: 12px;
}

.page-banner h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  text-shadow: 0 6px 22px rgba(35, 10, 50, 0.45);
}

.page-banner p {
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.two-col article:not(.testimonial-card) {
  padding: 28px;
}

.media-col {
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid var(--yellow);
  box-shadow: var(--shadow-lg);
}

.media-col img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.clean-list {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.clean-list li {
  margin-bottom: 6px;
}

.tick-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
}

.tick-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 9px;
}

.tick-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 4px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  line-height: 1;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
}

/* ---------------- Courses ---------------- */

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.course-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 2px solid var(--line);
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.course-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-color, var(--purple));
  box-shadow: var(--shadow-lg);
}

.course-body {
  position: relative;
  padding: 24px 22px 26px;
}

.course-emoji {
  position: absolute;
  top: -32px;
  right: 20px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  border-radius: 20px;
  color: var(--white);
  background: var(--accent-color, var(--purple));
  box-shadow: var(--shadow-sm);
}

.course-card h3 {
  font-size: 1.32rem;
  margin-bottom: 6px;
  padding-right: 62px;
}

.course-card p {
  margin: 0 0 14px;
  color: var(--ink-soft);
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.chip {
  font-size: 0.77rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--purple-dark);
  background: var(--yellow-soft);
  border: 1px solid rgba(230, 178, 20, 0.5);
}

/* ---------------- Book highlight ---------------- */

.book-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.book-visual {
  border-radius: 26px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(140deg, var(--purple), #a94fc9 60%, var(--pink));
  box-shadow: var(--shadow-lg);
}

.book-visual img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  background: var(--white);
  padding: 16px;
}

.book-visual-body {
  padding: 26px 28px 32px;
  text-align: center;
}

.book-visual h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.book-visual p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.price-box {
  display: inline-grid;
  gap: 2px;
  margin-top: 18px;
  padding: 14px 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  border: 2px solid rgba(255, 255, 255, 0.28);
}

.price-box strong {
  font-size: 2rem;
  color: var(--yellow);
  font-family: "Fredoka", sans-serif;
}

.price-box small {
  color: rgba(255, 255, 255, 0.9);
}

.price-tag {
  margin: 0;
  padding: 0 16px 12px;
  color: var(--coral-dark);
  font-weight: 700;
  font-size: 1.1rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.badge {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
}

.badge.alt {
  background: var(--sky);
}

.badge.warm {
  background: var(--coral);
}

/* ---------------- Instagram ---------------- */

.ig-panel {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 36px;
  border-radius: 26px;
  color: var(--white);
  background: linear-gradient(135deg, #f09433, #dc2743 46%, #bc1888);
  box-shadow: var(--shadow-lg);
}

.ig-panel h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.ig-panel p {
  color: rgba(255, 255, 255, 0.94);
}

.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.ig-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.ig-actions .btn-follow {
  color: #bc1888;
  background: var(--white);
  box-shadow: 0 14px 26px rgba(60, 10, 44, 0.3);
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ig-tile {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.4);
}

.ig-tile img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ig-tile:hover img {
  transform: scale(1.12);
}

/* ---------------- Social ---------------- */

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.social-card {
  display: grid;
  gap: 4px;
  padding: 22px;
  border-radius: 20px;
  text-decoration: none;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.social-card span {
  font-size: 1.9rem;
}

.social-card strong {
  font-family: "Fredoka", sans-serif;
  font-size: 1.08rem;
}

.social-card small {
  color: rgba(255, 255, 255, 0.9);
}

.social-fb {
  background: linear-gradient(135deg, #4267b2, #29487d);
}

.social-ig {
  background: linear-gradient(135deg, #f09433, #dc2743 45%, #bc1888);
}

.social-wa {
  background: linear-gradient(135deg, #25d366, #128c50);
}

.social-tg {
  background: linear-gradient(135deg, #34aadf, #1f7fa8);
}

/* ---------------- Map ---------------- */

.map-frame {
  overflow: hidden;
  border-radius: 24px;
  border: 3px solid var(--yellow);
  box-shadow: var(--shadow-lg);
  line-height: 0;
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* ---------------- Forms ---------------- */

.contact-form,
.wa-form {
  display: grid;
  gap: 10px;
}

.contact-form label,
.wa-form label {
  font-weight: 700;
  color: var(--purple-dark);
}

.contact-form input,
.contact-form textarea,
.wa-form input,
.wa-form textarea {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 11px 14px;
  font: inherit;
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(108, 42, 142, 0.18);
  border-color: var(--purple);
}

/* ---------------- Footer ---------------- */

.site-footer {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 26px;
  padding: 44px 0 30px;
}

.footer-top h3 {
  color: var(--yellow);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.footer-logo {
  height: 84px;
  width: auto;
  border-radius: 0;
  object-fit: contain;
  background: var(--white);
  padding: 8px 14px;
  margin-bottom: 14px;
  box-shadow: 0 10px 24px rgba(10, 2, 18, 0.28);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--white);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.26);
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  color: var(--purple-dark);
  background: var(--yellow);
  border-color: var(--yellow);
}

.footer-top p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.86);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  width: fit-content;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-wrap p {
  margin: 0;
  font-size: 0.9rem;
}

/* ---------------- WhatsApp widget ---------------- */

.wa-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
}

.mobile-sticky-cta {
  display: none;
}

.wa-toggle {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 700;
  font-family: inherit;
  padding: 13px 20px;
  background: linear-gradient(140deg, #25d366, #128c50);
  box-shadow: 0 14px 28px rgba(9, 90, 45, 0.35);
}

.wa-panel {
  width: min(340px, 90vw);
  margin-top: 10px;
  border-radius: 20px;
  background: #ffffff;
  border: 2px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  display: none;
}

.wa-widget.open .wa-panel {
  display: block;
}

.wa-close {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: var(--purple-soft);
  float: right;
  cursor: pointer;
}

.wa-panel h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.wa-panel p {
  margin: 0 0 12px;
  color: var(--ink-soft);
}

.wa-form input:focus,
.wa-form textarea:focus {
  outline: 3px solid rgba(37, 211, 102, 0.22);
  border-color: #25d366;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---------------- Home animations ---------------- */

.home-animated .hero-slider::before,
.home-animated .hero-slider::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
  width: clamp(180px, 22vw, 300px);
  height: clamp(180px, 22vw, 300px);
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.3;
}

.home-animated .hero-slider::before {
  top: 12%;
  left: -80px;
  background: radial-gradient(circle, var(--yellow) 0%, rgba(251, 210, 74, 0) 72%);
  animation: driftGlow 9s ease-in-out infinite;
}

.home-animated .hero-slider::after {
  right: -90px;
  bottom: 14%;
  background: radial-gradient(circle, var(--pink) 0%, rgba(239, 110, 168, 0) 72%);
  animation: driftGlowReverse 10s ease-in-out infinite;
}

.home-animated .slide.active .slide-content > * {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeLift 0.65s ease forwards;
}

.home-animated .slide.active .slide-content > *:nth-child(1) {
  animation-delay: 0.05s;
}

.home-animated .slide.active .slide-content > *:nth-child(2) {
  animation-delay: 0.13s;
}

.home-animated .slide.active .slide-content > *:nth-child(3) {
  animation-delay: 0.2s;
}

.home-animated .slide.active .slide-content > *:nth-child(4) {
  animation-delay: 0.28s;
}

.home-animated .slide.active .slide-content > *:nth-child(5) {
  animation-delay: 0.35s;
}

.home-reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.99);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.home-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* keeps card hover lift working after the reveal transform is applied */
.feature-card.is-visible:hover,
.category-card.is-visible:hover,
.mini-product-card.is-visible:hover,
.product-card.is-visible:hover,
.social-card.is-visible:hover {
  transform: translateY(-5px);
}

.course-card.is-visible:hover {
  transform: translateY(-6px);
}

.home-animated .stat-card {
  animation: floatCard 7s ease-in-out infinite;
}

.home-animated .stat-card:nth-child(2) {
  animation-delay: 0.45s;
}

.home-animated .stat-card:nth-child(3) {
  animation-delay: 0.9s;
}

.home-animated .stat-card:nth-child(4) {
  animation-delay: 1.35s;
}

.home-animated .btn-primary,
.home-animated .btn-accent {
  position: relative;
  overflow: hidden;
}

.home-animated .btn-primary::after,
.home-animated .btn-accent::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 80%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
}

.home-animated .btn-primary:hover::after,
.home-animated .btn-accent:hover::after {
  transform: translateX(130%);
}

@keyframes fadeLift {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes driftGlow {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(18px, -16px);
  }
}

@keyframes driftGlowReverse {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-18px, 14px);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* ---------------- Responsive ---------------- */

@media (max-width: 1080px) {
  .site-nav a {
    padding: 8px 11px;
    font-size: 0.87rem;
  }

  .brand-logo {
    height: 66px;
  }
}

@media (max-width: 980px) {
  .features-grid,
  .product-grid,
  .category-grid,
  .mini-product-grid,
  .course-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid,
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid,
  .two-col,
  .book-layout,
  .footer-top,
  .ig-panel {
    grid-template-columns: 1fr;
  }

  .trust-ticker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px 0;
  }

  .page-banner .container {
    min-height: 280px;
  }

  .media-col img {
    min-height: 260px;
  }
}

@media (max-width: 860px) {
  .nav-wrap {
    min-height: 84px;
  }

  .home-section-nav {
    top: 84px;
  }

  .nav-toggle-label {
    width: 46px;
    height: 40px;
    display: grid;
    align-content: center;
    gap: 6px;
    cursor: pointer;
    border-radius: 12px;
    padding: 0 8px;
    background: var(--purple-soft);
  }

  .nav-toggle-label span {
    height: 3px;
    border-radius: 5px;
    background: var(--purple);
  }

  .site-nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    padding: 16px 4%;
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
    background: linear-gradient(160deg, #ffffff, #fff6e6);
    border-bottom: 3px solid var(--yellow);
    box-shadow: 0 16px 30px rgba(108, 42, 142, 0.16);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    transition: 0.25s ease;
  }

  .site-nav a {
    width: 100%;
    font-size: 1rem;
    padding: 11px 14px;
  }

  .nav-toggle:checked ~ .site-nav {
    transform: scaleY(1);
    opacity: 1;
  }

  [data-section-track] {
    scroll-margin-top: 150px;
  }
}

@media (max-width: 760px) {
  .home-section-nav-wrap {
    min-height: 46px;
    gap: 8px;
  }

  .section-link {
    font-size: 0.76rem;
    padding: 7px 10px;
  }

  .slide-content {
    width: 100%;
  }

  .features-grid,
  .product-grid,
  .stats-grid,
  .category-grid,
  .mini-product-grid,
  .course-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .trust-ticker-grid {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: auto;
  }

  .section {
    padding: 54px 0;
  }

  .cta-box,
  .ig-panel {
    padding: 28px 22px;
  }

  .two-col article:not(.testimonial-card),
  .feature-card,
  .step-card,
  .info-card {
    padding: 22px;
  }

  .page-banner .container {
    min-height: 236px;
  }

  .swap-media,
  .mini-product-card .swap-media {
    height: 210px;
  }

  .map-frame iframe {
    height: 320px;
  }

  .ig-tile img {
    height: 100px;
  }

  .slider-controls {
    inset: auto 0 14px;
  }

  .wa-widget {
    right: 10px;
    bottom: 86px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(74, 26, 100, 0.97);
    backdrop-filter: blur(8px);
    border-top: 3px solid var(--yellow);
  }

  .mobile-sticky-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
  }

  .mobile-sticky-cta .btn {
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 0.83rem;
  }

  body.home-animated {
    padding-bottom: 76px;
  }

  .scroll-progress {
    height: 3px;
  }
}

@media (max-width: 460px) {
  .nav-wrap {
    gap: 10px;
    min-height: 76px;
  }

  .brand-logo {
    height: 56px;
  }

  .brand-text {
    font-size: 1rem;
  }

  .brand-tag {
    font-size: 0.72rem;
  }

  .home-section-nav,
  .site-nav {
    top: 76px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.92rem;
  }

  .book-visual-body {
    padding: 22px 18px 26px;
  }

  .mobile-sticky-cta p {
    font-size: 0.76rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .announce-track,
  .home-animated .hero-slider::before,
  .home-animated .hero-slider::after,
  .home-animated .stat-card,
  .home-animated .slide.active .slide-content > *,
  .home-reveal {
    animation: none;
    transition: none;
    transform: none;
    opacity: 1;
  }
}
