/* =========================================================
   GLOBAL
========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");


:root {
  --navy: #0e1526;
  --navy-2: #141d33;
  --teal: #22c396;
  --teal-dark: #1aa07c;
  --mint-bg: #e9f9f0;
  --mint-bg-2: #dff5e9;
  --text-dark: #101828;
  --text-muted: #5b6474;
  --white: #ffffff;
  --card-blue: #e7f0fe;
  --card-green: #e6f8ee;
  --card-pink: #fdeaf1;
  --card-purple: #f1ebfd;
  --card-peach: #fdf0e6;
  --card-mint: #e6faf5;
  --card-lav: #eeeafd;
  --card-skyblue: #e6f4fd;
  --radius: 16px;
  --maxw: 1200px;
  font-family: 'Inter', sans-serif;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: env(safe-area-inset-top, 0px)
}

body {
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.5;
  overflow-x: hidden
}

img {
  max-width: 100%;
  display: block
}

h1,
h2,
h3 {
  font-family: 'Poppins', sans-serif
}

a {
  text-decoration: none;
  color: inherit
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s ease
}

.btn:active {
  transform: scale(.97)
}

.btn-primary {
  background: var(--teal);
  color: #06281f
}

.btn-primary:hover {
  background: var(--teal-dark)
}

.btn-dark {
  background: var(--navy);
  color: #fff
}

.btn-outline {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35)
}

.btn-block {
  width: 100%;
  justify-content: center
}

/* ---------- Nav ---------- */
header.nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: var(--maxw);
  margin: 0 auto
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  font-family: 'Poppins', sans-serif
}

.logo-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  flex: none
}

.logo span {
  color: var(--teal)
}

.nav-links {
  display: none;
  gap: 28px;
  color: #c6ccd8;
  font-size: 15px
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px
}

.nav-right a {
  color: #e7eaf0;
  font-size: 14px;
  font-weight: 500
}

.nav-signup {
  background: var(--teal);
  color: #06281f;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px
}

/* ---------- Hero ---------- */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 36px 0 44px
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.hero h1 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700
}

.hero h1 span {
  color: var(--teal)
}

.hero p {
  color: #aeb6c4;
  margin-top: 14px;
  font-size: 15px;
  max-width: 480px
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px
}

.watch-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 15px
}

.play-ring {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .4);
  display: flex;
  align-items: center;
  justify-content: center
}

.hero-avatars {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px
}

.avatar-stack {
  display: flex
}

.avatar-stack img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  object-fit: cover;
  margin-left: -10px
}

.avatar-stack img:first-child {
  margin-left: 0
}

.hero-avatars p {
  color: #c6ccd8;
  font-size: 13px
}

.hero-avatars strong {
  color: #fff
}

.hero-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden
}

.hero-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 20px
}

/* ---------- Offer banner ---------- */
.offer {
  background: linear-gradient(180deg, var(--mint-bg), var(--mint-bg-2));
  padding: 26px 0
}

.offer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-dark)
}

.offer h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark)
}

.offer h2 b {
  color: var(--teal-dark);
  font-size: 26px
}

.offer-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin: 6px 0
}

.offer-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  max-width: 90px;
  text-align: center
}

.offer-icon .circ {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .06)
}

/* ---------- Section shell ---------- */
section {
  padding: 52px 0
}

.eyebrow {
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .02em
}

.section-head h2 {
  font-size: 26px;
  font-weight: 700;
  margin-top: 6px
}

.section-head p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 10px;
  max-width: 480px
}

/* ---------- Categories ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.cat-card {
  position: relative;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;

  /* Image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: flex-end;

  isolation: isolate;
}

.cat-more{
  margin-top: 18px;
}

/* Dark gradient at bottom */
.cat-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.45) 35%,
    rgba(0, 0, 0, 0) 70%
  );
}

/* Text */
.cat-title {
  position: relative;
  z-index: 2;

  color: #fff;
  font-size: 17px;
  font-weight: 700;

  padding: 18px;
  width: 100%;
}

/* ---------- About ---------- */
.about {
  background: #fff
}

.about-inner {
  display: flex;
  flex-direction: column;
  gap: 30px
}

.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden
}

.about-img-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px
}

.play-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(14, 21, 38, .75);
  color: #fff;
  padding: 8px 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600
}

.checklist {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark)
}

.checklist .tick {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--mint-bg);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-size: 12px
}

/* ---------- Stats ---------- */
.stats {
  background: var(--mint-bg);
  border-radius: 20px;
  padding: 30px 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center
}

.stats .num {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  font-family: 'Poppins', sans-serif
}

.stats .lbl {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500
}

/* ---------- Testimonials ---------- */
.test-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px
}

.test-card {
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(20, 30, 60, .04)
}

.test-card p {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic
}

.test-who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px
}

.test-who img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover
}

.test-who strong {
  font-size: 14px;
  display: block
}

.test-who span {
  font-size: 12px;
  color: var(--text-muted)
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px
}

.dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d7dbe3;
  display: block
}

.dots i.on {
  background: var(--teal)
}

/* ---------- CTA banner ---------- */
.cta {
  background: var(--navy);
  color: #fff;
  border-radius: 0;
  padding: 44px 0
}

.cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px
}

.cta-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center
}

.cta h2 {
  font-size: 24px;
  font-weight: 700
}

.cta h2 b {
  color: var(--teal)
}

.cta .checklist {
  align-items: center
}

.cta .checklist li {
  color: #dfe3ea
}

.cta .checklist .tick {
  background: rgba(34, 195, 150, .18);
  color: var(--teal)
}

/* ---------- Footer ---------- */
footer {
  background: var(--navy);
  color: #c6ccd8;
  padding: 44px 0 20px
}

.foot-top {
  display: flex;
  flex-direction: column;
  gap: 30px
}

.foot-brand p {
  font-size: 13px;
  margin-top: 10px;
  max-width: 280px;
  color: #9aa3b2
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 16px
}

.social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px
}

.foot-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px
}

.foot-cols h4 {
  font-size: 13px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 600
}

.foot-cols li {
  list-style: none;
  font-size: 13px;
  margin-bottom: 9px;
  color: #9aa3b2
}

.newsletter {
  display: flex;
  gap: 0;
  margin-top: 10px
}

.newsletter input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px 0 0 10px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: 13px
}

.newsletter button {
  background: var(--teal);
  color: #06281f;
  padding: 0 16px;
  border-radius: 0 10px 10px 0;
  font-weight: 700
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 32px;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  color: #8b93a3
}

.foot-bottom .links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px
}

/* ---------- Desktop ---------- */
@media(min-width:900px) {
  .nav-links {
    display: flex
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 50px
  }

  .hero-inner>div:first-child {
    flex: 1
  }

  .hero-img-wrap {
    flex: 1
  }

  .hero h1 {
    font-size: 44px
  }

  .offer-card {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 8px 30px
  }

  .offer h2 {
    font-size: 22px
  }

  .cat-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .about-inner {
    flex-direction: row-reverse;
    align-items: center;
    gap: 50px
  }

  .about-inner>div {
    flex: 1
  }

  .about-img-wrap img {
    height: 420px
  }

  .stats {
    grid-template-columns: repeat(4, 1fr)
  }

  .test-grid {
    flex-direction: row
  }

  .test-card {
    flex: 1
  }

  .foot-top {
    flex-direction: row;
    justify-content: space-between
  }

  .foot-cols {
    grid-template-columns: repeat(3, 1fr);
    flex: 2
  }

  .foot-bottom {
    flex-direction: row;
    justify-content: space-between
  }

  section {
    padding: 70px 0
  }
}