/* Base Styles */
:root {
  --primary: #00ccff;
  --secondary: #ff6699;
  --accent: #9933ff;
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: #ffffff;
}

.wrapper {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

/* Typography */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 1.8rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

p {
  margin-bottom: 1rem;
}

.highlight {
  color: var(--secondary);
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

/* Navigation */
nav {
  display: flex;
  align-items: center;
}

.menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.menu a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

.menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.menu-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-icon span:nth-child(1) {
  top: 0;
}

.menu-icon span:nth-child(2) {
  top: 8px;
}

.menu-icon span:nth-child(3) {
  top: 16px;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  min-height: calc(100vh - 70px);
}

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

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--gray);
}

.hero-image {
  flex: 1;
  max-width: 500px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.primary-btn {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 204, 255, 0.3);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 204, 255, 0.4);
}

.large {
  padding: 1rem 3rem;
  font-size: 1.2rem;
}

/* Features Section */
.features {
  padding: 6rem 2rem;
  background-color: #ffffff;
}

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

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card .icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.feature-card p {
  color: var(--gray);
}

/* Experience Section */
.experience {
  display: flex;
  align-items: center;
  padding: 6rem 2rem;
  background-color: #f9f9f9;
}

.experience-content {
  flex: 1;
  max-width: 600px;
  padding-right: 2rem;
}

.experience-content h2 {
  text-align: left;
}

.benefits {
  margin-top: 1.5rem;
  padding-left: 1.5rem;
}

.benefits li {
  margin-bottom: 0.5rem;
}

.experience-image {
  flex: 1;
  max-width: 500px;
}

/* Get Started Section */
.get-started {
  padding: 6rem 2rem;
  background-color: #ffffff;
  text-align: center;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}

.step {
  flex: 1;
  max-width: 250px;
  padding: 2rem;
  border-radius: 15px;
  background-color: #f9f9f9;
  position: relative;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

/* Footer */
footer {
  background-color: #212529;
  color: white;
  padding: 4rem 2rem 1rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  flex: 1;
  min-width: 200px;
}

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

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

footer h3 {
  color: white;
  margin-bottom: 1.5rem;
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 0.75rem;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    padding: 3rem 2rem;
  }
  
  .hero-content {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .hero-content h2 {
    text-align: center;
    font-size: 2.5rem;
  }
  
  .hero-image, .experience-image {
    max-width: 400px;
    width: 100%;
  }
  
  .experience {
    flex-direction: column-reverse;
    padding: 3rem 2rem;
  }
  
  .experience-content {
    max-width: 100%;
    padding-right: 0;
    margin-top: 2rem;
    text-align: center;
  }
  
  .experience-content h2 {
    text-align: center;
  }
  
  .benefits {
    display: inline-block;
    text-align: left;
  }
  
  .steps {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .step {
    max-width: 350px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
  
  header {
    padding: 1rem;
  }
  
  .menu {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background-color: white;
    width: 80%;
    height: calc(100vh - 70px);
    padding: 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  #menu-toggle:checked ~ .menu {
    right: 0;
  }
  
  .menu-icon {
    display: block;
  }
  
  #menu-toggle:checked ~ .menu-icon span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
  }
  
  #menu-toggle:checked ~ .menu-icon span:nth-child(2) {
    opacity: 0;
  }
  
  #menu-toggle:checked ~ .menu-icon span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
  }
}
