body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #111;
  color: #eee;
  line-height: 1.6;
}

/* Enhanced Typography Hierarchy */
h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
}

p {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Header and Navigation */
.site-header {
  background-color: #1a1a1a;
  border-bottom: 1px solid #333;
  padding: 0 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.nav-brand a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #eee;
  font-size: 1.25rem;
  font-weight: 600;
}

.logo {
  width: 40px;
  height: 40px;
  margin-right: 0.75rem;
  border-radius: 4px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-brand:hover .logo {
  transform: scale(1.05);
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 600;
}

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

.nav-link {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #3b82f6;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: #3b82f6;
  background-color: rgba(59, 130, 246, 0.1);
}

.nav-link.active {
  color: #3b82f6;
  background-color: rgba(59, 130, 246, 0.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: #eee;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: #1a1a1a;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
    border-top: 1px solid #333;
  }

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

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
  }

  .nav-link {
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #333;
  }

  /* Home page mobile adjustments */
  .hero {
    min-height: 60vh;
    padding: 3rem 0 2rem 0;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .benefit-item {
    text-align: center;
  }

  .button-container {
    flex-direction: column;
    align-items: center;
  }

  .button-link {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* About page mobile adjustments */
  .about-hero {
    padding: 2rem 0 1rem;
  }

  .about-subtitle {
    font-size: 1.1rem;
  }

  .mission {
    margin: 2rem 0;
    padding: 1.5rem;
  }

  .mission-statement {
    font-size: 1.1rem;
  }

  .story {
    margin: 2rem 0;
  }

  .story-content {
    text-align: center;
  }

  .story-content p {
    font-size: 1rem;
  }

  .philosophy {
    margin: 2rem 0;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .philosophy-item {
    padding: 1.5rem;
  }

  .values {
    margin: 2rem 0;
  }

  .values-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .value-item {
    padding: 1.25rem;
  }

  .team {
    margin: 2rem 0;
  }

  .team-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .stat {
    padding: 1rem;
  }

  .stat h4 {
    font-size: 1.5rem;
  }

  .about-cta {
    margin: 2rem 0;
    padding: 2rem 1.5rem;
  }

  /* Products page mobile adjustments */
  .products-hero {
    padding: 2rem 0 1rem;
  }

  .products-subtitle {
    font-size: 1.1rem;
  }

  .products-nav {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .product-tab {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .products-grid, .services-grid, .content-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .product-tag, .service-duration {
    align-self: flex-start;
  }

  .content-pricing {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .content-pricing .button-link {
    width: 100%;
  }

  /* Contact page mobile adjustments */
  .contact-hero {
    padding: 2rem 0 1rem;
  }

  .contact-subtitle {
    font-size: 1.1rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-info {
    order: -1;
    padding: 1.5rem;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .social-link {
    justify-content: center;
    text-align: center;
  }

  .social-content {
    text-align: center;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cta-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cta-stat h4 {
    font-size: 1.5rem;
  }

  /* Blog and YouTube mobile adjustments */
  .blog-hero, .youtube-hero {
    padding: 2rem 0 1rem;
  }

  .blog-subtitle, .youtube-subtitle {
    font-size: 1.1rem;
  }

  .posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stats-grid, .content-grid, .benefits-grid, .series-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .post-navigation {
    flex-direction: column;
    gap: 1rem;
  }

  .post-tags {
    justify-content: center;
  }

  .launch-content, .post-cta, .youtube-cta, .blog-newsletter {
    padding: 2rem 1rem;
  }
}

.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.content > .post {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  text-align: left;
}

.post-content iframe {
  display: block;
  margin: 2rem auto;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

/* Tablets */
@media (max-width: 768px) {
  .content {
    padding: 1rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-info {
    order: -1;
  }
  
  .products-nav {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .cta-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* About page tablet adjustments */
  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .values-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .team-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .mission {
    padding: 2rem 1.5rem;
  }

  .about-cta {
    padding: 2.5rem 1.5rem;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .content {
    padding: 1rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-info {
    order: -1;
  }
  
  .products-nav {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .cta-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Large phones */
@media (max-width: 480px) {
  .content {
    padding: 0.75rem;
  }
  
  .hero, .about-hero, .products-hero, .contact-hero {
    padding: 1.5rem 0 1rem;
  }
  
  .hero-subtitle, .about-subtitle, .products-subtitle, .contact-subtitle {
    font-size: 1rem;
  }
  
  .services-grid, .products-grid, .content-grid, .benefits-grid, .philosophy-grid, .values-list, .faq-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .product-card, .service-card, .content-card {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .button-container {
    flex-direction: column;
    align-items: center;
  }
  
  .button-link {
    width: 100%;
    max-width: 300px;
  }
  
  .team-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .social-links {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Small phones */
@media (max-width: 360px) {
  .content {
    padding: 0.5rem;
  }
  
  .nav-container {
    padding: 0.5rem 0;
  }
  
  .logo {
    width: 32px;
    height: 32px;
  }
  
  .brand-text {
    font-size: 1.1rem;
  }
  
  .product-card, .service-card, .content-card, .contact-form, .contact-info {
    padding: 1rem;
  }
  
  .mission {
    padding: 1rem;
    margin: 1.5rem 0;
  }
}

/* Enhanced High DPI Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Landscape phone optimizations */
@media (max-height: 500px) and (orientation: landscape) {
  .hero, .about-hero, .products-hero, .contact-hero {
    padding: 1rem 0;
  }
  
  .nav-container {
    padding: 0.5rem 0;
  }
  
  .site-header {
    position: static;
  }
}

/* Touch device optimizations */
@media (pointer: coarse) {
  .button-link {
    padding: 1rem 2rem;
    min-height: 44px;
    min-width: 44px;
  }
  
  .nav-link {
    padding: 0.75rem 1.25rem;
    min-height: 44px;
  }
  
  .product-tab {
    padding: 1rem 1.5rem;
    min-height: 44px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 1rem;
    min-height: 44px;
  }
}

/* Global Animations and Transitions */
* {
  box-sizing: border-box;
}

*:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Apply animations to sections */
section {
  animation: fadeInUp 0.6s ease-out;
}

/* Home Page Sections */
.hero {
  min-height: 80vh;
  padding: 6rem 0 4rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #ccc;
  margin: 1rem 0;
  font-weight: 500;
}

.hero-description {
  font-size: 1.1rem;
  color: #aaa;
  max-width: 600px;
  margin: 1.5rem auto 2rem;
  line-height: 1.7;
}

.services-overview, .benefits, .cta {
  margin: 4rem 0;
  padding: 2rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background-color: #1a1a1a;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #333;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #3b82f6;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: #eee;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}

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

.benefit-item {
  text-align: left;
  padding: 1.5rem;
  background-color: rgba(59, 130, 246, 0.05);
  border-radius: 6px;
  border-left: 3px solid #3b82f6;
}

.benefit-item h4 {
  color: #eee;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.benefit-item p {
  color: #ccc;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.cta {
  background-color: #1a1a1a;
  border-radius: 8px;
  padding: 3rem 2rem;
  border: 1px solid #333;
}

.cta h2 {
  color: #eee;
  margin-bottom: 1rem;
}

.cta p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.button-link {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: #3b82f6;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.025em;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.button-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.button-link:hover::before {
  left: 100%;
}

.button-link:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.button-link:active {
  transform: translateY(0);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.button-link.primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.button-link.primary:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.5);
}

.button-link.secondary {
  background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.1) 100%);
  border: 2px solid #3b82f6;
  color: #3b82f6;
  backdrop-filter: blur(10px);
}

.button-link.secondary:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  border-color: #2563eb;
}

/* Enhanced Form Styling */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  background-color: #1a1a1a;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
  border-color: #10b981;
}

.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group select:invalid:not(:focus),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #ef4444;
}

/* Enhanced Card Components */
.card-hover-effect {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card-hover-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.5s;
}

.card-hover-effect:hover::before {
  left: 100%;
}

.card-hover-effect:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Enhanced Navigation Styling */
.nav-link {
  position: relative;
  overflow: hidden;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #3b82f6;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Improved Loading States */
.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid #333;
  border-top: 2px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Enhanced Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .button-link {
    border: 2px solid currentColor;
  }
  
  .nav-link {
    border: 1px solid transparent;
  }
  
  .nav-link:focus {
    border-color: currentColor;
  }
}

/* Enhanced Focus Styles */
.button-link:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.nav-link:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Improved Print Styles */
@media print {
  .site-header,
  .nav-toggle,
  .button-link {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .content {
    max-width: none !important;
    padding: 0 !important;
  }
}

/* Enhanced Footer Styling */
.site-footer {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #888;
  background-color: #0a0a0a;
  border-top: 1px solid #333;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.site-footer p {
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.025em;
}

/* Performance Optimizations */
/* Optimize animations for better performance */
.card-hover-effect,
.product-card,
.service-card,
.content-card,
.button-link {
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .card-hover-effect::before,
  .product-card::before,
  .service-card::before,
  .content-card::before,
  .button-link::before {
    display: none;
  }
  
  .nav-link::after {
    transition: none;
  }
}

/* Dark mode support (already dark, but ensure consistency) */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #111;
    color: #eee;
  }
}

/* Light mode override (if needed for accessibility) */
@media (prefers-color-scheme: light) {
  body {
    background-color: #111;
    color: #eee;
  }
}

/* Enhanced Selection Styling */
::selection {
  background-color: rgba(59, 130, 246, 0.3);
  color: #eee;
}

::-moz-selection {
  background-color: rgba(59, 130, 246, 0.3);
  color: #eee;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #444;
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #333 #1a1a1a;
}

/* Enhanced Typography for Better Readability */
.content {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Improved Button Accessibility */
.button-link[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.button-link:focus-visible {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

/* Enhanced Error States */
.form-group input:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #ef4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.1);
}

.form-group input:valid:not(:focus) {
  border-color: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.1);
}

/* Loading State for Images */
img {
  transition: opacity 0.3s ease;
}

img:not([src]) {
  opacity: 0;
}

/* Enhanced Logo Loading */
.logo {
  background-color: #333;
  background-image: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: logoShimmer 2s infinite;
}

.logo[src] {
  background: none;
  animation: none;
}

@keyframes logoShimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Final Polish - Micro-interactions */
.nav-brand:hover {
  transform: none;
}

.nav-brand:hover .logo {
  transform: scale(1.02);
  filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.3));
}

.nav-brand:hover .brand-text {
  color: #3b82f6;
}

/* Ensure content is accessible */
.content > * + * {
  margin-top: 1rem;
}

/* Enhanced spacing for better visual hierarchy */
section + section {
  margin-top: 4rem;
}

@media (max-width: 768px) {
  section + section {
    margin-top: 3rem;
  }
}

@media (max-width: 480px) {
  section + section {
    margin-top: 2rem;
  }
  
  .site-footer {
    margin-top: 3rem;
    padding: 1.5rem 1rem;
  }
}

/* Blog Page Styles */
.blog-hero, .youtube-hero {
  padding: 3rem 0 2rem;
  margin-bottom: 3rem;
}

.blog-subtitle, .youtube-subtitle {
  font-size: 1.3rem;
  color: #ccc;
  margin: 1rem 0;
  font-weight: 500;
}

.featured-post {
  margin: 3rem 0 4rem;
}

.post-card {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-4px);
  border-color: #3b82f6;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.post-card.featured {
  border-color: #3b82f6;
  background: linear-gradient(135deg, #1a1a1a 0%, rgba(59, 130, 246, 0.05) 100%);
}

.post-image {
  height: 200px;
  overflow: hidden;
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-image-placeholder {
  font-size: 3rem;
  color: #666;
}

.post-card .post-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.post-card h3 {
  margin-bottom: 1rem;
}

.post-card h3 a {
  color: #eee;
  text-decoration: none;
  transition: color 0.2s ease;
}

.post-card h3 a:hover {
  color: #3b82f6;
}

.post-meta {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.post-category {
  background-color: #3b82f6;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
}

.post-excerpt {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.read-more {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  align-self: flex-start;
}

.read-more:hover {
  color: #60a5fa;
}

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

.coming-soon {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 2rem 0;
}

.coming-soon h3 {
  color: #eee;
  margin-bottom: 1rem;
}

.coming-soon ul {
  text-align: left;
  max-width: 400px;
  margin: 2rem auto;
  color: #ccc;
}

.coming-soon li {
  margin-bottom: 0.5rem;
}

.blog-categories {
  margin: 4rem 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.category-card {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
}

.category-card:hover {
  border-color: #3b82f6;
  transform: translateY(-2px);
}

.category-card h4 {
  color: #eee;
  margin-bottom: 0.5rem;
}

.post-count {
  color: #888;
  font-size: 0.9rem;
}

.blog-newsletter {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 3rem 2rem;
  margin: 4rem 0;
  text-align: center;
}

.blog-newsletter h2 {
  color: #eee;
  margin-bottom: 1rem;
}

.blog-newsletter p {
  color: #ccc;
  margin-bottom: 2rem;
}

/* YouTube Page Styles */
.channel-stats {
  margin: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-card {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: #3b82f6;
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.stat-card h3 {
  color: #eee;
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: #ccc;
  font-size: 0.95rem;
  margin: 0;
}

.channel-launch {
  margin: 4rem 0;
}

.launch-content {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 3rem 2rem;
}

.launch-content h2 {
  color: #eee;
  margin-bottom: 1.5rem;
  text-align: center;
}

.launch-content > p {
  color: #ccc;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.planned-content {
  margin: 3rem 0;
}

.planned-content h3 {
  color: #eee;
  margin-bottom: 2rem;
  text-align: center;
}

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

.content-type {
  background-color: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 6px;
  padding: 1.5rem;
}

.content-type h4 {
  color: #eee;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.content-type ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content-type li {
  color: #ccc;
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.content-type li:before {
  content: "▶";
  color: #3b82f6;
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

.launch-timeline {
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 6px;
  padding: 2rem;
  margin: 3rem 0;
  text-align: center;
}

.launch-timeline h3 {
  color: #10b981;
  margin-bottom: 1rem;
}

.launch-timeline p {
  color: #ccc;
  margin: 0;
}

.pre-subscribe {
  margin: 4rem 0;
  text-align: center;
}

.subscribe-benefits {
  margin: 3rem 0;
}

.subscribe-benefits h3 {
  color: #eee;
  margin-bottom: 2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit:hover {
  transform: translateY(-2px);
  border-color: #3b82f6;
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.benefit h4 {
  color: #eee;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.benefit p {
  color: #ccc;
  font-size: 0.9rem;
  margin: 0;
}

.content-preview {
  margin: 4rem 0;
}

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

.series-card {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.series-card:hover {
  transform: translateY(-4px);
  border-color: #3b82f6;
}

.series-image {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.series-card h3 {
  color: #eee;
  margin-bottom: 1rem;
}

.series-card p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.series-meta {
  color: #888;
  font-size: 0.9rem;
  font-style: italic;
}

.youtube-cta {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 3rem 2rem;
  margin: 4rem 0;
  text-align: center;
}

.youtube-cta h2 {
  color: #eee;
  margin-bottom: 1rem;
}

.youtube-cta p {
  color: #ccc;
  margin-bottom: 2rem;
}

/* Post Layout Styles */
.post {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.post-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #333;
}

.post-title {
  color: #eee;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.post-meta {
  color: #888;
  font-size: 0.95rem;
}

.post-date, .post-author, .post-categories {
  margin-right: 1rem;
}

.post-categories a {
  color: #3b82f6;
  text-decoration: none;
}

.post-categories a:hover {
  text-decoration: underline;
}

.post-content {
  line-height: 1.8;
  color: #ccc;
}

.post-content h2, .post-content h3, .post-content h4 {
  color: #eee;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #333;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.tags-label {
  color: #888;
  font-weight: 500;
}

.tag-link {
  background-color: #333;
  color: #ccc;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.tag-link:hover {
  background-color: #3b82f6;
  color: #fff;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin: 3rem 0;
  gap: 2rem;
}

.prev-post, .next-post {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  padding: 1rem;
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 6px;
  transition: all 0.2s ease;
  flex: 1;
  text-align: center;
}

.prev-post:hover, .next-post:hover {
  background-color: #2a2a2a;
  border-color: #3b82f6;
}

.post-cta {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 3rem 2rem;
  margin: 4rem 0;
  text-align: center;
}

.post-cta h3 {
  color: #eee;
  margin-bottom: 1rem;
}

.post-cta p {
  color: #ccc;
  margin-bottom: 2rem;
}

/* About Page Styles */
.about-hero {
  padding: 3rem 0 2rem;
  margin-bottom: 3rem;
}

.about-subtitle {
  font-size: 1.3rem;
  color: #ccc;
  margin: 1rem 0;
  font-weight: 500;
}

.mission {
  background: none;
  border: none;
  border-radius: 0;
  margin: 3rem 0;
  text-align: center;
}

.mission-statement {
  font-size: 1.2rem;
  color: #eee;
  line-height: 1.6;
  margin: 0 auto;
  font-weight: 500;
  max-width: 700px;
}

.story {
  margin: 4rem 0;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.story-content p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.philosophy {
  margin: 4rem 0;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 600px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
}

.philosophy-item {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.philosophy-item:hover {
  transform: translateY(-4px);
  border-color: #3b82f6;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.philosophy-item h3 {
  color: #eee;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.philosophy-item p {
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

.values {
  background: none;
  border: none;
  border-radius: 0;
  margin: 4rem 0;
  text-align: center;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 600px) {
  .values-list {
    grid-template-columns: 1fr;
  }
}

.value-item {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-4px);
  border-color: #3b82f6;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.value-item h4 {
  color: #eee;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.value-item p {
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

.team {
  margin: 4rem 0;
}

.team-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.team-content p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stat {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-4px);
  border-color: #3b82f6;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat h4 {
  color: #3b82f6;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.stat p {
  color: #ccc;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.about-cta {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 3rem 2rem;
  margin: 4rem 0;
  text-align: center;
}

.about-cta h2 {
  color: #eee;
  margin-bottom: 1rem;
}

.about-cta p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Page Styles */
.contact-hero {
  padding: 3rem 0 2rem;
  margin-bottom: 3rem;
}

.contact-subtitle {
  font-size: 1.3rem;
  color: #ccc;
  margin: 1rem 0;
  font-weight: 500;
}

.contact-form-section {
  margin: 4rem 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-wrapper {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 2.5rem;
}

.contact-form-wrapper h2 {
  color: #eee;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #eee;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background-color: #2a2a2a;
  border: 1px solid #444;
  border-radius: 6px;
  padding: 0.875rem;
  color: #eee;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  color: #ccc;
  font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #444;
  border-radius: 3px;
  background-color: #2a2a2a;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked {
  background-color: #3b82f6;
  border-color: #3b82f6;
}

.checkbox-label input[type="checkbox"]:checked::before {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}

.submit-button {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-button:hover {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.submit-button:active {
  transform: translateY(0);
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  color: #888;
  font-size: 0.85rem;
  margin-top: 1rem;
  text-align: center;
}

.contact-info {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 2.5rem;
  height: fit-content;
}

.contact-info h3 {
  color: #eee;
  margin-bottom: 2rem;
  font-size: 1.3rem;
}

.contact-method {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #333;
}

.contact-method:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-method h4 {
  color: #eee;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-method p {
  color: #ccc;
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.contact-method a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-method a:hover {
  color: #60a5fa;
}

.method-note {
  color: #888 !important;
  font-size: 0.85rem !important;
  font-style: italic;
}

.social-section {
  margin: 5rem 0;
  text-align: center;
}

.social-section h2 {
  color: #eee;
  margin-bottom: 1rem;
}

.social-section p {
  color: #ccc;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #2a2a2a;
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-icon {
  font-size: 1.5rem;
  min-width: 40px;
  text-align: center;
}

.social-content h4 {
  color: #eee;
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
}

.social-content p {
  color: #ccc;
  margin: 0;
  font-size: 0.85rem;
}

.faq-section {
  margin: 5rem 0;
}

.faq-section h2 {
  text-align: center;
  color: #eee;
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 2rem;
}

.faq-item h4 {
  color: #eee;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.faq-item p {
  color: #ccc;
  margin: 0;
  line-height: 1.6;
}

.contact-cta {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 3rem 2rem;
  margin: 5rem 0;
  text-align: center;
}

.contact-cta h2 {
  color: #eee;
  margin-bottom: 1rem;
}

.contact-cta p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-stat {
  text-align: center;
}

.cta-stat h4 {
  color: #3b82f6;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.cta-stat p {
  color: #ccc;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Products Page Styles */
.products-hero {
  padding: 3rem 0 2rem;
  margin-bottom: 3rem;
}

.products-subtitle {
  font-size: 1.3rem;
  color: #ccc;
  margin: 1rem 0;
  font-weight: 500;
}

.products-overview {
  margin: 2rem 0 4rem;
}

.products-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-tab {
  background-color: #1a1a1a;
  color: #ccc;
  border: 1px solid #333;
  padding: 0.875rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
}

.product-tab:hover {
  background-color: rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
  color: #3b82f6;
}

.product-tab.active {
  background-color: #3b82f6;
  color: #fff;
  border-color: #3b82f6;
}

.product-section {
  display: none;
  margin: 4rem 0;
}

.product-section.active {
  display: block;
}

.section-intro {
  font-size: 1.1rem;
  color: #ccc;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.products-grid, .services-grid, .content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-card, .service-card, .content-card {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card:hover, .service-card:hover, .content-card:hover {
  transform: translateY(-4px);
  border-color: #3b82f6;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.product-card.featured {
  border-color: #3b82f6;
  background: linear-gradient(135deg, #1a1a1a 0%, rgba(59, 130, 246, 0.05) 100%);
}

.product-card.coming-soon, .content-card.coming-soon {
  opacity: 0.8;
  border-style: dashed;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.product-card h3, .service-card h3, .content-card h3 {
  color: #eee;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.product-tag, .service-duration {
  background-color: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}

.service-duration {
  background-color: rgba(16, 185, 129, 0.2);
  color: #34d399;
}

.product-description, .service-card p, .content-card p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-features ul, .service-includes ul, .content-features ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.product-features li, .service-includes li, .content-features li {
  color: #ccc;
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.product-features li:before, .service-includes li:before, .content-features li:before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.service-includes h4 {
  color: #eee;
  margin: 1.5rem 0 0.75rem 0;
  font-size: 1rem;
}

.product-pricing, .service-pricing, .content-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2rem 0 1.5rem 0;
  gap: 1rem;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
}

.pricing-note {
  color: #888;
  font-size: 0.85rem;
  margin: 0;
  text-align: right;
  flex: 1;
}

.product-actions, .service-actions {
  margin-top: auto;
}

.products-cta {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 3rem 2rem;
  margin: 4rem 0;
  text-align: center;
}

.products-cta h2 {
  color: #eee;
  margin-bottom: 1rem;
}

.products-cta p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

a, a:visited {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: #3b82f6;
  text-decoration: underline;
}

/* Email links: add envelope icon and make bold */
a[href^="mailto:"] {
  font-weight: 700;
  position: relative;
  padding-left: 1.3em;
}

a[href^="mailto:"]:hover::before {
  color: #3b82f6;
}
.article-list {
  padding: 3rem 0;
}

.article-list .container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1rem;
}

.posts-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-card {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.post-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.post-card:hover::before {
  transform: scaleX(1);
}

.post-card:hover {
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.post-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.post-card h3 a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.post-card h3 a:hover {
  color: #3b82f6;
}

.post-meta {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.post-date {
  color: #888;
  font-size: 0.9rem;
  font-weight: 500;
}

.post-excerpt {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  text-align: left;
}

.read-more {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.read-more:hover {
  color: #60a5fa;
  transform: translateX(2px);
}

.coming-soon {
  padding: 4rem 0;
  text-align: center;
}

.coming-soon .container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem;
}

.coming-soon-content {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 3rem 2rem;
}

.coming-soon h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.coming-soon p {
  color: #ccc;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.coming-soon ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon li {
  color: #ccc;
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.coming-soon li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

.coming-soon a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
}

.coming-soon a:hover {
  color: #60a5fa;
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .learn-hero {
    padding: 3rem 0;
  }
  
  .post-card {
    padding: 1.5rem;
  }
  
  .post-card h3 {
    font-size: 1.25rem;
  }
  
  .coming-soon-content {
    padding: 2rem 1.5rem;
  }
  
  .coming-soon h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .learn-hero {
    padding: 2rem 0;
  }
  
  .post-card {
    padding: 1rem;
  }
  
  .coming-soon-content {
    padding: 1.5rem 1rem;
  }
}