* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #000000;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo img {
  width: 40px;
  height: 40px;
}

a {
  text-decoration: none;;
}

.footer-logo img {
  width: 32px;
  height: 32px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
}

.logo-text {
  font-weight: 600;
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ffffff;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-signin {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.header-signin:hover {
  color: #ffffff;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}

.mobile-menu-overlay.menu-active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 80px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
}

.mobile-menu-sidebar.menu-active {
  transform: translateX(0);
}

.mobile-nav-link {
  display: block;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav-link:last-of-type {
  border-bottom: none;
  margin-bottom: 30px;
}

.mobile-nav-link:hover {
  color: #6733ee;
  padding-left: 10px;
}

.mobile-cta-btn {
  background: #6733ee;
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.mobile-cta-btn:hover {
  background: #5a2bc7;
  transform: translateY(-2px);
}

.mobile-menu-btn.menu-active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.menu-active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-menu-btn.menu-active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

body.menu-open {
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: #6733ee;
  color: #ffffff;
}

.btn-primary:hover {
  background: #5a2bc7;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(103, 51, 238, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.footer {
  background: linear-gradient(180deg, #000000 0%, #1a1242 100%);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer-graphic {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
  position: relative;
}

.cube-container {
  perspective: 1000px;
  transform-style: preserve-3d;
}

.cube {
  width: 120px;
  height: 120px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-15deg) rotateY(25deg);
  animation: float 6s ease-in-out infinite;
}

.cube-face {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
}

.cube-top {
  background: linear-gradient(135deg, #9d4edd 0%, #c77dff 100%);
  transform: rotateX(90deg) translateZ(60px);
  box-shadow: 0 0 30px rgba(157, 78, 221, 0.4);
}

.cube-front {
  background: linear-gradient(135deg, #6733ee 0%, #9d4edd 100%);
  transform: translateZ(60px);
  box-shadow: 0 0 20px rgba(103, 51, 238, 0.3);
}

.cube-right {
  background: linear-gradient(135deg, #4c1d95 0%, #6733ee 100%);
  transform: rotateY(90deg) translateZ(60px);
  box-shadow: 0 0 15px rgba(76, 29, 149, 0.2);
}

@keyframes float {
  0%, 100% {
    transform: rotateX(-15deg) rotateY(25deg) translateY(0px);
  }
  50% {
    transform: rotateX(-15deg) rotateY(25deg) translateY(-10px);
  }
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
}

.footer-left {
  flex: 0 0 300px;
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.footer-tagline {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex: 1;
  width: 100%;
}

.footer-column {
  flex: 0 1 auto;
  min-width: 120px;
}

.footer-column-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-column-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column-links li {
  margin-bottom: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.hero {
  padding: 120px 0 80px;
  text-align: center;
  background: #000000;
  position: relative;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 32px;
  color: #ffffff;
}

.hero-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 48px;
  line-height: 1.6;
}

.feature-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 8px;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.feature-pill:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 60px;
  flex-direction: column;
  gap: 20px;
}

.primary-cta {
  background: #6366f1;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.primary-cta:hover {
  background: #5855eb;
  transform: translateY(-2px);
}
.explore-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.explore-link:hover {
  color: #ffffff;
}

.chat-widget {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: #6733ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(103, 51, 238, 0.4);
  transition: all 0.3s ease;
  z-index: 100;
}

.chat-widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(103, 51, 238, 0.5);
}

.development-process {
  background: linear-gradient(135deg, #1a1242 0%, #2d1b69 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.development-process .container {
  max-width: 1400px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-mockups {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: -10px;
  margin-bottom: 100px;
  position: relative;
  height: 500px;
  width: 100%;
  max-width: 1000px;
}

.phone-mockup {
  width: 200px;
  height: 400px;
  background: #1a1a1a;
  border-radius: 30px;
  padding: 8px;
  position: relative;
  border: 3px solid #333;
  transition: all 0.3s ease;
  overflow: hidden;
  flex-shrink: 0;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: #333;
  border-radius: 3px;
  z-index: 2;
}

.phone-mockup::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: #333;
  border-radius: 2px;
  z-index: 2;
}

.phone-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.phone-1 {
  transform: translateY(40px) rotate(-15deg) translateX(-20px);
  z-index: 1;
}

.phone-2 {
  transform: translateY(-20px) rotate(-8deg) translateX(-10px);
  z-index: 2;
}

.phone-3 {
  transform: translateY(-40px) scale(1.1);
  z-index: 3;
}

.phone-4 {
  transform: translateY(-20px) rotate(8deg) translateX(10px);
  z-index: 2;
}

.phone-5 {
  transform: translateY(40px) rotate(15deg) translateX(20px);
  z-index: 1;
}

.phone-mockup:hover {
  transform: translateY(-5px) scale(1.02);
}

.phone-1:hover {
  transform: translateY(35px) rotate(-15deg) translateX(-20px) scale(1.02);
}

.phone-2:hover {
  transform: translateY(-25px) rotate(-8deg) translateX(-10px) scale(1.02);
}

.phone-3:hover {
  transform: translateY(-45px) scale(1.12);
}

.phone-4:hover {
  transform: translateY(-25px) rotate(8deg) translateX(10px) scale(1.02);
}

.phone-5:hover {
  transform: translateY(35px) rotate(15deg) translateX(20px) scale(1.02);
}

.process-content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.process-title {
  font-size: 64px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 100px;
  line-height: 1.2;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.process-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(103, 51, 238, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
  flex-shrink: 0;
}

.step-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.step-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 320px;
}

@media (min-width: 769px) {
  .mobile-menu-btn {
    display: none !important;
  }
  
  .mobile-menu-overlay,
  .mobile-menu-sidebar {
    display: none !important;
  }
  
  .nav {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .hero-description {
    font-size: 18px;
  }
  
  .feature-pills {
    flex-direction: column;
    align-items: center;
    padding: 16px;
    border-radius: 16px;
  }
  
  .feature-pill:not(:last-child)::after {
    display: none;
  }
  
  .hero-ctas {
    gap: 20px;
  }
  
  .phone-mockups {
    height: 350px;
    gap: -5px;
    margin-bottom: 80px;
  }
  
  .phone-mockup {
    width: 140px;
    height: 280px;
    border-radius: 25px;
    border: 2px solid #333;
  }
  
  .phone-mockup::before {
    width: 50px;
    height: 5px;
  }
  
  .phone-mockup::after {
    width: 35px;
    height: 3px;
  }
  
  .phone-3 {
    width: 160px;
    height: 320px;
  }
  
  .phone-1 {
    transform: translateY(30px) rotate(-12deg) translateX(-15px);
  }
  
  .phone-2 {
    transform: translateY(-15px) rotate(-6deg) translateX(-8px);
  }
  
  .phone-3 {
    transform: translateY(-30px) scale(1.1);
  }
  
  .phone-4 {
    transform: translateY(-15px) rotate(6deg) translateX(8px);
  }
  
  .phone-5 {
    transform: translateY(30px) rotate(12deg) translateX(15px);
  }
  
  .process-title {
    font-size: 40px;
    margin-bottom: 60px;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }
  
  .process-step {
    text-align: center;
    align-items: center;
    padding: 32px 24px;
  }
  
  .step-number {
    margin-bottom: 24px;
  }
  
  .step-description {
    max-width: 100%;
    text-align: center;
  }
  
  .chat-widget {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  
  .footer-left {
    max-width: 100%;
    text-align: center;
  }

	.header-cta {
		display: none;
	}
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    width: 100%;
    max-width: 600px;
  }
  
  .footer-column {
    text-align: center;
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .phone-mockups {
    height: 280px;
    gap: -3px;
    margin-bottom: 60px;
  }
  
  .phone-mockup {
    width: 100px;
    height: 200px;
    border-radius: 20px;
    border: 2px solid #333;
  }
  
  .phone-3 {
    width: 120px;
    height: 240px;
  }
  
  .phone-mockup::before {
    width: 40px;
    height: 4px;
  }
  
  .phone-mockup::after {
    width: 25px;
    height: 3px;
  }
  
  .phone-1 {
    transform: translateY(25px) rotate(-10deg) translateX(-12px);
  }
  
  .phone-2 {
    transform: translateY(-12px) rotate(-5deg) translateX(-6px);
  }
  
  .phone-3 {
    transform: translateY(-25px) scale(1.1);
  }
  
  .phone-4 {
    transform: translateY(-12px) rotate(5deg) translateX(6px);
  }
  
  .phone-5 {
    transform: translateY(25px) rotate(10deg) translateX(12px);
  }
  
  .process-title {
    font-size: 32px;
    margin-bottom: 50px;
  }
  
  .process-step {
    padding: 28px 20px;
  }
  
  .footer {
    padding: 40px 0 20px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .cube {
    width: 80px;
    height: 80px;
  }
  
  .cube-face {
    width: 80px;
    height: 80px;
  }
  
  .cube-top {
    transform: rotateX(90deg) translateZ(40px);
  }
  
  .cube-front {
    transform: translateZ(40px);
  }
  
  .cube-right {
    transform: rotateY(90deg) translateZ(40px);
  }
  
  .footer-logo-text {
    font-size: 20px;
  }
  
  .footer-tagline {
    font-size: 16px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer-column-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .footer-link {
    font-size: 14px;
  }
}