:root {
  --primary-color: #00c3ff;
  --secondary-color: #77dd77;
  --accent-color: #ff6b6b;
  --dark-color: #282c34;
  --light-color: #f8f9fa;
  --text-color: #333;
  --card-bg: #fff;
  --shadow: 0 5px 15px rgba(0,0,0,0.1);
  --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background-color: var(--light-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.content-wrap {
  flex: 1;
}

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

/* Navigation */
.site-header {
  position: relative;
  background-color: var(--dark-color);
  padding: 1rem 0;
}

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

.site-branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-logo {
  width: 42px;
  height: 42px;
}

.site-name {
  color: white;
  font-weight: 600;
  font-size: 1.4rem;
  text-decoration: none;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient);
  transform: skewY(-3deg);
  transform-origin: top right;
  z-index: -1;
}

.hero-content {
  color: white;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  box-shadow: var(--shadow);
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 7px 15px rgba(255, 107, 107, 0.4);
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: var(--gradient);
}

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

.feature-card {
  border-radius: 10px;
  padding: 2rem;
  background: white;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient);
  z-index: -1;
}

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

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

.feature-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
  text-align: center;
}

.feature-description {
  text-align: center;
  color: #666;
}

/* How It Works Section */
.how-it-works {
  padding: 5rem 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, white, transparent);
  z-index: 1;
}

.steps-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 2rem;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gradient);
  transform: translateX(-50%);
}

.step {
  position: relative;
  margin-bottom: 4rem;
}

.step:last-child {
  margin-bottom: 0;
}

.step-content {
  position: relative;
  width: calc(50% - 30px);
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.step:nth-child(odd) .step-content {
  margin-left: auto;
}

.step-number {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.3rem;
  box-shadow: var(--shadow);
}

.step:nth-child(odd) .step-number {
  left: calc(50% - 25px);
}

.step:nth-child(even) .step-number {
  right: calc(50% - 25px);
}

.step-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.action-wrapper {
  text-align: center;
  margin-top: 3rem;
}

/* Footer */
.site-footer {
  background-color: var(--dark-color);
  color: white;
  padding: 3rem 0 1.5rem;
}

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

.footer-branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-about p {
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.footer-links h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

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

.links-list li {
  margin-bottom: 0.5rem;
}

.links-list a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.links-list a:hover {
  opacity: 1;
}

.copyright {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive styles */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .steps-container::before {
    left: 30px;
  }
  
  .step-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }
  
  .step-number {
    left: 5px !important;
    right: auto !important;
  }
}

@media (max-width: 480px) {
  .site-name {
    font-size: 1.2rem;
  }
  
  .hero-title {
    font-size: 1.7rem;
  }
  
  .hero-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}
