:root {
  --bg-color: #0d1117;
  --text-primary: #ffffff;
  --text-secondary: #8b949e;
  --accent-color: #00ff88;
  --accent-hover: #00cc6a;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Raleway', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  text-align: center;
}
/* Blob animations for background */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.4;
  animation: float 20s infinite alternate;
}
.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #0055ff, #001144);
  top: -100px;
  left: -100px;
}
.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #00ff88, #004422);
  bottom: -100px;
  right: -100px;
  animation-delay: -10s;
}
@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 50px) scale(1.1); }
}

main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.glass-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.glass-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-title {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.headline, .section-title {
  font-family: 'Raleway', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #fff, #8b949e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title {
  font-size: 2.5rem;
}
.sub-headline, .consultation p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin: 0 auto 2.5rem auto;
  max-width: 800px;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Raleway', sans-serif;
}
.primary-btn {
  background: var(--accent-color);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}
.primary-btn:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
  transform: scale(1.05);
}
.outline-btn {
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}
.outline-btn:hover {
  background: rgba(0, 255, 136, 0.1);
  transform: scale(1.05);
}

.test-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.testimonial-card {
  padding: 2.5rem;
}
.quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #fff;
}
.author {
  color: var(--text-secondary);
  font-weight: 600;
}
@media (max-width: 768px) {
  .test-grid {
    grid-template-columns: 1fr;
  }
  .headline {
    font-size: 2.5rem;
  }
}
