/* Base Styles */
:root {
  --bg-primary: #0a0a19;
  --bg-secondary: #16213e;
  --accent-primary: #e94560;
  --accent-secondary: #0f3460;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --card-bg: #1a1a2e;
  --border-radius: 8px;
}

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

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

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

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

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

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-primary);
}

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

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

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

ul {
  list-style: none;
}

section {
  padding: 5rem 0;
}

.highlight {
  color: var(--accent-primary);
}

/* Header Styles */
header {
  background-color: rgba(10, 10, 25, 0.95);
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  margin-right: 0.5rem;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #fff, #e94560);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

nav ul {
  display: flex;
  align-items: center;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  font-weight: 500;
}

nav ul li a:hover {
  color: var(--accent-primary);
}

.nav-button {
  background-color: var(--accent-primary);
  color: var(--text-primary);
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
}

.nav-button:hover {
  background-color: #d13a52;
  color: var(--text-primary);
  transform: translateY(-3px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
  min-height: calc(100vh - 80px);
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-graphic {
  width: 100%;
  max-width: 500px;
}

.cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.main-button {
  background-color: var(--accent-primary);
  color: var(--text-primary);
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
  transition: all 0.3s ease;
}

.main-button:hover {
  background-color: #d13a52;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.5);
}

.secondary-button {
  background-color: transparent;
  color: var(--text-primary);
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  border: 2px solid var(--accent-primary);
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background-color: rgba(233, 69, 96, 0.1);
  transform: translateY(-3px);
}

/* Features Section */
.features {
  background-color: var(--bg-secondary);
  padding: 5rem 2rem;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

/* Process Section */
.process {
  padding: 5rem 2rem;
  background-color: var(--bg-primary);
}

.steps {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.step {
  display: flex;
  align-items: flex-start;
}

.step-number {
  background-color: var(--accent-primary);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

/* About Section */
.about {
  background-color: var(--bg-secondary);
  padding: 5rem 2rem;
}

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

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
  background-color: var(--bg-primary);
  padding: 5rem 2rem;
  text-align: center;
}

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

.cta-section p {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background-color: var(--card-bg);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.footer-logo {
  flex-shrink: 0;
}

.footer-brand-text h3 {
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
  color: var(--text-primary);
}

.footer-brand-text p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text-secondary);
}

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

.footer-links-column h4 {
  color: var(--accent-primary);
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

.footer-links-column ul li a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

.copyright {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding: 4rem 2rem 2rem;
  }
  
  .cta {
    justify-content: center;
  }
  
  .hero-visual {
    padding: 0 2rem 4rem;
  }

  .feature-cards {
    gap: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .header-inner {
    flex-direction: column;
    padding: 1rem;
  }
  
  nav {
    margin-top: 1rem;
    width: 100%;
  }
  
  nav ul {
    justify-content: space-between;
    width: 100%;
  }
  
  nav ul li {
    margin: 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-links {
    width: 100%;
    justify-content: space-between;
  }
}

@media screen and (max-width: 576px) {
  html {
    font-size: 12px;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  section {
    padding: 3rem 1rem;
  }
  
  .step {
    flex-direction: column;
  }
  
  .step-number {
    margin-bottom: 1rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}
