/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #181818;
  color: #fff;
}

/* Section Scroll Margins */
#services,
#apps,
#contact {
  scroll-margin-top: 100px;
}

/* Layout Containers */
.container, .navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-left: 48px;
  padding-right: 48px;
  box-sizing: border-box;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 32px 0 0 0;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.sticky {
  padding: 32px 0;
  background: rgba(24, 24, 24, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-left: 32px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #4B5CF0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.logo img {
  height: 36px;
  margin-right: 10px;
}

.logo span {
  font-weight: 400;
  font-size: 0.9rem;
  margin-left: 4px;
}

/* Buttons */
.contact-btn {
  background: #4B5CF0;
  color: #fff;
  padding: 10px 32px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}

.contact-btn:hover {
  background: #3541b6;
}

/* Hero Section */
.hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-left: 0;
  /* max-width: 600px; */
  padding-top: 0;
  padding-left: 48px;
  border-left: 4px solid #4B5CF0;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 24px 0;
  line-height: 1.05;
}

.hero-content p {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin: 0;
}

/* Services Section */
.services {
  background: #fff;
  color: #181818;
  padding: 80px 0 80px 0;
  text-align: left;
}

.services h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  margin: 0 0 48px 0;
}

.services-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.services-list.swiper {
  overflow: visible;
}

.services-list .swiper-wrapper {
  display: flex;
  gap: 32px;
}

.service-card {
  background: #222;
  color: #fff;
  border-radius: 8px;
  overflow: hidden;
  width: 240px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.service-card.swiper-slide {
  width: 100%;
  height: auto;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card span {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 16px;
}

/* Swiper Pagination Styles */
.swiper-pagination {
  position: relative;
  margin-top: 24px;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #4B5CF0;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Apps Section */
.apps-section {
  background: #f7f7f7;
  color: #181818;
  padding: 64px 0;
}

.apps-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 48px 0;
  text-align: left;
}

.app-item {
  display: flex;
  flex-direction: row;
  gap: 72px;
  margin-bottom: 128px;
  align-items: flex-start;
}

.app-content {
  max-width: 500px;
}

.app-image-container {
  position: relative;
  width: 100%;
}

.app-image {
  width: 100%;
  object-fit: cover;
  filter: drop-shadow(-2px 11px 18px #1d1d1d6b);
  margin-bottom: 24px;
}

.app-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 8px;
}

.store-badge {
  display: inline-block;
  transition: transform 0.2s ease;
  position: relative;
}

.store-badge.disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.store-badge.disabled:hover {
  transform: none;
}

.store-badge.disabled::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.coming-soon {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: #666;
  white-space: nowrap;
  font-weight: 500;
}

.store-badge-img {
  height: 48px;
  width: auto;
  display: block;
}

.app-info {
  flex: 1;
  max-width: 600px;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.app-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.app-header h3 {
  margin: 0;
  font-size: 1.8rem;
  color: #181818;
}

.app-info p {
  font-size: 1.05rem;
  margin: 0;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: #d0d5ff;
  margin: 24px 0 64px 0;
}

/* Accordion */
.accordion {
  margin: 24px 0;
}

.accordion-header {
  width: 100%;
  background: #fff;
  color: #4B5CF0;
  border: none;
  outline: none;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  padding: 16px 20px;
  margin: 0 0 0px 0;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion-header .accordion-icon {
  display: inline-block;
  margin-left: 12px;
  font-size: 1.2em;
  transition: transform 0.3s;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
  transform: rotate(90deg);
}

.accordion-panel {
  padding: 0 20px 16px 32px;
  background: #fff;
  border-radius: 0 0 6px 6px;
  margin-bottom: 12px;
  border-left: 0px solid #4B5CF0;
  font-size: 1rem;
  max-height: 500px;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.2s;
  box-shadow: rgba(50, 50, 93, 0.1) 0px 13px 27px -5px, rgba(0, 0, 0, 0.1) 0px 8px 16px -8px;
}

.accordion-panel[hidden] {
  display: block !important;
  max-height: 0 !important;
  padding-bottom: 0 !important;
}

.accordion-panel:not([hidden]) {
  max-height: 500px;
  padding-bottom: 16px;
}

.accordion-panel ul {
  margin: 0;
  padding-left: 16px;
  padding-top: 16px;
}

.accordion-panel li {
  margin-bottom: 8px;
}

/* Contact Section */
.contact-section {
  background: #fff;
  color: #181818;
  padding: 48px 0;
  text-align: left;
}

.contact-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 24px 0;
}

.contact-section p {
  font-size: 1.1rem;
  margin: 0;
}

.contact-section a {
  color: #4B5CF0;
  text-decoration: underline;
  word-break: break-all;
}

/* Footer */
footer {
  background: #181818;
  color: #fff;
  text-align: center;
  padding: 48px 0 24px 0;
  position: relative;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 28px;
  margin-right: 10px;
}

.footer-logo span {
  font-weight: 400;
  font-size: 0.9rem;
  margin-left: 4px;
}

footer hr {
  border: none;
  border-top: 2px solid #4B5CF0;
  width: 80%;
  margin: 24px auto;
}

footer p {
  color: #b0b0b0;
  font-size: 1rem;
  margin: 0;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 4px 0;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(3px) translateX(4px) rotate(135deg);
  height: 4px;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-3px) translateX(4px) rotate(-135deg);
  height: 4px;
}

.mobile-menu {
  display: none;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.mobile-nav-links a {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-nav-links a:hover {
  color: #4B5CF0;
}

.mobile-nav-links .contact-btn {
  background: #4B5CF0;
  color: #fff;
  padding: 12px 36px;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 24px;
}

/* Get App Button */
.get-app-btn {
  display: none;
  background: #4B5CF0;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  margin: 16px 0;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.get-app-btn:hover {
  background: #3541b6;
}

/* Media Queries */
@media (max-width: 900px) {
  .container, .navbar-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .navbar {
    padding-top: 24px;
  }

  .navbar.sticky {
    padding: 24px 0;
  }

  .hero {
    margin-top: 0;
  }

  .hero-content {
    padding-top: 0;
    max-width: 100%;

    padding-left: 24px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .services-list.swiper {
    overflow: hidden;
    padding-bottom: 40px;
  }

  .services-list .swiper-wrapper {
    gap: 0;
  }

  .service-card.swiper-slide {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .services {
    padding: 48px 0 48px 0;
  }

  .services h2 {
    text-align: left;
    margin: 0 0 32px 0;
    font-size: 1.5rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-actions {
    display: none;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(24,24,24,0.98);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
  }

  .app-item {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 64px;
    align-items: center;
  }

  .app-badges {
    margin-bottom: 24px;
  }

  .app-content {
    max-width: 100%;
  }

  .app-header {
    margin-bottom: 20px;
  }

  .app-icon {
    width: 32px;
    height: 32px;
  }

  .app-header h3 {
    font-size: 1.6rem;
  }

  .app-info {
    max-width: 100%;
  }

  .accordion-header {
    font-size: 1rem;
    padding: 14px 16px;
  }

  .accordion-panel {
    font-size: 0.97rem;
    padding: 0 12px 12px 20px;
  }

  .contact-section {
    padding: 32px 0;
  }

  .contact-section h2 {
    font-size: 1.5rem;
  }

  .store-badge-img {
    height: 40px;
  }

  .coming-soon {
    font-size: 0.75rem;
    bottom: -20px;
  }

  .swiper-pagination {
    display: block;
  }
}

@media (min-width: 901px) {
  .services-list.swiper {
    overflow: visible;
  }

  .services-list .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    
    transform: none !important;
    justify-content: space-between;
  }

  .service-card.swiper-slide {
    width: 240px !important;
    margin: 0 !important;
  }

  .swiper-pagination {
    display: none;
  }
}

@media (max-width: 600px) {
  .container, .navbar-container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .navbar {
    padding-top: 16px;
  }

  .navbar.sticky {
    padding: 16px 0;
  }

  .hero {
    margin-top: 0;
  }

  .hero-content {
    padding-top: 0;
    max-width: 100%;
    padding-left: 24px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .services-list {
    gap: 16px;
  }

  .service-card {
    max-width: 100%;
    width: 100%;
  }

  .services {
    padding: 32px 0 32px 0;
  }

  .services h2 {
    text-align: left;
    margin: 0 0 24px 0;
  }

  .app-item {
    margin-bottom: 48px;
  }

  .app-header {
    margin-bottom: 16px;
  }

  .app-icon {
    width: 32px;
    height: 32px;
  }

  .app-header h3 {
    font-size: 1.6rem;
  }

  .app-image-container {
    width: 100%;
    max-width: 320px;
  }

  .app-info p {
    font-size: 1rem;
  }

  .accordion-header {
    font-size: 0.98rem;
    padding: 12px 10px;
  }

  .accordion-panel {
    font-size: 0.95rem;
    padding: 0 8px 8px 12px;
  }

  .contact-section {
    padding: 24px 0;
  }

  .contact-section h2 {
    font-size: 1.2rem;
  }

  .contact-section p {
    font-size: 1rem;
  }

  footer {
    padding: 32px 0 16px 0;
  }

  .store-badge-img {
    height: 40px;
  }

  .coming-soon {
    font-size: 0.7rem;
    bottom: -18px;
  }

  .get-app-btn {
    display: block !important;
    width: 100%;
    padding: 14px 24px;
    font-size: 1.1rem;
    margin: 20px 0;
  }
}