/* =============================================
   ESTA STUDIO — style.css
   ============================================= */

/* ── RESET & VARIABLES ─────────────────────── */

@font-face {
  font-family: 'Degular';
  src: url('./assets/fonts/Degular-Regular.otf') format('opentype');
  font-weight: 400;
}

@font-face {
  font-family: 'Degular';
  src: url('./assets/fonts/Degular-Semibold.otf') format('opentype');
  font-weight: 600;
}

@font-face {
  font-family: 'Degular';
  src: url('./assets/fonts/Degular-Bold.otf') format('opentype');
  font-weight: 700;
}

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

:root {
  --pink: #FF4D6A;
  --coral: #FF6B35;
  --yellow: #FFD166;
  --dark: #000000;
  --navy: #1A1E3C;
  --white: #FFFFFF;
  --offwhite: #F8F7F4;
  --grey: #E8E6E1;
  --lime: #C8F135;
  --muted: #666666;
  --service-title: #9076FB;
  /* --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif; */
  --font-inter: "Inter", sans-serif;
  --font-head: 'Degular', sans-serif;
  --font-body: "Degular", sans-serif;
  --radius: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--offwhite);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── NAVBAR ────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition);
}

nav.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

.logo-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  line-height: 1;
}

.logo-top {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--dark);
  border: 2px solid var(--dark);
  padding: 1px 7px;
  line-height: 1.15;
}

.logo-bottom {
  font-family: var(--font-head);
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--dark);
  padding-left: 10px;
  margin-top: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: thin;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--pink);
}

.nav-cta {
  background: var(--pink);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background: var(--coral);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--white);
  padding: 24px 6%;
  border-bottom: 1px solid var(--grey);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  flex-direction: column;
  gap: 18px;
  animation: slideDown 0.2s ease;
}

.mobile-menu.open {
  display: flex;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 4px 0;
  border-bottom: 1px solid var(--grey);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* ── HERO ───────────────────────────────────── */
.hero {
  /* min-height: 100vh; */
  background: #111218;
  position: relative;
  overflow: hidden;
  display: flex;

  /* height: 100%; */
  /* align-items: center; */
  /* padding-top: 70px; */
  /* max-width: 1200px; */
  /* margin: 0 auto; */
}

/* Full-bleed background image */
.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  /* object-fit: cover; */

  z-index: 0;
}

.img-space {
  width: 100%;
  display: block;

  opacity: 0;

  position: relative;
  z-index: -999;

  pointer-events: none;
}

.img-space img {
  width: 100%;
  display: block;
  opacity: 0;
  pointer-events: none;
}

.hero-picture {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
}

.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay gradient on left side so text is readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(17, 18, 24, 0.88) 0%,
      rgba(17, 18, 24, 0.75) 38%,
      rgba(17, 18, 24, 0.10) 70%,
      transparent 100%);
  z-index: 1;
}

/* Bottom gradient so stats strip blends */
.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, #111218 0%, transparent 100%);
  z-index: 1;
}

/* Floating decorative shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}

.shape-1 {
  width: 14px;
  height: 14px;
  background: var(--yellow);
  top: 22%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 10px;
  height: 10px;
  background: var(--pink);
  top: 72%;
  left: 48%;
  animation-delay: 2s;
}

.shape-3 {
  width: 18px;
  height: 18px;
  background: var(--lime);
  bottom: 22%;
  right: 6%;
  animation-delay: 1s;
  border-radius: 4px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* .hero-content {
  position: relative;
  z-index: 3;
  padding-top: 80px;
  padding-left: 140px;
  max-width: 640px;
} */

.hero-content {
  position: absolute;
  z-index: 5;
  /* padding-top: 80px;
  padding-left: 140px; */
  max-width: 640px;
  top: 50%;
  /* left:30%; */
  transform: translateY(-50%) !important;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 7px 16px;
  border-radius: 40px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '★';
}

.hero h1 {
  font-family: var(--font-head);
  /* font-size: clamp(2.8rem, 5.5vw, 5rem); */
  font-size: 4em;
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--pink);
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  right: 0;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.hero-sub {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 14px;
}

.hero p {
  color: rgba(255, 255, 255, 0.62);
  font-size: .8rem;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 38px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Scrolling CTA ticker inside hero */
.hero-ticker-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(255, 77, 106, 0.95);
  padding: 12px 0;
  overflow: hidden;
}

.hero-ticker-inner {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: tickerScroll 20s linear infinite;
}

.hero-ticker-inner span {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-ticker-inner span::after {
  content: '◆';
  opacity: 0.5;
  font-size: 0.55rem;
}

.hero {
  position: relative;
  overflow: hidden;
}

/* height holder */
.img-space {
  width: 100%;
  opacity: 0;
  display: block;
  pointer-events: none;
}

/* actual layer */
.hero-media {
  position: absolute;
  inset: 0;
}

/* image */
.hero-bg-img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */

  position: absolute;
  inset: 0;
}

/* content */
.hero-content {
  position: absolute;

  /* image ke andar relative positioning */
  left: 10%;
  top: 50%;

  transform: translateY(-50%);

  z-index: 5;

  max-width: 550px;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* ── BUTTONS ────────────────────────────────── */
.btn-primary {
  background: var(--pink);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 40px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition);
  box-shadow: 0 8px 28px rgba(255, 77, 106, 0.4);
}

.btn-primary:hover {
  background: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 77, 106, 0.5);
}

.btn-ghost {
  color: var(--white);
  padding: 14px 30px;
  border-radius: 40px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  transition: all var(--transition);
  display: inline-block;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;

  height: 38px;
  padding: 0 28px;

  background: #f78b73;
  color: #fff;

  font-size: 11px;
  font-weight: 300;
  font-family: sans-serif;

  text-transform: uppercase;
  text-decoration: none;

  /* exact figma style cut */
  /* clip-path: polygon(
    0 0,
    100% 0,
    calc(100% - 16px) 100%,
    0 100%
  ); */
  clip-path: polygon(30% 0%, 70% 0%, 100% 0, 100% 77%, 93% 100%, 30% 100%, 0 100%, 0 0);


}

.btn-arrow {
  width: 20px;
  height: auto;
  margin-left: 12px;
}

/* .hero-btn::after{
  content: '';
  position: absolute;
  bottom:0;
  right: 0
  ;
} */

/* ── STATS STRIP ────────────────────────────── */
.stats {
  /* background: var(--white); */
  background: transparent;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 900px;
  margin: 30px auto;
}

.stat-item {
  padding: 44px 32px;
  border-right: 1px solid var(--grey);
  transition: background var(--transition);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: var(--offwhite);
}

.stat-label {
  font-size: 10px;
  font-weight: medium;
  letter-spacing: 2.5px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: normal;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}



.stat-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── ABOUT SECTION ──────────────────────────── */
/* ── ABOUT SECTION ──────────────────────────── */

.about {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  /* max-width: 1200px; */
  max-width: 1800px;
  margin: 0 auto;
}

/* LEFT IMAGE */
.about-visual {
  position: absolute;
  left: 0;
  top: 40px;
  width: 48%;
  z-index: 3;
}

.about-visual img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* RIGHT SIDE CONTAINER */
.about-content-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

/* BLUE BOX */
.about-content {
  width: 64%;
  background: #314c82;
  padding: 45px 80px 45px 160px;
  position: relative;
  z-index: 1;
}

.content-box {
  width: 90%;
  margin-left: auto;
}

/* OUTLINE TEXT */
.outline-text {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 28px;
  color: transparent;
  -webkit-text-stroke: 1px #FFFFFF;
  opacity: 0.43;
}

.projects .outline-text {
  font-size: 88px;
  -webkit-text-stroke: 1px #000000;
  /* margin-bottom: -48px; */
  margin-bottom: -35px;
  opacity: 0.32;
  /* letter-spacing: 19px; */

  /* text-align: center; */
}



/* HEADING */
.about-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  line-height: 1.2;
  color: var(--white);
  font-weight: 700;
  max-width: 620px;
  margin-bottom: 22px;
}

/* DESCRIPTION */
.about-content p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 25.2px;
}

/* ── TABLET ───────────────────────── */

@media (max-width: 1024px) {

  .about {
    padding-top: 60px;
  }

  .about-visual {
    position: relative;
    width: 100%;
    top: 0;
  }

  .about-content-container {
    justify-content: center;
  }

  .about-content {
    width: 100%;
    margin-top: -40px;
    padding: 70px 40px;
  }

  .outline-text {
    font-size: 4rem;
  }

  /* .creators-content h2 {
    font-size: 2.5rem !important;
  } */
}

/* ── MOBILE ───────────────────────── */

@media (max-width: 768px) {

  .about {
    padding: 40px 0 60px;
  }

  .about-visual img {
    height: 320px;
    object-fit: cover;
  }

  .about-content {
    margin-top: 0;
    padding: 50px 24px;
  }

  .outline-text {
    font-size: 2.5rem;
    margin-bottom: 18px;
  }

  .about-content h2 {
    font-size: 1.7rem;
    line-height: 1.3;
  }

  .about-content p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}

/* ── SERVICES ───────────────────────────────── */
.services {
  padding: 40px;
  padding-top: 0px;
  /* padding: 100px 6%; */
  background: var(--offwhite);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1px;
}

.section-tag {
  color: var(--service-title);
  font-family: var(--font-head);
  font-size: 46px;
  font-weight: 700;
}

.section-tag::after {
  content: '';
  display: block;
  width: 5%;
  height: 3px;
  background: linear-gradient(90deg,
      #A078EE 0%,
      #0566D9 100%);
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-header h2 em {
  font-style: normal;
  color: var(--pink);
}

.section-header p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 12px auto 0;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  /* border: 1px solid var(--grey); */
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card.pink {
  background: #FFD2F6;
}

.service-card.green {
  background: #D2FB6E;
}

.service-card.sky {
  background: #A2E5FF;
}

.service-card.saffron {
  background: #2CEFBE;
}

.service-card.blue {
  background: #D2D2FF;
}

.service-card.yellow {
  background: #FDFFD2
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
  opacity: 0.04;
}

.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  transition: background var(--transition);

}




.service-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.65;
}

.services-cta {
  text-align: center;
}

/* ── PROJECTS ───────────────────────────────── */


.projects-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.project-text-box {
  position: relative;
  width: max-content;
}

.projects-left h2 {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
}

.projects-left p {
  color: #8E8D8D;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.project-thumb {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  cursor: pointer;
  transition: transform var(--transition);
  position: relative;
}

.project-thumb::after {
  content: '▶';
  position: absolute;
  font-size: 1rem;
  color: var(--white);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.project-thumb:hover {
  transform: scale(1.03);
}

.project-thumb:hover::after {
  opacity: 1;
}

.project-thumb:nth-child(1) {
  background: linear-gradient(135deg, #FFB3BA, #FF8C94);
}

.project-thumb:nth-child(2) {
  background: linear-gradient(135deg, #B5D8FF, #7AB8FF);
}

.project-thumb:nth-child(3) {
  background: linear-gradient(135deg, #B8F0C8, #78D890);
}


.project-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.project-card video {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}


/* ── BRANDS ─────────────────────────────────── */
.brands {
  background: #EFFFCA;
  padding: 64px 6%;
  overflow: hidden;
}

.brands h3 {
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #5A7A00;
  margin-bottom: 40px;
}

.brands-track-wrap {
  overflow: hidden;
}

.brands-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: brandsTicker 22s linear infinite;
  width: max-content;
}


.brands-track:hover {
  animation-play-state: paused;
}

@keyframes brandsTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes brandsTickerReverse {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.brand-item {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #2A4A00;
  white-space: nowrap;
  opacity: 0.7;
  transition: opacity var(--transition);
  padding: 8px 0;
}

.brand-item:hover {
  opacity: 1;
}

/* new brands */
.brands {
  background: #DDF08A;
  padding: 50px 20px;
}

.brands-grid {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(5, 1fr);

  align-items: center;
  justify-items: center;

  /* gap: 55px 70px; */
}

.brands-grid img {
  max-width: 140px;
  width: 100%;
  height: auto;

  object-fit: contain;

  transition: .3s ease;
}

.brands-grid img:hover {
  transform: scale(1.06);
}

/* tablet */

@media(max-width:991px) {

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
  }

}

/* mobile */

@media(max-width:600px) {

  .brands {
    padding: 50px 16px;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 28px;
  }

  .brands-grid img {
    max-width: 120px;
  }

}

/* ── CREATORS ───────────────────────────────── */
.creators {
  padding-top: 50px;
  background: var(--offwhite);
  display: flex;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.creators-img {
  width: 50%;
  border-radius: var(--radius);
}

.creators-img img {
  width: 100%;
}

.creators-content {
  width: 50%;
  padding-right: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.creators-content-box {
  width: 64%;
}

.creators-content h2 {
  font-family: var(--font-head);
  /* font-size: clamp(1.8rem, 3vw, 2.8rem); */
  font-size: 30px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.5px;
  margin-bottom: 0px;
}

.creators-content p {
  color: #8E8D8D;
  font-size: 0.75rem;
  line-height: 1.75;
  margin-bottom: 30px;
}

/* ── COMPARISON ─────────────────────────────── */
.comparison {
  background: var(--dark);
  padding: 50px 0;
  clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%);
}

.comparison .section-header h2 {
  color: var(--white);
  font-size: 36px;
  padding-top: 20px;
}

.comparison .section-header h2 em {
  color: var(--service-title);
}

.comparison .section-header p {
  color: rgba(255, 255, 255, 0.5);
}

.comp-table {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.comp-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  background: rgba(255, 255, 255, 0.04);
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comp-header-item {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.comp-header-item:first-child {
  color: rgba(255, 255, 255, 0.4);
}

.comp-header-item:nth-child(2) {
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

.comp-header-item:nth-child(3) {
  color: var(--pink);
  text-align: center;
}

.comp-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background var(--transition);
  align-items: start;
}

.comp-row:last-child {
  border-bottom: none;
}

.comp-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.comp-feature {
  font-weight: 600;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

.comp-industry {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  line-height: 1.5;
  padding: 0 8px;
}

.comp-esta {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  line-height: 1.5;
  padding: 0 8px;
  position: relative;
}

.comp-esta::before {
  content: '✓';
  position: absolute;
  left: -4px;
  color: var(--lime);
  font-weight: 700;
}

/* ── TICKER STRIP ───────────────────────────── */
.ticker-wrap {
  background: white;
  overflow: hidden;
  padding: 18px 0;
  padding-top: 28px;
}

.ticker {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: brandsTicker 18s linear infinite;
}


.tickerReverse {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: brandsTickerReverse 18s linear infinite;
  margin-top: 12px;
}

.ticker-item {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.ticker-heart {
  width: 230px;
  /* height: 100px; */
}


/* ── FAQ ────────────────────────────────────── */
.faq {
  padding: 80px 6%;
  background: white;
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-intro {
  text-align: center;
  margin-bottom: 48px;
}

.faq-intro h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #575757;
}

.faq-intro h2 span {
  color: #575757;
  font-weight: 500;
}

.faq-intro p {
  color: var(--muted);
  margin-top: 10px;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid var(--grey);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 400;
  font-size: 1rem;
  color: #1B1D1E;
  user-select: none;
  font-family: var(--font-head);
}

.faq-q svg {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: #222222;
}

.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 24px;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 24px 22px;
}

/* ── CONTACT ────────────────────────────────── */
.contact {
  background: #F5F5F5;
  padding: 40px;
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  /* margin-bottom: 10px; */
}


.contact-inner>p {
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 0.75rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  text-align: left;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.fully {
  grid-column: span 2;
}

.form-field.full {
  grid-column: span 2;
  display: flex;
  /* flex-direction: column; */
  align-items: center;
}

.form-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.5px;
}

.form-field input {
  /* border: none; */
  border: 1px solid #ddd;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: transparent;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  border-radius: 20px;
}

/* .form-field input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 77, 106, 0.12);
} */

.form-consent {
  grid-column: span 2;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 16px auto;
}

.form-consent label {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 400;
}

.form-consent input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--pink);
}

.form-submit {
  grid-column: span 2;
}

.form-submit button,
.contact-form button {
  outline: none;
  border: none;
  cursor: pointer;
}

/* .form-submit button {
  width: 100%;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 40px;
  padding: 16px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  box-shadow: 0 8px 28px rgba(255, 77, 106, 0.35);
} */

.form-submit button:hover {
  background: var(--coral);
  transform: translateY(-2px);
}

/* modal style */
/* ── CONTACT MODAL ───────────────────── */

.contact-modal {
  position: fixed;
  inset: 0;

  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;

  transition: .35s ease;
}

.contact-modal.active {
  opacity: 1;
  visibility: visible;
}

.contact-modal-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(6px);
}

.contact-modal-box {
  position: relative;

  width: min(92%, 700px);

  background: #fff;

  border-radius: 24px;

  padding: 40px 34px;

  z-index: 2;

  transform: translateY(30px);
  transition: .35s ease;
}

.contact-modal.active .contact-modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;

  width: 42px;
  height: 42px;

  border: none;
  border-radius: 50%;

  background: #f4f4f4;

  cursor: pointer;

  font-size: 18px;
}

.contact-modal .contact-inner {
  max-width: 100%;
}

.contact-modal .contact-inner h2 {
  margin-bottom: 10px;
}

.contact-modal .contact-inner p {
  margin-bottom: 28px;
}

body.modal-open {
  overflow: hidden;
}

/* mobile */

@media(max-width:768px) {

  .contact-modal-box {
    padding: 32px 20px;
    border-radius: 18px;
  }

}

/* ── FOOTER ─────────────────────────────────── */
footer {
  background: white;
  padding: 48px 6% 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
}

.footer-logo span {
  color: var(--pink);
}

.footer-nav {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--dark);
  font-size: 1rem;
  text-decoration: none;
  transition: color var(--transition);
  font-family: var(--font-head);
}

/* .footer-nav a:hover {
  color: var(--white);
} */

.footer-copy {
  color: var(--dark);
  font-size: 0.78rem;
}

/* ── SCROLL REVEAL ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1166px) {
  .hero-content {
    max-width: 450px;
  }

  .creators {
    /* grid-template-columns: 1fr; */
    gap: 40px;
    padding: 40px 20px;
  }

  .creators-content-box {
    width: 74%;
  }
}

@media (max-width: 1024px) {

  .hero-content {
    max-width: 350px;
  }

  .hero h1 {
    font-size: 2.4em;
  }

  .hero p {
    font-size: .81rem;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(17, 18, 24, 0.92) 0%, rgba(17, 18, 24, 0.7) 50%, rgba(17, 18, 24, 0.3) 100%);
  }

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

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-top: 1px solid var(--grey);
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 320px;
  }

  .about-content {
    padding: 60px 40px;
  }

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

  .projects-inner {
    grid-template-columns: 1fr;
  }

  .projects-left {
    text-align: center;
  }



  .creators-content {
    padding-right: 0;
    text-align: center;
  }

  .creators-content .btn-primary {
    display: inline-block;
  }
}

@media (max-width:991px) {
  .projects-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 1.4rem;
    letter-spacing: -1px;
  }

  .hero p {
    font-size: .75rem;
    margin-bottom: 12px;
  }

  .hero-content {
    padding: 90px 5% 100px 0px;
  }

  .about-content {
    padding: 50px 28px;
  }

  /* .services-grid {
    grid-template-columns: 1fr;
  } */

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

  .creator-thumb:nth-child(2) {
    grid-row: auto;
    aspect-ratio: 3/4;
  }

  .creator-thumb:nth-child(5) {
    grid-column: auto;
    aspect-ratio: 3/4;
  }

  .comp-header {
    display: none;
  }

  .comp-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 20px;
  }

  .comp-industry,
  .comp-esta {
    text-align: left;
    padding: 0;
  }

  .comp-esta::before {
    left: 0;
    position: relative;
    margin-right: 4px;
  }

  .comp-industry::before {
    content: '✗ ';
    color: #FF6B6B;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact {
    padding: 20px;
  }

  .form-field.full,
  .form-consent,
  .form-submit {
    grid-column: span 1;
  }


  .form-field,
  .form-field.full,
  .form-field.fully,
  .form-consent,
  .form-submit {
    grid-column: span 1;
  }

  footer {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }


}

@media (max-width:667px) {
  .creators {
    flex-direction: column;
    text-align: center;
  }

  .creators-img {
    width: 100%;
    border-radius: var(--radius);
  }

  .creators-content {
    width: 100%;
  }

  .creators-content-box {
    width: 90%;
  }

  .comparison {
    clip-path: unset;
  }
}

@media (max-width: 625px) {
  .hero-content {
    padding: 0px;
    max-width: 250px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
  }

  .ticker-item {
    font-size: 1.62rem;
  }

  .ticker-heart {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .about-visual {
    min-height: 260px;
  }

  .about-content::before {
    font-size: 34px;
  }

  .hero-content {
    padding: 0px;
    max-width: 180px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }

  .hero-content p {
    font-size: 0.75rem;
    margin-bottom: 12px;
    line-height: 1;
  }




  .hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 10px;
    font-size: .5rem;
  }

  .service-card {
    padding: 20px 16px;
  }

  .service-icon {
    justify-content: flex-start;
    width: 32px;
    height: 32px;
  }

  .service-icon svg {
    width: 18px;
    height: 18px;
  }

  /* service card */
  .service-card h3 {
    /* font-size: .75rem; */
    margin-bottom: 5px;
    line-height: 1;
  }

  .service-card p {
    /* font-size: 0.7rem; */
    line-height: 1.4;
  }
}



/* data */
/* =========================
   PROJECT SLIDER
========================= */

.projects {
  padding-top: 65px;
  padding-bottom: 50px;
  background: #ffff;
  overflow: hidden;
}

.projects-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;
  gap: 50px;
  max-width: 1400px;
  margin: auto;
  padding-left: 8%;
}

.projects-left {
  position: relative;
  z-index: 2;
}

.project-text-box {
  position: relative;
  margin-bottom: 20px;
}

/* .projects-left .outline-text {
  font-size: 88px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #d5d5d5;
  margin-bottom: -40px;
} */



/* SLIDER */

.projects-slider-wrap {
  overflow: hidden;
}

.projectSwiper {
  overflow: visible !important;
}

.projectSwiper .swiper-slide {
  width: 260px !important;
}

.project-card {
  position: relative;
  /* height: 420px; */
  border-radius: 10px;
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* PLAY BUTTON */

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 2px solid white;
  color: white;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  font-size: 20px;
}

/* NAVIGATION */

.project-nav {
  display: flex;
  gap: 24px;
  margin-top: 26px;
}

.project-prev,
.project-next {
  font-size: 44px;
  cursor: pointer;
  user-select: none;
  transition: .3s;
}

.project-prev:hover,
.project-next:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 991px) {

  .projects-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .projects-left {
    max-width: 100%;
  }

  .projects-left p {
    max-width: 100%;
  }

}


/* ── COMPARISON ────────────────────────── */

.comparison {
  background: #111111;
  padding: 120px 20px 100px;
  position: relative;
  overflow: hidden;
}

.comparison-heading {
  text-align: center;
  margin-bottom: 45px;
}

.comparison-heading h2 {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}

.comparison-heading h2 span {
  color: #8B6CFF;
}

.comparison-table-wrap {
  display: flex;
  justify-content: center;
}

.comparison-table {
  width: 100%;
  max-width: 820px;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;

  /* border-radius: 12px; */
  overflow: hidden;

  background: #fff;
}

.comparison-head {
  padding: 18px 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #111;
}

.comparison-head.workflow {
  background: #d9d9d9;
}

.comparison-head.capabilities {
  background: #ff9c9c;
}

.comparison-head.difference {
  background: #9CF58B;
}

.comparison-cell {
  background: #fff;
  padding: 18px 22px;

  border-right: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;

  font-size: 14px;
  color: #111;

  display: flex;
  align-items: center;
  gap: 10px;

  min-height: 64px;
}

.comparison-cell:nth-child(3n) {
  border-right: none;
}

.icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 11px;
  font-weight: 700;

  flex-shrink: 0;
}

.icon.red {
  background: #ff4d4d;
  color: #fff;
}

.icon.green {
  background: #20c997;
  color: #fff;
}

/* mobile */

/* mobile */

@media(max-width:768px) {

  .comparison {
    padding: 80px 14px;
    overflow: hidden;
  }



  .comparison-heading h2 {
    font-size: 32px;
  }

  .comparison-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;

    display: block;
    /* ye important */
  }

  .comparison-table {
    min-width: 820px;
    margin: 0;
    /* center mat karo */
  }

}

.comparison-table-wrap::-webkit-scrollbar {
  height: 6px;
}

.comparison-table-wrap::-webkit-scrollbar-track {
  background: #2a2a2a;
  border-radius: 20px;
}

.comparison-table-wrap::-webkit-scrollbar-thumb {
  background: #8B6CFF;
  border-radius: 20px;
}

@media (max-width:525px) {
  .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media(max-width:425px) {

  .hero-content {
    position: static;
    margin-top: 130px;
    margin-left: 30px;
    width: 100%;
    max-width: 260px;
  }

}