
  /* Reset and box sizing */
  *, *::before, *::after {
    box-sizing: border-box;
  }
  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100vw;
    font-family: 'Bricolage Grotesque';
    background:#f9f9f9;
    color: #1a1a1a;
  }

  /* NAVBAR */
  nav {
    width: 100%;
    padding: 16px 40px;
    background: #fff;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 1000;
  }
  nav .logo {
    display: flex;
    align-items: center;
  }
  nav .logo img {
    height: 40px;
    width: auto;
  }
  nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0 auto;
    flex: 1;
    justify-content: center;
  }
  nav ul li a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 16px;
  }
  nav ul li a:hover {
    color: #000;
  }
  nav .btn-group {
    display: flex;
    gap: 12px;
}

button.creator-btn,
a.brand-btn {   /* <-- include <a> here */
    cursor: pointer;
    border-radius: 9999px;
    font-weight: 600;
    padding: 10px 22px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;  /* <a> se underline hatao */
    display: inline-block;  /* <a> ko button jaisa banao */
}

button.creator-btn {
    background: #000;
    color: #fff;
    border: none;
}

a.brand-btn {    /* <-- <a> specific selector */
    background: #fff;
    color: #000;
    border: 1px solid #ccc;
}

button.creator-btn:hover,
a.brand-btn:hover {
    opacity: 0.85;
    background: #000;
    color: #fff;
}

  button.brand-btn {
    background: #fff;
    color: #000;
    border: 1px solid #ccc;
  }
  button.brand-btn {
    background: #fff;
    color: #000;
    border: 1px solid #ccc;
}

  button.creator-btn:hover,
  button.brand-btn:hover {
    opacity: 0.85;
    background: #000;
    color: #fff;
  }

  /* Hamburger menu - hidden desktop */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  .hamburger span {
    width: 24px;
    height: 2px;
    background: #000;
    display: block;
  }

  /* MOBILE STYLES */
  @media (max-width: 768px) {
    nav {
      flex-direction: column;
      align-items: flex-start;
      padding: 12px 20px;
      justify-content: center;
      gap: 12px;
    }
    .nav-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }
    nav .logo {
      margin-bottom: 8px;
    }
    .hamburger {
      display: flex;
    }
    nav ul,
    nav .btn-group {
      display: none;
      flex-direction: column;
      align-items: center;
      width: 100%;
      background: #fff;
      gap: 18px;
      padding: 18px 0 24px;
      border-top: 1px solid #eee;
    }
    nav.active ul,
    nav.active .btn-group {
      display: flex;
    }
    nav ul {
      justify-content: center;
    }
    .btn-group button {
      width: auto;
    }
    nav ul li {
      font-size: 14px;
    }
    button.creator-btn,
    button.brand-btn {
      padding: 8px 20px;
      font-size: 12px;
    }
  }

  /* HERO SECTION */
 /* ======= Desktop styles as you provided ======= */
/* (No change here, exact as you gave) */

header {
  width: 100vw;
  background-color: #f9f9f9;
  padding: 30px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}
header > div.container {
  max-width: 1100px;
  background-color: #f9f9f9;
  width: 100%;
  padding: 0 24px;
  box-sizing: border-box;
  text-align: center;
}
.badge-yellow {
  display: inline-block;
  background-color: #fff1b8;
  color: #b8870bdd;
  font-weight: 600;
  font-size: 25px;
  padding: 5px 16px;
  border-radius: 16px;
  margin-bottom: 4px; /* tighter than before */
  user-select: none;
}

h1.hero-heading {
  font-weight: 400;
  font-size: 70px; /* slightly smaller */
  line-height:0.9;
  color: #000;
  margin: 0 0 4px 0; /* minimal gap */
}

h1.hero-heading span {
  font-weight: 700;
  margin: 0; /* no extra margin */
}

p.hero-subtitle {
  font-weight: 400;
  font-size: 25px;
  line-height: 1.25;
  margin: 0;
  color: #000;
  max-width: 720px;
  text-align: center;
  margin: 0 auto 4px auto; /* minimal spacing */
}



@media (max-width: 600px) {
  p.hero-subtitle {
    text-align: left;
    padding: 0 16px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* Hero Buttons - stacked vertically on all devices */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 10px auto 50px;
  justify-content: center;
  align-items: center;
  max-width: 480px;
  padding: 0;
}

.hero-buttons button {
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 36px;
  padding: 14px 32px;
  border: none;
  position: relative;
  z-index: 1;
  min-width: 210px;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 40px;
  margin-bottom: 40px;
  box-sizing: border-box;
}

.btn-primary {
  background-color: #aa7ff5;
  color: #fff;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  background-color: rgba(186, 33, 33, 0.12);
  border-radius: 36px;
  z-index: -1;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #9069db;
  outline: none;
}

.btn-secondary {
  background-color: #fff !important;
  color: #000 !important;
  border: 0.5px solid #000 !important;
  font-weight: 600;
  min-width: 120px;
  padding: 10px 20px;
  border-radius: 36px;
  box-sizing: border-box;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #000;
  color: #fff;
  outline: none;
}

/* === Responsive Styles === */
@media (max-width: 600px) {
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    margin: 20px auto;
    padding: 0 16px;
  }

  .hero-buttons button {
    width: 100%;
    font-size: 14px;
    padding: 12px 24px;
    min-width: auto;
    margin-top: 16px;
    margin-bottom: 0;
  }
}






 



  /* Why Join Section */
  section.why-join {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 60px;
    background: #fff;
    border-radius: 60px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    box-sizing: border-box;
  }
  .why-join-left {
    flex: 1 1 50%;
    max-width: 600px;
  }
  .why-join-left h2 {
    font-weight: 400;
    font-size: 48px;
    margin-bottom: 12px;
    line-height: 1.1;
    color: #000;
  }
  .why-join-left strong {
    font-weight: 700;
    color: #E44438;
  }
  .why-join-desc {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #222;
  }
  .why-join-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .why-join-buttons button {
    border-radius: 30px;
    border: 1.5px solid #222;
    background: transparent;
    font-size: 15px;
    padding: 14px 40px;
    cursor: pointer;
    font-weight: 400;
    color: #222;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    user-select: none;
    transition: background-color 0.3s, color 0.3s;
  }
  .why-join-buttons button span {
    font-weight: 900;
    font-size: 20px;
    line-height: 1;
    display: inline-block;
    transform: translateX(0);
    transition: transform 0.3s;
  }
  .why-join-buttons button:hover {
    background-color: #222;
    color: #fff;
  }
  .why-join-buttons button:hover span {
    transform: translateX(6px);
  }
  .why-join-right {
    flex: 1 1 40%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 90px;
    position: relative;
  }
  .approach-btn {
    background-color: #e0e0e0;
    border-radius: 30px;
    padding: 8px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    color: #444;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top:10px;
    user-select: none;
    position: absolute;
    top: 0;
    right: 0;
    transition: background-color 0.3s;
  }
  .approach-btn span {
    font-weight: 900;
    font-size: 5px;
    display: inline-block;
    transform: translateX(0);
    transition: transform 0.3s;
  }
  .approach-btn:hover {
    background-color: #cfcfcf;
  }
  .approach-btn:hover span {
    transform: translateX(6px);
  }
  .creators-joined {
    color: #E44438;
    font-weight: 700;
    font-size: 20px;
    margin-left: 333px;
    margin-right:0px;
    margin-top: 50px;
    border-bottom: 3px solid #E44438;
    padding-bottom: 6px;
    user-select: none;
    align-self: flex-start;
  }
  .why-join-right img {
    width: 360px;
    border-radius: 50%;
    object-fit: cover;
    user-select: none;
  }


  @media (max-width: 768px) {
  /* 1. Stack columns */
  section.why-join {
    flex-direction: column;
    padding: 20px 24px;
    gap:10px;
  }

  /* 2. Let each pane fill 100% */
  .why-join-left,
  .why-join-right {
    flex-direction: column;
    align-items: center;
    gap: 20px;             /* center text & buttons */
  }

  /* 3. Tweak typography */
  .why-join-left h2 {
    font-size: 32px;
    line-height: 1.2;
  }
  .why-join-desc {
    font-size: 16px;
    margin-bottom: 24px;
  }

  /* 4. Make feature buttons full-width */
  .why-join-buttons {
    gap: 12px;
  }
  .why-join-buttons button {
    width: 100%;
    justify-content: center;
    padding: 12px 0;
  }

  /* 5. Reposition the approach-button */
  .approach-btn {
    position: relative;
    margin-right:00px;
    top: auto;
    right: auto;
    margin: 0 auto 16px;
  }
  .approach-btn span {
    transform: translateX(4px);
  }

  /* 6. Center the “creators joined” underline */
  .creators-joined {
     margin: 0;       /* no extra top/bottom margin */
    padding-bottom: 6px;
  }

  /* 7. Scale down the circle image */
  .why-join-right img {
    width: 200px;
    margin: 0 auto;
  }
}





  /* Testimonial Section */
 body {
  background: #f9f9f9;
}
.testimonial-wrapper {
  max-width: 960px;
  margin: 80px auto 0;
  font-family: 'Bricolage Grotesque', sans-serif !important;
  text-align: center;
  position: relative;
  padding: 0 40px 80px;
}
.testimonial-container {
  background: #fff;
  border-radius: 24px;
  padding: 40px 80px 80px;
  box-shadow: 0 8px 40px rgb(0 0 0 / 0.05);
  position: relative;
  overflow: visible;
}
.testimonial-heading {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 56px;
  line-height: 1.2;
  color: #111;
}
.testimonial-cards {
  display: flex;
  justify-content: center;
  gap: 70px;
  position: relative;
  min-height: 340px;
}
.card {
  background: white;
  border-radius: 20px;
  padding: 28px 24px 36px;
  box-shadow: 0 6px 24px rgb(0 0 0 / 0.12);
  max-width: 40%;
  flex-shrink: 0;
  color: #222;
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(.32,2,.55,.27), box-shadow 0.3s;
  opacity: 0.65;
  filter: blur(0.5px);
  pointer-events: none;
  /* Hide inactive cards from tab order */
}
.card-center {
  transform: none;
  box-shadow: 0 10px 32px rgb(0 0 0 / 0.18);
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  filter: none;
}
.card-left {
  transform: rotate(-18deg) translateX(-40px) scale(0.95);
  margin-left: -90px;
  z-index: 0;
}
.card-right {
  transform: rotate(18deg) translateX(40px) scale(0.95);
  margin-right: -90px;
  z-index: 0;
}
.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin: 0 auto 14px;
}
.name {
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 6px;
}
.name strong {
  font-weight: 900;
}
.company {
  font-size: 13px;
  color: #888;
  margin-bottom: 18px;
}
.stars {
  color: #ff5a2a;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}
.rating {
  font-weight: 500;
  color: #222;
  margin-left: 6px;
  font-size: 16px;
}
.testimonial-text {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}
.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.testimonial-controls button {
  background: white;
  border: 2px solid #222;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  color: #222;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s, color 0.3s;
}
.testimonial-controls button:hover {
  background-color: #222;
  color: white;
}
.dots {
  display: flex;
  gap: 14px;
}
.dot {
  width: 14px;
  height: 14px;
  background: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.dot.active {
  background: #222;
}
/* Mobile tweaks */
@media (max-width: 768px) {
  .testimonial-wrapper {
    padding: 0 8px 40px;
  }
  .testimonial-container {
    padding: 22px 5px 38px;
  }
  .testimonial-cards {
    position: relative;
    gap: 0;
    min-height: 0;
  }
  .card {
    display: none;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 20px;
    transform: none !important;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    opacity: 1 !important;
    pointer-events: auto;
    filter: none;
  }
  .card.active, .card-center {
    display: block;
    z-index: 3;
  }
  .card-left,
  .card-right {
    display: none !important;
  }
  .testimonial-heading {
    font-size: 22px;
    margin-bottom: 32px;
    line-height: 1.3;
  }
  .testimonial-text {
    font-size: 14px;
    line-height: 1.5;
  }
  .avatar {
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
  }
  .testimonial-controls {
    margin-top: 20px;
    gap: 12px;
  }
  .testimonial-controls button {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
  .dots {
    gap: 8px;
  }
  .dot {
    width: 10px;
    height: 10px;
  }
}



  /* Process Steps */
  .process-steps {
  max-width: 880px;
  margin: 60px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px 32px;
  font-family: 'Bricolage Grotesque', sans-serif !important;  position: relative;
  background: transparent;
  z-index: 1;
}

/* 2. Card style */
.step {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #fff;
  border-radius: 24px;
  min-height: 420px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 32px 30px 28px 30px;
  position: relative;
  justify-content: flex-start;
  /* Equalize height by letting cards stretch inside the grid */
}
.process-steps .step {
  /* Make all steps equal height in the grid */
  height: 100%;
}

/* 3. Icon and Badge */
.step-icon {
  position: relative;
  width:100%;
  height: 76px;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
}
.step-icon img {
  width:100%;
  height:100%;
  border-radius: 16px;
  object-fit:contain;
  box-shadow: 0 4px 16px rgba(0,0,0,0.11);
}
.video-icon {
  position: absolute;
  top: 2px;
  right: 2px;
  background: #3a86ff;
  color: #fff;
  font-size: 17px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
  border: 2.5px solid #fff;
}

/* 4. Card content with color backgrounds */
.step-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #f8f8fb;
  border-radius: 20px 20px 20px 0;
  padding: 18px 18px 20px 22px;
  box-sizing: border-box;
}
.step-text h3 {
  margin: 0 0 12px 0;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: 0.02em;
}
.step-text ul {
  padding-left: 19px;
  margin: 0;
  font-size: 15px;
  color: #232323;
  line-height: 1.62;
  font-weight: 400;
}
.step-text li {
  margin-bottom: 8px;
  word-break: break-word;
}
.step-text li:last-child {
  margin-bottom: 0;
}
.discovery {
  background: #fef7f2;
}
.discovery h3 { color: #f28c3d; }
.conceptualization {
  background: #d7ebff;
}
.conceptualization h3 { color: #3a86ff; }
.refinement {
  background: #e6d9ff;
}
.refinement h3 { color: #7d44ff; }
.delivery {
  background: #fef7f2;
}
.delivery h3 { color: #f28c3d; }

/* 5. Side notes style */
.side-note {
  position: absolute;
  font-family: 'Indie Flower', cursive;
  font-size: 13.7px;
  opacity: 0.9;
  pointer-events: none;
  max-width: 120px;
  color: #777;
  letter-spacing: 0.01em;
  z-index: 2;
}
.note1 { top: 14px; left: -130px; transform: rotate(-14deg); color: #f28c3d;}
.note2 { top: 14px; right: -130px; transform: rotate(12deg); color: #3a86ff;}
.note3 { bottom: 20px; left: -130px; transform: rotate(14deg); color: #7d44ff;}
.note4 { bottom: 20px; right: -130px; transform: rotate(-14deg); color: #f28c3d;}

/* 6. Responsive design for mobile */
@media (max-width: 900px) {
  .process-steps {
    max-width: 98vw;
    gap: 24px 0;
    padding: 0 4vw;
  }
}
@media (max-width: 768px) {
  .process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 8px;
    margin: 32px auto;
  }
  .step {
    padding: 24px 16px 24px 16px;
    min-height: unset;
    border-radius: 17px;
    max-width: 98vw;
  }
  .step-icon {
    width:100%;
    height:100%;
    object-fit:contain;
    margin-bottom: 12px;
  }
  .step-icon img {
    width:100%;
    height:100%;
    object-fit:contain;
    border-radius: 11px;
  }
  .video-icon {
    width: 19px;
    height: 19px;
    font-size: 12px;
    top: 2px;
    right: 2px;
  }
  .step-text {
    padding: 11px 9px 15px 14px;
    font-size: 13px;
    border-radius: 14px 14px 14px 0;
  }
  .step-text h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .step-text ul {
    font-size: 13px;
    padding-left: 13px;
    line-height: 1.42;
  }
  .side-note {
    position: static;
    transform: none;
    margin-top: 8px;
    text-align: center;
    max-width: 96vw;
    display: block;
    opacity: 0.7;
    font-size: 13px;
    padding-bottom: 2px;
  }
}







  
  /* FAQ Section */
  .faq-section {
    max-width: 900px;
    margin: 80px auto;
    font-family: 'Bricolage Grotesque', sans-serif !important;
    padding: 0 16px;
    text-align: center;
  }
  .faq-section h2 {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 8px;
    color: #111;
  }
  .faq-subtitle {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 48px;
    color: #444;
  }
  .faq-subtitle a.faq-link {
    color: #3a86ff;
    text-decoration: none;
    font-weight: 600;
  }
  .faq-subtitle a.faq-link:hover {
    text-decoration: underline;
  }
  .faq-item {
    max-width: 700px;
    margin: 0 auto 16px;
    text-align: left;
  }
  .faq-question {
    width: 100%;
    background: #f7f8f8;
    border: 1.5px solid #e6e6e6;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: none;
    user-select: none;
    transition: background-color 0.3s ease;
  }
  .faq-question:hover,
  .faq-question:focus {
    background-color: #eef4ff;
    outline: none;
  }
  .faq-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
    user-select: none;
  }
  .faq-arrow {
    margin-left: auto;
    font-size: 18px;
    color: #555;
    user-select: none;
    transition: transform 0.3s ease;
  }
  .faq-question[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
  }
  .faq-answer {
    background: #f7f8f8;
    margin-top: 6px;
    padding: 14px 24px;
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    border-radius: 0 0 10px 10px;
  }

/* Half-Circle Gallery Section */
:root {
  --tile: 160px;
  --arc-h: 620px;
  --pad-b: 280px;
  --h2: 44px;
}
@media (max-width: 680px) {
  :root {
    --tile: 110px;
    --arc-h: 460px;
    --pad-b: 180px;
    --h2: 32px;
  }
}
#ai-footer {
  position: relative;
  overflow: hidden;
  padding: 160px 24px var(--pad-b);
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  color: #000;
}
#ai-footer #arc-list {
  position: relative;
  width: 100%;
  height: var(--arc-h);
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
#ai-footer #arc-list li {
  position: absolute;
  width: var(--tile);
  height: var(--tile);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgb(0 0 0 / 8%);
  transition: transform 0.35s linear;
}
#ai-footer #arc-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#ai-footer .arc-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 600px;
  z-index: 3;
}
#ai-footer h2 {
  font-size: var(--h2);
  line-height: 1;
  font-weight: 700;
  margin: 0 0 20px;
}
#ai-footer .lead {
  font-size: 18px;
  margin: 0 0 36px;
  color: #555;
}
#ai-footer .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width:100%;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 20px 32px;
  border-radius: 28px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.25s ease;
}
#ai-footer .cta-btn:hover {
  background: #333;
}
#ai-footer .feature-grid {
  width:50%;
  margin-top: 80px;
  display: grid;
  gap: 40px 24px;
  text-align: center;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
#ai-footer .feature-grid h4 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
}
#ai-footer .feature-grid p {
  margin: 0;
  font-size: 14px;
  color: #666;
}
@media (max-width: 680px) {
  #ai-footer .feature-grid {
    margin-top: 60px;
  }
}





/* ========================
   ===== HEADER HERO ======
   ======================== */
header {
  width: 100vw;
  background-color: #f9f9f9;
  padding: 30px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}
header > div.container {
  max-width: 1100px;
  background-color: #f9f9f9;
  width: 100%;
  padding: 0 24px;
  box-sizing: border-box;
  text-align: center;
}
.badge-yellow {
  display: inline-block;
  background-color: #fff1b8;
  color: #b8870bdd;
  font-weight: 600;
  font-size: 15px;
  padding: 5px 16px;
  border-radius: 16px;
  margin-bottom: 4px;
  user-select: none;
}
h1.hero-heading {
  font-weight: 400;
  font-size: 60px;
  line-height:0.9;
  color: #000;
  margin: 0 0 4px 0;
}
h1.hero-heading span {
  font-weight: 700;
  margin: 0;
}
p.hero-subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  color: #000;
  max-width: 720px;
  text-align: center;
  margin: 0 auto 4px auto;
}

/* ===========================
   ===== HERO BUTTONS ========
   =========================== */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 10px auto 50px;
  justify-content: center;
  align-items: center;
  max-width: 480px;
  padding: 0;
}
.hero-buttons button {
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 36px;
  padding: 14px 32px;
  border: none;
  position: relative;
  z-index: 1;
  min-width: 210px;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 40px;
  margin-bottom: 40px;
  box-sizing: border-box;
}
.btn-primary {
  background-color: #aa7ff5;
  color: #fff;
}
.outline-blink-btn::after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 36px;
  border: 2.5px solid #aa7ff5;
  z-index: -1;
  pointer-events: none;
  animation: outlineBlink 1.3s cubic-bezier(.68,-0.25,.46,1.25) infinite;
}
@keyframes outlineBlink {
  0%   { opacity: 1; box-shadow: 0 0 0 0 #aa7ff566; }
  35%  { opacity: 0.3; box-shadow: 0 0 0 5px #aa7ff522; }
  60%  { opacity: 1; box-shadow: 0 0 0 0 #aa7ff566; }
  100% { opacity: 1; box-shadow: 0 0 0 0 #aa7ff566; }
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #9069db;
  outline: none;
}
.btn-secondary {
  background-color: #fff !important;
  color: #000 !important;
  border: 0.5px solid #000 !important;
  font-weight: 600;
  min-width: 120px;
  padding: 10px 20px;
  border-radius: 36px;
  box-sizing: border-box;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #000;
  color: #fff;
  outline: none;
}

/* ===========================
   ===== VIDEO CAROUSEL ======
   =========================== */
section.video-carousel {
  position: relative;
  width: 100vw;
  overflow: hidden;
  background: #f9f9f9;
  padding: 0;
  margin-top: 1px;
}
.carousel-track {
  display: flex;
  width: max-content;
  flex-wrap: nowrap; 
  gap: 16px;
   width: calc(2 * 100%); /* makes sure clone + original fit perfectly */
  animation: slideGroup 20s linear infinite;
  will-change: transform;
}
.video-group {
  display: flex;
  gap: 16px;
  flex: 0 0 auto;
}
.video-wrapper {
  width: 180px;
  aspect-ratio: 9 / 16;
  flex-shrink: 0;
  height:90%;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  background: transparent;
  display: flex;
  align-items: stretch;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  transition: transform 0.3s ease;
  cursor: pointer;
  background: #eee;
}

/* ===========================
   ===== FULLSCREEN MODAL ====
   =========================== */
#fullscreen-video {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20,20,20,0.93);
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
}
#fullscreen-video.active {
  display: flex;
}
#fullscreen-video video {
  max-width: 94vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 8px 40px #0008;
  background: #111;
}
#fullscreen-video .close-btn {
  position: absolute;
  top: 32px;
  right: 32px;
  background: rgba(30,30,30,0.85);
  border: none;
  color: #fff;
  font-size: 2.3rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  line-height: 44px;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
#fullscreen-video .close-btn:hover {
  background: #222;
}

/* ===========================
   ===== MOBILE RESPONSIVE ===
   =========================== */
@media (max-width: 600px) {
  /* HEADER / HERO */
  header {
    padding: 18px 0 7vw 0;
  }
  header > div.container {
    padding: 0 5vw;
    max-width: 100vw;
  }
  .badge-yellow {
    font-size: 16.5px;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 8px;
    margin-top: 4px;
    letter-spacing: 0.05em;
    text-align: center;
  }
  h1.hero-heading {
    font-size: 34px;
    line-height: 1.08;
    margin: 0 0 10px 0;
    text-align:center;
    font-weight: 500;
    word-break: break-word;
    letter-spacing: -0.03em;
  }
  h1.hero-heading span {
    font-size: inherit;
    font-weight: 700;
    margin: 0;
    padding: 0 1px;
  }

/* By default, show <br> */
.desktop-break { display: inline; }

/* On mobile, hide all manual breaks! */
@media (max-width: 600px) {
  .desktop-break { display: none; }
  /* Optional: also left align and pad on mobile for best look */
  p.hero-subtitle {
    text-align:center;
    padding-left: 7vw;
    padding-right: 7vw;
    font-size: 15.5px;
    line-height: 1.55;
  }
}


  p.hero-subtitle {
    font-size: 16px;
    line-height: 1.45;
    margin: 0 auto 12px auto;
    padding: 0 4px;
    max-width: 97vw;
    text-align:center !important;
    align-items: center;
    word-break: break-word;
  }

  /* HERO BUTTONS */
  .hero-buttons {
    flex-direction: column;
    gap: 13px;
    margin: 18px auto 30px auto;
    max-width: 98vw;
    padding: 0 2vw;
    align-items: center;
  }
  .hero-buttons button {
    width: 100%;
    font-size: 15px;
    padding: 13px 0;
    min-width: 0;
    margin-top: 8px;
    margin-bottom: 0;
    border-radius: 32px;
    letter-spacing: 0.02em;
  }

  /* VIDEO CAROUSEL */
  section.video-carousel {
    margin-top: 0;
    padding: 0;
    background: #f9f9f9;
    width: 100vw;
    min-height: 110px;
  }
  .carousel-track, .video-group {
    gap: 6.5px;
    width: calc(2 * 100%); /* makes sure clone + original fit perfectly */
    flex: 0 0 auto;
  }
  .video-wrapper {
    width: 70px;
    min-width: 70px;
    max-width: 70px;
    aspect-ratio: 9/16;
    border-radius: 9px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.07);
    margin: 0;
    background: transparent;
    display: flex;
    align-items: stretch;
  }
  .video-wrapper video {
    border-radius: 9px;
    background: #ececec;
    width: 100%;
    height: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    display: block;
  }
  #fullscreen-video video {
    width: 98vw;
    max-height: 74vh;
    border-radius: 9px;
  }
}
@media (max-width:400px) {
  h1.hero-heading { font-size: 27px;}
  .badge-yellow { font-size: 14px;}
  p.hero-subtitle { font-size: 14px;}
  .hero-buttons button { font-size: 13.3px; }
}





.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 10px auto 50px;
  justify-content: center;
  align-items: center;
  max-width: 480px;
  padding: 0;
}

.hero-buttons button {
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 36px;
  padding: 14px 32px;
  border: none;
  position: relative;
  z-index: 1;
  min-width: 210px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-sizing: border-box;
}

.btn-primary {
  background-color: #aa7ff5;
  color: #fff;
}

/* Outline blink animation */
.outline-blink-btn::after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 36px;
  border: 2.5px solid #aa7ff5;
  z-index: -1;
  pointer-events: none;
  /* Blinking outline animation */
  animation: outlineBlink 1.3s cubic-bezier(.68,-0.25,.46,1.25) infinite;
}

@keyframes outlineBlink {
  0%   { opacity: 1; box-shadow: 0 0 0 0 #aa7ff566; }
  35%  { opacity: 0.3; box-shadow: 0 0 0 5px #aa7ff522; }
  60%  { opacity: 1; box-shadow: 0 0 0 0 #aa7ff566; }
  100% { opacity: 1; box-shadow: 0 0 0 0 #aa7ff566; }
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #9069db;
  outline: none;
}

.btn-secondary {
  background-color: #fff !important;
  color: #000 !important;
  border: 0.5px solid #000 !important;
  font-weight: 600;
  min-width: 120px;
  padding: 10px 20px;
  border-radius: 36px;
  box-sizing: border-box;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #000;
  color: #fff;
  outline: none;
}

/* === Responsive Styles === */
@media (max-width: 600px) {
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    margin: 20px auto;
    padding: 0 16px;
  }

  .hero-buttons button {
    width: 100%;
    font-size: 14px;
    padding: 12px 24px;
    min-width: auto;
    margin-top: 16px;
    margin-bottom: 0;
  }
}




    .ugc-header-section {
      width: 100%;
      background: #f9f9f9;
      padding: 50px 30px 10px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .ugc-text {
      flex: 1 1 60%;
      min-width: 240px;
    }

    .ugc-text h2 {
      font-size: 34px;
      font-weight: 600;
      margin: 0;
      color: #000;
      font-family: 'Bricolage Grotesque', sans-serif;
    }

    .ugc-text .pink-text {
      color: #d703ad;
    }

    .ugc-text p {
      font-size: 20px;
      font-weight: 400;
      margin-top: 6px;
      color: #333;
    }

    .ugc-btn-container {
      flex: 1 1 20%;
      min-width: 160px;
      display: flex;
      justify-content: flex-end;
    }

    .ugc-btn {
      background: #e0e0e0;
      color: #333;
      font-weight: 500;
      font-size: 16px;
      padding: 10px 24px;
      border-radius: 999px;
      text-decoration: none;
    }

    /* --- MOBILE: Button left align --- */
    @media (max-width: 680px) {
      .ugc-header-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }

      .ugc-btn-container {
        justify-content: flex-start;
        width: 100%;
      }
    }







    #custom-card-carousel {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      position: relative;
      z-index: 1;
      background: #f9f9f9 !important;
    }
    .carousel-viewport {
      overflow: hidden;
      width: 100vw;
      max-width: 1440px;
      margin: 0 auto;
      background: #f9f9f9 !important;
    }
    .carousel-track {
      display: flex;
      align-items: stretch;
      gap: 36px;
      flex-wrap: nowrap; 
      will-change: transform;
      scroll-behavior: auto;
      background: #f9f9f9 !important;
      scrollbar-width: none;
      width: calc(2 * 100%); /* makes sure clone + original fit perfectly */
      -ms-overflow-style: none;
    }
    .carousel-track::-webkit-scrollbar { display: none; }

    .carousel-card {
      flex: 0 0 325px;
      min-width: 325px;
      max-width: 325px;
      background: #fff;
      border-radius: 22px;
      box-shadow: 0 2px 12px rgba(40,40,60,0.09);
      /* Only vertical padding, NO min-height/height! */
      padding: 34px 27px 20px 27px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 0;
      box-sizing: border-box;
      position: relative;
      transition: box-shadow .18s;
      height: auto !important;
      min-height: 0 !important;
    }
    .carousel-card h3 {
      margin: 0 0 13px 0;
      font-size: 22px;
      font-weight: 700;
      color: #181818;
    }
    .carousel-card p {
      font-size: 16px;
      color: #444;
      font-weight: 400;
      line-height: 1.6;
      margin: 0;
    }
    .carousel-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      margin-bottom: 17px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #1976f2;
    }
    .carousel-icon.blue    { background: #1976f2;}
    .carousel-icon.red     { background: #f44336;}
    .carousel-icon.purple  { background: #7c4dff;}
    .carousel-icon.pink    { background: #d703ad;}
    .carousel-icon img {
      width: 62%;
      height: 62%;
      object-fit: contain;
      display: block;
    }
    /* --- MOBILE RESPONSIVE --- */
    @media (max-width: 900px) {
      .carousel-viewport {
        padding: 0;
        max-width: 100vw;
        min-width: 0;
      }
      .carousel-track { gap: 8vw; }
      .carousel-card {
        flex: 0 0 92vw !important;
        min-width: 92vw !important;
        max-width: 92vw !important;
        padding: 36px 17px 28px 17px;  /* INCREASED mobile padding */
        border-radius: 15px;
        width: calc(2 * 100%); /* makes sure clone + original fit perfectly */
        height: auto !important;
        min-height: 0 !important;
      }
      .carousel-card h3 { font-size: 18.5px; margin-bottom: 13px; }
      .carousel-card p { font-size: 15.5px; }
      .carousel-icon { width: 41px; height: 41px; font-size: 19px; margin-bottom: 14px; }
    }
    .carousel-card:hover { box-shadow: 0 8px 32px rgba(22,80,220,0.14); }
 




section.why-join {
  font-family: 'Bricolage Grotesque', sans-serif !important;
  max-width: 1200px;
  margin: 40px auto 0 auto;
  padding: 2px 22px 22px 22px;
  background: #fff;
  border-radius: 36px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  box-sizing: border-box;
}
.why-join-left {
  flex: 1 1 55%;
  /* max-width: 800px;   UNCOMMENT for more space! */
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.why-join-left h2 {
  font-weight: 400;
  font-size: 32px;
  margin-bottom: 8px;
  line-height: 1.15;
  color: #000;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.why-join-left strong { color: #E44438; font-weight: 700; }
.why-join-desc {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 26px;
  color: #222;
  font-family: 'Bricolage Grotesque', sans-serif;
}

/* --- DYNAMIC GRID: auto-fit, never breaks, always fits pills --- */
.why-join-buttons.pills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px 28px;
  width: 100%;
  align-items: stretch;
}
.why-join-pill {
  border-radius: 28px;
  border: 1.5px solid #222;
  background: #fff;
  font-size: 14px;
  padding: 15px 18px;
  cursor: pointer;
  font-weight: 500;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  user-select: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.17s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
  margin: 0;
  box-shadow: 0 1.5px 7px #0000000b;
  font-family: 'Bricolage Grotesque', sans-serif;
  text-align: center;
}
.why-join-pill span { display: none; }
.why-join-pill:hover, .why-join-pill:focus {
  background: #f5f9ff;
  color: #18324b;
  box-shadow: 0 4px 18px #91b4d820;
  border-color: #4ABCD7;
}

/* MOBILE: stack, wrap */
@media (max-width: 700px) {
  section.why-join {
    flex-direction: column;
    padding: 11px 12px 20px 12px;
    gap: 10px;
    border-radius: 22px;
    margin: 22px 0 0 0;
  }
  .why-join-left,
  .why-join-right {
    align-items: center;
    max-width: 100%;
    min-width: 0;
    width: 100%;
    gap: 10px;
  }
  .why-join-left h2 {
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 5px;
  }
  .why-join-desc {
    font-size: 11.5px;
    margin-bottom: 11px;
    line-height: 1.4;
  }
  .why-join-buttons.pills-grid {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 100%;
  }
  .why-join-pill {
    font-size: 11px;
    padding: 9px 8px;
    border-radius: 13px;
    margin: 0;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    max-width: 100%;
  }
}
.joined-big {
  display: inline-block;
  min-width: 60px; /* enough to fit 4-digit numbers like '3000' */
  text-align: right;
  font-variant-numeric: tabular-nums; /* optional, for equal digit width */
}

#creatorsCount {
  font-family: monospace;
}




.testimonial-heading {
  font-family: inherit;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 1.5em 0;
  letter-spacing: -0.02em;
  width: 100%;
  text-align: center;
}
.trustedby-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.16em; /* Only a tiny gap between items */
}
.animated-num {
  color: #e44438;
  font-weight: 700;
  font-size: 1.2em;
  animation: blinkColor 1.5s infinite;
  font-variant-numeric: tabular-nums;
  min-width: 3ch;
  text-align: center;
  letter-spacing: 0.01em;
  margin: 0 0.04em;
  display: inline-block;
}
.plus-sign {
  font-size: 1.1em;
  font-weight: 700;
  margin-left: 0.02em;
}
@keyframes blinkColor {
  0%   { color: #e44438; }
  40%  { color: #ff715a; }
  60%  { color: #e44438; }
  100% { color: #e44438; }
}
@media (max-width: 600px) {
  .testimonial-heading { font-size: 1.3rem; }
}


.process-steps {
  max-width: 880px;
  margin: 60px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px 32px;
  font-family: 'Bricolage Grotesque', sans-serif !important;
  position: relative;
  background: transparent;
  z-index: 1;
}
.process-steps .step {
  height: 100%;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #fff;
  border-radius: 24px;
  min-height: 420px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 0;
  position: relative;
  justify-content: flex-start;
}
.step-icon.step-img-full {
  width: 100%;
  height: 170px;
  border-radius: 22px 22px 0 0;
  padding: 0;
  overflow: hidden;
  margin: 0;
  position: relative;
}
.step-icon.step-img-full img {
  width: 100% !important;
  height: 100% !important;
  object-fit:fill;
  border-radius: 22px 22px 0 0;
  box-shadow: none;
}
.step-icon .icon-badge {
  position: absolute;
  left: 16px;
  bottom: 12px;
  z-index: 1;
  background: #fff;
  font-size: 20px;
  border-radius: 999px;
  padding: 2px 7px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.11);
  border: 1.5px solid #eee;
}
.step-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #f8f8fb;
  border-radius: 0 0 20px 20px;
  /* Heading/image gap: */
  padding: 8px 18px 20px 22px;
  margin-top: 0;
  box-sizing: border-box;
  text-align: center; /* For button center alignment */
}
.discovery { background: #fef7f2; }
.conceptualization { background: #d7ebff; }
.refinement { background: #e6d9ff; }
.delivery { background: #fef7f2; }
.step-text h3 {
  margin: 0 0 12px 0;
  margin-top:3px;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: 0.02em;
  text-align: left; /* Heading left align, but button center */
  display: block;
}
.discovery h3 { color: #f28c3d; }
.conceptualization h3 { color: #3a86ff; }
.refinement h3 { color: #7d44ff; }
.delivery h3 { color: #f28c3d; }
.step-text ul {
  padding-left: 19px;
  margin-top:2px;
  font-size: 15px;
  color: #232323;
  line-height: 1.62;
  font-weight: 400;
  text-align: left;
  display: block;
}
.step-text li {
  margin-bottom: 8px;
  word-break: break-word;
}
.step-text li:last-child { margin-bottom: 0; }
.view-more-btn {
  display: inline-block;
  margin: 16px 0 0 0;
  padding: 4px 12px; /* ⬅️ Reduced horizontal padding */
  background: #fff;
  border: 1.2px solid #dadada;
  color: #3a86ff;
  font-size: 15px;
  border-radius: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  width: fit-content;  /* ⬅️ Adjusted to fit content */
  transition: background 0.18s, color 0.18s, border 0.18s;
  line-height: 1.2;
  min-width: 0;
  box-shadow: none;
  text-align: center;
}

.view-more-btn:hover {
  background: #e8f1fd;
  color: #222;
  border: 1.2px solid #3a86ff;
}
/* -- Side Notes -- */
.side-note {
  position: absolute;
  font-family: 'Indie Flower', cursive;
  font-size: 13.7px;
  opacity: 0.9;
  pointer-events: none;
  max-width: 120px;
  color: #777;
  letter-spacing: 0.01em;
  z-index: 2;
}
.note1 { top: 14px; left: -130px; transform: rotate(-14deg); color: #f28c3d;}
.note2 { top: 14px; right: -130px; transform: rotate(12deg); color: #3a86ff;}
.note3 { bottom: 20px; left: -130px; transform: rotate(14deg); color: #7d44ff;}
.note4 { bottom: 20px; right: -130px; transform: rotate(-14deg); color: #f28c3d;}
@media (max-width: 900px) {
  .process-steps {
    max-width: 98vw;
    gap: 24px 0;
    padding: 0 4vw;
  }
  .step-icon.step-img-full { height: 120px; border-radius: 15px 15px 0 0;}
  .step-icon.step-img-full img { border-radius: 15px 15px 0 0;}
}
@media (max-width: 768px) {
  .process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 8px;
    margin: 32px auto;
  }
  .step {
    padding: 0;
    min-height: unset;
    border-radius: 17px;
    max-width: 98vw;
  }
  .step-icon.step-img-full { height: 98px; border-radius: 13px 13px 0 0;}
  .step-icon.step-img-full img { border-radius: 13px 13px 0 0;}
  .step-text {
    padding: 8px 9px 15px 14px;
    margin-top: 0;
    border-radius: 0 0 14px 14px;
  }
  .step-text h3 {
    font-size: 16px;
    margin: 0 0 8px 0;
  }
  .step-text ul {
    font-size: 13px;
    padding-left: 13px;
    line-height: 1.42;
  }
  .view-more-btn { font-size: 13.5px; padding: 3px 13px; }
  .side-note {
    position: static;
    transform: none;
    margin-top: 8px;
    text-align: center;
    max-width: 96vw;
    display: block;
    opacity: 0.7;
    font-size: 13px;
    padding-bottom: 2px;
  }
}





/* ========== MOBILE STYLES: ONLY FOR SCREENS ≤ 680px ========== */
@media (max-width: 680px) {
  /* ---------- Root variables for mobile ---------- */
  :root {
    --tile-w: 80px;
    --tile-h: 60px;
    --arc-h: 128px;
    --pad-b: 0px;
    --h2: 15px;
  }

  /* ---------- Main footer section ---------- */
 @media (max-width: 680px) {
  :root {
    --tile-w: 10px;
    --tile-h: 52px;
    --arc-h: 140px;   /* More natural curve height */
    --pad-b: 10px;
    --h2: 16px;
  }

  #ai-footer #arc-list {
    margin-top:-70px;
    height: var(--arc-h);
  }

  #ai-footer #arc-list li {
    width: var(--tile-w);
    height: var(--tile-h);
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    background: #eee;
    transition: transform 0.25s linear;
    margin: 0 !important;
  }

  #ai-footer #arc-list video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    pointer-events: none;
  }
}


  /* ❌ REMOVE THE WHITE ARC OVERLAY FIX */
  #ai-footer #arc-list::after {
    content: none !important; /* ✅ This disables the unwanted white cut */
  }

  /* ---------- Arc-content (the text & button over arc) ---------- */
  #ai-footer .arc-content {
    /* ✅ FIX: Use relative instead of absolute for better layout */
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-top:-80px;

    width: 100vw;
    max-width: 99vw;
    min-width: 0;
    z-index: 3;
    padding: 0 2vw;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  /* ---------- Main heading ---------- */
  #ai-footer h2 {
    font-size: var(--h2);
    line-height: 1.13;
    font-weight: 700;
     margin-top:-10px;
    letter-spacing: -0.5px;
  }

  /* ---------- Subheading ---------- */
  #ai-footer .lead {
    font-size:8px;
    margin: 0 0 11px;
    color: #555;
  }

  /* ---------- CTA Button ---------- */
  #ai-footer .cta-btn {
    width:80vw;
    max-width: 350px;
    min-width: 120px;
    padding: 12px 0;
    margin: 13px auto;
    display: block;
    font-size: 10px;
    border-radius: 20px;
    text-align: center;
    white-space: normal;
    overflow: hidden;
    box-sizing: border-box;
    background: #000;
    color: #fff;
    gap: 7px;
    align-items: center;
    font-weight: 600;
    transition: background 0.25s ease;
  }

  #ai-footer .cta-btn:hover {
    background: #333;
  }

  /* ---------- Feature blocks ---------- */
   @media only screen and (max-width: 767px) {
  .feature-row {
    display: none;
  }
}


  /* ---------- Contact Info ---------- */
  .contact-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:center;
    gap: 0;
    border: 1.3px solid #e3e3e3;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.04);
    padding: 10px 12px;
    margin: 14px 0 5px 0;
    font-size: 10px;
    width:95%;
    margin-left:-10px;
    box-sizing: border-box;
    font-weight: 500;
  }

  .contact-row .info-item {
    font-size: 8px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    display: flex;
  }

  .contact-label,
  .contact-value {
    font-size:10px;
    text-align: left;
    align-items:left;
    justify-content:left;
    margin-top:1px;
    padding: 0;
    display: inline;
  }

  .address-row {
    width: 100%;
    margin-top:10px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin: 8px 0 0 0;
    color: #2a2a2a;
    padding-bottom: 10px;
    justify-content: center;
    display: flex;
    gap: 5px;
  }
}

/* ========== DESKTOP/TABLET STYLES: ONLY FOR SCREENS ≥ 681px ========== */
@media (min-width: 681px) {
  /* ---------- Root variables for desktop ---------- */
  :root {
    --tile-w: 92px;
    --tile-h: 164px;
    --arc-h: 480px;
    --pad-b: 160px;
    --h2: 44px;
  }
  /* ---------- Main footer section ---------- */
  #ai-footer {
    padding: 90px 24px var(--pad-b);
    min-height: unset;
    box-sizing: border-box;
    background-color: #f9f9f9; 
  }
  /* ---------- Arc-list: For video circle arc ---------- */
  #ai-footer #arc-list {
    position: relative;
    width: 100%;
    height: var(--arc-h);
    margin: 0;
    padding: 0;
    list-style: none;
    pointer-events: none;
    user-select: none;
    z-index: 1;
  }
  #ai-footer #arc-list li {
    position: absolute;
    width: var(--tile-w);
    height: var(--tile-h);
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgb(0 0 0 / 8%);
    transition: transform 0.25s linear;
    background: #eee;
    margin: 0 !important;
  }
  #ai-footer #arc-list video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 13px;
    pointer-events: none;
  }
  /* ---------- Arc-content (main center content) ---------- */
  #ai-footer .arc-content {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: 100px;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 600px;
    z-index: 3;
    width: 90vw;
    padding: 0 6vw;
    box-sizing: border-box;
  }
  /* ---------- Main heading (h2) ---------- */
  #ai-footer h2 {
    font-size: var(--h2);
    line-height: 1.13;
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: -0.5px;
  }
  /* ---------- Sub-heading ---------- */
  #ai-footer .lead {
    font-size: 12px;
    margin: 0 0 11px;
    color: #555;
  }
  /* ---------- CTA Button ---------- */
  #ai-footer .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 7px 13px;
    border-radius: 14px;
    font-weight: 600;
    font-size:18px;
    transition: background 0.25s ease;
    margin-bottom: 8px;
    white-space: normal;
  }
  #ai-footer .cta-btn:hover { background: #333; }

  /* ---------- Features section (row of blocks) ---------- */
  .feature-row {
    display: flex;
    flex-direction: row;
    align-items:center;
    justify-content: center;
    gap: 55px;
    margin: 30px 0 0 0;
    width: 100%;
    justify-content: center;
  }
  .feature-block {
    background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,0.03);
  padding: 8px 16px;             /* ⬅️ reduced top-bottom padding */
  min-width: 120px;              /* Optional: smaller button size */
  max-width: fit-content;        /* shrink to content */
  text-align: center;
  border: 1px solid #f3f3f3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  }
  .feature-block h4 {
    margin: 0;
    font-size:16px;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    white-space: nowrap;
  }
  .feature-block p {
    font-size: 15px;
    color: #444;
    margin-bottom: 0;
  }
  /* ---------- Contact info row ---------- */
 
.contact-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px; /* gap between Phone and Email */
  border: 1.5px solid #e3e3e3;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.06);
  padding: 16px 16px;
  margin-top: 30px;
  margin-left:-20px;
  font-size: 17px;
  max-width: 670px;
  width: max-content;
  font-weight: 500;
  justify-content: center;
 }

.info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 17px;
 }

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  width: 22px;
}

.contact-value {
  font-size: 18px;
  color: #1a2a32;
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: 0.01em;
  /* No extra margin */
}

/* Responsive (mobile): stack vertically, center */
@media (max-width: 600px) {
  .contact-row {
    flex-direction: column;
    gap: 15px;
    padding: 13px 16px;
    font-size: 15px;
    max-width: 99vw;
  }
  .info-item {
    font-size: 15px;
    gap: 10px;
  }
  .contact-icon {
    height: 18px;
    width: 18px;
  }
  .contact-value {
    font-size: 15px;
  }
}
  .address-row {
  width: 100vw;
  text-align: left;
  font-size: 20px;           /* 8px bahut chhota hai, 15px is readable */
  font-weight: 600;
  margin-top: 10px;
  color: #232323;
  justify-content: left;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 14px;        /* thoda space from edge */
  padding-top: 5px;
  padding-bottom: 5px;
}
.address-row .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 19px;
  width: 19px;
}
.address-row .contact-value {
  font-size: 20px;
  color: #1a2a32;
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: 0.01em;
  font-weight: 500;
}
}

/* === Video Carousel === */
.video-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f9f9f9;
}

.carousel-track {
  display: flex;
  flex-wrap: nowrap;        /* <<< FIXED: never wrap to next line */
  animation: scroll 20s linear infinite;
  gap:4px;                  /* <<< no gap between videos */
  padding: 0;
  margin: 0;
}

.video-wrapper {
  flex: 0 0 auto;
  width: 180px;
 
  margin-right: 0;         /* <<< no right margin */
  border-radius: 16px;
  overflow: hidden;
 }

.video-wrapper video {
  width: 100%;
   flex: 0 0 auto;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

/* Hover pause on desktop */
 

/* Fullscreen modal */
#fullscreen-video {
  display: none;
  position: fixed;
  inset: 0;
 
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#fullscreen-video.active {
  display: flex;
}

#fullscreen-video video {
  width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
}

/* Animation keyframe */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Mobile responsive */
@media (max-width: 600px) {
  .video-wrapper {
    width: 100px;
    margin-right: 0;
    border-radius: 12px;
  }

  #fullscreen-video video {
    width: 98vw;
    max-height: 75vh;
  }
}

/* Desktop large screens */
@media (min-width: 1024px) {
  .video-wrapper {
    width: 220px;
    flex: 0 0 auto;
    margin-right: 0;
  }
}
