:root {
  --deep-space: #0a0e27;
  --dark-navy: #141b3d;
  --neon-blue: #00d4ff;
  --neon-green: #00ff88;
  --accent-cyan: #4dd9ff;
  --text-light: #e0e9f5;
  --transition-smooth: all 0.3s ease;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0a0e27 0%, #141b3d 50%, #1a1f3a 100%);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.primary-nav {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(0, 212, 255, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
}

.nav-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--neon-green);
  font-size: 1.8rem;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.brand-logo:hover {
  text-shadow: 0 0 20px var(--neon-green);
}

.brand-logo img {
  border-radius: 50%;
  border: 2px solid var(--neon-blue);
  transition: var(--transition-smooth);
}

.brand-logo:hover img {
  border-color: var(--neon-green);
  box-shadow: 0 0 15px var(--neon-green);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-green);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--neon-green);
}

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

.hero-section {
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.glow-text {
  color: var(--neon-green);
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { text-shadow: 0 0 30px rgba(0, 255, 136, 0.6); }
  50% { text-shadow: 0 0 50px rgba(0, 255, 136, 0.9); }
}

.hero-tagline {
  font-size: 1.8rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: #b8d4e8;
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
  color: var(--deep-space);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 50px rgba(0, 255, 136, 0.8);
}

.hero-visual img {
  width: 100%;
  border-radius: 20px;
  border: 3px solid var(--neon-blue);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
  transition: var(--transition-smooth);
}

.hero-visual img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.8);
}

.features-grid {
  padding: 5rem 2rem;
  background: rgba(10, 14, 39, 0.6);
}

.section-heading {
  text-align: center;
  font-size: 3rem;
  color: var(--neon-green);
  margin-bottom: 3rem;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

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

.feature-card {
  background: linear-gradient(145deg, rgba(20, 27, 61, 0.9), rgba(26, 31, 58, 0.8));
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid rgba(0, 212, 255, 0.3);
  transition: var(--transition-smooth);
  text-align: center;
}

.feature-card:hover {
  border-color: var(--neon-green);
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 255, 136, 0.4);
}

.card-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.6));
}

.feature-card h3 {
  color: var(--neon-blue);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.feature-card p {
  line-height: 1.8;
  color: var(--text-light);
}

.interview-section {
  padding: 5rem 2rem;
}

.interview-container {
  max-width: 1200px;
  margin: 0 auto;
}

.interview-content {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  background: linear-gradient(145deg, rgba(20, 27, 61, 0.9), rgba(26, 31, 58, 0.8));
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid rgba(0, 255, 136, 0.3);
  margin-top: 3rem;
}

.expert-image img {
  width: 100%;
  border-radius: 15px;
  border: 3px solid var(--neon-blue);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.interview-text h3 {
  color: var(--neon-green);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.expert-title {
  color: var(--accent-cyan);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.qa-block {
  margin-bottom: 2rem;
}

.question {
  color: var(--neon-blue);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.answer {
  line-height: 1.8;
  color: var(--text-light);
}

.latest-posts {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(20, 27, 61, 0.95), rgba(10, 14, 39, 0.95));
}

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

.post-preview-card {
  background: linear-gradient(145deg, rgba(20, 27, 61, 0.9), rgba(26, 31, 58, 0.8));
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(0, 212, 255, 0.3);
  transition: var(--transition-smooth);
}

.post-preview-card:hover {
  border-color: var(--neon-green);
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 255, 136, 0.4);
}

.post-preview-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 2px solid var(--neon-blue);
}

.post-preview-card h3 {
  color: var(--neon-green);
  padding: 1.5rem 1.5rem 1rem;
  font-size: 1.5rem;
}

.post-preview-card p {
  padding: 0 1.5rem 1.5rem;
  line-height: 1.7;
  color: #b8d4e8;
}

.read-more {
  display: inline-block;
  padding: 0 1.5rem 1.5rem;
  color: var(--neon-blue);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.read-more:hover {
  color: var(--neon-green);
  text-shadow: 0 0 10px var(--neon-green);
}

.view-all-btn {
  display: block;
  width: fit-content;
  margin: 3rem auto 0;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--neon-blue), var(--accent-cyan));
  color: var(--deep-space);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.view-all-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.7);
}

.site-footer {
  background: rgba(10, 14, 39, 0.98);
  border-top: 2px solid rgba(0, 212, 255, 0.3);
  padding: 4rem 2rem 2rem;
  margin-top: 5rem;
}

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

.footer-column h4 {
  color: var(--neon-green);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.footer-column p {
  line-height: 1.8;
  color: #b8d4e8;
  margin-bottom: 0.8rem;
}

.reg-number {
  color: var(--accent-cyan);
  font-weight: 600;
  margin-top: 1rem;
}

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

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-column ul li a:hover {
  color: var(--neon-green);
  text-shadow: 0 0 10px var(--neon-green);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--accent-cyan);
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(145deg, rgba(20, 27, 61, 0.98), rgba(10, 14, 39, 0.98));
  border-top: 3px solid var(--neon-blue);
  padding: 2rem;
  z-index: 10000;
  box-shadow: 0 -5px 30px rgba(0, 212, 255, 0.3);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text h4 {
  color: var(--neon-green);
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
}

.cookie-text p {
  color: var(--text-light);
  line-height: 1.7;
}

.cookie-text a {
  color: var(--neon-blue);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  font-size: 0.9rem;
}

.cookie-btn.accept {
  background: linear-gradient(135deg, var(--neon-green), var(--accent-cyan));
  color: var(--deep-space);
}

.cookie-btn.accept:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.cookie-btn.customize {
  background: rgba(0, 212, 255, 0.2);
  color: var(--neon-blue);
  border: 2px solid var(--neon-blue);
}

.cookie-btn.customize:hover {
  background: rgba(0, 212, 255, 0.4);
}

.cookie-btn.decline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.decline:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 968px) {
  .hero-section {
    grid-template-columns: 1fr;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .nav-links {
    gap: 1.5rem;
  }
  
  .interview-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-heading {
    font-size: 2.5rem;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }
}