/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth; /* ✅ This enables smooth scrolling */
} 

/* header */
header {
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08), transparent 60%),
    radial-gradient(circle at 80% 90%, rgba(255, 255, 255, 0.08), transparent 60%),
    #000000;
  position: fixed;
  top: 0;
  /* ✅ anchor to top */
  width: 100%;
  z-index: 1000;
}

a {
  text-decoration: none;
  color: #fff;
  font-weight: 300;
}

a:hover {
  color: #0077ff;
}

/* ===================== */
/*     DESKTOP NAVBAR    */
/* ===================== */
.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1rem 0;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.nav-left {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  /* wider spacing between links */
  max-width: 740px;
}

.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 0.5rem;
}

.logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}


.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #ffffff;
  padding: 0.5rem 0;
  background: transparent;
}

/* CTA Buttons */
.cta-button {
  background-color: #D6FB56;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 30.4px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  display: inline-block;
  transition: background 0.3s ease;
}


.cta-button:hover {
  background-color: #c6eb46;
  /* slightly darker for hover */
}

.desktop-only-button {
  display: inline-block;
}

.mobile-only-button {
  display: none;
}

/* Hamburger hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.hamburger div {
  width: 24px;
  height: 3px;
  background-color: #b7f764;
}


/* Responsive Design  */
@media (max-width: 1024px) {
  .navbar {
    grid-template-columns: auto auto;
    padding: 1rem 1rem;
  }

  .logo {
    justify-self: center;
  }

  .nav-left {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: #000000;
    padding: 1.5rem;
    z-index: 999;
    text-align: center;
    width: 100%;
  }

  .nav-left.active {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 1rem 0;
    font-size: 18px;
  }

  .mobile-only-button {
    display: inline-block;
    margin-top: 1rem;
  }

  .desktop-only-button {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-right {
    display: none;
  }

  .cta-button {
    color: white;
  }
}




/* ===================== */
/*     HERO SECTION      */
/* ===================== */

.hero {
  background: 
    url('/assets/images/Img.svg') no-repeat center center / cover,
    radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.25), transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(164, 186, 219, 0.2), transparent 60%),
    #000000;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 8rem;
  min-height: 100vh;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}


.hero-content {
  width: 100%;
  max-width: 1365px;
  /* from Figma width */
  height: auto;
}

.hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 65px;
  line-height: 70px;
  letter-spacing: -0.5px;
  text-align: center;
  margin-bottom: 2rem;
  word-break: break-word;
}

.hero h1 span {
  display: block;
}

.hero p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 42px;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.hero p span {
  display: block;
}

.hero-button {
  background-color: #ffffff;
  color: #000000;
  padding: 0.8rem 2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  text-transform: capitalize;
  letter-spacing: 0;
  border-radius: 90px;
  border: 2px solid transparent;
  display: inline-block;
  transition: background 0.3s ease;
}

.hero-button:hover {
  background-color: #f0f0f0;
  color: #000;
}


.shortform-circle {
  position: absolute;
  bottom: -180px;
  right: -50px;
  width: 250px;
  height: 250px;
  animation: spin 12s linear infinite;
  z-index: 1;
  opacity: 0.9;
}

.shortform-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Spin Animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



/* Responsive tweaks */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.3rem;
    max-width: 90%;
  }

  .shortform-circle {
    width: 100px;
    height: 100px;
    bottom: -20px;
    right: -20px;
  }
}







/* ===================== */
/*  HIGHLIGHT BAR / TICKER */
/* ===================== */

/* ===================== */
/*   HIGHLIGHT TICKER    */
/* ===================== */
.highlight-bar {
  background-color: #b7f764;
  color: #000;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding: 0.8rem 0;
  font-weight: bold;
  font-size: 1rem;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  position: relative;
}

.highlight-track {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.highlight-content {
  display: flex;
  animation: scrollTicker 20s linear infinite;
}

.highlight-content span {
  display: inline-block;
  padding-right: 3rem;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 38.4px;
  letter-spacing: 0;
  text-transform: uppercase;
  vertical-align: middle;
}

/* Animation */
@keyframes scrollTicker {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}






/* ============================ */
/*     TRUSTED SECTION         */
/* ============================ */
.trusted-section {
  background-color: #000;
  padding: 5rem 2rem;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.trusted-heading h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 45px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}


.trusted-heading h2 span {
  display: block;
  /* force line break */
}

.video-carousel {
  position: relative;
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
}


.video-track {
  display: flex;
  scroll-behavior: smooth;
  gap: 1.5rem;
  /* 1. Add spacing between videos */
  transition: transform 0.4s ease-in-out;
  overflow: hidden;
  width: 100%;
}


.video-track::-webkit-scrollbar {
  display: none;
}

/* Arrows (2. Clean + big icons) */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 10rem;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.carousel-arrow:hover {
  opacity: 1;
}

.carousel-arrow.left {
  left: 1rem;
}

.carousel-arrow.right {
  right: 1rem;
}

.video-carousel video {
  width: 300px;
  height: 435px;
  object-fit: cover;
  border-radius: 22px;
  background: #222;
}


.video-wrapper {
  flex: 0 0 25%;
  /* 4 videos in 100% width */
  height: 500px;
  position: relative;
  border-radius: 22px;
  background: #222;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0;
  /* remove gap */
}


.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.video-controls {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  /* Darker background */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.6rem;
  box-sizing: border-box;
  gap: 0.5rem;
}

/* Progress bar fills the remaining width */
.progress-bar {
  flex: 1;
  height: 4px;
  appearance: none;
  background: #777;
  border-radius: 2px;
  outline: none;
}

/* Proper thumb size */
.progress-bar::-webkit-slider-thumb {
  appearance: none;
  width: 10px;
  height: 10px;
  background: #b7f764;
  border-radius: 50%;
  cursor: pointer;
}

.progress-bar::-moz-range-thumb {
  width: 10px;
  height: 10px;
  background: #b7f764;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

/* Control icons aligned in row */
.control-icons {
  display: flex;
  gap: 0.6rem;
}

.control-icons .icon {
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
}


/* Animation for seamless scroll */
@keyframes scrollVideos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Design of Videos Section */
@media (max-width: 1024px) {
  .video-wrapper {
    flex: 0 0 50%;
    /* 2 videos per row */
    height: 450px;
  }

  .trusted-heading h2 {
    font-size: 38px;
    line-height: 48px;
  }

  .carousel-arrow {
    font-size: 6rem;
    /* reduce arrow size for tablets */
  }
}

@media (max-width: 640px) {
  .video-wrapper {
    flex: 0 0 100%;
    height: 400px;
  }

  .trusted-heading h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .carousel-arrow {
    font-size: 8rem; /* Smaller for mobile */
    color: #b4b4b4; /* Or any contrasting color */
  }

  .carousel-arrow.left {
    left: 1rem;
  }

  .carousel-arrow.right {
    right: 1rem;
  }

  .video-controls {
    padding: 0.3rem 0.5rem;
  }

  .progress-bar {
    height: 3px;
  }
}



/* Image section */
.section-divider {
  width: 100%;
  position: relative;
  background-color: #ffffff;
}


.section-divider img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 10;
  pointer-events: none;
  user-select: none;
  margin-bottom: -40px;
  /* overlap into next section */
}


/* ============ TALENT SECTION ============ */
.talent-section {
  color: #000;
  padding: 5rem 2rem;
  text-align: center;
}

.talent-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.talent-header h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 54px;
  line-height: 66px;
  letter-spacing: 0;
  text-align: left;
  vertical-align: middle;
  margin-left: 110px;
  flex: 1 1 60%;
}

.talent-cta-button {
  background-color: #D6FB56;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 26px;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.talent-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.talent-card {
  padding: 2rem;
  width: 100%;
  max-width: 320px;
  text-align: left;
}

.card-icon-img {
  width: 75px;
  height: 75px;
  margin-bottom: 1rem;
  object-fit: contain;
  display: block;
}

.talent-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 25px;
  line-height: 35px;
  letter-spacing: 0;
  vertical-align: middle;
  margin-bottom: 1rem;
}

.talent-card p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 27.2px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #333;
}

@media (min-width: 641px) and (max-width: 1024px) {
  .talent-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .talent-header h2 {
    font-size: 40px;
    line-height: 50px;
    margin-left: 0;
    text-align: center;
  }

  .talent-cta-button {
    font-size: 18px;
    padding: 0.7rem 1.6rem;
    align-self: center;
  }

  .talent-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-content: center;
  }

  .talent-card:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .talent-card {
    text-align: center;
    padding: 2rem 1rem;
  }

  .card-icon-img {
    margin: 0 auto 1rem;
  }

  .talent-card h3 {
    font-size: 22px;
    line-height: 32px;
  }

  .talent-card p {
    font-size: 15px;
    line-height: 25px;
  }
}



/* ======================= */
/* Responsive: Mobile (640px) */
/* ======================= */
@media (max-width: 640px) {
  .talent-section {
    padding: 3rem 1rem;
  }

  .talent-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .talent-header h2 {
    font-size: 32px;
    line-height: 42px;
    text-align: center;
    margin-left: 0; /* remove left margin on small screens */
  }

  .talent-cta-button {
    align-self: center;
    font-size: 16px;
    padding: 0.6rem 1.4rem;
    margin-top: 1rem;
  }

  .talent-cards {
    flex-direction: column;
    align-items: center;
  }

  .talent-card {
    text-align: center;
    padding: 1.5rem 1rem;
  }

  .card-icon-img {
    margin: 0 auto 1rem;
    display: block;
  }

  .talent-card h3 {
    font-size: 20px;
    line-height: 30px;
  }

  .talent-card p {
    font-size: 14px;
    line-height: 24px;
  }
}


/* Divider */
.divider-between-sections {
  position: relative;
  width: 100%;
  margin-top: -60px;
  /* Pull upward into Talent section */
  overflow: hidden;
  z-index: 5;
}

.divider-between-sections img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  position: relative;
  z-index: 6;
}

/* Scrolling Section */
.work-section {
  background-color: #000;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.work-heading h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 55px;
  line-height: 75.6px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 2.5rem;
  color: #fff;
}


.work-tags-container {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.work-tags {
  display: flex;
  width: max-content;
  white-space: nowrap;
  gap: 2rem;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0.5rem 0;
}


.work-tags span {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  display: inline-block;
  color: #000;
}

/* Alternating tag colors */
.work-tags span:nth-child(odd) {
  background-color: #f5f76f;
  /* light yellow */
}

.work-tags span:nth-child(even) {
  background-color: #d5b3ff;
  /* light purple */
}



@keyframes marquee-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* Apply animation to lines */
.work-tags.line-one {
  animation: marquee-right 25s linear infinite;
}

.work-tags.line-two {
  animation: marquee-left 25s linear infinite;
}

.work-video-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  overflow: visible;
  position: relative;
}

/* Container for each video */
.video-box {
  position: relative;
  width: 250px;
  height: 370px;
  border-radius: 12px;
  background-color: #111;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  transform-origin: bottom center;
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* RAW box tilted left */
.video-box.raw {
  transform: rotate(-3deg);
  z-index: 1;
}

/* EDITED box tilted right and overlapped */
.video-box.edited {
  transform: rotate(3deg);
  margin-left: -100px;
  z-index: 2;
}

/* Shared label style */
/* --- COMMON LABEL BASE --- */
/* === Shared label style === */
/* Label: outside, vertically centered */
.video-box .label {
  position: absolute;
  transform: translateY(-50%);
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.4rem 0.8rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  z-index: 10;
  border-radius: 20px;
}

/* Arrow: outside and separate */
.video-box .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 9;
}

/* === RAW === */
.video-box.raw .label {
  left: -130px;
  background: #7A5FFC;
  top: 45%;
}

.video-box.raw .arrow {
  left: -60px;
  background-image: url('/assets/images/v2.png'); /* right arrow */
}

/* === EDITED === */
.video-box.edited .label {
  right: -130px;
  background: #7A5FFC;
  top: 35%;
}

.video-box.edited .arrow {
  right: -60px;
  background-image: url('/assets/images/Vector.png'); /* left arrow */
}



.testimonial-slider {
  max-width: 1018px;
  margin: 3rem auto 0;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: max-content;
  gap: 32px;
  justify-content: flex-start; /* ensures items align left */
}

.work-testimonial {
  flex: 0 0 300px;
  text-align: center;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  font-family: sans-serif;
  padding: 1rem;
  color: #ffffff;
  /* default gray */
  transition: color 0.4s ease;
  background: transparent;
}

.work-testimonial.active {
  color: #fff;
  font-weight: bold;
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Hide all hr by default */
.work-testimonial hr {
  display: none;
}

/* Show hr only for active (center) testimonial */
.work-testimonial.active hr {
  display: block;
  border: none;
  border-top: 2px solid #ffffff;
  margin-bottom: 1rem;
}
/* Dots */
.testimonial-dots {
  text-align: center;
  margin-top: 1.5rem;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  background-color: #575656;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
}

.testimonial-dots .dot.active {
  background-color: #fff;
}



/* ===========================
   ✅ Tablet (max-width: 1024px)
=========================== */
@media (max-width: 1024px) {
  .work-heading h2 {
    font-size: 42px;
    line-height: 58px;
  }

  .work-tags {
    gap: 1rem;
    font-size: 1rem;
  }

  .video-box {
    width: 220px;
    height: 320px;
  }

  .video-box .arrow {
    width: 60px;
    height: 60px;
  }

  .video-box .label {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }

  .testimonial-track {
    gap: 1rem;
  }

  .work-testimonial {
    flex: 0 0 260px;
    font-size: 0.9rem;
  }
}


/* ===========================
   ✅ Mobile (max-width: 640px)
=========================== */
@media (max-width: 640px) {
  /* ---------- FIXED: Video section with tilt ---------- */
  .work-video-showcase {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .video-box {
    width: 45%;
    height: 220px; /* maintain aspect */
    margin-left: 0;
    transform-origin: bottom center;
  }

  .video-box.raw {
    transform: rotate(-3deg);
  }

  .video-box.edited {
    transform: rotate(3deg);
  }

  .video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
  }

  .video-box .label,
  .video-box .arrow {
    display: none;
  }
}








/* ======= PRICING SECTION ======= */
.pricing-section {
  background-color: #000;
  padding: 6rem 2rem;
  color: white;
  text-align: center;
  position: relative;
  /* ✅ Add this */
}

.pricing-heading {
  font-size: 2.8rem;
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.pricing-steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 1.3rem;
  font-family: sans-serif;
  color: #fff;
  margin-bottom: 3rem;
}

.pricing-steps div {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-steps span {
  background: #7e6fff;
  width: 26px;
  height: 26px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: bold;
  color: white;
  font-family: 'Inter', sans-serif;
}

/* Cards */
.pricing-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 4rem;
}

/* Make all card content left-aligned */
.pricing-card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 20px;
  text-align: left;
  /* ← changed from center to left */
  position: relative;
  font-family: "inter", sans-serif;
  display: flex;
  /* enable flex layout */
  flex-direction: column;
  /* vertical stacking */
  justify-content: flex-start;
  height: auto;
  /* required to equalize card heights */
  width: 280px;         /* ✅ fixed width */
  flex: 0 0 auto;
}

/* Align image wrapper properly (optional visual tweak) */
/* Align avatar image to top-right */
.pricing-avatar {
  position: absolute;
  top: -4rem;
  right: -1.4rem;
  width: 170px;
  height: 170px;
  overflow: hidden;
  z-index: 2;
}

.pricing-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent;
}

/* Heading still bold, just left-aligned now */
.pricing-card h3 {
  font-size: 1rem;
  margin: 3rem 0 2rem;
  font-family: 'Inter', sans-serif;
  text-align: left;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  font-family: 'Inter', sans-serif;
}

.price span {
  font-size: 1rem;
  color: #aaa;
  margin-left: 4px;
  margin: 1rem 0 5rem;
  font-family: 'Inter', sans-serif;
}

.note {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  font-size: 0.95rem;
  color: #eee;
}

.pricing-card ul li {
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.card-bottom {
  margin-top: auto;
  padding-top: 2rem;
}

.subscribe-btn {
  display: inline-block;
  width: 70%;
  padding: 0.50rem 0.75rem;
  background-color: #fff;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.subscribe-btn:hover {
  background-color: #eaeaea;
}

/* Highlighted */
.highlighted .badge {
  background-color: #f5f76f;
  font-family: 'Inter', sans-serif;
  color: #000;
   position: absolute;
  top: 7px;
  left: -15px;
  transform: rotate(-15deg);
}

.highlighted-alt .badge {
  background-color: #c49fff;
  font-family: 'Inter', sans-serif;
  color: #000;
   position: absolute;
  top: 6px;     /* moved to bottom */
  left: -16px;    /* moved to right */
  transform: rotate(15deg);  /* flipped tilt */
}

/* Position badge on top-left instead of center */
.badge {
  position: absolute;
  padding: 0.3rem 0.6rem;
  font-size: 0.70rem;
  border-radius: 999px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.highlighted,
.highlighted-alt {
  border: 2px solid #333;
}

.pricing-circle-wrap {
  position: absolute;
  left: -100px;
  /* ⬅️ changed from right to left */
  top: 25%;
  transform: translateY(-50%);
  width: 250px;
  height: 250px;
  animation: spin 12s linear infinite;
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
}

.pricing-circle-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Spin Animation */
@keyframes spin {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }

  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}


/* Responsive */
@media (max-width: 768px) {
  .pricing-steps {
    flex-direction: column;
    gap: 1rem;
    align-items: center;     /* center the whole steps group */
  }

  .pricing-steps div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 300px;         /* limit the width so it's centered */
    text-align: left;
    gap: 0.5rem;              /* space between number and text */
    font-size: 1rem;
  }

  .pricing-steps div span {
    display: inline-block;
    font-weight: bold;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
  }

  .pricing-heading {
    font-size: 2.2rem;
  }

  .pricing-circle-wrap { 
    width: 130px;
    height: 130px;
    left: -80px;
  }
}



/* Wrap the FAQ section with a black background */
.faq-wrapper {
  background-color: #000;
  padding: 60px 0;
  font-family: "inter", sans-serif;
  /* space around the white container */
}

.faq-container {
  max-width: 1200px;
  background-color: #ffffff;
  margin: 50px auto;
  padding: 50px;
  border-radius: 25px;
  display: flex;
  flex-wrap: wrap;
  font-family: "inter", sans-serif;
  gap: 40px;
}

.faq-left {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  font-family: "inter", sans-serif;
  justify-content: space-between;
}

/* Header without <br> — split with line-height */
.faq-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  font-family: "inter", sans-serif;
  margin-bottom: 30px;
}

/* Push p + button to the bottom */
.faq-footer {
  margin-top: auto;
}

.faq-footer p {
  font-size: 16px;
  margin-bottom: 20px;
  font-family: "inter", sans-serif;
  font-weight: 400px;
}

.faq-footer button {
  background-color: #000;
  color: #fff;
  padding: 15px 25px;
  border: none;
  border-radius: 30px;
  font-family: "inter", sans-serif;
  cursor: pointer;
}


.faq-right {
  flex: 2;
  min-width: 300px;
}

.faq-item {
  border-top: 1px solid #ccc;
  padding: 15px 0;
  cursor: pointer;
}

.faq-item:last-child {
  border-bottom: 1px solid #ccc;
}

.faq-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question {
  font-size: 16px;
  font-family: "inter", sans-serif;
}

.faq-icon {
  font-weight: bold;
  color: #adff2f;
  transition: transform 0.3s ease;
}

/* Hidden by default */
.faq-answer {
  display: none;
  font-family: "inter", sans-serif;
  padding-top: 10px;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

/* Show when open */
.faq-item.open .faq-answer {
  display: block;
}

/* Icon rotates */
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: #000;
}


.faq-icon {
  font-weight: bold;
  color: #adff2f;
  /* neon green */
}