/* Base Styles */
:root {
  --primary: #00C9FF;
  --primary-light: rgba(0, 201, 255, 0.1);
  --primary-dark: #0076A3;
  --secondary: #92FE9D;
  --secondary-light: rgba(146, 254, 157, 0.1);
  --secondary-dark: #50BD5A;
  --dark-bg: #0F2041;
  --dark-bg-lighter: #142850;
  --dark-bg-lightest: #27496D;
  --text-light: #FFFFFF;
  --text-muted: #A5B7C8;
  --gradient: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: var(--text-light);
  background-color: var(--dark-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

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

/* Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

section {
  padding: 5rem 0;
  position: relative;
}

.wrapper {
  position: relative;
  overflow-x: hidden;
}

/* Floating Elements Animation */
.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}

.element-1 {
  top: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: var(--primary);
  animation: float 25s infinite alternate ease-in-out;
}

.element-2 {
  bottom: -5%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: var(--secondary);
  animation: float 20s infinite alternate-reverse ease-in-out;
}

.element-3 {
  top: 40%;
  left: 60%;
  width: 300px;
  height: 300px;
  background: var(--primary-dark);
  animation: float 30s infinite alternate ease-in-out;
}

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

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  background-color: rgba(15, 32, 65, 0.8);
  backdrop-filter: blur(10px);
}

header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  background-color: rgba(15, 32, 65, 0.95);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo {
  display: flex;
  align-items: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
}

.logo-icon {
  margin-right: 0.75rem;
}

.logo-text {
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  color: var(--text-light);
}

.logo-text span {
  font-weight: 400;
  opacity: 0.7;
}

.desktop-menu {
  transition: var(--transition);
}

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: var(--transition);
}

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

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1001;
}

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  position: absolute;
  transition: var(--transition);
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  position: absolute;
  transition: var(--transition);
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.hamburger.is-active .hamburger-inner {
  background-color: transparent;
}

.hamburger.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* Buttons */
.button {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-align: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

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

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

.primary {
  background: var(--gradient);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(0, 201, 255, 0.3);
}

.primary:hover {
  box-shadow: 0 6px 20px rgba(0, 201, 255, 0.5);
  transform: translateY(-3px);
  color: var(--text-light);
}

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

.secondary:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  padding: 10rem 0 6rem;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-content {
  flex: 1;
}

.headline {
  margin-bottom: 1.5rem;
}

.highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.subheading {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.stats {
  display: flex;
  gap: 2.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Features Section */
.features {
  background-color: rgba(20, 40, 80, 0.3);
}

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--dark-bg-lighter);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  margin-bottom: 1.5rem;
}

/* Gallery Section */
.gallery {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 32, 65, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  text-align: center;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

.gallery-info h4 {
  margin-bottom: 0.5rem;
}

.gallery-info p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.gallery-cta {
  margin-top: 2rem;
}

/* How It Works Section */
.how-it-works {
  background-color: rgba(20, 40, 80, 0.3);
  text-align: center;
}

.steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 4rem;
}

.step {
  flex: 1;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.step-connector {
  position: relative;
  height: 2px;
  flex: 1;
  background: var(--gradient);
  top: 30px;
  margin: 0 -20px;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
}

.testimonial {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--dark-bg-lighter);
  border-radius: 8px;
  padding: 3rem;
  position: relative;
  box-shadow: var(--card-shadow);
}

.quote-mark {
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: 'Syne', sans-serif;
  font-size: 6rem;
  line-height: 0;
  color: var(--primary);
  opacity: 0.2;
}

.quote-text {
  font-size: 1.3rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.star-rating {
  color: var(--secondary);
}

/* Final CTA Section */
.final-cta {
  background: var(--gradient);
  text-align: center;
  padding: 5rem 0;
}

.final-cta h2 {
  margin-bottom: 1rem;
}

.final-cta p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.final-cta .button {
  background-color: var(--text-light);
  color: var(--primary-dark);
}

.final-cta .button:hover {
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* Footer */
footer {
  background-color: var(--dark-bg-lighter);
  padding: 4rem 0 1.5rem;
}

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

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo {
  margin-right: 1rem;
}

.footer-brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

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

.footer-column h4 {
  margin-bottom: 1.25rem;
}

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

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

.footer-column a {
  color: var(--text-muted);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-image {
    order: 0;
    margin-bottom: 2rem;
  }
  
  .cta-group {
    justify-content: center;
  }
  
  .stats {
    justify-content: center;
  }
  
  .steps {
    flex-direction: column;
  }
  
  .step {
    margin-bottom: 2.5rem;
  }
  
  .step-connector {
    width: 2px;
    height: 30px;
    margin: 0 auto;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .mobile-hidden {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .desktop-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--dark-bg);
    z-index: 1000;
    padding: 6rem 2rem;
    transition: var(--transition);
  }
  
  .desktop-menu.show-mobile {
    right: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  }
  
  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
}

@media (max-width: 576px) {
  section {
    padding: 4rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
  
  .testimonial {
    padding: 2rem 1.5rem;
  }
  
  .quote-text {
    font-size: 1.1rem;
  }
}
