:root {
  --primary-color: #8e44ad;
  --secondary-color: #e74c3c;
  --text-color: #ecf0f1;
  --dark-bg: #121212;
  --medium-bg: #212121;
  --light-bg: #303030;
  --accent-color: #f1c40f;
  --container-width: 1200px;
}

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

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Main Layout */
.main-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Banner Area */
.banner {
  background: var(--dark-bg);
  position: relative;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(142, 68, 173, 0.3), transparent 70%),
              radial-gradient(circle at bottom left, rgba(231, 76, 60, 0.3), transparent 70%);
  z-index: 0;
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.site-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.site-subtitle {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  box-shadow: 0 4px 15px rgba(142, 68, 173, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(142, 68, 173, 0.6);
}

/* Hexagon grid layout */
.hexagon-grid {
  margin: 6rem 0;
}

.grid-header {
  text-align: center;
  margin-bottom: 4rem;
}

.grid-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.grid-title::after {
  content: '';
  position: absolute;
  left: 25%;
  right: 25%;
  bottom: -10px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.grid-subtitle {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  opacity: 0.8;
}

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

.grid-item {
  background-color: var(--medium-bg);
  border-radius: 10px;
  padding: 2rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 1;
  overflow: hidden;
}

.grid-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  z-index: -1;
  border-radius: 12px;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

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

.grid-item:hover::before {
  opacity: 0.6;
}

.item-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  margin-bottom: 1.5rem;
}

.item-icon svg {
  width: 30px;
  height: 30px;
}

.item-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.item-desc {
  font-size: 1rem;
  opacity: 0.8;
}

/* Call to action section */
.cta-section {
  background-color: var(--medium-bg);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(142, 68, 173, 0.1), rgba(231, 76, 60, 0.1));
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

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

.cta-text {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background-color: var(--medium-bg);
  padding: 4rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.footer-logo svg {
  width: 50px;
  height: 50px;
  margin-right: 0.75rem;
}

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

.footer-nav {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-nav a {
  color: var(--text-color);
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 1;
}

.copyright {
  opacity: 0.5;
  font-size: 0.9rem;
  margin-top: 2rem;
}

.legal-footer {
  background-color: var(--dark-bg);
  padding: 1rem 0;
  text-align: center;
}

.legal-text {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* Responsive styles */
@media (max-width: 992px) {
  .site-title {
    font-size: 2.5rem;
  }
  
  .grid-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .banner {
    padding: 4rem 0;
  }
  
  .site-title {
    font-size: 2rem;
  }
  
  .site-subtitle {
    font-size: 1rem;
  }
  
  .grid-container {
    grid-template-columns: 1fr;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .site-title {
    font-size: 1.8rem;
  }
  
  .grid-title {
    font-size: 1.8rem;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
}
