/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CSS Variables */
:root {
  --primary: #6366f1;
  --primary-dark: #003366;
  --secondary: #0ea5e9;
  --accent: #ec4899;
  --success: #10b981;
  --dark: #0f172a;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-600: #475569;
  --gray-900: #0f172a;
  --shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-hero: linear-gradient(
    135deg,
    #667eea 0%,
    #764ba2 50%,
    #f093fb 100%
  );
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--gray-900);
  background: #fff;
  overflow-x: hidden;
}

.container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 20px;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease-out;
}
.animate-slide-in {
  animation: slideIn 0.8s ease-out;
}
.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--gray-600);
  transition: all 0.3s ease;
  position: relative;
}

.nav a:hover {
  color: var(--primary);
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.cta-nav {
  background: var(--gradient);
  color: white !important;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  transform: scale(1);
  transition: all 0.3s ease;
}

.cta-nav:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow);
}

/* Hero Section */
.hero {
  background: var(--gradient-hero);
  padding: 7rem 1rem 1rem 1rem;
  position: relative;
  overflow: hidden;
}

.hero::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="50" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
  position: relative;
}

.hero-content {
  color: white;
}

.badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title .highlight {
  display: inline-block;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 15px;
  opacity: 0.95;
}

.hero-description {
  font-size: 1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.7;
}

.hero-benefits {
  list-style: none;
  margin-bottom: 40px;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.hero-benefits li::before {
  content: "✓";
  background: var(--success);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Form Card */
.form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem 1.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
}

.form-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.form-card .subtitle {
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.form-group {
  margin-bottom: 0.2rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.1rem;
}

.form-input {
  width: 100%;
  padding: 0.5rem;
  border: 2px solid var(--gray-100);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.btn-primary {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 0.6rem 0.6rem;
  margin-top: 0.4rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  transform: scale(1);
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow);
}

/* Features Section */
.features {
  padding: 1rem 0;
  background: var(--gray-50);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.features-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gray-900);
}

.features-content p {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 40px;
}

.feature-item {
  background: white;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gray-900);
}

.feature-item p {
  color: var(--gray-600);
  margin: 0;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.screenshot {
  background: white;
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--gray-100);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.screenshot::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.screenshot:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.screenshot:hover::before {
  opacity: 0.05;
}

.screenshot h4 {
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.screenshot p {
  color: var(--gray-600);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.section-wrapper {
  text-align: center;
  margin: auto;
  max-width: 800px;
  padding: 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 15px;
}

.section-description {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
}

/* Services Section */
.services {
  padding: 1rem 0;
  background: white;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h2 {
  color: #f59e0b;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.services-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background: white;
  border-radius: 1rem;
  padding: 40px 30px;
  text-align: center;
  border: 2px solid var(--primary-dark);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 0.8rem;
  background: var(--gradient);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  transform: scale(1);
}

.explore-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow);
}

/* CTA Section */
.cta-section {
  background: var(--gradient);
  padding: 1rem 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::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(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.cta-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  position: relative;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.7;
}

.cta-benefits {
  list-style: none;
  margin-bottom: 40px;
}

.cta-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.cta-benefits li::before {
  content: "✓";
  background: var(--success);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-weight: bold;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: var(--primary);
  padding: 0.8rem 0.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  transform: scale(1);
}

.btn-white:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow);
}

.btn-outline {
  border: 2px solid white;
  color: white;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-outline:hover {
  background: white;
  color: var(--primary);
}

.cta-visual {
  position: relative;
}

.cta-card {
  display: flex;
  flex-direction: column;
 
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  padding: 2.5rem;
  /* text-align: center; */
}

.cta-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.cta-card p {
  margin-bottom: 20px;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

/* Success Message */
.success-message {
  background:   var( --gradient);
  color: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
}

.success-message h3 {
  color: #f59e0b;
  font-size:3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.success-message .icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.success-message p {
  opacity: 0.9;
  line-height: 1.6;
}

/* Utility Classes */
.hidden {
  display: none;
}

.text-center {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-inner,
  .features-grid,
  .cta-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .form-card {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .screenshots-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-white,
  .btn-outline {
    width: 100%;
    max-width: 300px;
    text-align: center;
    display: inline-block;
  }

  .form-card {
    padding: 30px 25px;
  }

  .services-header h2,
  .features-content h2,
  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero {
    padding: 80px 0 40px;
  }

  .form-card {
    padding: 25px 20px;
  }

  .features,
  .services,
  .cta-section {
    padding: 1rem 0;
  }

  .badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .feature-item {
    padding: 25px;
  }
  .section-title {
    text-align: start;
    font-size: 1.5rem;
  }
  .section-description {
    text-align: start;
    font-size: 1rem;
  }
}

/* Additional Interactive Elements */
.service-card:nth-child(1):hover::before {
  background: linear-gradient(135deg, #667eea, #764ba2);
}
.service-card:nth-child(2):hover::before {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}
.service-card:nth-child(3):hover::before {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}
.service-card:nth-child(4):hover::before {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
}

/* Scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
.form-input:focus,
.btn-primary:focus,
.btn-white:focus,
.btn-outline:focus,
.explore-btn:focus,
.nav a:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Loading states */
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Print styles */
@media print {
  .header,
  .cta-section,
  .footer {
    display: none;
  }

  .hero {
    background: white;
    color: black;
  }

  .hero-content {
    color: black;
  }
}
.features-carousel {
  position: relative;
  min-height: 320px;
}

.features-carousel .feature-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  text-align: center;
}

.features-carousel .feature-item img {
  width: 100%;
  max-width: 350px;
  border-radius: 16px;
  margin-bottom: 15px;
  box-shadow: var(--shadow);
}

.features-carousel .feature-item.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  z-index: 2;
}

.screenshots-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.screenshots-description > h3 {
  color: var(--primary-dark);
  text-align: center;
  margin-top: 1rem;
}

.screenshots-description > p {
  text-align: center;
  font-size: 0.9rem;
}

