/* Base Styles & Reset */

:root {
  --bg-color: #242528;
  --text-color: #e0e0e0;
  /* Change these colors */
  --primary-color: #0066cc; /* Change from purple (#8a2be2) to blue */
  --secondary-color: #3498db; /* Keep or adjust this blue shade */
  --accent-color: #3498db; /* Change from pink (#e100ff) to white */
  --dark-bg: #0a0a0a;
  --card-bg: #101010;
  --border-color: #333;
  /* Update glow colors to match new blue/white theme */
  --glow-color: rgba(0, 102, 204, 0.6); /* Blue glow */
  --glow-secondary: rgba(255, 255, 255, 0.4); /* White glow */
  /* Update gradients for headings and buttons */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  --gradient-secondary: linear-gradient(135deg, #3498db, #ffffff);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}


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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}


@keyframes twinkle {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 0.9; }
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

/* Header and Navigation */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
  display: flex;
  align-items: center;
}

.logo-svg {
  height: 20px;
  color: var(--text-color);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  position: relative;
  font-weight: 500;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 0 15px var(--glow-color);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px var(--glow-color);
  color: white;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--text-color);
}

.btn-secondary:hover {
  background: rgba(138, 43, 226, 0.1);
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  padding: 80px 0; /* Much smaller fixed value */
  min-height: auto; /* Let it be determined by content */
  max-height: 500px; /* Optional: cap the maximum height */
}

.hero-content {
  flex: 1;
  padding-right: 3rem;
}

.headline {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.subheadline {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-visual {
  flex: 1;
  position: relative;
}

.visual-placeholder {
  width: 100%;
  height: 400px;
  background: rgba(138, 43, 226, 0.05);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.glow-sphere {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-color) 0%, rgba(138, 43, 226, 0) 70%);
  filter: blur(20px);
  opacity: 0.6;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.1); }
}

.grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                   linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 1;
}

/* Section Styling */
section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-color);
}

.feature-icon {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

/* How It Works Section */
.steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.step {
  flex: 1;
  min-width: 300px;
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  position: relative;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: #e1ecff;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

/* Showcase Section */
.showcase {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.showcase-content, 
.showcase-visual {
  flex: 1;
  min-width: 300px;
}

.showcase-points {
  list-style: none;
  margin: 2rem 0;
}

.showcase-points li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

.showcase-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient-primary);
}

.showcase-placeholder {
  height: 500px;
  background: rgba(138, 43, 226, 0.05);
}

.showcase-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: block;
}

.showcase-visual .vertical-image {
    height: 500px; /* Set your desired fixed height here */
    width: auto;
    max-width: 100%; /* Ensures it doesn't overflow its container */
    object-fit: contain; /* Maintains aspect ratio */
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin: 0 auto; /* Centers the image if it's narrower than its container */
    display: block;
}

/* Testimonials Section */
.testimonial-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.quote {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  position: relative;
}

.quote::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  left: -1.5rem;
  top: -1.5rem;
  color: rgba(138, 43, 226, 0.2);
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-secondary);
}

.author-info h4 {
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
}

.author-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

/* Call to Action Section */
.cta-section {
  background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)), 
              radial-gradient(circle at 50% 50%, var(--primary-color) 0%, rgba(138, 43, 226, 0) 60%);
  background-size: cover;
  border-radius: 15px;
  padding: 5rem 3rem;
  text-align: center;
  margin-bottom: 2rem;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 4rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo-svg {
  height: 40px;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-links-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-links-column ul {
  list-style: none;
}

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

.footer-links-column a {
  color: rgba(255,, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links-column a:hover {
  color: var(--primary-color);
}

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

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-bg);
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.7);
}

.social-icon:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 991px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero {
    flex-direction: column;
    gap: 3rem;
    padding: 4rem 0;
  }
  
  .hero-content {
    padding-right: 0;
  }
  
  .showcase {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .header {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .steps {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
  }
  
  .hero-buttons, .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .visual-placeholder {
    height: 300px;
  }
}
