:root {
  --primary: #00ff88;
  --secondary: #1a1a1a;
  --accent: #2d2d2d;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --gradient: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  --border-radius: 15px;
  --transition: all 0.3s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--secondary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-width: 320px;
  max-width: 100vw;
}

/* Prevent horizontal scrolling */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Container utility */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}


/* Main Header Styles */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.1);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  padding: clamp(0.75rem, 2vw, 1rem) 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.main-header {
  top: 0;
}

.main-header.scrolled {
  background: rgba(26, 26, 26, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-light);
}

.main-header.hidden {
  transform: translateY(-100%);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* =========================
   Brand / Logo Styles
========================= */

/* Anchor wrapper */
.brand a {
  display: flex;
  /* block se better alignment */
  align-items: center;
  transition: transform 0.25s ease;
}

/* Hover interaction */
.brand a:hover {
  transform: scale(1.06);
  /* thoda premium feel */
}

/* SVG fallback (safe to keep) */
.brand svg {
  height: clamp(2.4rem, 4vw, 2.8rem);
  width: auto;
  filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.3));
}

/* Logo wrapper */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* =========================
   Logo Image (MAIN FIX)
========================= */
.logo img {
  height: 40px;
  /* ⬆️ Bigger & confident */
  width: auto;
  max-width: 170px;
  /* brand ko saans milti hai */
  object-fit: contain;
  display: block;

  /* premium subtle glow (glass header friendly) */
  filter: drop-shadow(0 0 6px rgba(0, 255, 136, 0.28));
}

/* =========================
   Responsive Control
========================= */
@media (max-width: 768px) {
  .logo img {
    height: 34px;
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 30px;
    max-width: 135px;
  }
}


/* Desktop Navigation Styles */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.9rem, 2vw, 1rem);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
  border-radius: 1px;
}

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

.nav-link[aria-current="page"] {
  color: var(--primary);
}

.nav-link[aria-current="page"]::after {
  width: 100%;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Desktop Dropdown Menu Styles */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 0.75rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  color: var(--primary);
  background: rgba(0, 255, 136, 0.05);
  border-left-color: var(--primary);
}

/* CTA Button Styles */
.header-cta {
  display: flex;
  align-items: center;
}

.cta-button {
  background: var(--gradient);
  color: white;
  text-decoration: none;
  padding: clamp(0.6rem, 2vw, 0.75rem) clamp(1.2rem, 3vw, 1.5rem);
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: clamp(0.85rem, 2vw, 0.9rem);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.cta-button svg {
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translateX(3px);
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.25rem;
  z-index: 1002;
  position: relative;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 15, 15, 0.98);
  backdrop-filter: var(--backdrop-blur);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  overflow-y: auto;
}

.nav-overlay.active {
  transform: translateX(0);
}

.mobile-nav {
  padding: clamp(5rem, 15vw, 8rem) clamp(1.5rem, 5vw, 2rem) 2rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Mobile Navigation Items */
.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-primary);
  text-decoration: none;
  padding: 1.25rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  transition: var(--transition);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.mobile-nav-link:hover {
  color: var(--primary);
  transform: translateX(8px);
}

/* Mobile Accordion Styles */
.accordion-arrow {
  transition: transform 0.3s ease;
}

.accordion-trigger[aria-expanded="true"] .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
  margin: 0 -1rem;
  padding: 0 1rem;
}

.accordion-content.active {
  max-height: 300px;
  padding: 0.5rem 1rem 1rem;
}

.accordion-content a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.75rem 0 0.75rem 1rem;
  font-size: 1rem;
  transition: var(--transition);
  border-left: 2px solid transparent;
}

.accordion-content a:hover {
  color: var(--primary);
  border-left-color: var(--primary);
  transform: translateX(8px);
}

/* Mobile CTA */
.mobile-cta {
  margin-top: 2rem;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .main-header {
    padding: 0.75rem 0;
  }

}

@media (min-width: 769px) {

  .hamburger,
  .nav-overlay {
    display: none !important;
  }
}

/* Focus styles for accessibility */
/* Focus styles for accessibility */
.nav-link:focus,
.cta-button:focus,
.hamburger:focus,
.mobile-nav-link:focus,
.accordion-trigger:focus {
  outline: 2px solid #00ff88;
  outline-offset: 2px;
}


/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .main-header {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 2px solid white;
  }

  .dropdown-menu {
    background: rgba(0, 0, 0, 0.98);
    border: 2px solid white;
  }
}


/* Footer */
footer {
  background: var(--secondary);
  padding: 2rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}

.footer-brand img {
  height: 2rem;
  margin-bottom: 1rem;
  max-width: 200px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  word-wrap: break-word;
}

.footer-contact h3 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 1rem;
  word-wrap: break-word;
}

.footer-contact a,
.footer-contact p {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.8;
  transition: var(--transition);
  display: block;
  word-wrap: break-word;
}

.footer-contact a:hover {
  color: var(--primary);
}

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

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-secondary);
  text-decoration: none;
  flex-shrink: 0;
}

.social-link:hover {
  background: var(--primary);
  color: var(--secondary);
  transform: translateY(-0.1875rem);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 0.875rem;
  word-wrap: break-word;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  body {
    padding: 0;
  }

  .container {
    padding: 0 1rem;
  }

  .slider-section {
    padding: clamp(16px, 4vw, 30px) 0;
  }

  .slider-wrapper {
    padding: clamp(16px, 2.5vw, 24px);
  }

  .card-item {
    min-height: clamp(360px, 40vh, 400px);
    gap: clamp(12px, 2vw, 18px);
  }

  .card-content {
    gap: clamp(10px, 1.5vw, 16px);
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 44px !important;
    height: 44px !important;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px !important;
  }

  .scroll-top {
    width: 50px;
    height: 50px;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  #whatsapp-launcher {
    bottom: 80px;
    right: 15px;
  }

  #togglePanel {
    width: 60px;
    height: 60px;
  }

  #togglePanel img {
    width: 45px;
    height: 45px;
  }

  #glass-widget {
    width: 260px;
    right: 15px;
    bottom: 150px;
    padding: 20px;
  }

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

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .slider-wrapper {
    padding: 16px;
  }

  .card-item {
    min-height: clamp(340px, 35vh, 380px);
    padding: 20px 16px;
    gap: 14px;
  }

  .card-content {
    gap: 12px;
  }

  .card-logo {
    width: 60px;
    height: 60px;
  }

  .card-name {
    font-size: 1.2rem;
  }

  .card-description {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .read-more {
    padding: 8px 16px;
    font-size: 0.8rem;
    gap: 6px;
  }

  .read-more svg {
    width: 14px;
    height: 14px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .swiper-pagination {
    bottom: 12px !important;
  }

  .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

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

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* =========================
   MOBILE HERO FIX (IMPORTANT)
========================= */
@media (max-width: 768px) {

  /* ❌ 100vh hatao mobile se */
  #hero {
    min-height: auto;
    padding: 4rem 1rem 2.5rem;
    /* tight & clean */
    gap: 1rem;
  }

  /* Content spacing tight */
  .hero-content h1 {
    margin-bottom: 0.4rem;
    line-height: 1.15;
  }

  /* Paragraph sirf 1 line + kam gap */
  .hero-content p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.6rem;
    line-height: 1.35;
  }

  /* Video size control */
  .hero-video {
    max-width: 100%;
    border-radius: 12px;
  }

  /* Buttons ko chipkao */
  .hero-buttons {
    margin-top: 0.4rem;
    gap: 0.6rem;
  }

  .hero-buttons .btn {
    padding: 0.75rem 1.4rem;
    font-size: 0.9rem;
  }
}


@media (max-width: 360px) {
  .card-item {
    min-height: 320px;
    padding: 16px 12px;
  }

  .card-logo {
    width: 50px;
    height: 50px;
  }

  .card-name {
    font-size: 1.1rem;
  }

  .card-description {
    font-size: 0.8rem;
  }

  .read-more {
    padding: 6px 14px;
    font-size: 0.75rem;
  }

  #glass-widget {
    width: calc(100vw - 30px);
    right: 15px;
  }
}

/* Large screens optimization */
@media (min-width: 1400px) {
  .card-item {
    min-height: 500px;
    padding: 48px 40px;
  }

  .card-logo {
    width: 100px;
    height: 100px;
  }

  .card-name {
    font-size: 1.875rem;
  }

  .card-description {
    font-size: 1.125rem;
  }

  .read-more {
    padding: 16px 28px;
    font-size: 1rem;
  }

  .container {
    max-width: 1400px;
  }

  .header-container {
    max-width: 1400px;
  }

  .skills-container {
    max-width: 1400px;
  }

  .process-container {
    max-width: 1400px;
  }

  .footer-container {
    max-width: 1400px;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .card-item {
    border: 2px solid var(--text-secondary);
  }

  .card-item:hover {
    border-color: var(--primary);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .card-item:hover {
    transform: none;
  }

  .read-more:hover {
    transform: none;
  }

  .card-item:hover .card-logo {
    transform: none;
  }
}

/* Focus styles for accessibility */
.read-more:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.swiper-button-next:focus-visible,
.swiper-button-prev:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Print styles */
@media print {

  .swiper-button-next,
  .swiper-button-prev,
  .swiper-pagination {
    display: none;
  }

  .card-item {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

/* Additional utility classes for preventing overflow */
.no-overflow {
  overflow: hidden;
}

.text-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.word-break {
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

/* Ensure all images are responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Prevent horizontal scroll on all elements */
* {
  max-width: 100%;
  box-sizing: border-box;
}

/* Loading animation improvements */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.loading-dots {
  display: inline-block;
}

.loading-dots::after {
  content: '';
  animation: loading-dots 1.5s infinite;
}

@keyframes loading-dots {

  0%,
  20% {
    content: '';
  }

  40% {
    content: '.';
  }

  60% {
    content: '..';
  }

  80%,
  100% {
    content: '...';
  }
}

/* Section Wrapper */
.why-choose-section {
  background-color: var(--secondary);
  width: 100%;
  padding: 100px 8vw;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Background Effects */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.08;
  filter: blur(120px);
  animation: float 12s ease-in-out infinite;
  pointer-events: none;
}

.blob-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.blob-2 {
  width: 250px;
  height: 250px;
  top: 60%;
  right: 15%;
  animation-delay: 4s;
}

.blob-3 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 50%;
  animation-delay: 8s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* Main Container */
.main-container {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(45, 45, 45, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Top Badge */
.top-badge {
  display: inline-block;
  background: rgba(0, 255, 136, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Main Heading */
.main-heading {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.accent-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.accent-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
}

/* Subheading */
.subheading {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 50px;
}

/* Comparison Grid */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* Comparison Cards */
.comparison-card {
  border-radius: var(--border-radius);
  padding: 32px;
  text-align: left;
  transition: var(--transition);
  position: relative;
}

.comparison-card:hover {
  transform: translateY(-6px);
}

/* Others Card */
.others-card {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.others-heading {
  color: #ff6b6b;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 24px;
}

/* Vistaarly Card */
.vistaarly-card {
  background: linear-gradient(180deg, rgba(0, 255, 136, 0.12), rgba(45, 45, 45, 0.7));
  border: 1px solid rgba(0, 255, 136, 0.4);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.25);
}

.vistaarly-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.35);
}

.vistaarly-heading {
  color: var(--primary);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 24px;
}

/* Points List */
.points-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
}

/* Icon Wrapper */
.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--transition);
}

.others-icon {
  background: rgba(255, 107, 107, 0.15);
  color: #ff6b6b;
}

.vistaarly-icon {
  background: rgba(0, 255, 136, 0.15);
  color: var(--primary);
}

.icon-wrapper:hover {
  transform: scale(1.1);
  animation: pulse 1s ease-in-out;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1.1);
  }

  50% {
    transform: scale(1.2);
  }
}

.others-card .point-item span {
  color: var(--text-secondary);
}

.vistaarly-card .point-item span {
  color: var(--text-primary);
  font-weight: 500;
}

/* CTA Button */
.cta-button {
  background: var(--gradient);
  color: #1a1a1a;
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.35);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.45);
}

.cta-button:active {
  transform: scale(0.98);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .why-choose-section {
    padding: 80px 6vw;
  }

  .main-heading {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 60px 20px;
  }

  .main-container {
    padding: 32px;
  }

  .main-heading {
    font-size: 28px;
  }

  .subheading {
    font-size: 14px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-button {
    width: 100%;
    padding: 16px 28px;
  }

  .point-item {
    font-size: 14px;
  }

  .icon-wrapper {
    width: 28px;
    height: 28px;
  }

  .icon-wrapper svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .main-container {
    padding: 24px;
  }

  .comparison-card {
    padding: 24px;
  }

  .main-heading {
    font-size: 24px;
  }

  .card-heading {
    font-size: 18px;
  }
}

/* Animation Classes for JavaScript */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}



/* new content like onboarding process in a great way  */

/* Section Wrapper */
.how-it-starts-section {
  background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 100px 8vw;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Ambient Effects */
.ambient-blob {
  position: absolute;
  background: var(--primary);
  opacity: 0.08;
  border-radius: 50%;
  filter: blur(140px);
  animation: float 20s ease-in-out infinite;
}

.blob-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.blob-2 {
  width: 300px;
  height: 300px;
  top: 60%;
  right: -5%;
  animation-delay: -7s;
}

.blob-3 {
  width: 250px;
  height: 250px;
  bottom: 20%;
  left: 20%;
  animation-delay: -14s;
}

@keyframes float {

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

  33% {
    transform: translateY(-30px) translateX(20px) scale(1.1);
  }

  66% {
    transform: translateY(20px) translateX(-15px) scale(0.9);
  }
}

/* Glass Container */
.glass-container {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  padding: 60px;
  position: relative;
  z-index: 2;
}

/* Micro Badge */
.micro-badge {
  background: rgba(0, 255, 136, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  padding: 8px 16px;
  border-radius: 999px;
  text-align: center;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
  text-align: center;
}

/* Main Heading */
.main-heading {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 16px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Subheading */
.subheading {
  color: var(--text-secondary);
  font-size: 16px;
  text-align: center;
  margin-bottom: 60px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Content Layout */
.content-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* Process Steps */
.process-steps {
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 18px;
  top: 50px;
  bottom: 50px;
  width: 2px;
  background: linear-gradient(to bottom,
      rgba(0, 255, 136, 0.4),
      rgba(0, 255, 136, 0.05));
  z-index: 1;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.step-card:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.02);
}

.step-number {
  width: 36px;
  height: 36px;
  background: rgba(0, 255, 136, 0.15);
  color: var(--primary);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.step-card:hover .step-number {
  background: rgba(0, 255, 136, 0.25);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.step-content {
  flex: 1;
}

.step-title {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-description {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* Visual Mockup */
.visual-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-card {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 320px;
  animation: mockupFloat 6s ease-in-out infinite;
}

@keyframes mockupFloat {

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

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

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-secondary);
}

.mockup-dots span:first-child {
  background: #ff5f57;
}

.mockup-dots span:nth-child(2) {
  background: #ffbd2e;
}

.mockup-dots span:last-child {
  background: #28ca42;
}

.mockup-title {
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 600;
}

.chart-container {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 120px;
  margin-bottom: 20px;
  padding: 0 10px;
}

.chart-bar {
  flex: 1;
  background: var(--gradient);
  border-radius: 4px 4px 0 0;
  min-height: 20px;
  animation: chartGrow 2s ease-out;
  animation-fill-mode: both;
}

.chart-bar:nth-child(1) {
  animation-delay: 0.2s;
}

.chart-bar:nth-child(2) {
  animation-delay: 0.4s;
}

.chart-bar:nth-child(3) {
  animation-delay: 0.6s;
}

.chart-bar:nth-child(4) {
  animation-delay: 0.8s;
}

.chart-bar:nth-child(5) {
  animation-delay: 1s;
}

@keyframes chartGrow {
  from {
    height: 0;
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.metrics {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.metric {
  text-align: center;
  flex: 1;
}

.metric-value {
  display: block;
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.metric-label {
  color: var(--text-secondary);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA Container */
.cta-container {
  text-align: center;
}

.cta-button {
  background: var(--gradient);
  color: #1a1a1a;
  padding: 14px 30px;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.6);
}

.cta-button:active {
  transform: scale(0.98);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .how-it-starts-section {
    padding: 80px 6vw;
  }

  .glass-container {
    padding: 50px 40px;
  }

  .main-heading {
    font-size: 34px;
  }

  .content-layout {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .how-it-starts-section {
    padding: 60px 20px;
  }

  .glass-container {
    padding: 32px;
  }

  .main-heading {
    font-size: 28px;
  }

  .subheading {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .content-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .timeline-line {
    display: none;
  }

  .step-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    margin-bottom: 20px;
  }

  .step-card:hover {
    transform: none;
  }

  .mockup-card {
    max-width: 280px;
  }

  .cta-button {
    width: 100%;
    padding: 16px 30px;
  }

  .chart-container {
    height: 100px;
  }

  .metric-value {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .step-card {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .step-number {
    align-self: center;
  }

  .mockup-card {
    max-width: 100%;
  }
}

/* Animation Classes for JavaScript */
.step-card.animate {
  animation: slideInLeft 0.6s ease-out;
}

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

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

.mockup-card.animate {
  animation: slideInRight 0.8s ease-out;
}

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

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

/* Services Page Specific Styles */

/* Hero Section */
.services-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  padding: 120px 0 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-blob {
  position: absolute;
  background: var(--primary);
  opacity: 0.08;
  border-radius: 50%;
  filter: blur(120px);
  animation: float 15s ease-in-out infinite;
}

.hero-blob.blob-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.hero-blob.blob-2 {
  width: 300px;
  height: 300px;
  top: 60%;
  right: -5%;
  animation-delay: 5s;
}

.hero-blob.blob-3 {
  width: 250px;
  height: 250px;
  bottom: 20%;
  left: 30%;
  animation-delay: 10s;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(0, 255, 136, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 24px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

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

.trust-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.trust-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 28px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  min-width: 200px;
  justify-content: center;
}

.btn-primary {
  background: var(--gradient);
  color: #1a1a1a;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(0, 255, 136, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Overview - Bento Grid */
.services-overview {
  padding: 100px 0;
  background: var(--secondary);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(45, 45, 45, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(45, 45, 45, 0.8) 100%);
  border-color: rgba(0, 255, 136, 0.3);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 255, 136, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.service-link:hover {
  transform: translateX(4px);
}

/* Problems & Solutions */
.problems-solutions {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
}

.problems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.column-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 32px;
  text-align: center;
}

.problems-column .column-title {
  color: #ff6b6b;
}

.solutions-column .column-title {
  color: var(--primary);
}

.problem-item,
.solution-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  border-radius: 12px;
  transition: var(--transition);
}

.problem-item {
  background: rgba(255, 107, 107, 0.05);
  border: 1px solid rgba(255, 107, 107, 0.1);
}

.solution-item {
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.1);
}

.problem-item:hover,
.solution-item:hover {
  transform: translateX(8px);
}

.problem-icon,
.solution-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-icon {
  background: rgba(255, 107, 107, 0.15);
}

.solution-icon {
  background: rgba(0, 255, 136, 0.15);
}

.problem-content h4,
.solution-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.problem-content h4 {
  color: #ff6b6b;
}

.solution-content h4 {
  color: var(--primary);
}

.problem-content p,
.solution-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Work Process */
.work-process {
  padding: 100px 0;
  background: var(--secondary);
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), rgba(0, 255, 136, 0.2));
}

.process-step {
  display: flex;
  gap: 32px;
  margin-bottom: 60px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.step-content {
  flex: 1;
  padding-top: 8px;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.step-deliverables {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.deliverable {
  background: rgba(0, 255, 136, 0.1);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Target Audience */
.target-audience {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.audience-card {
  background: rgba(45, 45, 45, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}

.audience-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.audience-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 255, 136, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
}

.audience-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.audience-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.audience-benefit {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 8px;
  padding: 12px;
  font-size: 0.9rem;
  color: var(--text-primary);
}

/* Proof Section */
.proof-section {
  padding: 100px 0;
  background: var(--secondary);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card,
.case-study-card {
  background: rgba(45, 45, 45, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover,
.case-study-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 136, 0.3);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-text {
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1rem;
}

.testimonial-author strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}

.testimonial-author span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.case-study-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.case-study-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.case-study-industry {
  background: rgba(0, 255, 136, 0.1);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.case-study-problem,
.case-study-solution {
  margin-bottom: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.case-study-problem strong,
.case-study-solution strong {
  color: var(--text-primary);
}

.case-study-results {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

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

.result-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.result-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(45, 45, 45, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(0, 255, 136, 0.3);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px;
  text-align: left;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.faq-answer.active {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Final CTA */
.final-cta {
  padding: 100px 0;
  background: var(--secondary);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  background: rgba(0, 255, 136, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  z-index: 1000;
  display: none;
}

.sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--gradient);
  color: #1a1a1a;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.sticky-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card.featured {
    grid-column: span 1;
  }
  
  .problems-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero-trust {
    gap: 1rem;
  }
  
  .trust-item {
    flex: 1;
    min-width: 100px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 24px;
  }
  
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .case-study-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .case-study-results {
    justify-content: space-around;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .mobile-sticky-cta {
    display: block;
  }
  
  /* Add bottom padding to prevent content being hidden behind sticky CTA */
  body {
    padding-bottom: 80px;
  }
}

@media (max-width: 480px) {
  .service-card {
    padding: 20px;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
  }
  
  .service-title {
    font-size: 1.3rem;
  }
  
  .audience-card {
    padding: 24px;
  }
  
  .testimonial-card,
  .case-study-card {
    padding: 24px;
  }
  
  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }
  
  .faq-answer p {
    padding: 0 20px 20px;
  }
  
  .process-step {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .step-number {
    align-self: center;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-blob {
    animation: none;
  }
  
  .service-card:hover,
  .audience-card:hover,
  .testimonial-card:hover,
  .case-study-card:hover {
    transform: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .service-card,
  .audience-card,
  .testimonial-card,
  .case-study-card,
  .faq-item {
    border: 2px solid var(--text-secondary);
  }
  
  .service-card:hover,
  .audience-card:hover,
  .testimonial-card:hover,
  .case-study-card:hover,
  .faq-item:hover {
    border-color: var(--primary);
  }
}

/* Focus Styles for Accessibility */
.btn:focus-visible,
.service-link:focus-visible,
.faq-question:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}


/*Floating buttons code in a great way */

/* ================================
   FLOATING BUTTONS + WHATSAPP WIDGET
================================ */

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 55px;
  height: 55px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 100px, 0) scale(0.6);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
}

.scroll-top:hover {
  transform: translate3d(0, -8px, 0) scale(1.08);
  box-shadow: 0 25px 50px rgba(0, 255, 136, 0.4);
}

.scroll-top:active {
  transform: translate3d(0, -5px, 0) scale(1.03);
}

/* WhatsApp Button Container */
#whatsapp-launcher {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 10000;
}

/* WhatsApp Toggle Button */
#togglePanel {
  background: var(--primary);
  border: none;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  cursor: pointer;
  box-shadow: 0 15px 30px rgba(33, 162, 80, 0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

#togglePanel:hover {
  transform: scale(1.12) rotate(5deg);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.55);
}

#togglePanel:active {
  transform: scale(1.05);
}

#togglePanel img {
  width: 48px;
  height: 48px;
}

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

#togglePanel.attention-glow {
  animation: float-whatsapp 3s ease-in-out infinite;
}

/* Notification Badge */
.notification-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ff4757;
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(255, 71, 87, 0.4);
}

/* Glass Widget Panel */
#glass-widget {
  position: fixed;
  bottom: 180px;
  right: 20px;
  z-index: 9999;

  width: 310px;
  max-width: calc(100vw - 40px);
  padding: 22px;

  border-radius: 18px;
  background: rgba(20, 20, 20, 0.92);
  border: 1px solid rgba(0, 255, 136, 0.2);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);

  font-family: 'Segoe UI', sans-serif;
  color: #fff;

  /* ✅ Android friendly open/close */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 25px, 0) scale(0.92);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

/* Show Panel */
#glass-widget.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

#glass-widget h4 {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: var(--primary);
}

/* Dropdown Select */
#whatsappService {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: rgba(45, 45, 45, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  outline: none;
  cursor: pointer;
  box-sizing: border-box;

  appearance: none;
  -webkit-appearance: none;
}

#whatsappService:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.18);
}

/* WhatsApp CTA Button */
#dynamicWhatsapp {
  display: block;
  margin-top: 14px;
  text-align: center;
  width: 100%;
  padding: 12px 16px;

  border-radius: 12px;
  background: var(--gradient);
  color: var(--secondary);
  text-decoration: none;
  font-weight: 700;

  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.25);
  transition: all 0.25s ease;
}

#dynamicWhatsapp:hover {
  transform: translate3d(0, -3px, 0) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 255, 136, 0.45);
}

#dynamicWhatsapp:active {
  transform: translate3d(0, -1px, 0) scale(1.01);
}

/* Note text */
.widget-note {
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

/* Responsive Fix */
@media (max-width: 768px) {
  #glass-widget {
    right: 12px;
    left: 12px;
    width: auto;
    bottom: 160px;
  }

  #whatsapp-launcher {
    right: 16px;
    bottom: 92px;
  }

  .scroll-top {
    right: 16px;
    bottom: 20px;
  }
}

/* ================================
   2025 PREMIUM DESIGN ENHANCER
================================ */

/* 2025 Design Tokens */
:root {
  /* Typography System */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Fluid Typography Scale */
  --text-xs: clamp(0.75rem, 0.9vw, 0.875rem);
  --text-sm: clamp(0.875rem, 1.1vw, 1rem);
  --text-base: clamp(1rem, 1.3vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.5vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.8vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 2.2vw, 1.875rem);
  --text-3xl: clamp(1.875rem, 2.8vw, 2.25rem);
  --text-4xl: clamp(2.25rem, 3.5vw, 3rem);
  --text-5xl: clamp(3rem, 4.5vw, 4rem);
  --text-6xl: clamp(4rem, 6vw, 5.5rem);
  
  /* Spacing Scale */
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2rem);
  --space-xl: clamp(2rem, 4vw, 3rem);
  --space-2xl: clamp(3rem, 6vw, 4rem);
  
  /* Premium Effects */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(20px);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-medium: 0 16px 48px rgba(0, 0, 0, 0.18);
  --shadow-strong: 0 24px 64px rgba(0, 0, 0, 0.25);
  --glow-primary: 0 0 40px rgba(0, 255, 136, 0.15);
  
  /* Modern Curves */
  --curve-gentle: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --curve-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --curve-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Typography Enhancer */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display) !important;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--text-6xl);
  font-weight: 800;
}

h2 {
  font-size: var(--text-5xl);
  font-weight: 700;
}

h3 {
  font-size: var(--text-4xl);
  font-weight: 700;
}

h4 {
  font-size: var(--text-3xl);
  font-weight: 600;
}

h5 {
  font-size: var(--text-2xl);
  font-weight: 600;
}

h6 {
  font-size: var(--text-xl);
  font-weight: 600;
}

/* Body Typography */
body, p, span, div, a, button, input, textarea, select {
  font-family: var(--font-body) !important;
}

p {
  font-size: var(--text-base);
  line-height: 1.7;
  font-weight: 400;
}

/* Hero Text Mobile Fix */
@media (max-width: 768px) {
  #hero h1 {
    font-size: clamp(2.5rem, 8vw, 3.5rem) !important;
    line-height: 1.15 !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  #hero p {
    font-size: clamp(1rem, 3vw, 1.125rem) !important;
    line-height: 1.5 !important;
    max-width: 90% !important;
    margin: 0 auto !important;
  }
}

/* Premium Background System */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Section Depth + Glass */
section:not(header):not(footer) {
  position: relative;
  backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--glass-border);
}

section:not(header):not(footer)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--glass-bg);
  pointer-events: none;
  z-index: -1;
}

/* Premium Section Separation */
section:not(header):not(footer) + section:not(header):not(footer) {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

/* Atmospheric Glow Effects */
.why-choose-section::after,
.how-it-starts-section::after,
.services-hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
  animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.4;
  }
}

/* Interactive Background Feel */
.main-container,
.glass-container,
.service-card,
.comparison-card,
.audience-card,
.testimonial-card,
.case-study-card,
.faq-item {
  transition: all 0.4s var(--curve-smooth);
  position: relative;
  overflow: hidden;
}

.main-container::before,
.glass-container::before,
.service-card::before,
.comparison-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.02) 0%, 
    rgba(255, 255, 255, 0.005) 50%, 
    rgba(0, 255, 136, 0.01) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--curve-smooth);
  pointer-events: none;
  z-index: 0;
}

.main-container:hover::before,
.glass-container:hover::before,
.service-card:hover::before,
.comparison-card:hover::before {
  opacity: 1;
}

/* Micro-Interactions */
a, button, .btn, .cta-button, .nav-link, .service-link {
  transition: all 0.3s var(--curve-smooth);
  position: relative;
  overflow: hidden;
}

/* Premium Hover States */
a:hover, button:hover, .btn:hover, .cta-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Active/Press States */
a:active, button:active, .btn:active, .cta-button:active {
  transform: translateY(0) scale(0.98);
  transition: all 0.1s var(--curve-smooth);
}

/* Focus Visible Enhancement */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  box-shadow: var(--glow-primary);
}

/* Card Elevation System */
.service-card:hover,
.comparison-card:hover,
.audience-card:hover,
.testimonial-card:hover,
.case-study-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-strong);
  border-color: rgba(0, 255, 136, 0.3);
}

/* Gradient Border Enhancement */
.vistaarly-card::after,
.service-card.featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(0, 255, 136, 0.2) 0%, 
    transparent 50%, 
    rgba(0, 255, 136, 0.1) 100%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s var(--curve-smooth);
  pointer-events: none;
  z-index: -1;
}

.vistaarly-card:hover::after,
.service-card.featured:hover::after {
  opacity: 1;
}

/* Soft Grain Texture */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.02) 1px, transparent 0);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}

/* Motion Safety */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .why-choose-section::after,
  .how-it-starts-section::after,
  .services-hero::after {
    animation: none;
  }
}

/* Overflow Guardrails */
html, body {
  overflow-x: clip;
  max-width: 100vw;
}

img, svg, video {
  max-width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
  word-wrap: break-word;
}

/* Long Content Safety */
.card-name, .service-title, .step-title {
  word-wrap: break-word;
  hyphens: auto;
  overflow-wrap: break-word;
}

/* Responsive Enhancements */
@media (max-width: 480px) {
  :root {
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.25rem;
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
  }
  
  .main-container,
  .glass-container {
    padding: var(--space-lg) !important;
  }
  
  .service-card,
  .comparison-card,
  .audience-card {
    padding: var(--space-md) !important;
  }
}

@media (max-width: 1024px) {
  .service-card:hover,
  .comparison-card:hover,
  .audience-card:hover {
    transform: translateY(-4px) scale(1.01);
  }
}

/* Premium Button Enhancement */
.btn, .cta-button, .read-more {
  background: linear-gradient(135deg, var(--primary) 0%, #00cc6a 100%);
  box-shadow: 
    0 4px 15px rgba(0, 255, 136, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.btn::before, .cta-button::before, .read-more::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 var(--curve-smooth);
}

.btn:hover::before, .cta-button:hover::before, .read-more:hover::before {
  left: 100%;
}

/* Enhanced Typography Rhythm */
h1 + p, h2 + p, h3 + p, h4 + p, h5 + p, h6 + p {
  margin-top: var(--space-sm);
}

p + p {
  margin-top: var(--space-md);
}

/* Smooth Scroll Enhancement */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* Selection Enhancement */
::selection {
  background: rgba(0, 255, 136, 0.2);
  color: var(--text-primary);
}

::-moz-selection {
  background: rgba(0, 255, 136, 0.2);
  color: var(--text-primary);
}
