/* NJOY Static Site - CSS Design System */
:root {
  --color-cyan: #00f6ef;
  --color-magenta: #ef0cef;
  --color-dark: #0a0a0a;
  --color-card: #151515;
  --font-bebas: 'Bebas Neue', sans-serif;
  --font-mont: 'Montserrat', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 85%;
}

body {
  background: var(--color-dark);
  color: white;
  font-family: var(--font-mont);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2 {
  font-family: var(--font-bebas);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 400;
}

h3,
h4 {
  font-family: var(--font-mont);
  font-weight: 700;
}

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

@media(min-width:768px) {
  .container {
    padding: 0 3rem;
  }
}

.text-cyan {
  color: var(--color-cyan);
}

.text-magenta {
  color: var(--color-magenta);
}

.text-gray-200 {
  color: #e5e7eb;
}

.text-gray-300 {
  color: #d1d5db;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-gray-500 {
  color: #6b7280;
}

.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-strong {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(60px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-mesh {
  background:
    radial-gradient(at 27% 37%, rgba(0, 246, 239, 0.12) 0px, transparent 50%),
    radial-gradient(at 97% 21%, rgba(239, 12, 239, 0.12) 0px, transparent 50%),
    radial-gradient(at 52% 99%, rgba(0, 246, 239, 0.08) 0px, transparent 50%),
    radial-gradient(at 10% 29%, rgba(239, 12, 239, 0.08) 0px, transparent 50%);
}

/* Animations */
@keyframes float {

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

  50% {
    transform: translateY(-20px)
  }
}

@keyframes floatOrb1 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(24px, -24px)
  }
}

@keyframes floatOrb2 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(-20px, 20px)
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.5
  }
}

@keyframes scrollBounce {

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

  50% {
    transform: translateY(8px)
  }
}

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

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

@keyframes slideDown {
  from {
    transform: translateY(-100%)
  }

  to {
    transform: translateY(0)
  }
}

@keyframes progressBar {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

@keyframes rotate {
  from {
    transform: rotate(0)
  }

  to {
    transform: rotate(360deg)
  }
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar */
.navbar {
  position: fixed;
  width: 100%;
  z-index: 50;
  padding: 0 1rem;
  transition: all 0.5s;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  animation: slideDown 0.6s ease-out;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(60px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  padding: 0 2rem;
}

@media(min-width:768px) {
  .navbar-inner {
    padding: 0 3rem;
  }
}

.navbar-logo {
  height: 3rem;
  transition: transform 0.3s;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  padding: 0.5rem 0.75rem;
}

.nav-link:hover {
  color: var(--color-cyan);
}

.nav-cta {
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.nav-cta:hover {
  border-color: rgba(0, 246, 239, 0.4);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
}

.lang-btn {
  background: none;
  border: none;
  color: #9ca3af;
  font-family: var(--font-mont);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-btn .flag {
  display: flex;
  align-items: center;
  width: 1.5rem;
  height: auto;
}

.lang-btn .flag svg {
  width: 100%;
  height: auto;
  border-radius: 2px;
}

.lang-btn:hover {
  color: white;
}

.lang-btn.active {
  color: var(--color-cyan);
  background: rgba(0, 246, 239, 0.1);
}


.lang-btn:hover {
  color: white;
}

.lang-btn.active {
  color: var(--color-cyan);
  text-shadow: 0 0 10px rgba(0, 246, 239, 0.3);
}

.lang-separator {
  color: rgba(255, 255, 255, 0.2);
  user-select: none;
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0.5rem;
}

.mobile-lang-switcher .lang-btn {
  font-size: 1rem;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-lang-switcher .lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-lang-switcher .lang-btn.active {
  background: rgba(0, 246, 239, 0.15);
  color: var(--color-cyan);
  border: 1px solid rgba(0, 246, 239, 0.3);
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: transparent;
  border: none;
  color: #9ca3af;
  cursor: pointer;
}

.mobile-menu-btn:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
}

.mobile-menu {
  display: none;
  padding: 0.5rem 0.75rem 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.mobile-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: #d1d5db;
  text-decoration: none;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all 0.2s;
}

.mobile-menu a:hover {
  color: var(--color-cyan);
  background: rgba(255, 255, 255, 0.05);
}

@media(min-width:768px) {
  .nav-links {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 8rem;
  padding-bottom: 8rem;
  min-height: 90vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  z-index: 10;
}

.hero-orb-1 {
  top: 25%;
  left: 25%;
  width: 18rem;
  height: 18rem;
  background: rgba(0, 246, 239, 0.15);
  animation: floatOrb1 9s ease-in-out infinite;
}

.hero-orb-2 {
  bottom: 25%;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(239, 12, 239, 0.15);
  filter: blur(130px);
  animation: floatOrb2 11s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 20;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem 0;
  width: 100%;
}

@media(min-width:768px) {
  .hero-content {
    padding: 1rem 3rem 0;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media(min-width:1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.hero-text {
  text-align: center;
}

@media(min-width:1024px) {
  .hero-text {
    text-align: left;
  }
}

.hero-title {
  font-size: 3rem;
  line-height: 1;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  opacity: 0;
  animation: fadeInUp 0.7s ease-out forwards;
}

@media(min-width:768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

@media(min-width:1024px) {
  .hero-title {
    font-size: 6rem;
  }
}

.hero-subtitle {
  display: inline-block;
  font-size: 1.875rem;
  color: var(--color-cyan);
  padding: 0.75rem 2rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.7s ease-out 0.15s forwards;
}

@media(min-width:768px) {
  .hero-subtitle {
    font-size: 3rem;
  }
}

.hero-desc {
  font-size: 1.25rem;
  color: #e5e7eb;
  max-width: 42rem;
  margin: 0.5rem auto 0;
  font-weight: 300;
  line-height: 1.75;
  opacity: 0;
  animation: fadeInUp 0.7s ease-out 0.3s forwards;
}

@media(min-width:768px) {
  .hero-desc {
    font-size: 1.5rem;
  }
}

@media(min-width:1024px) {
  .hero-desc {
    margin: 0.5rem 0 0;
  }
}

.hero-buttons {
  margin-top: 2.5rem;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
  max-width: 36rem;
  opacity: 0;
  animation: fadeInUp 0.7s ease-out 0.45s forwards;
}

@media(min-width:640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media(min-width:1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.store-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 2rem;
  color: white;
  text-decoration: none;
  border-radius: 0.75rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.store-btn:hover {
  transform: scale(1.04) translateY(-4px);
}

.store-btn .hover-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.store-btn:hover .hover-bg {
  opacity: 1;
}

.store-btn.apple .hover-bg {
  background: linear-gradient(to right, rgba(0, 246, 239, 0.2), transparent);
}

.store-btn.google .hover-bg {
  background: linear-gradient(to right, rgba(239, 12, 239, 0.2), transparent);
}

.store-btn svg {
  width: 2rem;
  height: 2rem;
  position: relative;
  z-index: 10;
  transition: transform 0.2s;
}

.store-btn:hover svg {
  transform: scale(1.1);
}

.store-btn-text {
  text-align: left;
  line-height: 1.2;
  position: relative;
  z-index: 10;
}

.store-btn-text small {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
  display: block;
}

.store-btn-text strong {
  font-size: 1.25rem;
  font-family: var(--font-bebas);
  letter-spacing: 0.05em;
}

.powered-by {
  margin-top: 2.5rem;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

@media(min-width:1024px) {
  .powered-by {
    justify-content: flex-start;
  }
}

.powered-by-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
}

.powered-by img {
  height: 1.5rem;
  filter: brightness(0) invert(1);
}

.powered-by .visa-logo {
  height: 1rem;
}

/* Carousel */
.carousel-wrapper {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 246, 239, 0.2);
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 246, 239, 0.05);
  transition: all 0.3s;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.carousel-wrapper:hover {
  box-shadow: 0 0 40px rgba(0, 246, 239, 0.1);
  transform: translateY(-10px);
}

.carousel-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(0, 246, 239, 0.1);
  filter: blur(80px);
  border-radius: 50%;
  margin-right: -4rem;
  margin-top: -4rem;
  pointer-events: none;
  z-index: 10;
}

.carousel-inner {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), transparent);
}

.carousel-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-badge.music {
  color: var(--color-magenta);
}

.carousel-badge.gaming {
  color: var(--color-cyan);
}

.carousel-badge.sports {
  color: #f3f4f6;
}

.carousel-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
}

.progress-bar {
  height: 0.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
  flex: 1;
  max-width: 3rem;
}

.progress-bar-inner {
  height: 100%;
  border-radius: 9999px;
  width: 0;
}

.progress-bar-inner.active {
  animation: progressBar 3s linear forwards;
}

.progress-bar:nth-child(odd) .progress-bar-inner {
  background: var(--color-magenta);
}

.progress-bar:nth-child(even) .progress-bar-inner {
  background: var(--color-cyan);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2rem;
  z-index: 30;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
  animation: scrollBounce 1.5s ease-in-out infinite;
}

.scroll-dot {
  width: 0.375rem;
  height: 0.375rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: scrollBounce 1.5s ease-in-out infinite;
}

/* Section Base */
section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

@media(min-width:768px) {
  section {
    padding: 8rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  margin-bottom: 2rem;
}

.section-icon.magenta {
  background: rgba(239, 12, 239, 0.1);
  color: var(--color-magenta);
}

.section-icon.cyan {
  background: rgba(0, 246, 239, 0.1);
  color: var(--color-cyan);
}

.section-title {
  font-size: 3rem;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 0.9;
}

@media(min-width:768px) {
  .section-title {
    font-size: 4.5rem;
  }
}

.section-desc {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 56rem;
  margin: 0 auto;
}

@media(min-width:768px) {
  .section-desc {
    font-size: 1.5rem;
  }
}

/* Vision Section */
.vision {
  background: var(--color-card);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.vision-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 60%;
  background: rgba(239, 12, 239, 0.1);
  filter: blur(150px);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

/* Problem/Solution Section */
.problem-solution {
  background: var(--color-dark);
}

.problem-solution-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 60%;
  background: rgba(0, 246, 239, 0.05);
  filter: blur(120px);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media(min-width:768px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  padding: 2rem;
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.card-problem {
  background: rgba(17, 17, 17, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-problem:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.card-solution {
  background: linear-gradient(to bottom right, rgba(21, 21, 21, 0.5), rgba(10, 10, 10, 0.5));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 246, 239, 0.2);
  box-shadow: 0 0 30px rgba(0, 246, 239, 0.05);
}

.card-solution:hover {
  box-shadow: 0 0 40px rgba(0, 246, 239, 0.1);
  transform: translateY(-10px);
}

.card-solution-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(0, 246, 239, 0.1);
  filter: blur(80px);
  border-radius: 50%;
  margin-right: -4rem;
  margin-top: -4rem;
  pointer-events: none;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

.card-badge {
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-badge.problem {
  background: rgba(255, 255, 255, 0.1);
  color: #9ca3af;
}

.card-badge.solution {
  background: rgba(0, 246, 239, 0.2);
  color: var(--color-cyan);
}

.card-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.card-icon.gray {
  color: #4b5563;
}

.card-icon.cyan {
  color: var(--color-cyan);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 10;
}

.card-title.gray {
  color: #d1d5db;
}

.card-title.white {
  color: white;
}

.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 10;
}

.card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
}

@media(min-width:768px) {
  .card-list li {
    font-size: 1rem;
  }
}

.card-list li.gray {
  color: #6b7280;
}

.card-list li.light {
  color: #e5e7eb;
  transition: transform 0.2s;
}

.card-list li.light:hover {
  transform: translateX(0.5rem);
}

.card-list svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.bottom-text {
  margin-top: 4rem;
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.bottom-text p {
  color: #9ca3af;
  font-size: 1.125rem;
  line-height: 1.75;
}

@media(min-width:768px) {
  .bottom-text p {
    font-size: 1.25rem;
  }
}

.bottom-text .highlight {
  color: var(--color-cyan);
  font-weight: 700;
}

/* Contamination Section */
.contamination {
  background: var(--color-dark);
}

.contamination-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
}

.contamination-orb-1 {
  top: 25%;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(0, 246, 239, 0.1);
  animation: floatOrb1 15s ease-in-out infinite;
}

.contamination-orb-2 {
  bottom: 25%;
  right: 25%;
  width: 20rem;
  height: 20rem;
  background: rgba(239, 12, 239, 0.1);
  filter: blur(120px);
  animation: floatOrb2 12s ease-in-out infinite;
}

.marketplace-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.marketplace-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(239, 12, 239, 0.3);
  color: #d1d5db;
  font-weight: 500;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media(min-width:768px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 2rem;
  border-radius: 1.5rem;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

.feature-card:hover {
  border-color: var(--color-cyan);
}

.feature-card.magenta:hover {
  border-color: var(--color-magenta);
}

.feature-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.6s;
}

.feature-card:hover .feature-card-icon {
  transform: rotate(360deg) scale(1.1);
}

.feature-card-icon.cyan {
  background: rgba(0, 246, 239, 0.1);
  color: var(--color-cyan);
  border: 1px solid rgba(0, 246, 239, 0.3);
}

.feature-card-icon.magenta {
  background: rgba(239, 12, 239, 0.1);
  color: var(--color-magenta);
  border: 1px solid rgba(239, 12, 239, 0.3);
}

.feature-card-title {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.feature-card:hover .feature-card-title.cyan {
  color: var(--color-cyan);
}

.feature-card:hover .feature-card-title.magenta {
  color: var(--color-magenta);
}

.feature-card-desc {
  color: #9ca3af;
  line-height: 1.75;
  transition: color 0.3s;
}

.feature-card:hover .feature-card-desc {
  color: #d1d5db;
}

.visual-connector {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.connector-line {
  height: 1px;
  width: 8rem;
  background: linear-gradient(to right, transparent, rgba(0, 246, 239, 0.5), transparent);
}

@media(min-width:768px) {
  .connector-line {
    width: 16rem;
  }
}

.connector-line.magenta {
  background: linear-gradient(to right, transparent, rgba(239, 12, 239, 0.5), transparent);
}

.connector-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px dashed rgba(0, 246, 239, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate 20s linear infinite;
}

.connector-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--color-cyan);
}

/* Marketplace Section */
.marketplace {
  background: var(--color-card);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.marketplace-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 50%;
  background: rgba(239, 12, 239, 0.1);
  filter: blur(150px);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

.marketplace-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.marketplace-circle-1 {
  top: 5rem;
  left: 2.5rem;
  width: 16rem;
  height: 16rem;
  border-color: rgba(239, 12, 239, 0.1);
}

.marketplace-circle-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 12rem;
  height: 12rem;
  border-color: rgba(0, 246, 239, 0.1);
}

.section-icon-animated {
  position: relative;
}

.section-icon-animated::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(0, 246, 239, 0.2);
  animation: rotate 10s linear infinite;
}

.sharing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

@media(min-width:768px) {
  .sharing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sharing-connector {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
}

@media(min-width:768px) {
  .sharing-connector {
    display: block;
  }
}

.sharing-connector-inner {
  position: absolute;
  left: 16.67%;
  right: 16.67%;
  top: 0;
  height: 0.125rem;
  background: linear-gradient(to right, rgba(239, 12, 239, 0.4), rgba(0, 246, 239, 0.4), rgba(239, 12, 239, 0.4));
}

.sharing-card {
  position: relative;
  z-index: 10;
  padding: 2rem;
  border-radius: 1rem;
  border-width: 2px;
  border-style: solid;
  background: rgba(10, 10, 10, 0.5);
  transition: all 0.3s;
  text-align: center;
}

.sharing-card.magenta {
  border-color: rgba(239, 12, 239, 0.3);
}

.sharing-card.magenta:hover {
  border-color: rgba(239, 12, 239, 0.6);
}

.sharing-card.cyan {
  border-color: rgba(0, 246, 239, 0.3);
}

.sharing-card.cyan:hover {
  border-color: rgba(0, 246, 239, 0.6);
}

.sharing-card-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.5s;
}

.sharing-card:hover .sharing-card-icon {
  transform: rotate(360deg) scale(1.1);
}

.sharing-card-icon.magenta {
  background: rgba(239, 12, 239, 0.2);
  color: var(--color-magenta);
  border: 1px solid rgba(239, 12, 239, 0.4);
}

.sharing-card-icon.cyan {
  background: rgba(0, 246, 239, 0.2);
  color: var(--color-cyan);
  border: 1px solid rgba(0, 246, 239, 0.4);
}

.sharing-card-text {
  color: #d1d5db;
  font-size: 1.125rem;
  line-height: 1.75;
  transition: color 0.3s;
}

.sharing-card:hover .sharing-card-text {
  color: white;
}

.success-statement {
  text-align: center;
}

.success-box {
  display: inline-block;
  padding: 2rem 3rem;
  border-radius: 1rem;
  border: 2px solid rgba(0, 246, 239, 0.4);
  transition: transform 0.2s;
}

.success-box:hover {
  transform: scale(1.02);
}

.success-box p {
  font-size: 1.5rem;
  color: white;
}

@media(min-width:768px) {
  .success-box p {
    font-size: 1.875rem;
  }
}

/* Why NJOY Section */
.why-njoy {
  background: var(--color-dark);
}

.why-njoy-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  opacity: 0.2;
  pointer-events: none;
  animation: rotate 60s linear infinite;
}

.why-njoy-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.why-njoy-orb-1 {
  top: 0;
  left: 25%;
  width: 16rem;
  height: 16rem;
  background: rgba(0, 246, 239, 0.1);
}

.why-njoy-orb-2 {
  bottom: 0;
  right: 25%;
  width: 16rem;
  height: 16rem;
  background: rgba(239, 12, 239, 0.1);
}

.why-njoy-grid {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: linear-gradient(to right, white 1px, transparent 1px), linear-gradient(to bottom, white 1px, transparent 1px);
  background-size: 80px 80px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto 4rem;
}

@media(min-width:768px) {
  .reasons-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.reason-card {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

.reason-card.cyan {
  border-color: rgba(0, 246, 239, 0.2);
}

.reason-card.cyan:hover {
  border-color: rgba(0, 246, 239, 0.5);
  box-shadow: 0 0 30px rgba(0, 246, 239, 0.1);
}

.reason-card.magenta {
  border-color: rgba(239, 12, 239, 0.2);
}

.reason-card.magenta:hover {
  border-color: rgba(239, 12, 239, 0.5);
  box-shadow: 0 0 30px rgba(239, 12, 239, 0.1);
}

.reason-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  z-index: 10;
}

.reason-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s;
}

.reason-card:hover .reason-icon {
  transform: rotate(360deg) scale(1.1);
}

.reason-icon.cyan {
  background: rgba(0, 246, 239, 0.1);
  color: var(--color-cyan);
  border: 1px solid rgba(0, 246, 239, 0.3);
}

.reason-icon.magenta {
  background: rgba(239, 12, 239, 0.1);
  color: var(--color-magenta);
  border: 1px solid rgba(239, 12, 239, 0.3);
}

.reason-content {
  flex: 1;
  min-width: 0;
}

.reason-title {
  font-size: 1.125rem;
  color: white;
  font-weight: 500;
  margin-bottom: 0.25rem;
  transition: color 0.3s;
}

@media(min-width:768px) {
  .reason-title {
    font-size: 1.25rem;
  }
}

.reason-card.cyan:hover .reason-title {
  color: var(--color-cyan);
}

.reason-card.magenta:hover .reason-title {
  color: var(--color-magenta);
}

.reason-desc {
  font-size: 0.875rem;
}

.reason-desc.cyan {
  color: rgba(0, 246, 239, 0.7);
}

.reason-desc.magenta {
  color: rgba(239, 12, 239, 0.7);
}

.closing-statement {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.closing-box {
  padding: 2rem 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.closing-box p {
  color: #d1d5db;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

@media(min-width:768px) {
  .closing-box p {
    font-size: 1.5rem;
  }
}

.closing-box p:last-child {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0;
}

@media(min-width:768px) {
  .closing-box p:last-child {
    font-size: 1.875rem;
  }
}

/* CTA Section */
.cta {
  background: var(--color-card);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8rem 0 10rem;
}

@media(min-width:768px) {
  .cta {
    padding: 10rem 0 12rem;
  }
}

.cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background: linear-gradient(135deg, rgba(0, 246, 239, 0.1) 0%, rgba(239, 12, 239, 0.1) 50%, rgba(0, 246, 239, 0.1) 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s linear infinite;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
}

.cta-orb-1 {
  top: 25%;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: var(--color-cyan);
  animation: floatOrb1 10s ease-in-out infinite;
  opacity: 0.2;
}

.cta-orb-2 {
  bottom: 25%;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background: var(--color-magenta);
  animation: floatOrb2 12s ease-in-out infinite;
  opacity: 0.2;
}

.cta-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.cta-title {
  font-size: 3rem;
  color: var(--color-cyan);
  margin-bottom: 1rem;
  white-space: nowrap;
}

@media(min-width:768px) {
  .cta-title {
    font-size: 4.5rem;
  }
}

@media(min-width:1024px) {
  .cta-title {
    font-size: 6rem;
  }
}

.cta-desc {
  font-size: 1.5rem;
  color: #d1d5db;
  margin-bottom: 3rem;
}

@media(min-width:768px) {
  .cta-desc {
    font-size: 1.875rem;
  }
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
}

@media(min-width:640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-store-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 2rem;
  color: white;
  text-decoration: none;
  border-radius: 0.75rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.cta-store-btn:hover {
  transform: scale(1.04) translateY(-4px);
}

.cta-store-btn.apple {
  border: 1px solid rgba(0, 246, 239, 0.3);
}

.cta-store-btn.apple:hover {
  border-color: rgba(0, 246, 239, 0.6);
}

.cta-store-btn.google {
  border: 1px solid rgba(239, 12, 239, 0.3);
}

.cta-store-btn.google:hover {
  border-color: rgba(239, 12, 239, 0.6);
}

.cta-store-btn .hover-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.cta-store-btn:hover .hover-bg {
  opacity: 1;
}

.cta-store-btn.apple .hover-bg {
  background: linear-gradient(to right, rgba(0, 246, 239, 0.2), transparent);
}

.cta-store-btn.google .hover-bg {
  background: linear-gradient(to right, rgba(239, 12, 239, 0.2), transparent);
}

.cta-store-btn svg {
  width: 2rem;
  height: 2rem;
  position: relative;
  z-index: 10;
  transition: transform 0.2s;
}

.cta-store-btn:hover svg {
  transform: scale(1.1);
}

.cta-store-btn-text {
  text-align: left;
  line-height: 1.2;
  position: relative;
  z-index: 10;
}

.cta-store-btn-text small {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
  display: block;
}

.cta-store-btn-text strong {
  font-size: 1.25rem;
  font-family: var(--font-bebas);
  letter-spacing: 0.05em;
}

.cta-contact {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-family: var(--font-bebas);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.cta-contact:hover {
  border-color: rgba(0, 246, 239, 0.5);
  transform: scale(1.05) translateY(-5px);
}

.cta-contact .hover-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 246, 239, 0.2), rgba(239, 12, 239, 0.2));
  opacity: 0;
  transition: opacity 0.3s;
}

.cta-contact:hover .hover-bg {
  opacity: 1;
}

.cta-contact span {
  position: relative;
  z-index: 10;
}

/* Footer */
footer {
  background: black;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50rem;
  height: 12.5rem;
  background: linear-gradient(to bottom, rgba(0, 246, 239, 0.05), transparent);
  filter: blur(100px);
  pointer-events: none;
}

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

@media(min-width:768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.footer-brand {
  grid-column: span 1;
}

@media(min-width:768px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-logo {
  height: 3rem;
  margin-bottom: 1.5rem;
}

.footer-desc {
  color: #9ca3af;
  margin-bottom: 1.5rem;
  line-height: 1.75;
  max-width: 36rem;
}

.footer-company {
  font-size: 0.75rem;
  color: #6b7280;
  font-family: monospace;
}

.footer-company p {
  margin-bottom: 0.25rem;
}

.footer-company .name {
  font-weight: 700;
  color: #9ca3af;
}

.footer-title {
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  font-family: var(--font-bebas);
  font-size: 1.125rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.footer-links a:hover {
  color: var(--color-cyan);
  transform: translateX(5px);
}

.footer-links.legal a:hover {
  color: var(--color-magenta);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

@media(min-width:768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copyright {
  color: #6b7280;
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: all 0.3s;
}

.social-link:hover {
  color: var(--color-cyan);
  transform: scale(1.2) translateY(-3px);
}

/* X logo specific styles */
.x-logo {
  fill: #9ca3af;
  transition: fill 0.3s;
}

.social-link:hover .x-logo {
  fill: var(--color-cyan);
}

.footer-tagline {
  text-align: center;
  margin-top: 2rem;
}

.footer-tagline p {
  color: #4b5563;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-tagline .heart {
  color: var(--color-magenta);
  display: inline-block;
  animation: pulse 1s infinite;
}

/* Lucide-like SVG icons */
svg.icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

svg.icon-lg {
  width: 32px;
  height: 32px;
}

svg.icon-xl {
  width: 40px;
  height: 40px;
}

svg.icon-2xl {
  width: 48px;
  height: 48px;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00f6ef 0%, #ef0cef 100%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #00f6ef 30%, #ef0cef 70%);
}

/* ========================================
   MOBILE RESPONSIVE STYLES
======================================== */

/* Mobile base - smaller screens */
@media (max-width: 767px) {

  /* Reset font size for mobile */
  html {
    font-size: 80%;
  }

  /* Reduce container padding on mobile */
  .container {
    padding: 0 1rem;
  }

  /* Navbar mobile */
  .navbar {
    padding: 0 0.5rem;
  }

  .navbar-inner {
    padding: 0 1rem;
    height: 4rem;
  }

  .navbar-logo {
    height: 2.5rem;
  }

  /* Hero mobile */
  .hero {
    padding-top: 7rem;
    padding-bottom: 6rem;
    min-height: 80vh;
  }

  .hero-content {
    padding: 1rem 1rem 0;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
    white-space: normal;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1.5rem;
    padding: 0.5rem 1.25rem;
  }

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

  .hero-buttons {
    margin-top: 1.5rem;
    gap: 1rem;
  }

  .store-btn {
    padding: 0.875rem 1.5rem;
    gap: 0.75rem;
  }

  .store-btn svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .store-btn-text strong {
    font-size: 1rem;
  }

  .powered-by {
    margin-top: 1.5rem;
  }

  .powered-by-inner {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    gap: 0.5rem;
  }

  .powered-by img {
    height: 1.25rem;
  }

  .powered-by .visa-logo {
    height: 0.875rem;
  }

  /* Carousel mobile */
  .carousel-wrapper {
    border-radius: 1rem;
  }

  .carousel-badge {
    font-size: 0.625rem;
    padding: 0.2rem 0.5rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .carousel-progress {
    padding: 0.75rem;
    gap: 0.375rem;
  }

  /* Scroll indicator mobile */
  .scroll-indicator {
    bottom: 1rem;
  }

  .scroll-mouse {
    width: 1.25rem;
    height: 2rem;
  }

  /* Sections mobile */
  section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }

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

  /* Cards mobile */
  .card {
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-list li {
    font-size: 0.875rem;
  }

  .bottom-text {
    margin-top: 2.5rem;
  }

  .bottom-text p {
    font-size: 1rem;
  }

  /* Feature cards mobile */
  .feature-grid {
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .feature-card-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
  }

  .feature-card-title {
    font-size: 1.25rem;
  }

  .feature-card-desc {
    font-size: 0.875rem;
  }

  /* Sharing grid mobile */
  .sharing-grid {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .sharing-card {
    padding: 1.5rem;
  }

  .sharing-card-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
  }

  .sharing-card-text {
    font-size: 1rem;
  }

  /* Hide marketplace circle on mobile */
  .marketplace-circle-2 {
    display: none;
  }

  .success-box {
    padding: 1.5rem 2rem;
  }

  .success-box p {
    font-size: 1.25rem;
  }

  /* Reasons grid mobile */
  .reasons-grid {
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .reason-card {
    padding: 1.25rem;
  }

  .reason-card-inner {
    gap: 1rem;
  }

  .reason-icon {
    width: 3rem;
    height: 3rem;
  }

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

  .reason-desc {
    font-size: 0.75rem;
  }

  .closing-box {
    padding: 1.5rem;
  }

  .closing-box p {
    font-size: 1rem;
  }

  .closing-box p:last-child {
    font-size: 1.25rem;
  }

  /* CTA mobile */
  .cta {
    padding: 5rem 0 6rem;
  }

  .cta-title {
    font-size: 2.5rem;
    white-space: normal;
  }

  .cta-desc {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }

  .cta-buttons {
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .cta-store-btn {
    padding: 0.875rem 1.5rem;
  }

  .cta-contact {
    padding: 0.875rem 2rem;
  }

  /* Footer mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .footer-desc {
    font-size: 0.875rem;
  }

  .footer-title {
    font-size: 0.875rem;
  }

  .footer-links a {
    font-size: 0.875rem;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-copyright {
    font-size: 0.75rem;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  /* Mobile Menu improvements */
  .mobile-menu {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem;
  }

  .mobile-menu a {
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  /* Carousel mobile - limit height */
  .carousel-wrapper {
    max-height: 280px;
  }

  .carousel-inner {
    aspect-ratio: 16/9;
  }

  /* Reason cards - stacked layout on mobile */
  .reason-card-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .reason-icon {
    margin: 0 auto 0.75rem;
  }

  .reason-content {
    text-align: center;
  }

  .reason-title {
    text-align: center;
  }

  .reason-desc {
    text-align: center;
  }

  /* Larger touch targets for social icons */
  .social-link {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .social-link svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  /* Better spacing for footer links */
  .footer-links {
    gap: 0.75rem;
  }

  .footer-links a {
    padding: 0.5rem 0;
  }

  /* Hide scroll indicator on mobile */
  .scroll-indicator {
    display: none;
  }

  /* Marketplace pill full width */
  .marketplace-intro-badge {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Extra small screens - phones */
@media (max-width: 480px) {
  html {
    font-size: 75%;
  }

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

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

  .hero-desc {
    font-size: 0.9rem;
  }

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

  .section-desc {
    font-size: 0.9rem;
  }

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

  .store-btn {
    width: 100%;
    padding: 0.75rem 1rem;
  }

  .cta-store-btn {
    width: 100%;
  }

  /* Compact cards for small screens */
  .card {
    padding: 1.25rem;
  }

  .feature-card {
    padding: 1.25rem;
  }

  .sharing-card {
    padding: 1.25rem;
  }

  .reason-card {
    padding: 1rem;
  }

  /* Smaller icons for small screens */
  .section-icon {
    width: 3.5rem;
    height: 3.5rem;
  }

  .feature-card-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .sharing-card-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .reason-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  /* Footer compact */
  .footer {
    padding: 3rem 0 2rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }
}