/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7f7fa;
  color: #1a2236;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Header logo larger */
.logo {
  height: 72px;
  transition: height 0.2s;
}
nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
nav a {
  text-decoration: none;
  color: #1a2236;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover {
  color: #f5b942;
}
.nav-actions {
  display: flex;
  gap: 1rem;
}
.btn-primary, .btn-outline {
  border-radius: 32px;
  font-size: 1.1rem;
  padding: 0.8rem 2.2rem;
  font-weight: 700;
  box-shadow: 0 2px 12px #1a22361a;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary {
  background: #1a2236;
  color: #fff;
  border: none;
}
.btn-primary:hover {
  background: #f5b942;
  color: #1a2236;
  box-shadow: 0 4px 24px #f5b94244;
}
.btn-outline {
  background: transparent;
  color: #1a2236;
  border: 2px solid #1a2236;
}
.btn-outline:hover {
  background: #1a2236;
  color: #fff;
  box-shadow: 0 4px 24px #1a223644;
}

/* Hero Section with Interactive Slider */
.hero {
  background: #fff;
  padding: 5rem 0 3rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* New flowing curve background design */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    /* S-curve shape using radial gradients */
    radial-gradient(ellipse 800px 600px at 70% 30%, transparent 0%, transparent 45%, #e8f4fd 45.5%, #e8f4fd 100%),
    radial-gradient(ellipse 600px 800px at 75% 70%, transparent 0%, transparent 40%, #e8f4fd 40.5%, #e8f4fd 100%),
    /* Blue to purple gradient for the right section */
    linear-gradient(180deg, #e8f4fd 0%, #f0e8ff 100%);
  pointer-events: none;
  z-index: 1;
}

/* Subtle geometric patterns in bottom-left corner */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 200px;
  background-image: 
    /* Circuit-like lines */
    linear-gradient(90deg, transparent 0%, transparent 40%, rgba(173, 216, 230, 0.1) 40.5%, rgba(173, 216, 230, 0.1) 41%, transparent 41.5%),
    linear-gradient(0deg, transparent 0%, transparent 60%, rgba(173, 216, 230, 0.1) 60.5%, rgba(173, 216, 230, 0.1) 61%, transparent 61.5%),
    linear-gradient(45deg, transparent 0%, transparent 45%, rgba(173, 216, 230, 0.08) 45.5%, rgba(173, 216, 230, 0.08) 46%, transparent 46.5%),
    /* Geometric shapes */
    radial-gradient(circle 3px at 20% 80%, rgba(255, 255, 0, 0.3) 0%, transparent 50%),
    radial-gradient(circle 4px at 40% 70%, rgba(173, 216, 230, 0.4) 0%, transparent 50%),
    radial-gradient(circle 3px at 60% 85%, rgba(221, 160, 221, 0.3) 0%, transparent 50%),
    radial-gradient(circle 2px at 80% 75%, rgba(173, 216, 230, 0.4) 0%, transparent 50%),
    radial-gradient(circle 3px at 30% 90%, rgba(255, 255, 0, 0.3) 0%, transparent 50%),
    /* Small squares and triangles */
    linear-gradient(45deg, transparent 0%, transparent 35%, rgba(221, 160, 221, 0.2) 35.5%, rgba(221, 160, 221, 0.2) 36%, transparent 36.5%),
    linear-gradient(-45deg, transparent 0%, transparent 25%, rgba(173, 216, 230, 0.2) 25.5%, rgba(173, 216, 230, 0.2) 26%, transparent 26.5%);
  background-size: 
    100px 100px,
    80px 80px,
    120px 120px,
    50px 50px,
    60px 60px,
    40px 40px,
    70px 70px,
    45px 45px,
    90px 90px,
    110px 110px;
  background-position: 
    0% 0%,
    20px 20px,
    40px 40px,
    10px 10px,
    30px 30px,
    50px 50px,
    15px 15px,
    25px 25px,
    35px 35px,
    45px 45px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

.hero-slider {
  width: 100%;
  position: relative;
  height: 100%;
  min-height: 600px;
  z-index: 2;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

.slide.prev {
  transform: translateX(-100%);
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 3;
}

.hero-text {
  flex: 1 1 500px;
  position: relative;
  max-width: 600px;
}

.slide-indicator {
  position: absolute;
  top: -3rem;
  left: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #f5b942;
  opacity: 0.8;
  letter-spacing: 2px;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  animation: slideInLeft 0.8s ease-out;
  line-height: 1.1;
  color: #1a2236;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.brand {
  color: #1a2236;
  background: #f5b942;
  padding: 0 0.8rem;
  border-radius: 12px;
  font-size: 1.1em;
  box-shadow: 0 4px 12px #f5b94233;
  display: inline-block;
  margin-left: 0.5rem;
}

.hero-text h2 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: slideInLeft 0.8s ease-out 0.1s both;
  color: #2d3550;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
  color: #2d3550;
  animation: slideInLeft 0.8s ease-out 0.2s both;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  animation: slideInLeft 0.8s ease-out 0.3s both;
  flex-wrap: wrap;
}

.coming-soon {
  background: #f5b942;
  color: #1a2236;
  padding: 0.8rem 1.8rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px #f5b94233;
}

.store-badges {
  display: flex;
  gap: 1rem;
  margin-top: 0;
}

.badge {
  height: 60px;
  opacity: 1;
  filter: drop-shadow(0 3px 10px #1a223622);
  transition: transform 0.2s;
}

.badge:hover {
  transform: scale(1.05);
}

.hero-image {
  flex: 1 1 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInRight 0.8s ease-out 0.2s both;
  position: relative;
  min-height: 500px;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Floating Elements for Slide 1 */
.floating-elements {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.logo-background {
  position: absolute;
  top: 50%;
  left: 65%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 1;
  pointer-events: none;
}

.bg-logo {
  width: 600px;
  height: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 8px 24px rgba(26, 34, 54, 0.1));
}

.floating-card {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 12px 40px #1a22361a;
  border-left: 5px solid #f5b942;
  transition: all 0.3s ease;
  animation: float 6s ease-in-out infinite;
  min-width: 160px;
  text-align: center;
  z-index: 2;
}

.floating-card:hover {
  transform: translateY(-12px) scale(1.08);
  box-shadow: 0 20px 60px #f5b94244;
}

.card-1 {
  top: 15%;
  left: 5%;
  animation-delay: 0s;
}

.card-2 {
  top: 45%;
  right: 10%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 15%;
  left: 15%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-25px);
  }
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.floating-card h4 {
  color: #1a2236;
  font-size: 1.2rem;
  font-weight: 700;
}

.floating-card p {
  color: #2d3550;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* Tech Showcase for Slide 2 */
.tech-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 450px;
}

.tech-item {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 30px #1a22361a;
  transition: all 0.3s ease;
  animation: techPulse 4s ease-in-out infinite;
}

.tech-item:nth-child(1) { animation-delay: 0s; }
.tech-item:nth-child(2) { animation-delay: 1s; }
.tech-item:nth-child(3) { animation-delay: 2s; }
.tech-item:nth-child(4) { animation-delay: 3s; }

.tech-item:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 16px 50px #f5b94244;
}

@keyframes techPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.tech-icon {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  display: block;
}

.tech-item span {
  color: #1a2236;
  font-weight: 600;
  font-size: 1.1rem;
}

/* App Showcase for Slide 3 */
.app-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.phone-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.app-mockup {
  max-width: 300px;
  width: 100%;
  border-radius: 35px;
  box-shadow: 0 20px 60px rgba(26, 34, 54, 0.15);
  background: #fff;
  transform: translateY(-10px);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: appFloat 4s ease-in-out infinite;
  z-index: 2;
}

.app-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 185, 66, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes appFloat {
  0%, 100% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.app-mockup:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 25px 70px rgba(26, 34, 54, 0.25);
}

.floating-features {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.feature-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 6px 24px rgba(26, 34, 54, 0.08);
  border-left: 3px solid #f5b942;
  animation: featureFloat 4s ease-in-out infinite;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 160px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 36px rgba(245, 185, 66, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.feature-1 {
  top: 8%;
  right: -20%;
  animation-delay: 0s;
}

.feature-2 {
  bottom: 20%;
  left: -25%;
  animation-delay: 1.5s;
}

.feature-3 {
  top: 55%;
  right: -15%;
  animation-delay: 3s;
}

@keyframes featureFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.feature-card .feature-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-content h4 {
  color: #1a2236;
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0 0 0.1rem 0;
  line-height: 1.2;
}

.feature-content p {
  color: #2d3550;
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.3;
}

/* App Features Highlight */
.app-features-highlight {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  animation: slideInLeft 0.8s ease-out 0.4s both;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.8rem;
  background: rgba(245, 185, 66, 0.1);
  border-radius: 10px;
  border-left: 3px solid #f5b942;
  transition: all 0.3s ease;
}

.feature-highlight:hover {
  background: rgba(245, 185, 66, 0.15);
  transform: translateX(8px);
}

.feature-highlight .feature-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-highlight .feature-text {
  color: #1a2236;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Enhanced Coming Soon Badge */
.coming-soon-badge {
  background: linear-gradient(135deg, #f5b942 0%, #f0a500 100%);
  color: #1a2236;
  padding: 0.8rem 1.2rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(245, 185, 66, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 1rem;
}

.badge-text {
  font-size: 1rem;
  font-weight: 700;
}

.badge-subtitle {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.8;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  z-index: 10;
  background: none;
  padding: 0;
  border-radius: 0;
  backdrop-filter: none;
  margin: 0;
}

.nav-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: none;
  background: rgba(26, 34, 54, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background: #f5b942;
  transform: scale(1.4);
}

.nav-dot:hover {
  background: #f5b942;
  transform: scale(1.3);
}

/* Slider Controls */
.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(26, 34, 54, 0.15);
}

.slider-control:hover {
  background: #f5b942;
  color: #1a2236;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 12px 30px rgba(245, 185, 66, 0.4);
}

.slider-control.prev {
  left: 3rem;
}

.slider-control.next {
  right: 3rem;
}

.slider-control svg {
  width: 28px;
  height: 28px;
}

/* Company Showcase */
.company-showcase {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
.showcase-item {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px #1a22361a;
  transition: transform 0.2s, box-shadow 0.2s;
  border-left: 4px solid #f5b942;
}
.showcase-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px #f5b94244;
}
.showcase-item h3 {
  color: #1a2236;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.showcase-item p {
  color: #2d3550;
  font-size: 1rem;
  line-height: 1.5;
}

/* About Section */
.about {
  background: linear-gradient(180deg, #fff 80%, #e9eafc 100%);
  padding: 4rem 0 3rem 0;
  position: relative;
}
.about h2 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 2.5rem;
  font-weight: 800;
  color: #1a2236;
}
.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  font-size: 1.15rem;
  color: #2d3550;
  line-height: 1.7;
}
.about-content {
  max-width: 800px;
  margin: 0 auto;
}
.about-text h3 {
  color: #1a2236;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2rem 0 1rem 0;
}
.about-text h3:first-child {
  margin-top: 0;
}
.about-text p {
  color: #2d3550;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.values-list {
  list-style: none;
  padding-left: 0;
}
.values-list li {
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px #1a22361a;
  border-left: 4px solid #f5b942;
  transition: transform 0.2s;
}
.values-list li:hover {
  transform: translateX(8px);
}
.values-list strong {
  color: #1a2236;
  font-weight: 700;
}

/* Products Section */
.products {
  background: #e9eafc;
  padding: 4rem 0 3rem 0;
  position: relative;
}
.products h2 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 2.5rem;
  font-weight: 800;
  color: #1a2236;
}
.product-showcase {
  max-width: 1000px;
  margin: 0 auto;
}
.product-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  background: #fff;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 8px 40px #1a22361a;
}
.product-info {
  flex: 1 1 400px;
}
.product-info h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a2236;
  margin-bottom: 0.5rem;
}
.product-info h4 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #2d3550;
  margin-bottom: 1.5rem;
}
.product-info p {
  font-size: 1.1rem;
  color: #2d3550;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.product-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.feature {
  background: #f7f7fa;
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid #f5b942;
}
.feature h5 {
  color: #1a2236;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.feature p {
  color: #2d3550;
  font-size: 1rem;
  margin: 0;
}
.product-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.product-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

/* Features Section Redesign */
.features {
  background: linear-gradient(180deg, #fff 80%, #e9eafc 100%);
  padding: 4rem 0 3rem 0;
  position: relative;
}
.features h2 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 2.5rem;
  font-weight: 800;
  color: #1a2236;
}
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}
.feature-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px #1a22361a;
  padding: 2.5rem 2rem 2rem 2rem;
  flex: 1 1 260px;
  max-width: 340px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.feature-item:hover {
  box-shadow: 0 8px 32px #f5b94244, 0 2px 12px #1a22361a;
  transform: translateY(-8px) scale(1.03);
}
.feature-item h3 {
  color: #1a2236;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
}
.feature-item::before {
  content: '';
  display: block;
  margin: 0 auto 1.2rem auto;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #f5b942 60%, #1a2236 100%);
  border-radius: 50%;
  opacity: 0.12;
}

/* How It Works Section */
.how-it-works {
  background: #e9eafc;
  padding: 4rem 0 3rem 0;
  position: relative;
}
.how-it-works h2 {
  text-align: center;
  font-size: 2.1rem;
  margin-bottom: 2rem;
  font-weight: 800;
  color: #1a2236;
}
.steps {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.15rem;
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2rem;
}
.steps li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px #1a22361a;
  padding: 1.5rem 1.2rem;
  flex: 1 1 180px;
  text-align: center;
  font-weight: 500;
  position: relative;
}
.steps li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 50%;
  width: 2rem;
  height: 4px;
  background: linear-gradient(90deg, #f5b942 40%, #1a2236 100%);
  border-radius: 2px;
  transform: translateY(-50%);
}

/* Modern Footer Redesign */
footer {
  background: #181d2f;
  color: #fff;
  padding: 3rem 0 1.2rem 0;
  position: relative;
  box-shadow: 0 -2px 24px #1a22361a;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
}
.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
  margin-bottom: 1.5rem;
}
.footer-logo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}
.footer-logo {
  height: 64px;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 1.1rem;
  color: #f5b942;
  font-weight: 600;
  margin-top: 0.2rem;
  letter-spacing: 0.5px;
}
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links-title {
  font-size: 1.08rem;
  color: #f5b942;
  font-weight: 700;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
}
.footer-links-col a {
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  transition: color 0.2s;
}
.footer-links-col a:hover {
  color: #f5b942;
}
.footer-newsletter-col {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.newsletter-form input[type="email"] {
  padding: 0.7rem 1.1rem;
  border-radius: 24px;
  border: none;
  outline: none;
  font-size: 1rem;
  background: #23284a;
  color: #fff;
  width: 160px;
  transition: background 0.2s;
}
.newsletter-form input[type="email"]:focus {
  background: #fffbe6;
  color: #181d2f;
}
.newsletter-form button {
  padding: 0.7rem 1.3rem;
  border-radius: 24px;
  border: none;
  background: #f5b942;
  color: #181d2f;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.newsletter-form button:hover {
  background: #fff;
  color: #f5b942;
}
.footer-social {
  display: flex;
  gap: 1.1rem;
  margin-top: 0.2rem;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #23284a;
  color: #f5b942;
  font-size: 1.3rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}
.social-icon:hover {
  background: #f5b942;
  color: #181d2f;
  transform: scale(1.12);
}
.footer-copy {
  margin-top: 1.5rem;
  font-size: 1rem;
  text-align: center;
  width: 100%;
  color: #fffbe6;
  letter-spacing: 0.2px;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-content, .footer-content, .features-list, .steps, .product-main {
    flex-direction: column;
    align-items: center;
  }
  .hero-image {
    margin-top: 2rem;
  }
  .steps li:not(:last-child)::after {
    display: none;
  }
  .product-main {
    padding: 2rem;
  }
  .slider-control {
    width: 50px;
    height: 50px;
  }
  .slider-control.prev {
    left: 1.5rem;
  }
  .slider-control.next {
    right: 1.5rem;
  }
  .hero-content {
    gap: 3rem;
    padding: 0 1.5rem;
  }
}
@media (max-width: 700px) {
  .container {
    width: 98%;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .hero-text h2 {
    font-size: 1.4rem;
  }
  .hero-text p {
    font-size: 1.1rem;
  }
  .features-list {
    gap: 1.2rem;
  }
  .feature-item {
    padding: 1.2rem 0.7rem;
  }
  .steps {
    gap: 1rem;
  }
  .app-mockup {
    max-width: 240px;
  }
  .app-glow {
    width: 280px;
    height: 280px;
  }
  .feature-card {
    padding: 1rem;
    min-width: 140px;
  }
  .feature-content h4 {
    font-size: 0.8rem;
  }
  .feature-content p {
    font-size: 0.7rem;
  }
  .app-features-highlight {
    gap: 0.6rem;
  }
  .feature-highlight {
    padding: 0.6rem 0.8rem;
  }
  .feature-highlight .feature-text {
    font-size: 0.9rem;
  }
  .logo {
    height: 48px;
  }
  .product-main {
    padding: 1.5rem;
  }
  .product-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .floating-card {
    padding: 1.2rem;
    min-width: 120px;
  }
  .bg-logo {
    width: 300px;
  }
  .tech-showcase {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .feature-bubble {
    font-size: 0.9rem;
    padding: 0.8rem 1.2rem;
    min-width: 120px;
  }
  .slider-control {
    display: none;
  }
  .hero-content {
    padding: 0 1rem;
  }
  .slider-nav {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .hero-slider {
    min-height: 450px;
  }
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.2rem;
  }
  .footer-col {
    min-width: 0;
    width: 100%;
  }
  .footer-logo-col, .footer-links-col, .footer-newsletter-col {
    align-items: flex-start;
  }
  .newsletter-form {
    width: 100%;
  }
  .newsletter-form input[type="email"] {
    width: 100%;
    min-width: 0;
  }
} 

/* Service Features for Slide 2 */
.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  animation: slideInLeft 0.8s ease-out 0.4s both;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.8rem;
  background: rgba(26, 34, 54, 0.05);
  border-radius: 10px;
  border-left: 3px solid #1a2236;
  transition: all 0.3s ease;
}

.service-feature:hover {
  background: rgba(26, 34, 54, 0.1);
  transform: translateX(5px);
}

.service-feature .service-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.service-feature .service-text {
  color: #1a2236;
  font-weight: 600;
  font-size: 0.85rem;
}

/* Development Showcase for Slide 2 */
.development-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.development-process {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(26, 34, 54, 0.1);
  border-left: 4px solid #1a2236;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  animation: slideInRight 0.8s ease-out both;
  min-width: 200px;
}

.process-step:hover {
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 8px 30px rgba(26, 34, 54, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.step-1 { animation-delay: 0.1s; }
.step-2 { animation-delay: 0.2s; }
.step-3 { animation-delay: 0.3s; }
.step-4 { animation-delay: 0.4s; }

.step-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 34, 54, 0.1);
  border-radius: 50%;
}

.step-content h4 {
  color: #1a2236;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 0.2rem 0;
  line-height: 1.2;
}

.step-content p {
  color: #2d3550;
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.3;
}

/* Floating Devices */
.floating-devices {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.device {
  position: absolute;
  background: #1a2236;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(26, 34, 54, 0.2);
  animation: deviceFloat 6s ease-in-out infinite;
}

.phone-device {
  width: 80px;
  height: 160px;
  top: 15%;
  right: 10%;
  animation-delay: 0s;
}

.tablet-device {
  width: 120px;
  height: 90px;
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}

.device-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  margin: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.app-preview {
  width: 60%;
  height: 60%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  position: relative;
}

.app-preview::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 20%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.app-preview::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 20%;
  width: 40%;
  height: 15%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

@keyframes deviceFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(2deg);
  }
  50% {
    transform: translateY(-5px) rotate(-1deg);
  }
  75% {
    transform: translateY(-15px) rotate(1deg);
  }
}

/* Responsive adjustments for Slide 2 */
@media (max-width: 768px) {
  .service-features {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  
  .development-process {
    gap: 0.8rem;
  }
  
  .process-step {
    padding: 0.7rem 0.8rem;
    min-width: 180px;
  }
  
  .step-icon {
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
  }
  
  .phone-device {
    width: 60px;
    height: 120px;
    top: 10%;
    right: 5%;
  }
  
  .tablet-device {
    width: 90px;
    height: 70px;
    bottom: 15%;
    left: 10%;
  }
} 

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 3rem 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.checkmark {
  color: #4ade80;
  font-weight: bold;
  font-size: 1.1rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-cta-primary {
  background: #1a2236;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cta-primary:hover {
  background: #2d3550;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 34, 54, 0.3);
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* Enhanced Footer */
footer {
  background: #1a2236;
  color: white;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hex" width="50" height="50" patternUnits="userSpaceOnUse"><polygon points="25,2 47,13.5 47,36.5 25,48 3,36.5 3,13.5" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hex)"/></svg>');
  opacity: 0.5;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding: 3rem 0 2rem 0;
  position: relative;
  z-index: 2;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #f5b942;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column a:hover {
  color: #f5b942;
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  margin: 0;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 6px;
}

.status-indicator {
  color: #22c55e;
  font-size: 0.8rem;
  animation: pulse 2s infinite;
}

.status-text {
  color: #22c55e;
  font-size: 0.75rem;
  font-weight: 600;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Responsive Footer */
@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .cta-text h2 {
    font-size: 1.8rem;
  }
  
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .cta-text h2 {
    font-size: 1.5rem;
  }
} 

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(26,34,54,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.contact-header h2 {
  font-size: 2.5rem;
  color: #1a2236;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

/* Contact Info Section */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(26, 34, 54, 0.08);
  border-left: 4px solid #f5b942;
  transition: all 0.3s ease;
  animation: slideInLeft 0.8s ease-out both;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(26, 34, 54, 0.15);
}

.contact-card:nth-child(1) { animation-delay: 0.1s; }
.contact-card:nth-child(2) { animation-delay: 0.2s; }
.contact-card:nth-child(3) { animation-delay: 0.3s; }

.contact-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  color: #1a2236;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: #2d3550;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.contact-details {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(26, 34, 54, 0.08);
  animation: slideInLeft 0.8s ease-out 0.4s both;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.8rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: rgba(245, 185, 66, 0.1);
  transform: translateX(5px);
}

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

.detail-icon {
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 185, 66, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.detail-content h4 {
  color: #1a2236;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 0.2rem 0;
}

.detail-content p {
  color: #2d3550;
  font-size: 0.85rem;
  margin: 0;
}

/* Contact Form */
.contact-form-container {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(26, 34, 54, 0.1);
  position: relative;
  animation: slideInRight 0.8s ease-out both;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h3 {
  color: #1a2236;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: #2d3550;
  font-size: 0.9rem;
  margin: 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

/* Input Styles */
.input-wrapper, .select-wrapper, .textarea-wrapper {
  position: relative;
}

.input-wrapper input,
.select-wrapper select,
.textarea-wrapper textarea {
  width: 100%;
  padding: 1rem 1rem 0.5rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  background: #f8fafc;
  transition: all 0.3s ease;
  font-family: inherit;
}

.input-wrapper input:focus,
.select-wrapper select:focus,
.textarea-wrapper textarea:focus {
  outline: none;
  border-color: #f5b942;
  background: white;
  box-shadow: 0 0 0 4px rgba(245, 185, 66, 0.1);
}

.input-wrapper label,
.select-wrapper label,
.textarea-wrapper label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: #64748b;
  font-size: 1rem;
  transition: all 0.3s ease;
  pointer-events: none;
  background: transparent;
}

.input-wrapper input:focus + label,
.input-wrapper input:not(:placeholder-shown) + label,
.select-wrapper select:focus + label,
.select-wrapper select:not([value=""]) + label,
.textarea-wrapper textarea:focus + label,
.textarea-wrapper textarea:not(:placeholder-shown) + label {
  top: 0.3rem;
  left: 0.8rem;
  font-size: 0.75rem;
  color: #f5b942;
  font-weight: 600;
}

.input-border,
.select-border,
.textarea-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #f5b942;
  transition: width 0.3s ease;
}

.input-wrapper input:focus ~ .input-border,
.select-wrapper select:focus ~ .select-border,
.textarea-wrapper textarea:focus ~ .textarea-border {
  width: 100%;
}

/* Budget Slider */
.budget-slider {
  margin-top: 1rem;
}

.budget-slider > label {
  display: block;
  color: #1a2236;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.slider-container {
  position: relative;
}

.slider-container input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #e2e8f0;
  outline: none;
  -webkit-appearance: none;
  margin-bottom: 1rem;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f5b942;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(245, 185, 66, 0.3);
  transition: all 0.3s ease;
}

.slider-container input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(245, 185, 66, 0.4);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #64748b;
}

/* Checkbox */
.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #2d3550;
}

.checkbox-wrapper input[type="checkbox"] {
  display: none;
}

.checkbox-wrapper .checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e2e8f0;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark {
  background: #f5b942;
  border-color: #f5b942;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #f5b942 0%, #f0a500 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 185, 66, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.btn-loading {
  display: none;
  align-items: center;
  justify-content: center;
}

.submit-btn.loading .btn-text,
.submit-btn.loading .btn-icon {
  display: none;
}

.submit-btn.loading .btn-loading {
  display: flex;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Success Message */
.form-success {
  text-align: center;
  padding: 2rem;
}

.success-icon {
  font-size: 3rem;
  color: #22c55e;
  margin-bottom: 1rem;
  animation: bounceIn 0.6s ease-out;
}

.form-success h3 {
  color: #1a2236;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.form-success p {
  color: #2d3550;
  margin-bottom: 1.5rem;
}

.reset-btn {
  background: #1a2236;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reset-btn:hover {
  background: #2d3550;
  transform: translateY(-2px);
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Floating Elements */
.floating-elements-contact {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-element {
  position: absolute;
  font-size: 2rem;
  animation: floatContact 6s ease-in-out infinite;
  opacity: 0.1;
}

.element-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.element-2 {
  top: 20%;
  right: 10%;
  animation-delay: 1.5s;
}

.element-3 {
  bottom: 30%;
  left: 15%;
  animation-delay: 3s;
}

.element-4 {
  bottom: 20%;
  right: 5%;
  animation-delay: 4.5s;
}

@keyframes floatContact {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1000;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #1a2236;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.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);
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Header & Navigation */
  .nav-container {
    position: relative;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left 0.3s ease;
    z-index: 999;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  nav a {
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .nav-actions {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-primary, .btn-outline {
    padding: 1rem 2rem;
    font-size: 1rem;
    min-width: 200px;
  }
  
  /* Hero Section */
  .hero {
    padding: 2rem 0 1rem 0;
    min-height: 60vh;
  }
  
  .hero-content {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
    min-height: auto;
  }
  
  .hero-text {
    text-align: center;
    order: 1;
    padding: 0;
  }
  
  .hero-text h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }
  
  .hero-text h2 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  
  .hero-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    margin-top: 1rem;
  }
  
  .hero-image {
    order: 2;
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Slider Controls */
  .slider-control {
    display: none;
  }
  
  .slider-nav {
    bottom: 0.5rem;
    gap: 0.5rem;
  }
  
  .nav-dot {
    width: 8px;
    height: 8px;
  }
  
  /* Slide Indicators */
  .slide-indicator {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    margin-bottom: 0.8rem;
  }
  
  /* Overall Slider Spacing */
  .hero-slider {
    min-height: 400px;
    padding: 1rem 0;
  }
  
  .slide {
    padding: 1rem 0;
  }
  
  /* Floating Elements */
  .floating-card {
    padding: 0.8rem;
    min-width: 80px;
    font-size: 0.8rem;
    border-radius: 12px;
  }
  
  .floating-card h4 {
    font-size: 0.7rem;
    margin-top: 0.3rem;
  }
  
  .floating-card .card-icon {
    font-size: 1.2rem;
  }
  
  .bg-logo {
    width: 200px;
    opacity: 0.2;
  }
  
  /* Service Features */
  .service-features {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin: 1rem 0;
  }
  
  .service-feature {
    padding: 0.8rem;
    font-size: 0.85rem;
    border-radius: 12px;
    min-height: auto;
  }
  
  .service-feature .service-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
  }
  
  .service-feature .service-text {
    font-size: 0.85rem;
  }
  
  /* Development Process */
  .development-process {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .process-step {
    padding: 1rem;
    border-radius: 12px;
    min-height: auto;
  }
  
  .step-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-right: 0.8rem;
  }
  
  .step-content h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
  
  .step-content p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  
  /* Device Mockups */
  .phone-device {
    width: 100px;
    height: 160px;
  }
  
  .tablet-device {
    width: 120px;
    height: 90px;
  }
  
  .floating-devices {
    gap: 1rem;
    margin-top: 1rem;
  }
  
  /* Floating Feature Cards */
  .floating-features {
    gap: 0.8rem;
    margin-top: 1rem;
  }
  
  .feature-card {
    padding: 0.8rem;
    min-width: 120px;
    border-radius: 12px;
  }
  
  .feature-card .feature-icon {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .feature-content h4 {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
  }
  
  .feature-content p {
    font-size: 0.7rem;
    line-height: 1.3;
  }
  
  /* App Features */
  .app-features-highlight {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin: 1rem 0;
  }
  
  .feature-highlight {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 10px;
  }
  
  .feature-highlight .feature-icon {
    font-size: 1rem;
    margin-right: 0.5rem;
  }
  
  .feature-highlight .feature-text {
    font-size: 0.8rem;
  }
  
  /* Store Badges */
  .badge {
    height: 40px;
    margin: 0 0.3rem;
  }
  
  .store-badges {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }
  
  /* Coming Soon Badge */
  .coming-soon-badge {
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    margin-bottom: 1rem;
  }
  
  .badge-text {
    font-size: 0.9rem;
  }
  
  .badge-subtitle {
    font-size: 0.7rem;
  }
  
  /* Contact Section */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-header h2 {
    font-size: 2rem;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
  
  .contact-details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .slider-labels {
    font-size: 0.7rem;
  }
  
  .floating-element {
    font-size: 1.5rem;
  }
  
  /* CTA Banner */
  .cta-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .cta-text h2 {
    font-size: 1.8rem;
  }
  
  .cta-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  /* About Section */
  .about-content {
    padding: 2rem 1rem;
  }
  
  .about-text h3 {
    font-size: 1.3rem;
  }
  
  /* Products Section */
  .product-main {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1rem;
  }
  
  .product-info h3 {
    font-size: 1.8rem;
  }
  
  .product-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: 95%;
  }
  
  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .hero-text h2 {
    font-size: 1.1rem;
  }
  
  .logo {
    height: 40px;
  }
  
  .floating-card {
    min-width: 80px;
    padding: 0.8rem;
  }
  
  .floating-card h4 {
    font-size: 0.7rem;
  }
  
  .bg-logo {
    width: 200px;
  }
  
  .app-mockup {
    max-width: 180px;
  }
  
  .app-glow {
    width: 220px;
    height: 220px;
  }
  
  .feature-card {
    padding: 0.8rem;
    min-width: 120px;
  }
  
  .feature-content h4 {
    font-size: 0.7rem;
  }
  
  .feature-content p {
    font-size: 0.6rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .cta-text h2 {
    font-size: 1.5rem;
  }
  
  .contact-header h2 {
    font-size: 1.8rem;
  }
  
  .contact-form-container {
    padding: 1rem;
  }
  
  .btn-primary, .btn-outline {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    min-width: 180px;
  }
} 