/* ===== CSS Variables ===== */
:root {
  /* Dark Theme Colors */
  --primary-50: #0a0a0a;
  --primary-100: #1a1a1a;
  --primary-200: #2a2a2a;
  --primary-300: #3a3a3a;
  --primary-400: #4a4a4a;
  --primary-500: #606060;
  --primary-600: #808080;
  --primary-700: #a0a0a0;
  --primary-800: #c0c0c0;
  --primary-900: #e0e0e0;

  --secondary-500: #1a1a1a;
  --accent-500: #FFD700;
  --success-500: #00d4aa;
  --warning-500: #ffab00;
  --error-500: #ff073a;

  --gray-50: #0a0a0a;
  --gray-100: #141414;
  --gray-200: #1e1e1e;
  --gray-300: #282828;
  --gray-400: #383838;
  --gray-500: #484848;
  --gray-600: #585858;
  --gray-700: #686868;
  --gray-800: #787878;
  --gray-900: #888888;

  /* Dark Gradients with Transient Colors */
  /* Dark Gradients with Transient Colors */
  --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FDB931 25%, #9E7922 50%, #FDB931 75%, #FFD700 100%);
  --gradient-hero: linear-gradient(135deg, #000000 0%, #0a0a0a 15%, #141414 30%, #1e1e1e 45%, #0a0a0a 60%, #141414 75%, #000000 90%, #0a0a0a 100%);
  --gradient-card: linear-gradient(145deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);

  /* Dark Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.5);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-neon-red: 0 0 10px rgba(255, 7, 58, 0.6), 0 0 20px rgba(255, 7, 58, 0.4), 0 0 30px rgba(255, 7, 58, 0.2);

  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease-out;
  --transition-base: 250ms ease-out;
  --transition-slow: 350ms ease-out;

  /* Z-Index */
  --z-particles: -1;
  --z-floating: 1;
  --z-nav: 100;
  --z-modal: 1000;
}

/* ===== Reset & Base Styles ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: #ffffff;
  background: #000000;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ===== Particle Background ===== */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-particles);
  pointer-events: none;
}

/* ===== Floating Elements ===== */
.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-floating);
  pointer-events: none;
}

.floating-element {
  position: absolute;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.floating-element-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: -150px;
  animation-delay: 0s;
}

.floating-element-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: -100px;
  animation-delay: 2s;
}

.floating-element-3 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  background: #000000 !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  transition: var(--transition-base);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Megrim', cursive;
  font-weight: 400;
  font-size: 1.8rem;
  color: white;
  letter-spacing: 2px;
}

.nav-brand i {
  font-size: 1.75rem;
  color: var(--accent-500);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--gray-800);
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a:hover {
  color: var(--accent-500);
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-base);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent-500);
  color: #000000 !important;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 3px;
  cursor: pointer;
}

.nav-mobile-toggle span {
  width: 20px;
  height: 2px;
  background: var(--gray-700);
  transition: var(--transition-base);
}

@media (max-width: 768px) {
  .nav-mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    /* Changed from absolute to fixed for better visibility */
    top: 70px;
    /* Adjust based on nav height */
    left: 0;
    width: 100%;
    height: auto;
    background: #000;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    z-index: 999;
    /* High z-index */
  }

  .nav-links.mobile-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

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

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

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

  .nav-links a {
    color: #fff;
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }
}

/* ===== Button Components ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  user-select: none;
}

.btn-primary {
  background: var(--accent-500);
  color: #000000;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--gray-200);
  color: var(--gray-900);
  border: 2px solid var(--gray-400);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-secondary:hover {
  background: var(--gray-300);
  border-color: var(--gray-500);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gray-800);
  border: 2px solid var(--gray-400);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-outline:hover {
  background: var(--primary-50);
  border-color: var(--primary-300);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Button ripple effect */
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.gradient-text {
  background: linear-gradient(45deg, #FFD700, #FDB931, #FFFFFF, #FFD700);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: superpower-glow 2s ease-in-out infinite alternate,
    superpower-shift 4s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
  position: relative;
}

.gradient-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #ff6b35, #ffab00, #00d4aa, #ff6b35);
  background-size: 300% 300%;
  border-radius: 8px;
  filter: blur(20px);
  opacity: 0.3;
  z-index: -1;
  animation: superpower-shift 4s ease-in-out infinite;
}

@keyframes superpower-glow {
  0% {
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5)) drop-shadow(0 0 20px rgba(255, 107, 53, 0.3));
  }

  100% {
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.8)) drop-shadow(0 0 40px rgba(255, 107, 53, 0.5)) drop-shadow(0 0 60px rgba(255, 171, 0, 0.3));
  }
}

@keyframes superpower-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ===== Neon Red Styling ===== */
.neon-red {
  color: var(--error-500) !important;
  text-shadow: var(--shadow-neon-red);
  animation: neon-pulse 2s ease-in-out infinite alternate;
}

.neon-red-bg {
  background: var(--error-500);
  box-shadow: var(--shadow-neon-red);
}

@keyframes neon-pulse {
  0% {
    text-shadow: 0 0 5px rgba(255, 7, 58, 0.4), 0 0 10px rgba(255, 7, 58, 0.3), 0 0 15px rgba(255, 7, 58, 0.2);
  }

  100% {
    text-shadow: 0 0 10px rgba(255, 7, 58, 0.8), 0 0 20px rgba(255, 7, 58, 0.6), 0 0 30px rgba(255, 7, 58, 0.4);
  }
}

/* ===== Blog Section ===== */
.blog {
  padding: 6rem 0;
  padding: 6rem 0;
  background: #000000;
  position: relative;
}

.blog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0, 212, 170, 0.03) 0%, transparent 50%);
  z-index: 1;
}

.blog .section-container {
  position: relative;
  z-index: 2;
}

.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -10px rgba(255, 215, 0, 0.15);
  border-color: var(--accent-500);
}

.blog-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
  position: relative;
  backdrop-filter: blur(10px);
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-500);
}

.blog-card.featured {
  grid-row: span 2;
}

.blog-image {
  position: relative;
  height: 200px;
  background: linear-gradient(45deg, var(--gray-200), var(--gray-300));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: transform 0.5s ease;
}

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

.blog-card.featured .blog-image {
  height: 300px;
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent-500);
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}

.blog-read-time {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  backdrop-filter: blur(10px);
  z-index: 1;
}

.blog-content {
  padding: 1.5rem;
}

.blog-card.featured .blog-content {
  padding: 2rem;
}

.blog-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: white;
}

.blog-card.featured .blog-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.blog-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.blog-card.featured .blog-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}

.blog-author,
.blog-date {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: var(--gray-700);
  color: var(--gray-200);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.tag:hover {
  background: var(--gray-600);
  color: var(--gray-100);
}

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

.blog-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Blog Grid Responsive Layout */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .blog-card.featured {
    grid-column: span 2;
    grid-row: span 1;
  }
}

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

  .blog-card.featured {
    grid-column: span 1;
  }

  .blog-image {
    height: 180px;
  }

  .blog-card.featured .blog-image {
    height: 220px;
  }
}

/* ===== Blog Post Page Styles ===== */
.blog-header {
  padding: 8rem 0 4rem 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.blog-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(255, 171, 0, 0.08) 0%, transparent 60%);
  z-index: 1;
}

.blog-header .section-container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--accent-500);
}

.breadcrumb i {
  font-size: 0.75rem;
  opacity: 0.6;
}

.blog-post-meta {
  max-width: 800px;
  color: white;
}

.blog-post-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
}

.blog-post-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.blog-post-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.author-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-title {
  font-size: 0.875rem;
  opacity: 0.8;
}

.post-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.post-date,
.read-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-content {
  padding: 4rem 0;
  background: var(--gray-50);
}

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

.blog-post {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 4rem;
}

.featured-image {
  height: 400px;
  background: linear-gradient(45deg, var(--gray-200), var(--gray-300));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.image-placeholder {
  text-align: center;
  color: var(--gray-600);
}

.content {
  padding: 3rem;
  line-height: 1.8;
  font-size: 1.1rem;
  color: var(--gray-800);
}

/* ===== Policy Page Styles ===== */
.policy-page {
  padding: 8rem 0 4rem 0;
  background: var(--gray-50);
  min-height: 60vh;
}

.policy-page h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.policy-content {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.policy-content p {
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.policy-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  color: var(--gray-800);
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.content .lead {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 3rem 0 1.5rem 0;
  color: var(--gray-900);
}

.content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem 0;
  color: var(--gray-900);
}

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

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

.content li {
  margin-bottom: 0.75rem;
}

.content blockquote {
  background: var(--gray-100);
  border-left: 4px solid var(--accent-500);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-style: italic;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.content blockquote p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.content cite {
  display: block;
  font-size: 0.95rem;
  color: var(--gray-600);
  font-style: normal;
  font-weight: 500;
}

.content blockquote.warning {
  background: rgba(255, 171, 0, 0.1);
  border-left-color: var(--warning-500);
}

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

.stat-item {
  text-align: center;
  padding: 2rem;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-500);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: #e0e0e0;
  font-weight: 500;
}

.key-points {
  background: var(--gray-100);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.point:last-child {
  margin-bottom: 0;
}

.point i {
  color: var(--success-500);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.cta-box {
  background: var(--gradient-primary);
  color: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 3rem 0;
}

.cta-box h3 {
  color: white;
  margin-bottom: 1rem;
}

.cta-box p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-box .btn {
  background: white;
  color: var(--gray-900);
}

.cta-box .btn:hover {
  background: var(--gray-100);
}

/* Related Posts */
.related-posts {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid var(--gray-200);
}

.related-posts h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--gray-900);
}

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

.blog-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.blog-card.featured .blog-image {
  height: 100%;
  min-height: 400px;
}

.blog-card.featured .blog-content {
  padding: 3rem;
}

@media (max-width: 768px) {
  .blog-card.featured {
    grid-template-columns: 1fr;
  }

  .blog-card.featured .blog-image {
    height: 300px;
    min-height: auto;
  }

  .blog-card.featured .blog-content {
    padding: 1.5rem;
  }
}

.blog-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-500);
}

.related-category {
  background: var(--accent-500);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 1rem;
}

.service-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.5;
}

.blog-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: white;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.95rem;
  color: #e0e0e0;
  margin-bottom: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}

.related-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: #cccccc;
}

/* Newsletter Signup */
.newsletter-signup {
  background: var(--gradient-hero);
  padding: 4rem 0;
  color: white;
}

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

.newsletter-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.newsletter-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: #e0e0e0;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  background: #111111;
  color: white;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.newsletter-form input::placeholder {
  color: var(--gray-500);
}

.newsletter-form .btn {
  flex-shrink: 0;
  background: var(--accent-500);
  color: white;
  border: none;
}

/* Footer */
.footer {
  background: #000000;
  padding: 3rem 0 1rem 0;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  color: var(--gray-400);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: #cccccc;
  margin-top: 1rem;
}

.footer-section h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-section a {
  display: block;
  color: #cccccc;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: var(--transition-fast);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-700);
  color: var(--gray-500);
  font-size: 0.875rem;
}

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

.social-links a {
  color: var(--gray-500);
  font-size: 1.25rem;
  transition: var(--transition-fast);
}

.social-links a:hover {
  color: var(--accent-500);
}

/* Responsive Design for Blog Post */
@media (max-width: 768px) {
  .blog-post-title {
    font-size: 2rem;
  }

  .blog-post-info {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .content {
    padding: 2rem;
    font-size: 1rem;
  }

  .content h2 {
    font-size: 1.5rem;
  }

  .content h3 {
    font-size: 1.25rem;
  }

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

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ===== Section Layouts ===== */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-header p {
  font-size: 1.25rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 215, 0, 0.1);
  color: var(--accent-500);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(255, 171, 0, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 40% 80%, rgba(0, 212, 170, 0.06) 0%, transparent 60%);
  z-index: 1;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 3;
  min-height: 80vh;
}

.hero-content {
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  animation: slideInUp 0.8s ease-out;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.title-line {
  display: block;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 500px;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  animation: slideInUp 0.8s ease-out 0.6s both;
}

.stat {
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  animation: slideInUp 0.8s ease-out 0.8s both;
}

/* ===== Hero Visual ===== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 1s ease-out 0.4s both;
}

.phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  background: linear-gradient(145deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
  border: 4px solid #000000;
  border-radius: 3rem;
  padding: 0.5rem;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.1),
    0 8px 32px rgba(0, 0, 0, 0.8),
    inset 0 1px 2px rgba(255, 255, 255, 0.1),
    inset 0 -1px 2px rgba(0, 0, 0, 0.5);
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
  transition: var(--transition-slow);
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 30px;
  background: #000000;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.phone-mockup::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #333333;
  border-radius: 2px;
  z-index: 11;
}

.phone-mockup:hover {
  transform: perspective(1000px) rotateY(-10deg) rotateX(0deg);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #000000;
  border-radius: 2.5rem;
  overflow: hidden;
  position: relative;
}

.app-interface {
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: white;
  font-family: 'Inter', sans-serif;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.app-logo {
  font-family: 'Megrim', cursive;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.app-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-avatar {
  width: 32px;
  height: 32px;
  background: var(--accent-500);
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Notification Badge */
.cab-notification {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  animation: slideInDown 0.5s ease-out;
}

.notif-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: 0.9rem;
}

.notif-content {
  display: flex;
  flex-direction: column;
}

.notif-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
}

.notif-time {
  font-size: 0.7rem;
  color: var(--accent-500);
}

/* Corporate Card */
.corporate-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1px solid var(--accent-500);
  border-radius: 1rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  aspect-ratio: 1.58/1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-chip {
  width: 36px;
  height: 24px;
  background: #4a4a4a;
  border-radius: 4px;
}

.card-label {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.6rem;
  letter-spacing: 1px;
  color: #888;
  text-transform: uppercase;
}

.corporate-card .card-number {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 1rem 0;
  color: white;
}

.card-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-holder-label,
.card-balance-label {
  display: block;
  font-size: 0.6rem;
  color: #888;
  margin-bottom: 0.2rem;
}

.card-holder-name {
  font-size: 0.8rem;
  font-weight: 600;
}

.card-balance-amount {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
}

/* Total Balance Section */
.total-balance-section {
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.total-balance-label {
  font-size: 0.75rem;
  color: #aaa;
  display: block;
  margin-bottom: 0.25rem;
}

.total-balance-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-500);
  margin-bottom: 0.75rem;
}

.balance-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.75rem;
}

/* Quick Access */
.quick-access-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.quick-access-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: auto;
}

.quick-access-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  color: #aaa;
}

.quick-access-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent-500);
  transition: 0.2s;
}

/* Bottom Nav */
.app-bottom-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 0.75rem;
  margin-top: auto;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.65rem;
  font-size: 0.7rem;
  color: var(--gray-400);
  transition: var(--transition-fast);
}

.nav-item:hover {
  color: white;
}

.nav-item-highlight {
  width: 48px;
  height: 48px;
  background: var(--accent-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: black;
  margin-bottom: 0.2rem;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  transform: translateY(-8px);
}

.scan-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, white, transparent);
  animation: scan 2s linear infinite;
}

@keyframes scan {
  0% {
    top: 0;
  }

  100% {
    top: 100%;
  }
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.action-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: var(--radius-lg);
  text-align: center;
  color: white;
  font-size: 0.75rem;
  transition: var(--transition-base);
}

.action-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.action-btn i {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* ===== Floating Cards ===== */
.floating-cards {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 1rem 1.5rem;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  animation: floatCard 4s ease-in-out infinite;
}

.card-1 {
  top: 10%;
  right: -20%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 40%;
  left: -30%;
  animation-delay: 1.5s;
}

.card-3 {
  top: 60%;
  right: -25%;
  animation-delay: 3s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

/* ===== Problems Section ===== */
.problems {
  padding: 6rem 0;
  background: #000000;
  position: relative;
}

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

.problem-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  text-align: center;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.problem-card::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: var(--transition-slow);
}

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

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-500);
}

.problem-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.problem-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: white;
}

.problem-card p {
  color: #e0e0e0;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

.problem-impact {
  background: rgba(255, 215, 0, 0.1);
  color: var(--accent-500);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

/* ===== Features Section ===== */
.features {
  padding: 6rem 0;
  background: #000000;
  position: relative;
}

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

.feature.blog-card {
  background: #0a0a0a;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.blog-card p {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.feature-card {
  background: #0a0a0a;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-card[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 0.1s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px -10px rgba(255, 215, 0, 0.15);
  border-color: var(--accent-500);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: white;
}

.feature-card p {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
  opacity: 0.9;
}

.feature-stats {
  margin-bottom: 1.5rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 215, 0, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-500);
}

.stat-label {
  color: #e0e0e0;
  font-size: 0.875rem;
}

.feature-demo {
  background: var(--gray-800);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--gray-700);
}

/* Payment Flow Demo */
.payment-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flow-step {
  background: var(--primary-600);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
}

.payment-flow i {
  color: var(--gray-400);
}

/* Wallet Interface */
.wallet-interface {
  text-align: center;
}

.balance {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.fx-rate {
  color: var(--gray-400);
  font-size: 0.875rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.service-item {
  background: var(--gray-800);
  padding: 0.75rem;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.875rem;
  border: 1px solid var(--gray-700);
  color: white;
}

/* AI Chat */
.ai-chat {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-message {
  background: var(--primary-800);
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  border-left: 3px solid var(--primary-500);
  color: white;
}

.chat-response {
  background: var(--gray-800);
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  border-left: 3px solid var(--success-500);
  color: white;
}

/* Expense Summary */
.expense-summary {
  font-family: monospace;
  font-size: 0.875rem;
  color: var(--gray-300);
}

.expense-line {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0;
  color: var(--gray-300);
}

.total {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-weight: 700;
  border-top: 1px solid var(--gray-700);
  margin-top: 0.5rem;
  color: white;
}

/* Security Badges */
.security-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.badge {
  background: var(--success-800);
  color: var(--success-200);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--success-700);
}

/* ===== Enterprise Section ===== */
.enterprise {
  padding: 6rem 0;
  background: #000000;
  position: relative;
  overflow: hidden;
}

.enterprise::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.enterprise-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.enterprise-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.enterprise-text p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.9;
}

.enterprise-features {
  margin-bottom: 3rem;
}

.enterprise-feature {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-base);
}

.enterprise-feature:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(8px);
}

.enterprise-feature .feature-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-content h3 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.feature-content p {
  color: #e0e0e0;
  font-size: 0.875rem;
  margin: 0;
  opacity: 0.9;
}

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

/* Dashboard Mockup */
.enterprise-visual {
  position: relative;
}

.dashboard-mockup {
  background: #0a0a0a;
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: perspective(1000px) rotateY(15deg) rotateX(-5deg);
  transition: var(--transition-slow);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.dashboard-mockup:hover {
  transform: perspective(1000px) rotateY(10deg) rotateX(0deg);
}

.dashboard-header {
  background: #111111;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.dashboard-controls {
  display: flex;
  gap: 0.5rem;
}

.control {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition-fast);
}

.control.active {
  background: var(--primary-600);
  color: white;
}

.dashboard-content {
  padding: 1.5rem;
}

.metric-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.metric-card {
  background: #0a0a0a;
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.metric-change {
  font-size: 0.75rem;
  font-weight: 600;
}

.metric-change.positive {
  color: var(--success-500);
}

.chart-area {
  height: 150px;
  background: #111111;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 215, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 6rem 0;
  background: #000000;
}

.testimonial-card {
  background: var(--gradient-primary);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  color: white;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(-20px) translateY(-20px);
  }
}

.quote-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.testimonial-content blockquote {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}

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

.author-avatar {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.author-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.author-title {
  opacity: 0.8;
  font-size: 0.875rem;
}

.testimonial-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonial-stats .stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
}

.testimonial-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-stats .stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* ===== CTA Section ===== */
.cta {
  padding: 6rem 0;
  background: #000000;
  color: white;
  position: relative;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

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

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
}

/* ===== Services Page & Section ===== */
.services-hero {
  padding: 8rem 0 4rem;
  background: #000000;
  text-align: center;
}

.services-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-hero p {
  font-size: 1.25rem;
  color: var(--gray-300);
  max-width: 700px;
  margin: 0 auto;
}

.services-list {
  padding: 0 0 8rem;
  /* Removed top padding */
  background: #000000;
}

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

.service-item-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.service-item-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-500);
  box-shadow: var(--shadow-lg);
}

.service-item-card .service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.service-item-card p {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 0;
}

/* Home Page Services Preview */
.services-preview {
  padding: 6rem 0;
  background: #000000;
  position: relative;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.section-header h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray-300);
  font-size: 1.1rem;
}

.services-preview-actions {
  text-align: center;
  margin-top: 3rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Form Styles */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

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

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #e0e0e0;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-500);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

/* Phone Input Group */
.phone-input-group {
  display: flex;
  gap: 0.5rem;
}

.country-select {
  width: 100px;
  flex-shrink: 0;
}

/* Date Range Group */
.date-range-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.date-range-group input {
  flex: 1;
}

.date-separator {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Checkbox Group */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.checkbox-label input {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-500);
  border-radius: 4px;
  position: relative;
  transition: all 0.2s ease;
}

.checkbox-label input:checked+.checkbox-custom {
  background: var(--success-500);
  border-color: var(--success-500);
}

.checkbox-label input:checked+.checkbox-custom::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: white;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Toggle Switch */
.toggle-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  padding: 0.5rem 0;
  color: #e0e0e0;
}

.toggle-input {
  display: none;
}

.toggle-slider {
  width: 44px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  position: relative;
  transition: 0.3s;
  flex-shrink: 0;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  top: 3px;
  left: 3px;
  transition: 0.3s;
}

.toggle-input:checked+.toggle-slider {
  background: var(--success-500);
}

.toggle-input:checked+.toggle-slider::before {
  transform: translateX(20px);
}

.toggle-text {
  font-size: 0.95rem;
  color: white;
  line-height: 1.4;
}

.form-benefits {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-400);
}

.benefit i {
  color: var(--accent-500);
}

@media (max-width: 480px) {
  .form-benefits {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }
}

/* ===== Footer ===== */
.footer {
  background: var(--gray-900);
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--gray-400);
  margin: 1rem 0 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.brand-logo i {
  font-size: 1.75rem;
  color: var(--primary-400);
}

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

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gray-800);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition-base);
}

.social-links a:hover {
  background: var(--primary-600);
  color: white;
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.link-group h3 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.link-group a {
  color: var(--gray-400);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  transition: var(--transition-fast);
}

.link-group a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-badges {
  display: flex;
  gap: 1rem;
}

.footer-badges .badge {
  background: var(--gray-800);
  color: var(--gray-300);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  border: 1px solid var(--gray-700);
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: var(--radius-2xl);
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  transform: translateY(20px);
  transition: var(--transition-base);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  margin-bottom: 2rem;
}

.modal-header i {
  font-size: 4rem;
  color: var(--success-500);
  margin-bottom: 1rem;
}

.modal-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-body p {
  color: #cccccc;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* ===== Animations ===== */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .enterprise-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .hero {
    padding-top: 6rem;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }

  .phone-mockup {
    width: 250px;
    height: 500px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-benefits {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .section-container {
    padding: 0 1rem;
  }

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

  .hero-description {
    font-size: 1rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }

  .floating-card {
    display: none;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-content blockquote {
    font-size: 1.25rem;
  }
}

/* ===== Utility Classes ===== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Focus Styles ===== */
*:focus {
  outline: 2px solid var(--primary-500);
  outline-offset: 2px;
}

.btn:focus {
  outline: 2px solid var(--primary-300);
  outline-offset: 2px;
}

/* ===== Print Styles ===== */
@media print {

  .nav,
  .floating-elements,
  #particles-canvas,
  .modal {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .hero {
    background: white;
    color: black;
  }
}

/* Detailed Service Sections */
.service-detailed-section {
  padding: 8rem 0;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-detailed-section:last-child {
  border-bottom: none;
}

.service-content-wrapper {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.service-detailed-section:nth-child(even) .service-content-wrapper {
  flex-direction: row-reverse;
}

.service-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.service-icon-large {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 5rem;
  color: var(--accent-500);
  position: relative;
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.1);
  transition: all 0.5s ease;
}

.service-detailed-section:hover .service-icon-large {
  transform: scale(1.05);
  box-shadow: 0 0 80px rgba(255, 215, 0, 0.2);
  border-color: var(--accent-500);
}

.service-text {
  flex: 1.2;
}

.service-subtitle {
  color: var(--accent-500);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  display: block;
}

.service-text h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, #ccc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-text p {
  font-size: 1.2rem;
  color: #f0f0f0;
  /* Improved readability */
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Enhanced Services Hero */
.services-hero {
  padding: 12rem 0 0;
  /* Removed bottom padding */
  text-align: center;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}

.services-hero h1 {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, #ccc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.services-hero p {
  font-size: 1.5rem;
  color: #f0f0f0;
  /* Improved readability */
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
}

.service-features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  font-size: 1.1rem;
}

.service-features li i {
  color: var(--accent-500);
  font-size: 0.9rem;
}

@media (max-width: 968px) {
  .service-content-wrapper {
    flex-direction: column !important;
    gap: 4rem;
    text-align: center;
  }

  .service-features {
    justify-content: center;
  }

  .service-features li {
    justify-content: center;
  }

  .service-text h2 {
    font-size: 2.5rem;
  }
}