/* Generated by tools/build-css-bundles.ps1 - do not edit */

/* === assets/css/home-styles/variables.css === */
:root {
  --primary-color: #ed3e3e;
  --secondary-color: #161616;
  --text-primary: #161616;
  --text-secondary: #333333;
  --text-light: #ffffff;
  --background-light: #f6f8fa;
  --background-cream: #fffbf4;
  --border-color: #dde1e6;
  --border-light: #cccccc;
  --accent-orange: #f8a803;
  
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Ubuntu, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-baloo: 'Baloo', var(--font-primary);
  --font-sf: 'SF Pro Display', var(--font-primary);
  
  --container-max-width: 1440px;
  --container-padding: 2rem;
  --border-radius: 8px;
  --border-radius-large: 16px;
  --transition: all 0.3s ease;
  
  --z-header: 1000;
  --z-modal: 2000;
  --z-tooltip: 3000;
}


/* === assets/css/home-styles/base.css === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-primary);
  overflow-x: hidden;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

.container {
  /* max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding); */
}

/* Button Styles */
.btn-primary {
  background: var(--primary-color);
  color: var(--text-light);
  border: none;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  letter-spacing: 0.16px;
  box-shadow: 0 2px 8px rgba(237, 62, 62, 0.2);
}

.btn-primary:hover {
  background: #d63333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(237, 62, 62, 0.3);
}

.btn-primary.large {
  height: 54px;
  padding: 12px 30px;
  min-width: 190px;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration:none;
  letter-spacing: 0.16px;
}

.btn-secondary:hover {
  background: var(--text-primary);
  color: var(--text-light);
  transform: translateY(-2px);
}

.btn-secondary.large {
  height: 54px;
  padding: 12px 30px;
  min-width: 156px;
}

/* Section Titles */
.section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.26;
  text-align: center;
  letter-spacing: 0.4px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.26;
  text-align: center;
  letter-spacing: 0.14px;
  color: var(--text-primary);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* === assets/css/home-styles/header.css === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 0.5px solid rgba(204, 204, 204, 0.2);
  z-index: var(--z-header);
  padding: 32px 0 24px;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 7.046px;
  text-decoration: none;
}

.logo-icon {
    width: 132.14px;
    height: 53px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: -17.12px;
}

.logo-primary,
.logo-secondary {
  font-family: var(--font-baloo);
  font-size: 22.02px;
  font-weight: 400;
  line-height: 34.659px;
  color: var(--text-primary);
}

.logo-primary {
  width: 73px;
  height: 35px;
}

.logo-secondary {
  width: 90.502px;
  height: 35px;
}

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

.nav-dropdown {
  display: flex;
  align-items: center;
  gap: 117px;
  padding: 16px 16px;
  background: #121212;
  border: 0.5px solid rgba(204, 204, 204, 0.2);
  border-radius: 10px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.14);
}

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

.nav-item {
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  color: var(--text-light);
  text-decoration: none;
  padding: 4px;
  transition: var(--transition);
}

.nav-item.active {
  color: var(--accent-orange);
}

.nav-item.dropdown {
  position: relative;
  cursor: pointer;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-radius: 8px;
  min-width: 200px;
  z-index: 100;
  flex-direction: column;
}

.nav-item.dropdown:hover .nav-dropdown-menu,
.nav-item.dropdown:focus-within .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-item {
  padding: 12px 20px;
  color: #222;
  text-decoration: none;
}

.dropdown-icon {
  width: 8px;
  height: 5px;
  display: inline-block;
  margin-left: 4px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 117px;
  padding: 10px 6px;
  background: #121212;
  border: 0.5px solid rgba(204, 204, 204, 0.2);
  border-radius: 10px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.14);
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-buttons .btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: none;
  padding: 10px 20px;
  height: 36px;
  width: 75px;
  font-size: 13px;
  border-radius: 6px;
}

.nav-buttons .btn-primary {
  padding: 10px 20px;
  height: 36px;
  width: 130px;
  font-size: 13px;
  border-radius: 6px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: calc(var(--z-header) + 1);
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: var(--transition);
}

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

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

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


/* === assets/css/shinytxt.css === */
/* ShinyText Effect for Get Started Button */
.shiny-text {
  color: #ffffff; /* White text for contrast */
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(34, 197, 94, 0.9) 50%, /* Green accent from logo */
    rgba(59, 130, 246, 0.9) 50.5%, /* Blue accent */
    rgba(255, 255, 255, 0) 60%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
  animation: shine 3s linear infinite;
  position: relative;
}

/* Fallback for browsers that don't support background-clip: text */
@supports not (-webkit-background-clip: text) {
  .shiny-text {
    color: #22c55e; /* Green fallback */
    background: none;
    animation: none;
  }
}

@keyframes shine {
  0% {
    background-position: 100%;
  }
  100% {
    background-position: -100%;
  }
}

.shiny-text.disabled {
  animation: none;
  color: #ffffff;
  background: none;
}

/* Shiny text effect only - keeping original button background */
.btn-primary.shiny-text-alt,
.btn-footer-primary.shiny-text-alt,
.pricing-cta.shiny-text-alt {
  background: var(--primary-color) !important; /* Keep original red background */
  color: transparent; /* Hide original text */
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  position: relative;
}

/* Shiny text effect using pseudo-element */
.btn-primary.shiny-text-alt::before,
.btn-footer-primary.shiny-text-alt::before,
.pricing-cta.shiny-text-alt::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    120deg,
    #ffffff 20%,
    #ffffff 35%,
    #22c55e 50%, /* Bright green accent from logo */
    #3b82f6 50.5%, /* Bright blue accent */
    #ffffff 65%,
    #ffffff 80%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shine 3s linear infinite;
  color: transparent;
  font-size: inherit;
  font-weight: inherit;
  text-align: center;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

/* Ensure proper text alignment for navigation buttons */
.nav-buttons .btn-primary.shiny-text-alt {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 130px !important;
  height: 36px !important;
  line-height: 1 !important;
}

/* Specific styling for header navigation buttons to match Login button size */
.nav-buttons .btn-primary.shiny-text-alt::before {
  font-size: 13px !important;
  font-weight: 500 !important;
}

/* Specific styling for pricing buttons to match original size */
.pricing-cta.shiny-text-alt::before {
  font-size: 14px !important;
  font-weight: 500 !important;
}

/* Fallback for browsers that don't support background-clip: text */
@supports not (-webkit-background-clip: text) {
  .btn-primary.shiny-text-alt,
  .btn-footer-primary.shiny-text-alt,
  .pricing-cta.shiny-text-alt {
    color: #ffffff !important;
    background: var(--primary-color) !important;
    font-weight: 600 !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6) !important;
  }
  
  .btn-primary.shiny-text-alt::before,
  .btn-footer-primary.shiny-text-alt::before,
  .pricing-cta.shiny-text-alt::before {
    display: none;
  }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .shiny-text {
    animation-duration: 4s; /* Slower on mobile for better performance */
  }
}


/* === assets/css/home-styles/hero.css === */
.hero {
  background: var(--background-light);
  padding-top: 120px;
  
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: relative;
  border-radius: 0px;
  margin: 10px;
  background: var(--background-light);

  /* padding: 180px 160px; */
  /* min-height: 1193px; */
  /* padding: 100px 160px 127px; */
  padding: 60px 40px;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  margin-bottom: 56px;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.26;
  color: var(--text-primary);
  margin-bottom: 30px;
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
  text-align: center;
}

.hero-subtitle {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.26;
  color: var(--text-secondary);
  max-width: 658px;
  margin: 0 auto 60px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 56px;
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 5;
}

.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px;
  background: #eaeaea;
  border-radius: 59px;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: var(--text-primary);
}

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

/* Container: centers and limits max width */
.hero-images-slider {
  position: relative;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 0px;
}

.hero-images {
  overflow: hidden;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.hero-images-track {
  display: flex;
  transition: transform 0.5s;
  will-change: transform;
}

.hero-images .app-screenshot {
  min-width: 25%;
  object-fit: contain;
  height: 600px;
}

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  height: 60px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider-arrow.prev {
  left: -20px; /* Move arrow just outside the slider area */
}

.hero-slider-arrow.next {
  right: -20px; /* Move arrow just outside the slider area */
}

@media (max-width: 900px) {
  .hero-images-slider,
  .hero-images {
    width: 100%;
    max-width: 100%;
  }
  .hero-slider-arrow.prev {
    left: 0;
  }
  .hero-slider-arrow.next {
    right: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
  }
  
  .hero-background {
    padding: 40px 25px;
    margin: 5px;
  }
  
  .hero-images {
    width: 400px;
  }
  .hero-images .app-screenshot {
    min-width: 100% !important;
    height: 400px;
  }
}

.hero-images-swiper .swiper-pagination {
  bottom: 10px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
}
.hero-images-swiper .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
  margin: 0 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transition: background 0.2s;
}
.hero-images-swiper .swiper-pagination-bullet-active {
  background: #ff4d4f;
}

/* Safari-specific fixes */
@supports (-webkit-appearance: none) {
  .hero-images-swiper .swiper-pagination {
    margin-bottom: 60px !important;
    position: relative !important;
    z-index: 10 !important;
  }
  
  .hero-badges {
    margin-top: 20px !important;
    margin-bottom: 40px !important;
    position: relative !important;
    z-index: 5 !important;
  }
}

@media (max-width: 768px) {
  @supports (-webkit-appearance: none) {
    .hero-images-swiper .swiper-pagination {
      margin-bottom: 50px !important;
    }
    
    .hero-badges {
      margin-top: 30px !important;
      margin-bottom: 40px !important;
    }
  }
}
@media (max-width: 768px) {
  .hero-images-swiper .swiper-pagination {
    bottom: 5px;
    text-align: center;
    white-space: nowrap;
    overflow-x: auto;
    padding: 0 20px;
    margin-bottom: 10px;
    margin-top: 5px;
    position: relative;
    z-index: 10;
  }
  .hero-images-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 3px;
    display: inline-block;
  }
  .hero-images-swiper .swiper-pagination-bullet-active {
    background: #ff4d4f;
  }
}

.hero-images-swiper .swiper-wrapper {
  /* Swiper handles horizontal flex automatically */
}

.hero-images-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  /* No width or margin here, let Swiper handle it */
}

.hero-images-swiper .app-screenshot {
  width: 100%;
  height: 600px;
  object-fit: contain;
  display: block;
}

/* Landscape orientation - bigger banners */
@media (orientation: landscape) and (min-width: 769px) {
  .hero-images-swiper .app-screenshot {
    height: 700px;
  }
  
  .hero-images-slider {
    width: 1200px;
  }
}

@media (max-width: 900px) {
  .hero-images-swiper .app-screenshot {
    height: 350px;
  }
}


