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

:root {
  --primary-gradient: linear-gradient(135deg, #a872f8 0%, #692ebe 100%);
  --text-primary: #ffffff;
  --text-secondary: #c4b4ca;
  --bg-primary: #030122;
  --bg-secondary: linear-gradient(135deg, #1f1738 0%, #090128 100%);
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --container-padding: 120px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 900;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Responsive Breakpoints */
@media (max-width: 1536px) {
  :root {
    --container-padding: 80px;
  }
}

@media (max-width: 1280px) {
  :root {
    --container-padding: 60px;
  }
}

@media (max-width: 1024px) {
  :root {
    --container-padding: 40px;
  }

  html {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 24px;
  }

  html {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 16px;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(3, 1, 34, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: slideDown 0.8s ease-out;
}

.navbar.navbar--scrolled {
  background-color: rgba(3, 1, 34, 0.95);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px var(--container-padding);
  max-width: 1512px;
  margin: 0 auto;
  position: relative;
}

.logo-icon {
  width: 100%;
  height: 100%;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-menu .nav-list {
  display: flex;
  align-items: center;
  gap: 48px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.mobile-menu-btn span:not(.visually-hidden) {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform-origin: center;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu-btn.active span:not(.visually-hidden):nth-of-type(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .mobile-menu-btn.active span:not(.visually-hidden):nth-of-type(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:not(.visually-hidden):nth-of-type(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

@media (max-width: 1024px) {
  .nav-menu {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: flex;
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    background: none;
    flex-direction: row;
    align-items: center;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav-button {
    padding: 10px 16px;
    font-size: 14px;
  }
}

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 16px;
  color: #777e90;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #a872f8, #692ebe);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.nav-link:hover::before {
  width: 100%;
}

.nav-button {
  padding: 12px 16px;
  border: 2px solid #777e90;
  border-radius: 90px;
  background: transparent;
  color: #fcfcfd;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.nav-button:hover {
  border-color: #a872f8;
  background: linear-gradient(180deg, #a872f8 0%, #692ebe 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(168, 114, 248, 0.3);
}

.nav-button:hover::before {
  left: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: clamp(640px, 95vh, 960px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 32px);
  padding: clamp(112px, 14vw, 160px) var(--container-padding) clamp(64px, 10vw, 120px);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}

.hero-bg-image {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 820px);
  height: auto;
  aspect-ratio: 1;
  opacity: 0.6;
}

@media (max-width: 1280px) {
  .hero {
    min-height: clamp(560px, 90vh, 820px);
    padding: clamp(104px, 12vw, 140px) var(--container-padding) clamp(56px, 8vw, 96px);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 560px;
    padding: 120px var(--container-padding) 72px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 520px;
    padding: 96px var(--container-padding) 64px;
  }
}

.hero-gradient {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(360px, 55vw, 640px);
  height: clamp(460px, 70vw, 820px);
  background: radial-gradient(45.94% 109.79% at 50.1% 90.21%, #7e54ff 0%, #736199 100%);
  opacity: 0.45;
  border-radius: 50%;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.floating-avatar {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0px 0px 54.6px rgba(173, 112, 253, 0.15);
  transition: all 0.3s ease;
}

.avatar-1 {
  width: clamp(40px, 5vw, 65px);
  height: clamp(40px, 5vw, 65px);
  top: 22%;
  left: 35%;
}

.avatar-2 {
  width: clamp(50px, 6vw, 84px);
  height: clamp(50px, 6vw, 84px);
  top: 18%;
  left: 47%;
}

.avatar-3 {
  width: clamp(35px, 4vw, 56px);
  height: clamp(35px, 4vw, 56px);
  top: 64%;
  left: 18%;
}

.avatar-4 {
  width: clamp(45px, 5vw, 69px);
  height: clamp(45px, 5vw, 69px);
  top: 22%;
  right: 36%;
}

.avatar-5 {
  width: clamp(45px, 5vw, 69px);
  height: clamp(45px, 5vw, 69px);
  bottom: 24%;
  right: 19%;
}

@media (max-width: 768px) {
  .floating-avatar {
    display: none;
  }
}

.floating-icon {
  position: absolute;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #302756 0%, #261d71 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 54.6px rgba(173, 112, 253, 0.15);
}

.icon-1 {
  top: 18%;
  left: 20%;
}

.icon-2 {
  top: 24%;
  right: 17%;
  width: clamp(48px, 5vw, 60px);
  height: clamp(48px, 5vw, 60px);
}

.floating-icon img {
  width: 26px;
  height: 26px;
}

.hero-content {
  text-align: center;
  max-width: 868px;
  margin: 0 auto;
  z-index: 1;
  animation: fadeInUp 1s ease-out 0.3s both;
}

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

.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 6.5vw, 60px);
  line-height: 1.15;
  background: linear-gradient(90deg, #a766fd 0%, #ffffff 22.6%, #b775bb 55.29%, #ff5ad3 77.88%, #f5f5f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

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

@keyframes typewriter {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}

.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 3.8vw, 20px);
  line-height: 1.6;
  color: #bca6da;
  margin-bottom: 24px;
}

.hero-button {
  padding: 12px 40px;
  background: linear-gradient(180deg, #a872f8 0%, #692ebe 100%);
  border: none;
  border-radius: 90px;
  color: #fcfcfd;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: pulse 2s infinite;
}

.hero-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.hero-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(168, 114, 248, 0.4);
}

.hero-button:hover::before {
  left: 100%;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(168, 114, 248, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(168, 114, 248, 0);
  }
}

.hero-main-image {
  position: absolute;
  bottom: -45%;
  right: -20%;
  width: clamp(420px, 45vw, 720px);
  height: clamp(420px, 45vw, 720px);
  border-radius: 50%;
  fill: linear-gradient(146deg, #ffcc5f -1.69%, #da90e8 21.2%, #8a81f4 99.97%);
  filter: drop-shadow(10px -30px 60px rgba(102, 37, 255, 0.2)) blur(115px);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(1deg);
  }
  66% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

@keyframes glow {
  from {
    box-shadow: 10px -30px 60px rgba(102, 37, 255, 0.2);
  }
  to {
    box-shadow: 10px -30px 80px rgba(102, 37, 255, 0.4);
  }
}

.problems {
  padding: 100px 0;
  position: relative;
}

.problems-container {
  max-width: 1272px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: clamp(20px, 4vw, 40px);
  align-items: start;
}

@media (max-width: 1024px) {
  .problems-container {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

.problem-card {
  background: linear-gradient(135deg, #1f1738 0%, #090128 100%);
  border-radius: clamp(16px, 2vw, 24px);
  padding: clamp(24px, 4vw, 40px);
  height: fit-content;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(168, 114, 248, 0.1) 0%, rgba(105, 46, 190, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.problem-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(168, 114, 248, 0.2);
}

.problem-card:hover::before {
  opacity: 1;
}

@media (min-width: 1025px) {
  .problem-card:nth-child(2),
  .problem-card:nth-child(4) {
    margin-top: 260px;
  }
}

@media (max-width: 1024px) {
  .problem-card {
    margin-top: 0 !important;
  }

  .problem-card:hover {
    transform: translateY(-5px);
  }
}

.problem-icon {
  width: 56px;
  height: 56px;
  background: #8464c5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.problem-card:hover .problem-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #a872f8, #692ebe);
  box-shadow: 0 5px 15px rgba(168, 114, 248, 0.3);
}

.problem-icon img {
  width: 32px;
  height: 32px;
}

.problem-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 31.2px;
  color: #ffffff;
  margin-bottom: 16px;
}

.problem-description {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #c3bacf;
}

/* Solutions Section */
.solutions {
  padding: 100px 0;
  background-color: #030122;
  overflow: hidden;
}

.solutions-container {
  max-width: 1512px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
}

/* Carousel Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.solutions-content {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.solutions-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  padding-block: clamp(24px, 4vw, 56px);
}

.solutions-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.solutions-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 16.94px;
  color: #ffffff;
}

.solutions-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.3;
  background: linear-gradient(
    135deg,
    #030122 0%,
    #a766fd 10.25%,
    #ffffff 22.6%,
    #ba71ff 55.29%,
    #ff5ad3 74.22%,
    #030122 99.6%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-md);
}

@media (max-width: 768px) {
  .dashboard-mockup {
    margin-top: var(--spacing-xl);
  }
}

.solutions-description {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #c4b4ca;
}

.solutions-apps {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.apps-title {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 19.36px;
  color: #c4b4ca;
}

.app-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.app-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-arrow {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 21.78px;
  color: #c4b4ca;
  width: 17px;
}

.app-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.app-name {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 19.36px;
  color: #c4b4ca;
  text-decoration: none;
}

.app-name:hover {
  color: #b46cceff;
  text-decoration: underline;
}

.dashboard-mockup {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: clamp(16px, 2vw, 24px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.dashboard-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.dashboard-mockup:hover .dashboard-image {
  transform: scale(1.02);
}

@media (max-width: 1024px) {
  .dashboard-mockup {
    max-width: 800px;
    margin: 0 auto;
  }
}

.navigation-arrows {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  justify-content: center;
}

@media (max-width: 768px) {
  .navigation-arrows {
    margin-top: var(--spacing-lg);
  }
}

.floating-avatar-small {
  position: absolute;
  bottom: 200px;
  left: -100px;
  width: 39px;
  height: 39px;
  border-radius: 50%;
}

.floating-avatar-medium {
  position: absolute;
  top: 100px;
  left: -50px;
  width: 59px;
  height: 59px;
  border-radius: 50%;
}

.navigation-arrows {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
}

.nav-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.nav-arrow.prev {
  background: rgba(255, 255, 255, 0.1);
}

.nav-arrow.next {
  background: transparent;
  border: 1px solid;
}

.nav-arrow.active {
  background: linear-gradient(180deg, #a872f8 0%, #692ebe 100%);
  cursor: pointer;
  opacity: 1;
}

.nav-arrow:not(.active) {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  border: 1px solid #777e90;
}

/* Apps Section */
.apps {
  padding: 100px 0;
  background-color: #030122;
}

.apps-container {
  max-width: 1392px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 64px);
}

.apps-header {
  text-align: center;
  margin-bottom: 60px;
}

.apps-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
}

.apps-title-bfcm {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 52px;
  line-height: 66.4px;
  background: linear-gradient(
    135deg,
    #030122 0%,
    #a766fd 10.25%,
    #ffffff 22.6%,
    #ba71ff 55.29%,
    #ff5ad3 74.22%,
    #030122 99.6%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: min(640px, 100%);
  margin: 0 auto;
}

.apps-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: #c4b4ca;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
  padding: 0 var(--spacing-sm);
  position: sticky;
  top: 80px;
  background-color: var(--bg-primary);
  z-index: 100;
  padding: 20px var(--spacing-sm);
}

.tab-button {
  padding: clamp(10px, 2vw, 13px) clamp(16px, 3vw, 26px);
  border: 1px solid #ffffff;
  border-radius: 26px;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
  min-width: min-content;
}

@media (max-width: 768px) {
  .category-tabs {
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
  }

  .tab-button {
    font-size: 16px;
    padding: 8px 16px;
    flex: 1;
    max-width: calc(50% - var(--spacing-xs));
  }
}

.tab-button.active {
  background: linear-gradient(90deg, #ff5ad3 0%, #a766fd 100%);
  border-color: transparent;
}

.tab-button:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
}

.app-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 32px);
  margin-bottom: var(--spacing-lg);
  justify-content: flex-start;
}

.app-card {
  background: linear-gradient(135deg, #1f1738 0%, #090128 100%);
  border: 1px solid rgba(132, 100, 197, 0.06);
  border-radius: clamp(16px, 2vw, 24px);
  padding: clamp(24px, 4vw, 48px) clamp(20px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  flex: 1 1 clamp(280px, 30%, 350px);
  max-width: 350px;
}

.app-card.is-hidden {
  display: none;
}

@media (max-width: 768px) {
  .app-cards-grid {
    width: 100%;
  }

  .app-card {
    flex: 1 1 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: var(--spacing-lg) var(--spacing-md);
  }
}

.app-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(168, 114, 248, 0.15);
  border-color: rgba(168, 114, 248, 0.3);
}

.app-card:hover::before {
  opacity: 1;
}

.app-icon-container {
  width: 53px;
  height: 53px;
  margin-bottom: 16px;
}

.app-icon-bg {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.app-icon-bg img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.app-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  position: relative;
}

.app-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 22px);
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: var(--spacing-xs);
}

.app-category {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.7vw, 16px);
  line-height: 1.5;
  color: var(--text-secondary);
  margin-top: -8px;
  margin-bottom: var(--spacing-sm);
}

.app-description {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.7vw, 16px);
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
}

@media (max-width: 480px) {
  .app-title {
    font-size: 18px;
  }

  .app-category,
  .app-description {
    font-size: 15px;
  }
}

.app-details {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #c3bacf;
}

.app-details .discount-list {
  margin-left: 20px;
  color: #da50a0ff;
  font-weight: 500;
}

.app-details p {
  margin-bottom: 4px;
}

.app-details .discount {
  margin-top: 20px;
}

.app-details .discount span {
  color: #da50a0ff;
  font-weight: 500;
}

.app-code {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.app-code span {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #c3bacf;
}

.app-code span strong {
  color: #da50a0ff;
}

.copy-button {
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-button img {
  width: 14px;
  height: 14px;
}

.app-code {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.app-button {
  padding: 12px 40px;
  border: 2px solid;
  border-radius: 90px;
  background: transparent;
  color: #ac75ff;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.app-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #a872f8 0%, #692ebe 100%);
  transition: left 0.3s ease;
  z-index: -1;
}

.app-button:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(168, 114, 248, 0.3);
}

.app-button:hover::before {
  left: 0;
}

/* Partners Section */
.partners {
  padding: 80px 0;
  background-color: #030122;
}

.partners-container {
  max-width: 1392px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  text-align: center;
}

.partners-title {
  background: linear-gradient(90deg, #a766fd 0%, #ffffff 22.6%, #b775bb 55.29%, #ff5ad3 77.88%, #f5f5f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 51.78px;
  line-height: 61.83px;
  color: #ffffff;
  margin: 0 auto;
  margin-bottom: 60px;
  max-width: min(560px, 90%);
}

.partners-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.partner-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25.8px;
  flex-wrap: wrap;
}

.partner-logo {
  width: clamp(160px, 25vw, 215px);
  height: clamp(48px, 9vw, 60px);
  background: linear-gradient(135deg, #1f1738 0%, #090128 100%);
  border: 1px solid rgba(132, 100, 197, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.partner-logo:hover {
  opacity: 1;
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(168, 114, 248, 0.15);
  border-color: rgba(168, 114, 248, 0.3);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background-color: #030122;
  position: relative;
  overflow: hidden;
}

.cta-bg-image {
  position: absolute;
  top: 60%;
  right: -25%;
  transform: translateY(-50%);
  width: clamp(640px, 80vw, 1042px);
  height: clamp(640px, 80vw, 1042px);
  z-index: -1;
}

.cta-container {
  max-width: 1392px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 1;
}

.cta-content {
  padding: clamp(32px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
  min-height: clamp(280px, 40vw, 420px);
  border-radius: 24px;
  background: linear-gradient(121deg, rgba(31, 23, 56, 0.5) 9.49%, rgba(9, 1, 40, 0.5) 98.42%);
  box-shadow: 0 -2px 2px 0 rgba(255, 255, 255, 0.15) inset, 0 0 30px 2px rgba(255, 255, 255, 0.15) inset,
    0 2px 2px 0 rgba(255, 255, 255, 0.2) inset;
}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cta-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 66.4px;
  font-size: clamp(36px, 4.5vw, 52px);
  color: #ffffff;
  background: linear-gradient(90deg, #a766fd 0%, #ffffff 22.6%, #b775bb 55.29%, #ff5ad3 77.88%, #f5f5f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 2.6vw, 18px);
  color: #ffffff;
}

.cta-button {
  width: auto;
  min-width: 200px;
  transition: all 0.3s ease;
  position: relative;
  padding: 14px 32px;
  overflow: hidden;
  line-height: 1.4;
  font-weight: 500;
  font-size: clamp(18px, 2.4vw, 22px);
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  color: #ffffff;
  border: none;
  border-radius: 9.7px;
  background: linear-gradient(90deg, #5310b4 0%, #a766fd 100%);
  align-self: flex-start;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(83, 16, 180, 0.4);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-placeholder {
  width: 100%;
  min-height: clamp(200px, 35vw, 320px);
}

.cta-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Additional Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-slide-left {
  animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
  animation: slideInRight 0.8s ease-out;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease-out;
}

.animate-bounce-in {
  animation: bounceIn 0.8s ease-out;
}

.stagger-1 {
  animation-delay: 0.1s;
}
.stagger-2 {
  animation-delay: 0.2s;
}
.stagger-3 {
  animation-delay: 0.3s;
}
.stagger-4 {
  animation-delay: 0.4s;
}
.stagger-5 {
  animation-delay: 0.5s;
}
.stagger-6 {
  animation-delay: 0.6s;
}

.floating-avatar,
.floating-icon {
  animation: float 4s ease-in-out infinite;
}

.floating-avatar:nth-child(odd) {
  animation-direction: reverse;
}

.floating-icon:nth-child(even) {
  animation-delay: 2s;
}

.floating-avatar,
.floating-icon {
  opacity: 0;
  animation: fadeIn 1s ease-out 0.5s forwards, float 4s ease-in-out 1s infinite;
}

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

@media (max-width: 1400px) {
  .nav-container {
    padding: 16px 80px;
  }

  .problems-container,
  .solutions-container,
  .apps-container,
  .partners-container,
  .cta-container {
    padding: 0 var(--container-padding);
  }
}

@media (max-width: 1200px) {
  .nav-container {
    padding: 16px 40px;
  }

  .problems-container,
  .solutions-container,
  .apps-container,
  .partners-container,
  .cta-container {
    padding: 0 var(--container-padding);
  }

  .solutions-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .cta-content {
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 16px 20px;
  }

  .nav-menu {
    gap: 24px;
  }

  .problems-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .problem-card:nth-child(n) {
    margin-top: 0;
  }

  .solutions-container,
  .apps-container,
  .partners-container,
  .cta-container {
    padding: 0 var(--container-padding);
  }

  .app-cards-grid {
    grid-template-columns: 1fr;
  }

  .category-tabs {
    flex-direction: column;
    align-items: center;
  }

  .apps-title,
  .solutions-title {
    font-size: 34px;
    line-height: 42px;
  }

  .apps-title-bfcm {
    font-size: 34px;
    line-height: 40px;
  }

  .partners-title {
    font-size: 34px;
    line-height: 40px;
  }

  .cta-title {
    font-size: 34px;
    line-height: 40px;
  }

  .cta-description {
    font-size: 22px;
    line-height: 24px;
  }

  .cta-button {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    margin-left: 50px;
  }

  .nav-button {
    font-size: 14px;
    padding: 8px 16px;
  }

  .hero {
    min-height: 520px;
    padding-top: 96px;
  }

  .hero-main-image {
    width: clamp(280px, 70vw, 360px);
    height: clamp(280px, 70vw, 360px);
    right: -35%;
    bottom: -35%;
  }

  .floating-avatar,
  .floating-icon {
    display: none;
  }

  .solutions-visual {
    display: none;
  }

  .dashboard-mockup {
    display: none;
  }
}
