/* Base Styles */
:root {
  /* Unique color scheme - Turquoise, coral and navy */
  --primary: #40E0D0;
  --primary-light: #7FFFD4;
  --secondary: #FF7F50;
  --secondary-light: #FFA07A;
  --dark: #0A1128;
  --dark-light: #1C2541;
  --text: #FFFFFF;
  --text-secondary: #CCCCCC;
  --accent: #7FFFD4;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', 'Nunito Sans', sans-serif;
  background-color: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

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

section {
  padding: 80px 0;
}

/* Background Elements */
.bg-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 20px 20px;
  background-image: linear-gradient(to right, rgba(64, 224, 208, 0.05) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(64, 224, 208, 0.05) 1px, transparent 1px);
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}

.bg-blur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}

.blur-circle-1 {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64, 224, 208, 0.2) 0%, rgba(64, 224, 208, 0) 70%);
  filter: blur(60px);
}

.blur-circle-2 {
  position: absolute;
  bottom: -5%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 127, 80, 0.15) 0%, rgba(255, 127, 80, 0) 70%);
  filter: blur(50px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 20px;
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.5s;
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(64, 224, 208, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(64, 224, 208, 0.4);
}

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

.btn-outline:hover {
  background: rgba(64, 224, 208, 0.1);
  transform: translateY(-3px);
}

.btn-large {
  padding: 16px 38px;
  font-size: 1.1rem;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(10, 17, 40, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.logo {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text);
}

.logo-icon {
  margin-right: 15px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  margin-right: 25px;
}

.nav-item {
  margin: 0 15px;
}

.nav-link {
  font-weight: 500;
  color: var(--text);
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transition: width 0.3s ease;
}

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

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(64, 224, 208, 0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.hero-title {
  margin-bottom: 25px;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

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

.image-card {
  position: relative;
  width: 100%;
  max-width: 500px;
  background: linear-gradient(145deg, var(--dark-light) 0%, var(--dark) 100%);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  margin: 0 auto;
}

.image-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(64, 224, 208, 0.1) 0%, rgba(255, 127, 80, 0.1) 100%);
  z-index: 0;
}

.image-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  text-align: center;
}

/* Features Section */
.features-section {
  position: relative;
  background-color: rgba(10, 17, 40, 0.7);
  border-radius: 30px;
  margin: 0 20px;
  padding: 60px 30px;
}

.section-title-container {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.section-description {
  max-width: 800px;
  margin: 20px auto 0;
  color: var(--text-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(28, 37, 65, 0.5);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 1px solid rgba(64, 224, 208, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(64, 224, 208, 0.15);
  border-color: rgba(64, 224, 208, 0.3);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(64, 224, 208, 0.1) 0%, rgba(255, 127, 80, 0.1) 100%);
  border-radius: 12px;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-description {
  color: var(--text-secondary);
}

/* How It Works Section */
.steps-section {
  position: relative;
}

.steps-container {
  position: relative;
  z-index: 1;
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 30px;
}

.timeline-number {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(145deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(64, 224, 208, 0.3);
}

.timeline-content {
  background: rgba(28, 37, 65, 0.5);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(64, 224, 208, 0.1);
}

.timeline-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.timeline-description {
  color: var(--text-secondary);
}

/* Testimonials Section */
.testimonials-section {
  position: relative;
  background-color: rgba(10, 17, 40, 0.7);
  border-radius: 30px;
  margin: 0 20px;
  padding: 60px 30px;
}

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

.testimonial-card {
  background: rgba(28, 37, 65, 0.5);
  border-radius: 15px;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(64, 224, 208, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(64, 224, 208, 0.15);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-text {
  position: relative;
  z-index: 1;
  font-style: italic;
  margin-bottom: 20px;
  padding-top: 15px;
  color: var(--text-secondary);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  background: linear-gradient(145deg, var(--primary) 0%, var(--secondary) 100%);
}

.author-name {
  font-weight: 600;
  margin-bottom: 5px;
}

.author-title {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.rating {
  display: flex;
  margin-top: 5px;
}

.star {
  color: var(--secondary);
  font-size: 0.8rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 100px 0;
}

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

.cta-title {
  margin-bottom: 25px;
}

.cta-description {
  color: var(--text-secondary);
  margin-bottom: 40px;
}

/* Footer */
.footer {
  background-color: var(--dark-light);
  padding: 80px 0 30px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
}

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

.footer-logo-icon {
  margin-right: 10px;
}

.footer-logo-text {
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-description {
  color: var(--text-secondary);
  margin-bottom: 25px;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-link {
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(64, 224, 208, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-copyright {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

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

  .hero-buttons {
    justify-content: center;
  }

  .image-card {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    background: var(--dark-light);
    flex-direction: column;
    padding: 40px 20px;
    transition: 0.5s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-list {
    flex-direction: column;
    margin-right: 0;
    margin-bottom: 30px;
    width: 100%;
  }
  
  .nav-item {
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }
  
  .hamburger {
    display: block;
  }
  
  .hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .timeline-item {
    flex-direction: column;
    gap: 15px;
  }

  .timeline-number {
    margin: 0 auto;
  }

  .timeline-content {
    text-align: center;
  }

  .features-grid, .testimonials-container {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .features-section, .testimonials-section {
    margin: 0;
    border-radius: 0;
  }
}
