/* Base styles */
:root {
  --primary: #1abc9c;
  --secondary: #8e44ad;
  --accent: #f39c12;
  --dark: #2c3e50;
  --light: #ecf0f1;
  --text: #333333;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --radius: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Helvetica', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: #f5f5f5;
}

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

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

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

/* Header */
header {
  background-color: white;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

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

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--dark);
  font-weight: 600;
  position: relative;
}

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

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

nav a:hover:after {
  width: 100%;
}

/* Banner */
.banner {
  padding: 6rem 2rem;
  background-color: var(--light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.banner-content {
  flex: 1;
  min-width: 300px;
  padding-right: 2rem;
}

.banner h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.accent {
  color: var(--secondary);
  position: relative;
}

.accent:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 8px;
  background-color: rgba(243, 156, 18, 0.3);
  z-index: -1;
}

.banner p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.banner-graphic {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.banner-graphic svg {
  max-width: 350px;
  width: 100%;
}

.cta-button {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: white;
}

/* Explore section */
.explore {
  padding: 5rem 2rem;
  background-color: white;
  text-align: center;
}

.explore h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.explore h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
}

.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 0 auto;
  max-width: 1200px;
}

.card {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

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

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Features section */
.features {
  padding: 5rem 2rem;
  background-color: var(--light);
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.feature-list {
  max-width: 900px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  margin-bottom: 2.5rem;
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-right: 1.5rem;
  opacity: 0.8;
}

.feature-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Access section */
.access {
  padding: 5rem 2rem;
  background: var(--gradient);
  color: white;
  text-align: center;
}

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

.access h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.access p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.access .cta-button {
  background: white;
  color: var(--secondary);
}

.access .cta-button:hover {
  background: var(--light);
  color: var(--primary);
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

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

.footer-brand span {
  font-size: 1.2rem;
  font-weight: 700;
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .banner {
    padding: 4rem 1.5rem;
    text-align: center;
  }
  
  .banner-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .banner h1 {
    font-size: 2.25rem;
  }
  
  nav {
    display: none;
  }
  
  .feature-item {
    flex-direction: column;
  }
  
  .feature-number {
    margin-bottom: 1rem;
  }
}
