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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

a {
  text-decoration: none;
  color: #6B46C1;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 80px 0;
}

h1, h2, h3, h4 {
  margin-bottom: 20px;
  font-weight: 600;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #06B6D4;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.3rem;
}

p {
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #6B46C1;
  color: white;
  border: 2px solid #6B46C1;
}

.btn-primary:hover {
  background-color: #5539a0;
  border-color: #5539a0;
}

.btn-secondary {
  background-color: transparent;
  color: #6B46C1;
  border: 2px solid #6B46C1;
}

.btn-secondary:hover {
  background-color: #6B46C1;
  color: white;
}

/* Navigation */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.logo img {
  height: 40px;
  width: auto;
  max-width: 100%;
  display: block;
}

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

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: #6B46C1;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
  padding: 150px 0 80px;
  text-align: center;
}

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

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  color: #333;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
}

/* Product Hero */
.product-hero {
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  padding: 150px 0 80px;
  text-align: center;
}

.product-hero-logo {
  height: 80px;
  margin-bottom: 20px;
}

.product-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.8rem;
  color: #06B6D4;
  font-weight: 600;
  margin-bottom: 20px;
}

.description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #555;
}

/* Featured Product */
.featured-product {
  background-color: #f9f9f9;
}

.product-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.product-info {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-logo {
  height: 60px;
  margin-bottom: 20px;
}

.product-highlights {
  flex: 1;
  background-color: #f5f7ff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.highlight {
  margin-bottom: 25px;
}

.highlight h4 {
  color: #6B46C1;
  margin-bottom: 5px;
}

/* About Section */
.about {
  background-color: #fff;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-values {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value {
  background-color: #f9f9f9;
  padding: 20px;
  border-left: 4px solid #06B6D4;
}

/* Product Overview */
.product-overview {
  background-color: #f9f9f9;
}

.overview-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
  gap: 20px;
}

.stat {
  background: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat h3 {
  color: #6B46C1;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* Objectives */
.objectives {
  background-color: #fff;
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.objective {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.objective:hover {
  transform: translateY(-5px);
}

.objective-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Target Users */
.target-users {
  background-color: #f9f9f9;
}

.users-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.user-type {
  flex: 1;
  min-width: 250px;
  background: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.user-type h3 {
  color: #6B46C1;
  margin-bottom: 15px;
}

/* Features */
.features {
  background-color: #fff;
}

.feature-category {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.feature-category:last-child {
  border-bottom: none;
}

.feature-category h3 {
  color: #6B46C1;
  margin-bottom: 15px;
}

.feature-category ul {
  list-style-type: none;
  padding-left: 20px;
}

.feature-category li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.feature-category li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #06B6D4;
  font-weight: bold;
}

/* User Flow */
.user-flow {
  background-color: #f9f9f9;
}

.flow-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
  gap: 30px;
}

.flow-step {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 30px;
  background-color: #6B46C1;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

/* Tech Stack */
.tech-stack {
  background-color: #fff;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.tech-category {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  border-bottom: 3px solid #06B6D4;
}

.tech-category h3 {
  color: #6B46C1;
  margin-bottom: 10px;
}

/* Success Metrics */
.success-metrics {
  background-color: #f9f9f9;
}

.metrics-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.metric {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.metric h3 {
  color: #6B46C1;
  margin-bottom: 10px;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #6B46C1 0%, #06B6D4 100%);
  color: white;
  text-align: center;
}

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

.cta h2 {
  color: white;
  margin-bottom: 20px;
}

.cta p {
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.cta .btn-primary {
  background-color: white;
  color: #6B46C1;
  border: none;
}

.cta .btn-primary:hover {
  background-color: #f9f9f9;
}

/* Contact Section */
.contact {
  background-color: #f9f9f9;
  text-align: center;
}

.contact-content {
  max-width: 700px;
  margin: 0 auto;
}

/* Footer */
.footer {
  background-color: #333;
  color: #fff;
  padding: 70px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
}

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

.footer-logo img {
  height: 40px;
  margin-bottom: 15px;
}

.footer-links, .footer-contact {
  flex: 1;
  min-width: 200px;
}

.footer-links h3, .footer-contact h3 {
  color: #06B6D4;
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #06B6D4;
}

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

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

.footer-links a, .footer-contact p {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #06B6D4;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #999;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero, .product-hero {
    padding: 120px 0 60px;
  }

  .product-hero h1 {
    font-size: 2.8rem;
  }

  .tagline {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar .container {
    flex-wrap: wrap;
    padding: 15px;
  }

  .logo {
    flex: 1;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 10px 0;
    border-top: 1px solid #eee;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-links li {
    margin: 0;
  }

  .nav-links a {
    display: block;
    padding: 10px 0;
  }

  h1 {
    font-size: 2.2rem;
  }

  .hero, .product-hero {
    padding: 100px 0 50px;
  }

  .product-card, .about-content {
    flex-direction: column;
  }

  .overview-stats, .objectives-grid, .users-grid, .flow-steps, .tech-grid, .metrics-list {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links h3::after, .footer-contact h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero, .product-hero {
    padding: 80px 0 40px;
  }

  .product-hero h1 {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1.3rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  section {
    padding: 60px 0;
  }
}
