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



/* === assets/css/parallax.css === */
/**
 * Parallax CSS - GPU-accelerated transforms
 * Optimized for performance and Core Web Vitals
 */

/* Base parallax element styles */
[data-parallax] {
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Parallax container for background elements */
.parallax-container {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%; /* Extra height for parallax movement */
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  z-index: -1;
}

/* Hero section parallax backgrounds */
.hero-parallax-bg {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  z-index: -1;
}

/* Decorative elements with parallax */
.parallax-decoration {
  position: absolute;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  pointer-events: none;
}

/* Performance optimizations */
.parallax-optimized {
  contain: layout style paint;
  transform: translateZ(0);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  [data-parallax],
  .parallax-bg,
  .hero-parallax-bg,
  .parallax-decoration {
    transform: none !important;
    will-change: auto;
  }
}

/* Mobile optimizations */
@media (max-width: 768px) {
  [data-parallax] {
    /* Reduce parallax intensity on mobile */
    transform: translate3d(0, 0, 0);
  }
  
  .parallax-bg,
  .hero-parallax-bg {
    /* Simpler transforms on mobile */
    transform: translate3d(0, 0, 0);
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .parallax-bg,
  .hero-parallax-bg {
    opacity: 0.8;
  }
}

/* Print styles - disable parallax */
@media print {
  [data-parallax],
  .parallax-bg,
  .hero-parallax-bg,
  .parallax-decoration {
    transform: none !important;
    position: static !important;
  }
}

