/* Gaming Vibrant Theme - LearnAI Tech */
/* Electric purple (#7c3aed), Hot pink (#ec4899), Cyan (#06b6d4) */

:root {
  --primary: #7c3aed;
  --accent-pink: #ec4899;
  --accent-cyan: #06b6d4;
  --dark: #0f0f23;
  --dark-alt: #1a1a2e;
  --text: #e0e0e0;
  --text-muted: #a0a0a0;
  --white: #ffffff;
}

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

*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--dark);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--white);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p { margin-bottom: 1rem; }

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--accent-cyan), var(--primary), var(--accent-pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 2px solid rgba(124, 58, 237, 0.3);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.2);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.logo img {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.6));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: var(--text);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-pink));
  transition: width 0.3s ease;
  pointer-events: none;
}

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

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--accent-cyan);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Buttons */
.btn, .btn-lg, .btn-primary, .btn-secondary, .btn-ghost {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before,
.btn-lg::before,
.btn-primary::before,
.btn-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  pointer-events: none;
}

.btn:hover::before,
.btn-lg:hover::before,
.btn-primary:hover::before,
.btn-secondary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent-pink));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(236, 72, 153, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--accent-cyan), var(--primary));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(6, 182, 212, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--accent-cyan);
}

.btn-ghost:hover {
  background: var(--accent-cyan);
  color: var(--dark);
  transform: scale(1.05);
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

/* Hero Section - Centered Full Width */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #0f0f23 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-decoration::before,
.hero-bg-decoration::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg-decoration::before {
  top: 10%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite;
}

.hero-bg-decoration::after {
  bottom: 10%;
  right: 15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  animation: float 12s ease-in-out infinite reverse;
}

.hero-center-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.hero-tag {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid var(--primary);
  border-radius: 50px;
  color: var(--accent-cyan);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.hero-title-xl {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease-out;
}

.hero-buttons-center {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease-out;
}

.hero-image-showcase {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              0 0 40px rgba(124, 58, 237, 0.4);
  animation: fadeInUp 1.4s ease-out;
}

.hero-image-showcase img {
  width: 100%;
  height: auto;
  border: 3px solid rgba(6, 182, 212, 0.3);
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.hero-image-showcase:hover img {
  transform: scale(1.02);
}

/* Sections */
section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 50px;
  color: var(--accent-cyan);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.25rem;
  color: var(--text-muted);
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: rgba(26, 26, 46, 0.8);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(124, 58, 237, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--accent-pink));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
  transition: transform 0.3s ease;
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.stat-card {
  text-align: center;
  padding: 2rem;
  background: rgba(26, 26, 46, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-pink);
  box-shadow: 0 15px 35px rgba(236, 72, 153, 0.3);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(26, 26, 46, 0.8);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(6, 182, 212, 0.2);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 6rem;
  color: rgba(124, 58, 237, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-pink);
  box-shadow: 0 15px 35px rgba(236, 72, 153, 0.3);
}

.testimonial-text {
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--accent-cyan);
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--accent-cyan);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-photo-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 16px;
}

.team-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  border: 3px solid rgba(124, 58, 237, 0.3);
  transition: transform 0.5s ease;
}

.team-member:hover .team-photo {
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 15, 35, 0.95), transparent);
  padding: 2rem 1rem 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.team-member:hover .team-overlay {
  transform: translateY(0);
}

.team-socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
  pointer-events: auto;
}

.team-socials a {
  color: var(--accent-cyan);
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.team-socials a:hover {
  color: var(--accent-pink);
}

.team-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.team-role {
  color: var(--accent-cyan);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-bio {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.accordion-item {
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: var(--accent-cyan);
}

.accordion-item summary {
  padding: 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-cyan);
  transition: transform 0.3s ease;
}

.accordion-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--accent-pink);
}

.accordion-item summary:hover {
  color: var(--accent-cyan);
}

.accordion-item p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Contact Form */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--accent-pink));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 5px 20px rgba(124, 58, 237, 0.4);
}

.contact-details h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.contact-details p,
.contact-details a {
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-details a:hover {
  color: var(--accent-cyan);
}

.contact-form {
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--white);
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: rgba(15, 15, 35, 0.8);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 8px;
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Map */
.map-container {
  margin-top: 4rem;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(124, 58, 237, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.blog-card {
  background: rgba(26, 26, 46, 0.8);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.2);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

.blog-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(124, 58, 237, 0.9);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.blog-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.blog-content h3 a {
  color: var(--white);
  transition: color 0.3s ease;
}

.blog-content h3 a:hover {
  color: var(--accent-cyan);
}

.blog-excerpt {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-cyan);
  font-weight: 600;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 1rem;
  color: var(--accent-pink);
}

/* Article Page */
.article-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  padding-top: 120px;
}

.article-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.article-featured-image {
  max-width: 1000px;
  margin: 0 auto 3rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.article-featured-image img {
  width: 100%;
  height: auto;
  border: 2px solid rgba(124, 58, 237, 0.3);
  border-radius: 16px;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--text);
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.75rem;
  color: var(--text);
}

/* Newsletter */
.newsletter-section {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(236, 72, 153, 0.2));
  border-top: 2px solid rgba(124, 58, 237, 0.3);
  border-bottom: 2px solid rgba(236, 72, 153, 0.3);
  padding: 80px 0;
  text-align: center;
}

.newsletter-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.newsletter-section p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 280px;
  padding: 1rem 1.5rem;
  background: rgba(15, 15, 35, 0.8);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 8px;
  color: var(--white);
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.newsletter-form button {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--accent-cyan), var(--primary));
  border: none;
  border-radius: 8px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4);
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(236, 72, 153, 0.6);
}

/* Footer */
footer {
  background: rgba(15, 15, 35, 0.95);
  border-top: 2px solid rgba(124, 58, 237, 0.3);
  padding: 60px 0 30px;
}

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

.footer-section h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-cyan);
}

.footer-about p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent-cyan);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(6, 182, 212, 0.4);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(124, 58, 237, 0.2);
  color: var(--text-muted);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.cards-grid .card:nth-child(1) { animation-delay: 0.1s; }
.cards-grid .card:nth-child(2) { animation-delay: 0.2s; }
.cards-grid .card:nth-child(3) { animation-delay: 0.3s; }
.cards-grid .card:nth-child(4) { animation-delay: 0.4s; }
.cards-grid .card:nth-child(5) { animation-delay: 0.5s; }
.cards-grid .card:nth-child(6) { animation-delay: 0.6s; }

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: rgba(26, 26, 46, 0.98);
  border: 1px solid rgba(124, 58, 237, 0.5);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.cookie-banner p {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-buttons button {
  flex: 1;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--primary), var(--accent-pink));
  color: var(--white);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(124, 58, 237, 0.4);
}

.cookie-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.cookie-decline:hover {
  color: var(--white);
  border-color: var(--accent-cyan);
}

/* Legal Pages */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 120px;
}

.legal-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.legal-content .last-updated {
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.legal-content h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.legal-content p,
.legal-content li {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

/* Responsive Design */
@media (max-width: 968px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }

  .mobile-menu-toggle {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 2rem 2rem;
    gap: 1rem;
    transition: right 0.3s ease;
    border-left: 2px solid rgba(124, 58, 237, 0.3);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
  }

  .hero-title-xl {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .blog-grid,
  .testimonials-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons-center {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons-center .btn,
  .hero-buttons-center .btn-lg {
    width: 100%;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .article-title {
    font-size: 2rem;
  }

  .article-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 640px) {
  .container, .container-wide {
    padding: 0 15px;
  }

  section {
    padding: 60px 0;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .card {
    padding: 2rem 1.5rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
  }

  .footer-content {
    gap: 2rem;
  }

  .hero-title-xl {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }
}
