/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  /* Colors */
  --color-primary: #0040C1;
  --color-primary-dark: #0140C0;
  --color-accent: #BF4408;
  --color-neutral-dark: #191818;
  --color-neutral-light: #FBFAF9;
  --color-text: #23-23-23;
  --color-text-secondary: #6B7280;
  --color-bg: #FFFFFF;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 64px;
  --spacing-xxl: 80px;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
  --font-display: 'Montserrat', sans-serif;
  
  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.12);
  
  /* Layout */
  --max-width: 1440px;
  --container-padding: 68px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-primary);
  color: var(--color-neutral-dark);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 32px;
  transition: transform 0.3s ease;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

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

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

.download-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.75rem;
  background: var(--color-primary-dark);
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(1, 64, 192, 0.25);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(1, 64, 192, 0.35);
}

.download-icon {
  width: 18px;
  height: 18px;
}

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--color-neutral-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ============================================
   MAIN WRAPPER
   ============================================ */
.main-wrapper {
  padding-top: 70px;
}

/* ============================================
   HERO + VIDEO CONTAINER
   ============================================ */
.hero-video-container {
  position: relative;
  min-height: 1304px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 45%, #1d38e621 60%, #1d38e679 80%, #1d38e6d7 100%);
  display: flex;
  flex-direction: column;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: auto;
  padding: 30px var(--spacing-md) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  background: transparent;
  position: relative;
  z-index: 1;
  overflow: visible;
}

/* Floating Generator Labels */
.generator-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 500;
  color: #1F2937;
  z-index: 2;
  animation: floatLabel 6s ease-in-out infinite;
}

.generator-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.generator-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.generator-text .generator-icon {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.generator-code .generator-icon {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.generator-image .generator-icon {
  background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
}

.generator-video .generator-icon {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.generator-text {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.generator-code {
  top: 20%;
  left: 15%;
  animation-delay: 1s;
}

.generator-image {
  top: 15%;
  right: 8%;
  animation-delay: 2s;
}

.generator-video {
  bottom: 25%;
  right: 10%;
  animation-delay: 3s;
}

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

.hero-content-wrapper {
    width: 800px;
    height: 428px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    padding: 40px;
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    width: auto;
    height: auto;
    max-width: 180px;
    z-index: 1;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    transform: translateZ(0);
    will-change: transform;
    --mouse-x: 0;
    --mouse-y: 0;
}

.floating-icon-1 {
    top: 80px;
    left: -250px;
    animation: float-1 6s ease-in-out infinite;
}

.floating-icon-2 {
    top: 250px;
    left: -280px;
    animation: float-2 7s ease-in-out infinite;
}

.floating-icon-3 {
    top: 80px;
    right: -250px;
    animation: float-3 5s ease-in-out infinite;
}

.floating-icon-4 {
    top: 300px;
    right: -280px;
    animation: float-4 6.5s ease-in-out infinite;
}

/* Floating Animations */
@keyframes float-1 {
    0%, 100% {
        transform: translate(calc(0px + var(--mouse-x, 0px)), calc(0px + var(--mouse-y, 0px)));
    }
    50% {
        transform: translate(calc(5px + var(--mouse-x, 0px)), calc(-15px + var(--mouse-y, 0px)));
    }
}

@keyframes float-2 {
    0%, 100% {
        transform: translate(calc(0px + var(--mouse-x, 0px)), calc(0px + var(--mouse-y, 0px)));
    }
    50% {
        transform: translate(calc(-5px + var(--mouse-x, 0px)), calc(15px + var(--mouse-y, 0px)));
    }
}

@keyframes float-3 {
    0%, 100% {
        transform: translate(calc(0px + var(--mouse-x, 0px)), calc(0px + var(--mouse-y, 0px)));
    }
    50% {
        transform: translate(calc(-5px + var(--mouse-x, 0px)), calc(-12px + var(--mouse-y, 0px)));
    }
}

@keyframes float-4 {
    0%, 100% {
        transform: translate(calc(0px + var(--mouse-x, 0px)), calc(0px + var(--mouse-y, 0px)));
    }
    50% {
        transform: translate(calc(5px + var(--mouse-x, 0px)), calc(18px + var(--mouse-y, 0px)));
    }
}

.hero-content {
    text-align: center;
    padding-bottom: 20px;
}

/* Hero Badge with Gradient Border */
.hero-badge-wrapper {
  display: inline-flex;
  border-radius: 9999px;
  padding: 2px;
  background: linear-gradient(135deg, #43baff 0%, #0140c0 100%);
  margin-bottom: 24px;
  height: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: white;
  border-radius: 9999px;
  height: 100%;
  position: relative;
  z-index: 10;
}

/* Badge SVG Icon */
.badge-icon-svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.badge-star-large {
  fill: #0932ec;
}

.badge-star-small {
  fill: #48d9ec;
}

.hero-badge p {
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 500;
  color: #1F2937;
  margin: 0;
  white-space: nowrap;
}

/* Hero Title */
.hero-content h1 {
  font-family: var(--font-secondary);
  font-size: 50px;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: #2D3748;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title-line1,
.hero-title-line2 {
  display: block;
}

.hero-title-line1 {
  color: #2D3748;
}

.hero-title-line2 {
  color: #2D3748;
}

/* Hero Description */
.hero-description {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.6;
  color: #6B7280;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0;
  position: relative;
  z-index: 30;
}

.btn-primary-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  height: 48px;
  background: linear-gradient(135deg, #4382ff 0%, #0140c0 100%);
  color: white;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
  border-radius: 9999px;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
  background: linear-gradient(135deg, #4382ff 0%, #0140c0 100%);
}

.btn-secondary-new {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px;
  padding-right: 24px;
  height: 48px;
  background: white;
  color: #1F2937;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 500;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #F3F4F6;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-secondary-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.play-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #4382ff 0%, #0140c0 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.play-icon svg {
  width: 16px;
  height: 17px;
}

/* Background Gradient Blur */
.hero-gradient-blur {
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 1300px;
  height: 1001px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  display: none;
}

.hero-gradient-blur::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 110, 255, 0.6) 0%, rgba(78, 110, 255, 0) 70%);
  filter: blur(120px);
  top: 300px;
  right: 150px;
}

.hero-gradient-blur::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 88, 213, 0.4) 0%, rgba(255, 88, 213, 0) 70%);
  filter: blur(120px);
  top: 300px;
  left: 150px;
}

/* Show gradient blur on large screens */
@media (min-width: 1024px) {
  .hero-gradient-blur {
    display: block;
  }
}

/* Legacy button styles for compatibility */
.btn-primary {
  padding: 12px 24px;
  background: var(--color-primary-dark);
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(59, 92, 255, 0.25);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(59, 92, 255, 0.35);
}

.btn-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 12px 18px;
  background: white;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.btn-link:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-link img {
  width: 14px;
  height: 14px;
}

/* Video Section */
.video-section {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px var(--spacing-md) 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  position: relative;
  z-index: 2;
}

.video-container {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
  z-index: 10;
}

.video-wrapper {
  width: 100%;
  height: auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Trusted By Section */
.trusted-section {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 50px var(--spacing-md) 50px;
  text-align: center;
  position: relative;
  z-index: 30;
  background: transparent;
}

.trusted-text {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 50px 0;
}

/* Brand Logos - Infinite Scroll Carousel */
.brands-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  margin: 0 auto;
  padding: 0 80px;
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scroll-logos 25s linear infinite;
  width: fit-content;
  will-change: transform;
}

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

.brand-logo {
  height: 36px;
  width: auto;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
  object-fit: contain;
  flex-shrink: 0;
}

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

/* Seamless infinite scroll animation */
@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .video-section {
    padding: 0 20px 0;
  }

  .video-container {
    padding: 12px;
    border-radius: 24px;
  }

  .video-wrapper {
    border-radius: 16px;
  }

  .video-wrapper video {
    border-radius: 16px;
  }

  .trusted-section {
    padding: 40px 20px 60px;
  }

  .trusted-text {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .brands-container {
    gap: 40px;
  }

  .brand-logo {
    height: 28px;
  }
}

@media (max-width: 480px) {
  .video-section {
    padding: 0 15px 0;
  }

  .video-container {
    padding: 10px;
    border-radius: 20px;
  }

  .video-wrapper {
    border-radius: 12px;
  }

  .video-wrapper video {
    border-radius: 12px;
  }

  .trusted-section {
    padding: 32px 15px 50px;
  }

  .trusted-text {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .brands-container {
    gap: 28px;
  }

  .brand-logo {
    height: 24px;
  }
}

/* ============================================
   PLATFORM SECTION
   ============================================ */
.platform-section {
  padding: 60px var(--container-padding);
  position: relative;
  overflow: hidden;
  background: #ffffff;
  min-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.platform-content {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  padding: 0 40px;
}

/* Floating Badges - NO ANIMATION */
.badge {
  position: absolute;
  width: 200px;
  height: 100px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.badge-1 {
  background: #D9D7FE;
  top: -50px;
  left: 10px;
}

.badge-2 {
  background: #FFF0D7;
  top: -60px;
  right: 10px;
}

.badge-3 {
  background: #BFD6FF;
  bottom: -40px;
  left: 50px;
}

.badge-4 {
  background: #F4D0FF;
  bottom: -30px;
  right: 50px;
}

.badge img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

/* Main Content */
.platform-main {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.platform-title {
  font-family: var(--font-secondary);
  font-size: 60px;
  font-weight: 400;
  line-height: 1.3;
  color: #0040C1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.platform-text {
  margin: 24px auto;
  max-width: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.platform-divider {
  display: flex;
  align-items: center;
  gap: 20px;
}

.divider-line {
  width: 70px;
  height: 2px;
  background: linear-gradient(to right, #0040C1, #ffffff);
}

.divider-line-2 {
  width: 70px;
  height: 2px;
  background: linear-gradient(to right, #ffffff, #0040C1);
}


.platform-subtitle {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.5;
  color: #2D2D2D;
  text-align: center;
}

.get-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #0040C1;
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  margin-top: 30px;
  box-shadow: 0 4px 12px rgba(0, 64, 193, 0.25);
}

.get-app-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 64, 193, 0.35);
}

.get-app-btn svg {
  width: 16px;
  height: 18px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  padding: 40px var(--container-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 8px 20px;
  border: 1px solid #D1E0FF;
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-md);
}

.badge-icon {
  width: 16px;
  height: 16px;
}

.section-badge span {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--color-primary);
}

.section-title {
  font-family: var(--font-secondary);
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: var(--spacing-sm);
  font-weight: 400;
}

.title-highlight {
  font-weight: 400;
}

.section-subtitle {
  font-family: var(--font-secondary);
  font-size: 64px;
  line-height: 0.8;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

.section-description {
  font-family: var(--font-secondary);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text);
  max-width: 800px;
  margin: 0 auto;
}

/* Additional Features */
.additional-features {
  position: relative;
  margin-bottom: -110px;
  padding: 40px 0;
  margin-top: -100px;
}

.features-phone {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto var(--spacing-lg);
}

.feature-label {
  position: absolute;
  font-size: 124px;
  font-weight: 700;
  color: rgba(239, 244, 255, 1);
  font-family: var(--font-primary);
}

.feature-label-1 {
  top: 0;
  left: 0;
}

.feature-label-2 {
  top: 120px;
  right: 0;
}

.phone-mockup {
  text-align: center;
  padding: var(--spacing-xl) 0;
}

.phone-mockup img {
  max-width: 400px;
  margin: 0 auto;
  border-radius: 37px;
}

/* UPDATED FEATURE CARDS */
.features-title {
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 36px;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 80px 0 50px 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.feature-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto 30px auto;
  max-width: 1200px;
  justify-content: center;
}

.feature-card {
  width: 346px;
  height: 96px;
  background: #F5FAFF;
  border-radius: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 20px;
}

.feature-card:hover {
  transform: translateY(-2px);
  
}

.card-content {
  width: 230px;
  height: 68px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.card-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 4px solid #FFFFFF;
}

.feature-card:nth-child(1) .card-icon { background: #C8E6F5; }
.feature-card:nth-child(2) .card-icon { background: #D4D9F5; }
.feature-card:nth-child(3) .card-icon { background: #D0F2F7; }
.feature-card:nth-child(4) .card-icon { background: #FFD6E8; }
.feature-card:nth-child(5) .card-icon { background: #D1F4D6; }

.card-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.card-content h4 {
  font-family: var(--font-primary);
  font-size: 19px;
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
  line-height: 1.3;
}

.card-content p {
  font-family: var(--font-secondary);
  font-size: 14px;
  line-height: 1.5;
  color: #6B7280;
  margin: 0;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 636px 636px;
  grid-template-rows: 540px 424px;
  gap: 16px;
  margin-top: 30px;
  justify-content: center;
}

.feature-item {
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.feature-rewards {
  grid-column: 1;
  grid-row: 1;
  background-image: url('../images/layoutbg-1.png');
}

.feature-offers {
  grid-column: 2;
  grid-row: 1;
  background-image: url('../images/layoutbg-2.png');
}

.feature-hub {
  grid-column: 1 / 2;
  grid-row: 2;
  width: 742px;
  justify-self: start;
  background-image: url('../images/layoutbg-3.png');
}

.feature-cta {
  grid-column: 2 / 3;
  grid-row: 2;
  width: 530px;
  justify-self: end;
  background-image: url('../images/layoutbg-4.png');
}

.feature-content-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.feature-asset-placeholder {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text-bottom {
  position: absolute;
  bottom: 40px;
  left: 5px;
  right: 40px;
}

.feature-text-left {
  position: absolute;
  top: 20px;
  left: 0px;
  max-width: 280px;
}

.cta-content-center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  margin-left: 30px;
  margin-bottom: 30px;
}

.feature-text-bottom h3,
.feature-text-left h3 {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-text-bottom p,
.feature-text-left p {
  font-family: var(--font-secondary);
  font-size: 20px;
  line-height: 1.5;
  color: #666;
}

.offers-checklist {
  list-style: none;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offers-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-secondary);
  font-size: 20px;
  line-height: 1.6;
  color: #666;
}

.tick-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.feature-rewards .feature-content-wrapper {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.feature-rewards .feature-asset-placeholder {
  width: 100%;
  flex: 1;
  max-height: 200px;
}

.feature-offers .feature-content-wrapper {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.feature-offers .feature-asset-placeholder {
  flex: 1;
  max-width: 300px;
  align-self: center;
}

.feature-hub .feature-content-wrapper {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.feature-hub .feature-asset-placeholder {
  flex: 1;
  max-width: 350px;
  align-self: flex-end;
}

.cta-primary-2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: #ffffff;
  color: #0040c1;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-content-center h2 {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 400;
  color: white;
  margin-bottom: 20px;
}

/* ============================================
   LOYALTY SECTION
   ============================================ */
.loyalty-section {
  padding: 40px var(--container-padding) 40px;
  background: #ffffff;
  border-radius: 40px;
  margin: 40px auto 0 auto;
  max-width: var(--max-width);
  position: relative;
  overflow: visible;
}

.loyalty-header-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-md);
  background: rgba(255, 255, 255, 0.05);
}

.loyalty-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 22px;
  background: #ffffff;

  border: 1px solid #eaeaea;
  border-radius: 999px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.badge-icon-loyalty {
  width: 18px;
  height: 18px;
  display: block;
}

.loyalty-header-badge span {
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}


.loyalty-main-title {
  font-family: var(--font-secondary);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
  color: rgb(0, 0, 0);
  margin-bottom: 0;
  text-align: left;
}

.loyalty-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}

.loyalty-sidebar {
  position: sticky;
  top: 120px;
}

.loyalty-tabs {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 3px solid #4A5568;
  padding-left: 0;
  position: relative;
}

.loyalty-tabs::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 0;
  width: 3px;
  height: 56px;
  background: #94ABFF;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.loyalty-tabs.tab-1::before {
  transform: translateY(0);
}

.loyalty-tabs.tab-2::before {
  transform: translateY(56px);
}

.loyalty-tabs.tab-3::before {
  transform: translateY(112px);
}

.tab-btn {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  text-align: left;
  padding: 16px 0 16px 24px;
  position: relative;
}

.tab-btn:hover {
  color: rgba(255, 255, 255, 0.6);
}

.tab-btn.active {
  color: #AABCFF;
  font-weight: 500;
}

.loyalty-content-wrapper {
  position: relative;
  min-height: 600px;
}

.loyalty-content-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: center;
}

.loyalty-content-item.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

.loyalty-text h3 {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 500;
  color: white;
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.loyalty-text p {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.loyalty-visual {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-mockup,
.campaign-mockup,
.builder-mockup {
  width: 100%;
  height: 100%;
  background: #F5F7FA;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 400px;
}

.dashboard-mockup img,
.campaign-mockup img,
.builder-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {
  .loyalty-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .loyalty-sidebar {
    position: relative;
    top: 0;
  }
  
  .loyalty-tabs {
    flex-direction: row;
    border-left: none;
    border-bottom: 3px solid #4A5568;
    padding-left: 0;
    padding-bottom: 0;
    justify-content: flex-start;
    gap: 40px;
  }
  
  .loyalty-tabs::before {
    left: 0;
    bottom: -3px;
    top: auto;
    width: 150px;
    height: 3px;
    transform: translateX(0);
  }
  
  .loyalty-tabs.tab-1::before {
    transform: translateX(0);
  }
  
  .loyalty-tabs.tab-2::before {
    transform: translateX(190px);
  }
  
  .loyalty-tabs.tab-3::before {
    transform: translateX(380px);
  }
  
  .tab-btn {
    padding: 0 0 16px 0;
    font-size: 20px;
  }
  
  .loyalty-content-item {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .loyalty-main-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .loyalty-section {
    padding: 60px 20px 80px;
    margin: 40px 10px;
    border-radius: 24px;
  }

  .loyalty-main-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .loyalty-tabs {
    flex-direction: column;
    border-left: 3px solid #4A5568;
    border-bottom: none;
    gap: 0;
  }

  .loyalty-tabs::before {
    left: -3px;
    bottom: auto;
    top: 0;
    width: 3px;
    height: 56px;
    transform: translateY(0);
  }

  .loyalty-tabs.tab-1::before {
    transform: translateY(0);
  }

  .loyalty-tabs.tab-2::before {
    transform: translateY(56px);
  }

  .loyalty-tabs.tab-3::before {
    transform: translateY(112px);
  }

  .tab-btn {
    padding: 16px 0 16px 20px;
    font-size: 18px;
  }

  .loyalty-text h3 {
    font-size: 24px;
  }

  .loyalty-text p {
    font-size: 14px;
  }

  .loyalty-visual {
    padding: 20px;
    min-height: 350px;
  }

  /* Mobile: Stack sections normally instead of sticky */
  .loyalty-scroll-container {
    height: auto;
  }

  .loyalty-sticky-wrapper {
    position: relative;
    top: auto;
    height: auto;
  }

  .loyalty-layout {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    opacity: 1 !important;
    margin-bottom: 40px;
  }

  .loyalty-layout[data-section="1"],
  .loyalty-layout[data-section="2"],
  .loyalty-layout[data-section="3"] {
    position: relative;
    opacity: 1 !important;
  }
}

/* Scroll Container - Creates vertical space */
/* ============================================
   SCROLL STACK CONTAINER
   ============================================ */
.scroll-stack-container {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: 100vh;
  overflow: visible;
  padding: 0;
  padding-top: 70px;
  margin-top: 0px;
}

.scroll-stack-item {
  position: absolute;
  width: 1206px;
  height: 527px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0.1;
}

.scroll-stack-item[data-index="0"] {
  margin-top: 20;
}

.scroll-stack-item[data-index="1"] {
  margin-top: 20;
}

.scroll-stack-item[data-index="2"] {
  margin-top: 20;
}

/* Scroll Stack Card (acts as loyalty card wrapper) */
.scroll-stack-card {
  position: absolute;
  width: 1300px;
  height: 527px;
  background: #ffffff;
  border-radius: 32px;
  padding: 0;
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06); */
  transform-origin: center center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  will-change: transform;
  overflow: hidden;
}

/* Loyalty layout structure */
.loyalty-layout {
  display: grid;
  grid-template-columns: 1fr 752px;
  align-items: center;
  gap: 72px;
  height: 527px;
  padding: 0;
  padding-top: 0px;
}

/* Text */
.loyalty-text {
  padding-left: 60px;
}

.loyalty-text h3 {
  font-size: 2.2rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #000;
}

.loyalty-text p {
  font-size: 1.1rem;
  color: #555;
  max-width: 420px;
  line-height: 1.6;
}

/* Image */
.loyalty-visual {
  width: 730px;
  height: 480px;
  display: block;
  overflow: hidden;
  position: relative;
  background: none;
  padding: 0;
  margin: 0;
  border-radius: 8px;
}

.loyalty-visual img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  margin: 0;
  padding: 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Mobile */
@media (max-width: 768px) {
  .scroll-stack-container {
    padding-top: 30vh;
    padding-bottom: 60vh;
  }

  .scroll-stack-item {
    top: 60px;
    padding: 0 10px;
  }

  .scroll-stack-card {
    padding: 2rem;
    border-radius: 24px;
  }

  .loyalty-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .loyalty-text p {
    margin: 0 auto;
  }

  .loyalty-text h3 {
    font-size: 1.8rem;
  }

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

/* Tablet optimization */
@media (min-width: 769px) and (max-width: 1024px) {
  .scroll-stack-container {
    padding-top: 40vh;
    padding-bottom: 80vh;
  }

  .scroll-stack-item {
    top: 80px;
    padding: 0 15px;
  }

  .scroll-stack-card {
    padding: 3rem;
  }

  .loyalty-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ============================================
   PARTNER SECTION
   ============================================ */
.partner-section {
  padding: 0 40px 80px 40px;
  margin-top: -15vh;
  margin-bottom: 0;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.partner-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 10px 30px;
  background: white;
  border-radius: var(--radius-xl);
  /* box-shadow: var(--shadow-sm); */
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.partner-content {
  padding: 0;
}

.partner-label {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  color: #6D7383;
  display: block;
  margin-bottom: var(--spacing-sm);
}

.partner-content h2 {
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 700;
  color: #0F1115;
  margin-bottom: var(--spacing-md);
}

.partner-content p {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.5;
  color: #555A68;
  margin-bottom: var(--spacing-lg);
}

.partner-ctas {
  display: flex;
  gap: var(--spacing-md);
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  background: #0040c1;
  color: white;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 9px 15px;
  background: white;
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.partner-video {
  border-radius: 30px;
  overflow: hidden;
  height: 400px;
}

.partner-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 40px;
  background: white;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
}

.footer-about {
  max-width: 320px;
}

.footer-logo {
  width: 66px;
  height: 20px;
  margin-bottom: var(--spacing-sm);
}

.footer-about p {
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-text-secondary);
}

.footer-links h4,
.footer-newsletter h4 {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  color: #0F1115;
  margin-bottom: var(--spacing-md);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-links a {
  font-size: 14px;
  font-weight: 500;
  color: #6D7383;
  transition: color 0.3s ease;
}

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

.footer-newsletter p {
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-md);
}

.newsletter-form {
  display: flex;
  gap: var(--spacing-xs);
}

.newsletter-form input {
  flex: 1;
  padding: 19px 20px 20px 44px;
  background: white;
  border: none;
  border-radius: var(--radius-full);
  font-size: 14px;
  color: #8B8F98;
}

.newsletter-form button {
  padding: 12px 22px;
  background: #0040c1;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
}

.newsletter-form button img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  padding-top: var(--spacing-lg);
  border-top: 1px solid #E5E7EB;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: #333842;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1440px) {
  :root {
    --container-padding: 40px;
  }
}

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

  .hero-content-wrapper {
    width: 90%;
    max-width: 800px;
    height: auto;
    padding: 30px;
  }

  .hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 16px;
  }

  .btn-primary-new {
    padding: 12px 24px;
    font-size: 14px;
  }

  .btn-secondary-new {
    padding: 6px;
    padding-right: 20px;
    font-size: 14px;
  }

  .hero-badge p {
    font-size: 13px;
  }

  .badge-icon-svg {
    width: 20px;
    height: 20px;
  }

  .generator-label {
    font-size: 13px;
    padding: 9px 16px 9px 9px;
    gap: 10px;
  }

  .generator-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .generator-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .platform-section {
    padding: 80px 40px;
  }
  
  .platform-content {
    padding: 0 40px;
  }
  
  .platform-title {
    font-size: 48px;
  }
  
  .section-title,
  .section-subtitle {
    font-size: 48px;
  }
  
  .badge {
    width: 200px;
    height: 100px;
  }
  
  .badge-1 {
    left: 40px;
  }
  
  .badge-2 {
    right: 40px;
  }
  
  .badge-3 {
    left: 60px;
  }
  
  .badge-4 {
    right: 50px;
  }
  
  .badge img {
    width: 60px;
    height: 60px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    flex: 0 0 calc(50% - 10px);
  }
  
  .loyalty-item,
  .partner-banner,
  .footer-content {
    grid-template-columns: 1fr;
  }
}

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

  .hero-content-wrapper {
    width: 95%;
    max-width: 800px;
    height: auto;
    padding: 24px;
  }

  .navbar {
    height: 60px;
  }

  .nav-logo img {
    height: 28px;
  }

  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 2rem;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    transition: right 0.4s ease;
    z-index: 999;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    font-size: 16px;
    width: 100%;
    padding: 10px 0;
  }
  
  .download-btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-content h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .btn-primary-new,
  .btn-secondary-new {
    width: 100%;
    justify-content: center;
  }

  .hero-badge-wrapper {
    height: auto;
  }

  .hero-badge {
    padding: 8px 16px;
  }

  .hero-badge p {
    font-size: 12px;
  }

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

  .generator-label {
    font-size: 12px;
    padding: 8px 14px 8px 8px;
    gap: 8px;
  }

  .generator-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .generator-icon svg {
    width: 16px;
    height: 16px;
  }

  .generator-text {
    top: 12%;
    left: 5%;
  }

  .generator-code {
    top: 18%;
    left: 10%;
  }

  .generator-image {
    top: 12%;
    right: 5%;
  }

  .generator-video {
    bottom: 30%;
    right: 5%;
  }

  .hero-badge {
    font-size: 11px;
    padding: 8px 16px;
  }

  .hero-badge svg {
    width: 14px;
    height: 14px;
  }
  
  .platform-section {
    padding: 60px 20px;
    min-height: 500px;
  }
  
  .platform-content {
    padding: 0 20px;
  }
  
  .platform-title {
    font-size: 32px;
  }
  
  .section-title,
  .section-subtitle {
    font-size: 32px;
  }
  
  .badge {
    width: 120px;
    height: 60px;
  }
  
  .badge-1 {
    top: 20px;
    left: 20px;
  }
  
  .badge-2 {
    top: 20px;
    right: 20px;
  }
  
  .badge-3 {
    bottom: 40px;
    left: 20px;
  }
  
  .badge-4 {
    bottom: 40px;
    right: 20px;
  }
  
  .badge img {
    width: 35px;
    height: 35px;
  }
  
  .platform-main {
    padding: 20px 0;
  }
  
  .platform-text {
    flex-direction: column;
    gap: 15px;
  }
  
  .platform-divider {
    width: 100%;
    justify-content: center;
  }
  
  .divider-line {
    width: 40px;
  }
  
  .platform-subtitle {
    font-size: 14px;
    white-space: normal;
  }
  
  .get-app-btn {
    font-size: 13px;
    padding: 10px 20px;
  }
  
  .feature-card {
    flex: 0 0 100%;
  }
  
  .features-title {
    font-size: 28px;
    margin: 60px 0 40px 0;
  }
  
  .loyalty-tabs {
    flex-direction: column;
  }
}

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

  .hero-description {
    font-size: 15px;
    padding: 0 10px;
  }

  .btn-primary-new,
  .btn-secondary-new {
    padding: 14px 24px;
    font-size: 14px;
  }

  .hero-badge span {
    font-size: 11px;
  }

  .generator-label {
    font-size: 11px;
    padding: 6px 12px 6px 6px;
    gap: 6px;
  }

  .generator-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }

  .generator-icon svg {
    width: 14px;
    height: 14px;
  }
  
  .platform-section {
    padding: 50px 15px;
    min-height: 450px;
  }
  
  .platform-content {
    padding: 0 10px;
  }
  
  .platform-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  
  .section-title,
  .section-subtitle {
    font-size: 24px;
  }
  
  .badge {
    width: 90px;
    height: 45px;
  }
  
  .badge-1 {
    top: 15px;
    left: 10px;
  }
  
  .badge-2 {
    top: 15px;
    right: 10px;
  }
  
  .badge-3 {
    bottom: 30px;
    left: 10px;
  }
  
  .badge-4 {
    bottom: 30px;
    right: 10px;
  }
  
  .badge img {
    width: 28px;
    height: 28px;
  }
  
  .platform-subtitle {
    font-size: 13px;
  }
  
  .divider-line {
    width: 30px;
  }
  
  .get-app-btn {
    font-size: 12px;
    padding: 9px 18px;
    margin-top: 25px;
  }
  
  .get-app-btn svg {
    width: 14px;
    height: 16px;
  }
  
  .feature-card {
    padding: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .card-content h4 {
    font-size: 16px;
  }
  
  .card-content p {
    font-size: 13px;
  }
  
  .features-title {
    font-size: 24px;
    margin: 50px 0 30px 0;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.hero,
.platform-section,
.features-section,
.loyalty-section {
  animation: fadeIn 0.8s ease-out;
}

.phone-mockup img,
.offers-phone img,
.hub-phone img {
  animation: floatGentle 6s ease-in-out infinite;
}

/* ============================================
   DEMO BOOKING MODAL
   ============================================ */
.demo-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.demo-modal.active {
  display: flex;
}

.demo-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.demo-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
  z-index: 10001;
  animation: slideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.demo-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 0.3s ease;
  z-index: 10002;
}

.demo-modal-close:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: rotate(90deg);
}

.demo-modal-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 550px;
}

/* Left Side - Contact Info */
.demo-info-section {
  background: linear-gradient(135deg, #0040C1 0%, #0140C0 100%);
  padding: 50px 40px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.demo-title {
  font-family: var(--font-secondary);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0;
  color: white;
}

.demo-contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-label {
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 1.6;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: rgba(255, 255, 255, 0.8);
}

.demo-social {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-label {
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 12px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Right Side - Contact Form */
.demo-form-section {
  padding: 50px 50px;
  margin-left: -40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
}

.demo-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.demo-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.demo-input-group label {
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.demo-input-group input,
.demo-input-group textarea {
  padding: 14px 16px;
  background: #F5F7FA;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  font-family: var(--font-primary);
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
}

.demo-input-group input:focus,
.demo-input-group textarea:focus {
  outline: none;
  border-color: #0040C1;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 64, 193, 0.1);
}

.demo-input-group textarea {
  resize: vertical;
  min-height: 120px;
}

.demo-submit-btn {
  padding: 16px 32px;
  background: #000000;
  color: white;
  border: none;
  border-radius: 10px;
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.demo-submit-btn:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Responsive Demo Modal */
@media (max-width: 968px) {
  .demo-modal-grid {
    grid-template-columns: 1fr;
  }

  .demo-info-section {
    padding: 35px 30px;
  }

  .demo-form-section {
    padding: 35px 30px;
  }

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

@media (max-width: 768px) {
  .demo-modal-content {
    width: 95%;
    max-height: 85vh;
    overflow-y: auto;
  }

  .demo-title {
    font-size: 26px;
  }

  .demo-info-section {
    padding: 30px 25px;
    gap: 20px;
  }

  .demo-form-section {
    padding: 30px 25px;
  }
}

/* ============================================
   QR CODE MODAL
   ============================================ */
.qr-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.qr-modal.active {
  display: flex;
}

.qr-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.qr-modal-content {
  position: relative;
  width: 550px;
  height: 280px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 10001;
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.qr-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 0.3s ease;
  z-index: 10002;
}

.qr-modal-close:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: rotate(90deg);
}

.qr-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  height: 100%;
  padding: 20px;
  gap: 20px;
}

.qr-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.qr-header h3 {
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 12px;
}

.qr-code-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.qr-code-img {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: white;
  padding: 8px;
}

.qr-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  margin-top: 8px;
}

.qr-ios .qr-footer {
  background: rgba(0, 0, 0, 0.06);
  color: #000;
}

.qr-android .qr-footer {
  background: rgba(52, 168, 83, 0.1);
  color: #34a853;
}

.store-icon {
  width: 20px;
  height: 20px;
}

.qr-footer span {
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
}

.qr-divider {
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

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

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

/* Responsive Modal */
@media (max-width: 768px) {
  .qr-modal-content {
    width: 90%;
    max-width: 400px;
    height: auto;
    min-height: 280px;
  }

  .qr-modal-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1px auto;
    gap: 15px;
    padding: 15px;
  }

  .qr-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
  }

  .qr-code-img {
    width: 120px;
    height: 120px;
  }

  .qr-header h3 {
    font-size: 13px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
/* ============================================
   ADDITIONAL FEATURES SECTION - LABEL POSITIONING ONLY
   ============================================ */

.feature-label {
  position: absolute;
  font-size: 150px;
  font-weight: 700;
  color: #EFF4FF;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
  z-index: 1;
  user-select: none;
  line-height: 1;
}

.feature-label-1 {
  top: 300px;
  left: 200px;
}

.feature-label-2 {
  bottom: 150px;
  right: 50px;
}

/* Responsive adjustments for labels only */
@media (max-width: 1024px) {
  .feature-label {
    font-size: 200px;
  }
  
  .feature-label-1 {
    top: 150px;
    left: 30px;
  }
  
  .feature-label-2 {
    bottom: 100px;
    right: 30px;
  }
}

@media (max-width: 768px) {
  .feature-label {
    font-size: 30px;
  }
  
  .feature-label-1 {
    top: 80px;
    left: 20px;
  }
  
  .feature-label-2 {
    bottom: 60px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .feature-label {
    font-size: 30px;
  }
  
  .feature-label-1 {
    top: 50px;
    left: 10px;
  }
  
  .feature-label-2 {
    bottom: 40px;
    right: 10px;
  }
}

.phone-mockup {
  text-align: center;
  padding: var(--spacing-xl) 0;
  position: relative;
  z-index: 10;
}

.phone-mockup img {
  max-width: 400px;
  margin: 0 auto;
  border-radius: 37px;
  position: relative;
  z-index: 10;
}

