/* 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;
  }
}



/* === assets/css/home-styles/intro.css === */
.intro {
  padding: 80px 0;
  text-align: center;
}

.intro-content {
  max-width: 938px;
  margin: 0 auto;
}

.intro-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.26;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.intro-subtitle {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.26;
  color: var(--text-primary);
}


/* === assets/css/home-styles/features.css === */
.features-overview {
  background: var(--background-cream);
  padding: 80px 0;
}

.features-overview .section-title {
  color: #121212;
  margin-bottom: 50px;
  max-width: 686px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 0 110px;
  margin-bottom: 28px;
}

.feature-card {
  background: var(--text-light);
  border: 1px solid var(--text-primary);
  border-radius: 6px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature-number {
  font-size: 36px;
  font-weight: 700;
  line-height: 50px;
  color: #000000;
  padding-bottom: 25px;
  border-top: 1px dashed #000000;
  padding-top: 25px;
}

.feature-content h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #000000;
  margin-bottom: 16px;
}

.feature-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20.16px;
  color: var(--text-primary);
}


/* === assets/css/home-styles/partners.css === */
.partners {
  background: var(--text-primary);
  border-top: 0.5px solid #000000;
  border-bottom: 0.5px solid #000000;
  padding: 50px 0;
}

.partners-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 73px;
  flex-wrap: wrap;
}

.partner-logo {
  height: auto;
  max-height: 34px;
  opacity: 0.8;
  transition: var(--transition);
}

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


/* === assets/css/home-styles/benefits.css === */
.benefits {
  background: var(--background-light);
  padding: 0;
}

.benefits-container {
  display: flex;
  align-items: center;
  min-height: 768px;
}

/* .benefits-content {
  flex: 1;
  padding: 80px 110px;
  max-width: 720px;
} */


.benefits-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefits-content {
  flex: 1;
  padding: 80px 0;
  max-width: 720px;
}

.benefits-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  position: relative;
}


.benefits-content h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.26;
  color: #121212;
  letter-spacing: 0.4px;
  margin-bottom: 46px;
}

.benefits-list {
  margin-bottom: 46px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.benefit-item:last-child {
  margin-bottom: 0;
}

.benefit-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
}

.benefit-item p {
  font-family: var(--font-sf);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.19;
  color: var(--text-primary);
}

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

/* .benefits-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 110px;
  position: relative;
  
} */

.device-mockup {
  position: relative;
  width: 535.79px;
  height: 597.11px;
}

.device-screen {
  position: absolute;
  width: 53.45%;
  height: 100%;
  top: 0;
  right: 0;
}

.device-element {
  position: absolute;
  width: 31.24%;
  height: 16.85%;
  top: 11.16%;
  left: 16.51%;
}

.device-component {
  position: absolute;
  width: 53.86%;
  height: 43.91%;
  top: 21.69%;
  left: 0;
}

.device-label {
  position: absolute;
  width: 23.18%;
  height: 5.64%;
  top: 9.17%;
  right: 12.04%;
  background: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7.017px;
  font-size: 11.93px;
  font-weight: 700;
  line-height: 15px;
  color: #000000;
}

@media (max-width: 768px) {
  .benefits-container {
    flex-direction: column;
    text-align: justify;
  }
  .benefits-content,
  .benefits-visual {
    padding: 40px 0;
  }
}


/* === assets/css/home-styles/cta.css === */
.cta-section {
  background: var(--text-primary);
  padding: 100px;
  text-align: center;
}

.cta-content h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.26;
  color: var(--text-light);
  letter-spacing: 0.4px;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.26;
  color: var(--text-light);
  letter-spacing: 0.14px;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cta-actions .btn-secondary {
  color: var(--text-light);
  border-color: var(--text-light);
}

.cta-actions .btn-secondary:hover {
  background: var(--text-light);
  color: var(--text-primary);
}


/* === assets/css/home-styles/testimonials.css === */
.testimonials {
  background: var(--text-light);
  padding: 100px;
}

.testimonials .section-title {
  color: #121212;
  margin-bottom: 80px;
  max-width: 914px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  display: flex;
  align-items: stretch;
  max-width: 1088px;
  margin: 0 auto;
  border: 0.5px solid var(--border-light);
  border-radius: var(--border-radius-large);
  overflow: hidden;
}

.testimonial-content {
  flex: 1;
  padding: 70px 50px;
  background: var(--text-light);
  display: flex;
  flex-direction: column;
  gap: 69px;
}

.testimonial-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial-header h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  color: var(--text-primary);
}

.rating {
  display: flex;
  align-items: center;
  gap: 3px;
}

.star {
  width: 24px;
  height: 24px;
}

.testimonial-content blockquote {
  font-size: 29px;
  font-weight: 400;
  line-height: 1.26;
  color: var(--text-primary);
  margin: 0;
}

.testimonial-sidebar {
  width: 460px;
  background: var(--text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 29px;
  padding: 38px 20px;
  border: 0.5px solid var(--border-light);
  border-left: none;
}

.testimonial-logo {
  width: 258px;
  height: 55px;
}

.testimonial-navigation {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-arrow {
  width: 57.6px;
  height: 57.6px;
  border: 1px solid var(--text-primary);
  border-radius: 9.6px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.nav-arrow.prev {
  opacity: 0.4;
  transform: rotate(180deg);
}

.nav-arrow:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

.nav-arrow img {
  width: 100%;
  height: 100%;
}

.testimonials-swiper {
  position: relative;
  padding-bottom: 40px; /* Space for bullets */
}

.swiper-pagination {
  position: static;
  margin-top: 32px;
  text-align: center;
}

/* Mobile: bullets overlay and closer to the slider */
@media (max-width: 600px) {
  .swiper-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px !important;
    margin-top: 0;
    text-align: center;
    z-index: 10;
  }
  .testimonials-swiper {
    padding-bottom: 60px !important; /* Extra space for bullets */
  }
}

.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
  margin: 0 6px !important;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  transition: background 0.2s;
}

.swiper-pagination-bullet-active {
  background: #ff4d4f;
}


/* === assets/css/home-styles/package.css === */
.package-features {
  background: var(--text-primary);
  padding: 100px 160px;
  text-align: center;
  position: relative;
}

.package-features .section-title {
  color: var(--text-light);
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 20px;
}

.package-features .section-subtitle {
  color: var(--text-light);
  margin-bottom: 60px;
}

.features-grid-detailed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1104px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border: 0.5px solid var(--border-light);
  border-radius: 6px;
}

.feature-item:first-child .feature-icon,
.feature-item:nth-child(2) .feature-icon {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-icon img {
  width: 30px;
  height: 30px;
}

.feature-item h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.26;
  color: var(--text-light);
}

.decorative-element {
  position: absolute;
  top: 95.609px;
  right: 160px;
  width: 93.775px;
  height: 108px;
}


/* === assets/css/home-styles/themes.css === */
.theme-showcase {
  background: var(--background-light);
  padding: 0;
  position: relative;
}
.theme-wrapper {
  max-width: 1280px; /* You can adjust this */
  margin: 0 auto;
  padding: 0 20px; /* Side padding for smaller screens */
}

.theme-container {
  display: flex;
  align-items: center;
  min-height: 626px;
}

.theme-content {
  flex: 1;
  padding: 50px 110px;
  max-width: 720px;
}

.theme-content h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.26;
  color: #121212;
  letter-spacing: 0.4px;
  margin-bottom: 46px;
}

.theme-info {
  margin-bottom: 46px;
}

.theme-info h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.26;
  color: var(--text-primary);
  letter-spacing: 0.14px;
  margin-bottom: 11px;
}

.theme-info p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.26;
  color: var(--text-primary);
  letter-spacing: 0.14px;
}

.theme-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 89px 62px;
  position: relative;
}

.mobile-devices {
  position: relative;
  width: 520px;
  height: 539px;
  -webkit-mask-image: url('https://static.codia.ai/custom_image/2025-06-26/153558/mobile-mask.png');
  -webkit-mask-size: cover;
  mask-image: url('https://static.codia.ai/custom_image/2025-06-26/153558/mobile-mask.png');
  mask-size: cover;
}

.mobile-device {
  position: absolute;
  width: 279px;
  height: 561px;
}

.mobile-device:first-child {
  top: 0;
  right: 0;
}

.mobile-device:last-child {
  bottom: 0;
  left: 0;
}


/* === assets/css/home-styles/faq.css === */
.faq {
  background: var(--text-light);
  padding: 100px 80px;
}

.faq .section-title {
  margin-bottom: 64px;
}
.showcase--light {
    background-color: var(--color-background-light);
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--text-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 16px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--text-primary);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(0, 0, 0, 0.02);
}

.faq-icon {
  width: 14px;
  height: 14px;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 16px 16px;
}

.faq-answer p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

.faq-cta {
  text-align: center;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.faq-cta .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--text-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

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


/* === assets/css/home-styles/footer.css === */
.footer {
  background: var(--text-primary);
  padding: 24px 80px 48px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-main {
  display: flex;
  align-items: center;
  gap: 48px;
}

.footer-brand {
  flex: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 7.046px;
}

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

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

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

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

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

.footer-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 18px; /* adjust as needed */
}

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

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

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

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

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

.footer-dropdown-item {
  padding: 10px 18px;
  color: #222;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.footer-dropdown-item:hover {
  background: #f5f5f5;
}

.btn-footer-secondary {
  background: transparent;
  color: var(--text-light);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-footer-primary {
  background: var(--primary-color);
  color: var(--text-light);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex: 1;
}

.social-link {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  transform: translateY(-2px);
}

.social-link img {
  max-width: 100%;
  max-height: 100%;
}

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

.footer-bottom p {
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  color: var(--text-light);
}


/* === assets/css/home-styles/responsive.css === */
/* Mobile Responsive Styles */

/* Tablet and below */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 40px;
  }
  
  .hero-background {
    padding: 150px 80px;
  }
  
  .hero-images {
    width: 100%;
    gap: 20px;
    overflow-x: auto;
    padding: 0 20px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 40px;
  }
  
  .benefits-container {
    flex-direction: column;
  }
  
  .benefits-content,
  .benefits-visual {
    max-width: 100%;
    padding: 40px;
  }
  
  /* .theme-container {
    flex-direction: column;
  }
  
  .theme-content {
    padding: 40px;
  } */
  
  .package-features {
    padding: 80px 40px;
  }
  
  .features-grid-detailed {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
  }
  
  .nav-menu {
    position: fixed;
    top: 109px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(204, 204, 204, 0.2);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-dropdown {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 0;
  }
  
  .nav-items {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  
  .nav-item {
    color: var(--text-primary);
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(204, 204, 204, 0.2);
    width: 100%;
  }
  
  .nav-actions {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 0;
  }
  
  .nav-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  
  .nav-buttons .btn-secondary,
  .nav-buttons .btn-primary {
    width: 100%;
    height: 48px;
    font-size: 16px;
  }
  
  .nav-buttons .btn-secondary {
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-background {
    padding: 100px 20px 0px 20px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .hero-title {
    font-size: 24px;
    line-height: 1.1;
    padding: 0 5px;
    max-width: 100%;
    word-spacing: -1px;
    letter-spacing: -0.5px;
    white-space: normal;
    text-align: center;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .hero-subtitle-under {
    font-size: 16px;
    line-height: 1.4;
    color: var(--text-secondary);
    text-align: center;
    margin: 15px 0 0 0;
    padding: 0 5px;
    max-width: 100%;
    white-space: normal;
  }
  
  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 0px;
  }
  
  .hero-text {
    margin-bottom: 0px;
  }
  
  .hero-title {
    margin-bottom: 0px !important;
    font-size: 24px;
    line-height: 1.1;
    max-width: 100%;
    word-spacing: -1px;
    letter-spacing: -0.5px;
    white-space: normal;
    text-align: center;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .hero-subtitle-below {
    text-align: center;
    margin: 20px 0;
  }
  
  .hero-subtitle-below .hero-subtitle {
    font-size: 14px;
    margin: 0 auto;
    max-width: 658px;
    padding: 0 20px;
  }
  
  /* Mobile spacing fixes for homepage sections - no spacing */
  .hero {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60vh;
  }
  
  .hero-background {
    padding-bottom: 0px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .hero-images-slider {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  
  .hero-content {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
  }
  
  .hero-subtitle-below {
    margin: 0px !important;
  }
  
  .hero-badges {
    margin-top: 10px !important;
    margin-bottom: 20px !important;
  }
  
  .intro-third-line {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    margin: 10px 0 0 0;
    font-weight: 500;
  }
  
  .footer {
    padding: 24px 20px 48px;
  }
  
  .footer-main {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-social {
    justify-content: center;
  }
}

/* PC - Keep title in 2 lines */
@media (min-width: 769px) {
  .hero-title {
    font-size: 42px;
    line-height: 1.1;
    max-width: 1000px;
  }
  
  .intro-third-line {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    margin: 15px 0 0 0;
    font-weight: 500;
  }
  
  .hero-subtitle-under {
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-secondary);
    text-align: center;
    margin: 20px 0 0 0;
    padding: 0 10px;
    max-width: 100%;
    white-space: nowrap;
  }
  
  .hero-badges {
    flex-direction: row !important;
    gap: 20px !important;
    margin-top: 20px !important;
    margin-bottom: 40px !important;
    position: relative !important;
    z-index: 5 !important;
  }
  
  /* Restore original desktop footer layout */
  .footer {
    padding: 24px 80px 48px;
  }
  
  .footer-main {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-direction: row;
    text-align: left;
  }
  
  .footer-nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 18px;
    flex-direction: row;
  }
  
  .footer-social {
    justify-content: flex-end;
  }
}
  
  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-badges {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 0px;
    position: relative;
    z-index: 5;
  }
  
  .hero-images {
    position: static;
    transform: none;
    margin-top: 0px;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .app-screenshot {
    width: 200px;
    height: 400px;
  }
  
  .intro-title {
    font-size: 24px;
  }
  
  .intro-subtitle {
    font-size: 32px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 20px;
  }
  
  .partners-container {
    gap: 30px;
    padding: 0 20px;
  }
  
  .benefits-content {
    padding: 40px 20px;
  }
  
  .benefits-content h2 {
    font-size: 28px;
  }
  
  .benefits-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .benefits-visual {
    padding: 20px;
  }
  
  .device-mockup {
    width: 300px;
    height: 334px;
  }
  
  .cta-section {
    padding: 60px 20px;
  }
  
  .cta-content h2 {
    font-size: 28px;
  }
  
  .cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .testimonials {
    padding: 60px 20px;
  }
  
  .testimonial-card {
    flex-direction: column;
  }
  
  .testimonial-sidebar {
    width: 100%;
    padding: 30px 20px;
  }
  
  .package-features {
    padding: 60px 20px;
  }
  
  .theme-content {
    padding: 40px 20px;
  }
  
  .theme-content h2 {
    font-size: 28px;
  }
  
  /* .theme-visual {
    padding: 20px;
  } */
  
  .mobile-devices {
    width: 300px;
    height: 310px;
  }
  
  .mobile-device {
    width: 160px;
    height: 322px;
  }
  
  .faq {
    padding: 60px 20px;
  }
}

/* iPad specific styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-images-swiper .swiper-pagination {
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
  }
  
  .hero-badges {
    margin-top: 20px;
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
  }
}

/* iPad landscape */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
  .hero-images-swiper .swiper-pagination {
    margin-bottom: 50px;
  }
  
  .hero-badges {
    margin-top: 15px;
    margin-bottom: 40px;
  }
  
  .hero-images-swiper .app-screenshot {
    height: 500px;
  }
  
  .hero-images-slider {
    width: 1100px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero {
    padding-top: 80px;
  }
  
  .hero-title {
    font-size: 22px;
    padding: 0 3px;
    line-height: 1.1;
    max-width: 100%;
    word-spacing: -1px;
    letter-spacing: -0.5px;
    white-space: normal;
    text-align: center;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .intro-subtitle {
    font-size: 28px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .hero-badges {
    align-items: stretch;
  }
  
  .badge {
    justify-content: center;
    text-align: center;
  }
  
  .app-screenshot {
    width: 160px;
    height: 320px;
  }
  
  .benefits-content h2,
  .theme-content h2,
  .cta-content h2 {
    font-size: 24px;
  }
  
  .device-mockup {
    width: 250px;
    height: 279px;
  }
  
  .mobile-devices {
    width: 250px;
    height: 260px;
  }
  
  .mobile-device {
    width: 130px;
    height: 261px;
  }
}

/* Responsive styles for testimonial slider */


@media (max-width: 900px) {
  .testimonials-swiper {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .testimonial-card {
    padding: 24px 16px;
    gap: 16px;
  }
  .mobile-screens.swiper {
    display: block !important;
    gap: 0 !important;
    width: 100%;
    overflow: visible;
  }
}

@media (max-width: 600px) {
  .testimonials-swiper {
    @media (max-width: 900px) {
      .mobile-screens.swiper {
        display: block !important;
        gap: 0 !important;
        width: 100%;
        overflow: visible;
      }
    }
    @media (max-width: 600px) {
      .mobile-screens.swiper {
        display: block !important;
        gap: 0 !important;
        width: 100%;
        overflow: visible;
      }
      .mobile-screen {
        width: auto !important;
        height: auto !important;
        max-width: 100%;
        max-height: 100%;
      }
    }    padding-bottom: 40px !important; /* Normal space for mobile */
  }
  .swiper-pagination {
    position: static !important;
    margin-top: 20px;
    text-align: center;
    width: 100%;
    z-index: 10;
    pointer-events: auto;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px;
    gap: 12px;
  }
  .testimonial-sidebar {
    align-self: flex-end;
  }
  .testimonial-header h3 {
    font-size: 1.1rem;
  }
  .testimonial-content blockquote {
    font-size: 1rem;
  }
}

/* Desktop: bullets outside and below the slider - place this AFTER the mobile media query */
@media (min-width: 601px) {
  .swiper-pagination {
    position: static !important;
    margin-top: 32px;
    text-align: center;
    z-index: 1;
  }
}


