:root {
  --primary-color: #0165f6;
  --secondary-color: #182844;
  --text-light: #ffffff;
  --text-dark: #1a1a1a;
  --text-gray: #6b7280;
  --background-light: #ffffff;
  --background-dark: linear-gradient(135deg, var(--secondary-color) 0%, #3d465f 100%);
  --grey-bg: #e5e7eb;
  --accent-gradient: linear-gradient(135deg, var(--primary-color), #0052cc);

  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  font-weight: 400;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body {
  margin: 0;
  background-color: var(--background-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo a:hover {
  opacity: 0.8;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

/* NAVIGATION MENU */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu > li {
  position: relative;
}

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 1rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  z-index: 100;
}



.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  font-weight: 400;
  transition: background 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(1, 101, 246, 0.1);
  color: var(--primary-color);
}

/* CTA BUTTON */
.cta-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.2s ease;
  display: inline-block;
}

.cta-btn:hover {
  background: #0052cc;
  transform: translateY(-1px);
}

/* NAV ACTIONS */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hide mobile CTA on desktop */
.mobile-cta {
  display: none;
}

/* MOBILE STYLES */
@media (max-width: 992px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }

  .logo-img {
    height: 28px;
  }

  /* Show hamburger */
  .mobile-menu-toggle {
    display: flex;
  }

  .desktop-only {
    display: none;
  }

  /* Mobile menu container */
  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
  }

  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-menu > li:last-child {
    border-bottom: none;
  }

  .nav-menu > li > a {
    display: block;
    padding: 1rem 0;
    font-weight: 600;
    font-size: 1rem;
  }

  /* MOBILE DROPDOWN */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(1, 101, 246, 0.03);
    padding: 0;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .dropdown.open .dropdown-menu {
    max-height: 500px;
    padding: 0.5rem 0;
  }

  .dropdown-menu li {
    padding-left: 1rem;
    border-bottom: none;
  }

  .dropdown-menu a {
    padding: 0.7rem 0;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-gray);
  }

  .dropdown-menu a:hover {
    background: transparent;
    color: var(--primary-color);
  }



  /* Mobile CTA */
  .mobile-cta {
    display: block;
    margin-top: 1rem;
    border-bottom: none;
  }

  .mobile-cta .cta-btn {
    color:#fff;
    width: 100%;
    text-align: center;
    padding: 0.9rem;
    display: block;
  }
}

/* DESKTOP DROPDOWN (hover only on desktop) */
@media (min-width: 993px) {
  .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}


@media (max-width: 768px) {
  .nav-container {
    padding: 0.875rem 1rem;
  }

  .logo-img {
    height: 26px;
  }

  .nav-menu {
    top: 55px;
    max-height: calc(100vh - 55px);
  }
}

.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  margin-top: 70px;
  position: relative;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.circle-large,
.circle-medium,
.circle-small {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 15s infinite ease-in-out;
}

.circle-large {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--primary-color), transparent);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.circle-medium {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--secondary-color), transparent);
  bottom: -100px;
  left: -100px;
  animation-delay: 3s;
}

.circle-small {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-color), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 6s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.05);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(40px, 10px) scale(1.02);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.title-line {
  display: block;
}

.title-line:nth-child(1) {
  animation-delay: 0.2s;
}

.title-line:nth-child(2) {
  animation-delay: 0.4s;
}

.title-line:nth-child(3) {
  animation-delay: 0.6s;
}

.highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.8s;
}

.cta-button {
  display: inline-block;
  background: var(--accent-gradient);
  color: var(--text-light);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 1s;
  box-shadow: 0 10px 30px rgba(1, 101, 246, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(1, 101, 246, 0.4);
}



.problem-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
}

.gradient-orb.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #0165F6, transparent);
  top: -20%;
  right: -10%;
  animation: float 25s infinite ease-in-out;
}

.gradient-orb.orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #FF4444, transparent);
  bottom: -15%;
  left: -10%;
  animation: float 30s infinite ease-in-out;
  animation-delay: 7s;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.problem-content {
  animation: slideInLeft 0.8s ease forwards;
}

.problem-visual {
  animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(30px, -30px);
  }
  66% {
    transform: translate(-20px, 20px);
  }
}

@media(max-width:552px){
  .hero{
    margin-top: 60px;
  }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.problem-illustration {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(1, 101, 246, 0.15));
}

/* Bar animations */
.bar {
  transform-origin: bottom center;
  animation: barDecline 2.5s ease-in-out infinite;
}

.bar-1 {
  animation-delay: 0s;
}

.bar-2 {
  animation-delay: 0.2s;
}

.bar-3 {
  animation-delay: 0.4s;
}

.bar-4 {
  animation-delay: 0.6s;
}

.bar-5 {
  animation-delay: 0.8s;
}

@keyframes barDecline {
  0%, 100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.7;
    transform: scaleY(0.9);
  }
}

/* Trend line animation */
.trend-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawTrend 3s ease-in-out infinite;
}

@keyframes drawTrend {
  0%, 10% {
    stroke-dashoffset: 200;
  }
  50% {
    stroke-dashoffset: 0;
  }
  90%, 100% {
    stroke-dashoffset: 0;
  }
}

/* Warning icon pulse */
.warning-icon {
  animation: warningPulse 1.5s ease-in-out infinite;
}

@keyframes warningPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Audience particles escaping */
.particle {
  animation: particleEscape 2s ease-in-out infinite;
  transform-origin: center bottom;
}

.particle-1 {
  animation-delay: 0s;
}

.particle-2 {
  animation-delay: 0.3s;
}

.particle-3 {
  animation-delay: 0.6s;
}

.particle-4 {
  animation-delay: 0.9s;
}

.particle-5 {
  animation-delay: 1.2s;
}

@keyframes particleEscape {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-80px) scaleX(0.5);
  }
}

/* Escape arrows */
.arrow {
  animation: arrowFloat 2.5s ease-in-out infinite;
}

.arrow-1 {
  animation-delay: 0s;
}

.arrow-2 {
  animation-delay: 0.4s;
}

.arrow-3 {
  animation-delay: 0.8s;
}

@keyframes arrowFloat {
  0%, 100% {
    opacity: 0;
  }
  20% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.2;
  }
}

/* Pulse effect */
.pulse-effect circle {
  animation: expandPulse 2s ease-out infinite;
}

@keyframes expandPulse {
  0% {
    r: 0;
    opacity: 1;
  }
  100% {
    r: 150;
    opacity: 0;
  }
}

/* Grid animation */
.grid-lines {
  animation: gridShift 8s linear infinite;
}

@keyframes gridShift {
  0% {
    opacity: 0.05;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.05;
  }
}

@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
  }
}

.typing-text {
  position: relative;
  white-space: nowrap;
}

.typing-text::after {
  content: '|';
  margin-left: 6px;
  opacity: 1;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}



.partners-title {
  text-align: center;
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeIn 0.8s ease forwards;
  position: relative;
  z-index: 1;
}







/* SECTION */
.brands-section {
  padding: 48px 0;
  overflow: hidden;
  position: relative;
  background: transparent;
}

/* Title */
.partners-title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: #6b7280; /* subtle grey */
  margin-bottom: 32px;
}

/* MARQUEE */
.brands-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* TRACK */
.brands-track {
  display: flex;
  gap: 20px;
  align-items: center;
  width: max-content;
  animation: scroll 45s linear infinite;
}

/* ITEM (NO BOXES) */
.brand-item {
  flex: 0 0 auto;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LOGO WRAPPER */
.brand-logo {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LOGO IMAGE */
.brand-logo img {
  height: 100%;
  width: auto;
  max-width: 140px;
  object-fit: contain;

  /* GREY MODE */
  filter: grayscale(100%) brightness(0.9);
  opacity: 0.55;

  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.brand-item:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.05);
}

/* PAUSE ON HOVER */
.brands-track:hover {
  animation-play-state: paused;
}

/* ANIMATION */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .brand-item {
    padding: 0 28px;
  }

  .brand-logo {
    height: 36px;
  }

  .partners-title {
    font-size: 1rem;
  }
}






.offer-section {
  padding: 64px 0;
  background: linear-gradient(135deg, #ffffff 0%, rgba(1, 101, 246, 0.03) 100%);
  position: relative;
  overflow: hidden;
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.7;
}


.offer-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(1, 101, 246, 0.07), transparent);
  border-radius: 50%;
  animation: float 25s infinite ease-in-out reverse;
}

.offer-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(24, 40, 68, 0.05), transparent);
  border-radius: 50%;
  animation: float 30s infinite ease-in-out;
}

.offer-swiper {
  margin-top: 4rem;
  position: relative;
}

.swiper-slide {
  height: auto;
}

/* Navigation buttons */
.offer-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 2rem;
}

.offer-prev,
.offer-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(1, 101, 246, 0.2);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.offer-prev:hover,
.offer-next:hover {
  background: var(--primary-color);
  color: #fff;
}


.offer-card {
  padding: 2.5rem;
  background: white;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid rgba(1, 101, 246, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(1, 101, 246, 0.1), transparent);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.offer-card:hover {
  box-shadow: 0 25px 50px rgba(1, 101, 246, 0.15);
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #ffffff 0%, rgba(1, 101, 246, 0.05) 100%);
}

.offer-card:hover::before {
  top: -25%;
  right: -25%;
}

.offer-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  animation: bounce 2s ease-in-out infinite;
}

.offer-card:nth-child(1) .offer-icon {
  animation-delay: 0s;
}

.offer-card:nth-child(2) .offer-icon {
  animation-delay: 0.2s;
}

.offer-card:nth-child(3) .offer-icon {
  animation-delay: 0.4s;
}

.offer-card:nth-child(4) .offer-icon {
  animation-delay: 0.6s;
}

.offer-card:nth-child(5) .offer-icon {
  animation-delay: 0.8s;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.offer-icon svg {
  width: 100%;
  height: 100%;
}

.offer-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.offer-card p {
  color: var(--text-gray);
  line-height: 1.7;
}






.monetize-section {
  padding: 64px 0;
  background: linear-gradient(
    180deg,
    #f8fafc 0%,
    #ffffff 45%,
    rgba(1, 101, 246, 0.04) 100%
  );
  position: relative;
  overflow: hidden;
}

.monetize-section::before,
.monetize-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.monetize-section::before {
  width: 420px;
  height: 420px;
  background: rgba(1, 101, 246, 0.12);
  top: 10%;
  left: -10%;
}

.monetize-section::after {
  width: 520px;
  height: 520px;
  background: rgba(24, 40, 68, 0.08);
  bottom: -10%;
  right: -10%;
}

/* Header */
.monetize-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 5.5rem;
  position: relative;
  z-index: 1;
}

.monetize-header .section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-top: 1rem;
}

/* Rows */
.monetize-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.monetize-row.reverse {
  direction: rtl;
}

.monetize-row.reverse > * {
  direction: ltr;
}

/* Content panel */
.monetize-content {
  padding: 3.5rem 3rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(1, 101, 246, 0.04)
  );
  border-radius: 24px;
  border: 1px solid rgba(1, 101, 246, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.monetize-content h3 {
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.monetize-content p {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.8;
}

/* Image styling */
.monetize-image {
  position: relative;
}

.monetize-image::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 26px;
  background: linear-gradient(
    135deg,
    rgba(1, 101, 246, 0.25),
    transparent 60%
  );
  z-index: -1;
}

.monetize-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow:
    0 30px 70px rgba(1, 101, 246, 0.18),
    0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Mobile */
@media (max-width: 900px) {
  .monetize-header .section-title {
    font-size: 2.2rem;
  }

  .monetize-row {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4.5rem;
  }

  .monetize-row.reverse {
    direction: ltr;
  }

  .monetize-content {
    padding: 2.5rem 2rem;
    text-align: center;
  }
}




/* Metrics Section */
.metrics-section {
  padding: 40px 0;
  background: var(--secondary-color);
  color: var(--text-light);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.metric-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
  border-color: var(--primary-color);
}

.metric-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  color: var(--primary-color);
}

.metric-icon svg {
  width: 100%;
  height: 100%;
}

.metric-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1;
}

.metric-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.stat {
  text-align: center;
}

.stat h4 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  animation: scaleIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.stat:nth-child(1) h4 {
  animation-delay: 0.5s;
}

.stat:nth-child(2) h4 {
  animation-delay: 0.7s;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.stat p {
  color: var(--text-gray);
  font-size: 1rem;
  font-weight: 500;
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
  padding: 40px 0;
  background: linear-gradient(180deg,#ffffff 0%, #f9fafb 100%);
  text-align: center;
  overflow: hidden;
}

.section-subtitle {
  display:inline-block;
  background: rgba(1,101,246,0.1);
  color: var(--primary-color);
  padding:6px 14px;
  font-size:12px;
  border-radius:20px;
  margin-bottom:15px;
}

.section-title-1 {
  font-size:40px;
  color: var(--secondary-color);
  margin-bottom:50px;
}
.section-title-1 span{
  font-style: italic;
}
.testimonial-wrapper {
  display:flex;
  flex-direction:column;
  gap:30px;
}



.testimonial-track {
  display:flex;
  gap:20px;
  padding: 10px;
  width: max-content;
}

.testimonial-card {
  background: var(--background-light);
  padding:14px;
  width:320px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  text-align:left;
  transition:0.3s;
}

.testimonial-card p {
  font-size:14px;
  color: var(--text-gray);
  margin-bottom:15px;
  line-height:1.6;
}

/* Profile */
.profile{
  display:flex;
  align-items:center;
  margin-bottom:15px;
}

.profile img{
  width:50px;
  height:50px;
  border-radius:50%;
  margin-right:15px;
}

.profile h4{
  font-size:16px;
  color: var(--secondary-color);
}

.profile p{
  font-size:13px;
  color: var(--text-gray);
}


.stars {
  color:#fbbf24;
}

/* Animation */
.scroll-left .testimonial-track {
  animation: scrollLeft 40s linear infinite;
}

/* RIGHT SCROLL */
.scroll-right .testimonial-track {
  animation: scrollRight 40s linear infinite;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Pause on hover */
.testimonial-row:hover .testimonial-track {
  animation-play-state: paused;
}

/* Responsive */
@media(max-width:768px){
  .testimonial-card {
    width:260px;
  }
  .section-title {
    font-size:28px;
  }
}







/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(
    135deg,
    rgba(1, 101, 246, 0.06),
    rgba(99, 102, 241, 0.04)
  );
  padding: 64px 0;
}

.cta-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
  margin-bottom: 40px;
}

.cta-container h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 16px;
}

.cta-container p {
  font-size: 1.05rem;
  color: #6b7280;
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* CTA Buttons */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-primary {
  background: var(--primary-color);
  color: #fff;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(1, 101, 246, 0.35);
}

.cta-secondary {
  border: 2px solid rgba(1, 101, 246, 0.25);
  color: var(--primary-color);
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: rgba(1, 101, 246, 0.08);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .cta-section {
    padding: 70px 20px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 320px;
    margin: auto;
  }
}






.footer {
  background: var(--secondary-color);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  
  flex-direction: column;
}

.footer-column h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--text-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
}
.footer-description {
  max-width: 360px;
  margin: 1rem 0 1.5rem;
  line-height: 1.7;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent-primary);
  transform: translateY(-3px);
}



@media (max-width: 968px) {

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

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

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .offer-card {
    padding: 2rem;
  }

  .snapshot-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat h4 {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 1.75rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
  .problem-section {
  padding: 2rem 0 !important;
  background: linear-gradient(135deg, #ffffff 0%, rgba(1, 101, 246, 0.05) 100%);
  position: relative;
  overflow: hidden;
}
.problem-content{
  text-align: center;
}
}

.problem-section {
  padding:0;
  background: linear-gradient(135deg, #ffffff 0%, rgba(1, 101, 246, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.problem-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
}

.gradient-orb.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #0165F6, transparent);
  top: -20%;
  right: -10%;
  animation: float 25s infinite ease-in-out;
}

.gradient-orb.orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #00ffaa, transparent);
  bottom: -15%;
  left: -10%;
  animation: float 30s infinite ease-in-out;
  animation-delay: 7s;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.problem-content {
  animation: slideInLeft 0.8s ease forwards;
}

.problem-visual {
  animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(30px, -30px);
  }
  66% {
    transform: translate(-20px, 20px);
  }
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.problem-illustration {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(1, 101, 246, 0.15));
}

/* Broadcast hub pulse rings */
.pulse-ring {
  animation: expandPulse 2s ease-out infinite;
}

.ring-1 {
  animation-delay: 0s;
}

.ring-2 {
  animation-delay: 0.4s;
}

.ring-3 {
  animation-delay: 0.8s;
}

@keyframes expandPulse {
  0% {
    r: 35px;
    opacity: 0.8;
  }
  100% {
    r: 90px;
    opacity: 0;
  }
}

/* Mobile device animations */
.mobile-device {
  animation: deviceBounce 3s ease-in-out infinite;
}

.device-1 {
  animation-delay: 0s;
}

.device-2 {
  animation-delay: 0.3s;
}

.device-3 {
  animation-delay: 0.6s;
}

.device-4 {
  animation-delay: 0.9s;
}

.device-5 {
  animation-delay: 1.2s;
}

.device-6 {
  animation-delay: 1.5s;
}

@keyframes deviceBounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.02);
  }
}

/* Device ad content animations */
.device-ad {
  animation: adAppear 1.5s ease infinite;
}

@keyframes adAppear {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Connection lines */
.connect-line {
  animation: lineGlow 2.5s ease-in-out infinite;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 0.4s; }
.line-3 { animation-delay: 0.8s; }
.line-4 { animation-delay: 1.2s; }
.line-5 { animation-delay: 1.6s; }
.line-6 { animation-delay: 2s; }

@keyframes lineGlow {
  0%, 100% {
    opacity: 0.3;
    stroke-width: 2;
  }
  50% {
    opacity: 0.7;
    stroke-width: 2.5;
  }
}

/* Checkmark animations */
.checkmark {
  animation: checkBounce 1.2s ease-in-out infinite;
}

.check-1 { animation-delay: 0.3s; }
.check-2 { animation-delay: 0.7s; }
.check-3 { animation-delay: 1.1s; }
.check-4 { animation-delay: 1.5s; }

@keyframes checkBounce {
  0%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* Data particles */
.data-particle {
  animation: particleFloat 3s ease-in-out infinite;
}

.particle-1 { animation-delay: 0s; }
.particle-2 { animation-delay: 0.6s; }
.particle-3 { animation-delay: 1.2s; }
.particle-4 { animation-delay: 1.8s; }
.particle-5 { animation-delay: 2.4s; }

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-20px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px) scale(0);
  }
}

/* Grid animation */
.grid-lines {
  animation: gridShift 8s linear infinite;
}

@keyframes gridShift {
  0% {
    opacity: 0.05;
  }
  50% {
    opacity: 0.08;
  }
  100% {
    opacity: 0.05;
  }
}

@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-description {
    font-size: 1rem;
  }
}



    .problem-illustration {
      width: 100%;
      height: auto;
    }

    /* Pulse animation for analytics hub */
    @keyframes pulse {
      0%, 100% {
        opacity: 0.3;
        transform: scale(1);
      }
      50% {
        opacity: 0.8;
        transform: scale(1.1);
      }
    }

    .analytics-pulse {
      animation: pulse 2s ease-in-out infinite;
    }

    /* Data flow animation */
    @keyframes dataFlow {
      0% {
        offset-distance: 0%;
        opacity: 0;
      }
      10% {
        opacity: 1;
      }
      90% {
        opacity: 1;
      }
      100% {
        offset-distance: 100%;
        opacity: 0;
      }
    }

    .data-dot-1 {
      animation: dataFlow 3s ease-in-out infinite;
      offset-path: path('M 200 280 Q 150 250 120 150');
    }

    .data-dot-2 {
      animation: dataFlow 3s ease-in-out infinite 0.5s;
      offset-path: path('M 200 280 Q 200 230 200 150');
    }

    .data-dot-3 {
      animation: dataFlow 3s ease-in-out infinite 1s;
      offset-path: path('M 200 280 Q 250 250 300 150');
    }

    .data-dot-4 {
      animation: dataFlow 3s ease-in-out infinite 1.5s;
      offset-path: path('M 200 280 Q 280 220 340 180');
    }

    /* Screen glow effect */
    @keyframes screenGlow {
      0%, 100% {
        opacity: 0.6;
      }
      50% {
        opacity: 1;
      }
    }

    .screen-glow {
      animation: screenGlow 2s ease-in-out infinite;
    }

    /* Metric counter animation */
    @keyframes counterPulse {
      0%, 100% {
        opacity: 0.5;
        transform: translateY(0);
      }
      50% {
        opacity: 1;
        transform: translateY(-2px);
      }
    }

    .metric-item {
      animation: counterPulse 2s ease-in-out infinite;
    }

    .metric-item:nth-child(2) {
      animation-delay: 0.3s;
    }

    .metric-item:nth-child(3) {
      animation-delay: 0.6s;
    }

    /* Ad banner shimmer */
    @keyframes shimmer {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(100%);
      }
    }

    .ad-shimmer {
      animation: shimmer 3s ease-in-out infinite;
    }

    /* Click ripple effect */
    @keyframes ripple {
      0% {
        r: 3;
        opacity: 1;
      }
      100% {
        r: 12;
        opacity: 0;
      }
    }

    .click-ripple {
      animation: ripple 1.5s ease-out infinite;
    }

    /* Revenue arrow animation */
    @keyframes arrowSlide {
      0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
      }
      50% {
        transform: translateY(-3px);
        opacity: 1;
      }
    }

    .revenue-arrow {
      animation: arrowSlide 1.5s ease-in-out infinite;
    }


    .popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.popup-modal {
  background: #fff;
  width: 100%;
  max-width: 720px;
  border-radius: 12px;
  padding: 30px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  border: none;
  background: none;
  cursor: pointer;
}

.popup-title {
  margin-bottom: 20px;
  text-align: center;
}

/* Form layout */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.full-width {
  grid-column: span 2;
}

input, select, textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button[type="submit"] {
  margin-top: 16px;
  width: 100%;
  padding: 12px;
  background: #000;
  color: #fff;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .full-width {
    grid-column: span 1;
  }
}
.footer-newsletter {
  margin-top: 20px;
}

.newsletter-title {
  color: #fff !important;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 10px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  max-width: 320px;
  margin-bottom: 20px;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px;
  color: #333;
  font-size: 14px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #777;
}

.newsletter-btn {
  background: #0165f6 !important;
  border: none;
  width: 20% !important;
  border-radius: 6px;
  color: #111;
  font-size: 14px;
  height: 38px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 0px !important;
}

.newsletter-btn:hover {
  background: #bbcbe2;
}

.success-state {
  display: none;
  color: #0165f6;
  margin-top: 15px;
  font-size: 14px;
}