/* Base Styles */
body {
  background-color: #030116 !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif !important;
}

/* Remove underlines from all card links */
a.post-card, a.hero-card {
  text-decoration: none !important;
}

/* Reset list styles globally */
ul {
  list-style-type: none !important;
}

ul li {
  list-style-type: none !important;
}

/* Override Tailwind h-10 class for logo to maintain consistent 20px height */
.h-10 {
  height: 20px !important;
}

.site-header .logo img.h-10,
.header .logo img.h-10,
img.h-10.w-auto,
.logo img.h-10,
body .site-header .logo img {
  height: 20px !important;
  width: auto !important;
  max-height: 20px !important;
  min-height: 20px !important;
}

ul li::marker {
  content: none !important;
  display: none !important;
}

/* Utility Classes */
.bg-primary {
  background-color: #3166fe !important;
}

.hover\:bg-primary-dark:hover {
  background-color: #2c4aa1 !important;
}

.text-white {
  color: #ffffff !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
}

/* Header */
.site-header {
  width: 100%;
  background-color: rgba(3, 1, 22, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.right-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle.active {
  background-color: rgba(49, 102, 254, 0.2);
}

/* Mobile menu styles */
.mobile-menu {
  display: none;
  background-color: rgba(3, 1, 22, 0.97);
  backdrop-filter: blur(10px);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
  z-index: 40;
}

.mobile-menu.active {
  display: block;
  max-height: 100vh;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-items {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem 2rem;
}

.mobile-menu-item {
  color: #b3bbca;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-menu-item:hover, 
.mobile-menu-item.active {
  color: #3166fe;
}

.mobile-language-options {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.mobile-language-option {
  color: #b3bbca;
  padding: 0.75rem 0.5rem;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 1rem;
}

.mobile-language-option:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-language-option:hover {
  color: #ffffff;
  background: rgba(49, 102, 254, 0.15);
}

.mobile-language-option.active {
  color: #3166fe;
  font-weight: 600;
}

.menu-link .menu-items {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-link .menu-item {
  color: #b3bbca;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
}

.menu-link .menu-item::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.25rem;
  height: 2px;
  background: linear-gradient(to right, #3166fe, transparent);
  opacity: 0;
  transform: scaleX(0.5);
  transition: all 0.3s ease;
}

.menu-link .menu-item:hover {
  color: #ffffff;
  background: rgba(49, 102, 254, 0.08);
}

.menu-link .menu-item:hover::after {
  opacity: 0.7;
  transform: scaleX(1);
}

.menu-link .menu-item.active {
  color: #3166fe;
  background: rgba(49, 102, 254, 0.12);
}

.menu-link .menu-item.active::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Language Switcher */
.language-switcher {
  position: relative;
  font-size: 0.9rem;
}

.lang-dropdown {
  position: relative;
  z-index: 50;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(49, 102, 254, 0.08) 0%, rgba(49, 102, 254, 0.15) 100%);
  border: 1px solid rgba(49, 102, 254, 0.15);
  border-radius: 12px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.lang-current:hover {
  background: linear-gradient(135deg, rgba(49, 102, 254, 0.12) 0%, rgba(49, 102, 254, 0.2) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.lang-icon {
  color: #3166fe;
}

.lang-name {
  color: #ffffff;
}

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

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

.lang-options {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, rgba(3, 1, 22, 0.85) 0%, rgba(45, 55, 83, 0.95) 100%);
  border: 1px solid rgba(49, 102, 254, 0.2);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  min-width: 160px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.3s ease;
  z-index: 100;
}

.lang-dropdown:hover .lang-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  padding: 0.75rem 1rem;
  color: #b3bbca;
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
}

.lang-option:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lang-option:hover {
  background: rgba(49, 102, 254, 0.15);
  color: #ffffff;
}

.lang-option.active {
  color: #3166fe;
  font-weight: 600;
  background: rgba(49, 102, 254, 0.08);
}

.lang-option.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #3166fe, #2c4aa1);
}

.blog-title {
  text-align: center;
  padding-top: 10rem;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

.blog-title h1 {
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(to right, #2d3753, #2c4aa1, #3166fe);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.blog-title .gradient-line {
  height: 0.25rem;
  width: 6rem;
  margin: 0.5rem auto 0;
  border-radius: 9999px;
  background: linear-gradient(to right, #2d3753, #2c4aa1, #3166fe);
}

/* Content */
.site-main {
  padding-top: 2rem;
  min-height: 100vh;
}

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

/* Post Cards */
.post-card {
  display: block;
  overflow: hidden;
  border-radius: 0.75rem;
  background-color: #101029 !important;
  border: 1px solid rgba(85, 85, 85, 0.2);
  transition: all 0.3s;
  text-decoration: none;
}

.post-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.post-card .image-container {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.post-card .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.post-card .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, black, transparent);
  opacity: 0.7;
}

.post-card .content {
  padding: 1.25rem;
}

.post-card .content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
}

.post-card:hover .content h3 {
  color: #3166fe;
}

.post-card .content p {
  color: #9da5af;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
}

.post-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #9da5af;
}

/* Hero Card */
.hero-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0.75rem;
  background-color: #101029 !important;
  border: 1px solid rgba(85, 85, 85, 0.2);
  transition: all 0.3s;
  margin-bottom: 2rem;
  text-decoration: none;
}

@media (min-width: 768px) {
  .hero-card {
    flex-direction: row;
  }
}

.hero-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-card .image-container {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-card .image-container {
    width: 66.666667%;
    aspect-ratio: auto;
    height: auto;
  }
}

.hero-card .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.hero-card .content {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .hero-card .content {
    width: 33.333333%;
  }
}

.hero-card .content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  transition: color 0.3s;
  text-decoration: none;
}

.hero-card:hover .content h3 {
  color: #3166fe;
}

.hero-card .content p {
  color: #9da5af;
  margin-bottom: 1rem;
  text-decoration: none;
}

.hero-card .content .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #9da5af;
}

.hero-card .read-more {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  color: #3166fe;
  font-weight: 500;
}

.hero-card .read-more svg {
  margin-left: 0.25rem;
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s;
}

.hero-card:hover .read-more svg {
  transform: translateX(0.25rem);
}

/* Sections */
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #2d3753, #2c4aa1, #3166fe);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Post Grid */
.post-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .post-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Single Post */
.post-header {
  text-align: center;
  margin-bottom: 2rem;
}

.post-header h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #2d3753, #2c4aa1, #3166fe);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.post-cover {
  margin-bottom: 2rem;
  border-radius: 0.75rem;
  overflow: hidden;
}

.post-cover img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.post-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.875rem;
  color: #9da5af;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(85, 85, 85, 0.2);
}

@media (min-width: 768px) {
  .post-meta {
    flex-direction: row;
    align-items: center;
  }
}

/* Typography for post content */
.prose {
  color: #9da5af !important;
  max-width: 65ch !important;
  font-size: 1.125rem !important;
  line-height: 1.75 !important;
  margin: 0 auto !important;
}

.prose p {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose h1 {
  color: #ffffff;
  font-size: 2.25rem;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}

.prose h2 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}

.prose h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}

.prose h4 {
  color: #ffffff;
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}

.prose ul,
.prose ol {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}

.prose ul {
  list-style-type: disc;
}

.prose ol {
  list-style-type: decimal;
}

.prose li {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.prose a {
  color: #3166fe;
  text-decoration: underline;
  font-weight: 500;
}

.prose strong {
  color: #ffffff;
  font-weight: 600;
}

.prose blockquote {
  font-weight: 500;
  font-style: italic;
  color: #ffffff;
  border-left-width: 0.25rem;
  border-left-color: #3166fe;
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-left: 1em;
}

.prose code {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875em;
}

.prose pre {
  color: #e5e7eb;
  background-color: #1f2937;
  overflow-x: auto;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-right: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-left: 1.1428571em;
}

/* Share buttons */
.share-buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.share-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: #1a1a2e;
  color: #ffffff;
  transition: all 0.3s;
}

.share-button:hover {
  transform: translateY(-0.25rem);
  background-color: #3166fe;
}

/* CTA Section */
.cta-section {
  margin-top: 4rem;
  margin-bottom: 4rem;
  padding: 3rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(45, 55, 83, 0.85) 0%, rgba(3, 1, 22, 0.9) 100%);
  border-radius: 1rem;
  border: 1px solid rgba(49, 102, 254, 0.15);
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

/* Add glowing effect */
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(49, 102, 254, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  background: linear-gradient(to right, #4e8cff, #3166fe, #2c4aa1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: #b3bbca;
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-buttons a {
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.025em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-width: 120px;
  text-align: center;
  white-space: nowrap;
}

/* Get Demo button styling */
.cta-buttons a:first-child {
  background: linear-gradient(135deg, #4e8cff 0%, #3166fe 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(49, 102, 254, 0.4), 0 1px 2px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.cta-buttons a:first-child:hover {
  background: linear-gradient(135deg, #5a94ff 0%, #3d71fe 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(49, 102, 254, 0.5), 0 2px 5px rgba(0, 0, 0, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.cta-buttons a:first-child:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(49, 102, 254, 0.3), 0 1px 2px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* View Website button styling */
.cta-buttons a:last-child {
  background: rgba(49, 102, 254, 0.15);
  backdrop-filter: blur(5px);
  color: white;
  border: 1px solid rgba(49, 102, 254, 0.3);
  box-shadow: 0 4px 15px rgba(49, 102, 254, 0.1), 0 1px 2px rgba(0, 0, 0, 0.05), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.cta-buttons a:last-child:hover {
  background: rgba(49, 102, 254, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(49, 102, 254, 0.2), 0 2px 5px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.cta-buttons a:last-child:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(49, 102, 254, 0.1), 0 1px 2px rgba(0, 0, 0, 0.05), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.blog-button {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: #3166fe;
  color: white;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s;
}

.blog-button:hover {
  background-color: #2c4aa1;
}

/* Site Footer */
.site-footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.footer-logo img {
  margin-bottom: 1rem;
  max-width: 180px;
}

.footer-logo p {
  color: #9da5af;
  font-size: 0.875rem;
}

.footer-links-group h4 {
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links-group ul li {
  margin-bottom: 0.5rem;
}

.footer-links-group ul li a {
  color: #9da5af;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-links-group ul li a:hover {
  color: #3166fe;
}

.footer-copyright {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #9da5af;
}

@media (min-width: 768px) {
  .footer-copyright {
    flex-direction: row;
  }
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .menu-link .menu-item {
    font-size: 0.875rem;
    padding: 0.375rem 0.5rem;
  }
  
  .lang-current {
    padding: 0.375rem 0.75rem;
  }
  
  .lang-name {
    font-size: 0.875rem;
  }
}

@media (min-width: 768px) {
  .desktop-menu {
    display: block;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .mobile-menu {
    display: none !important;
  }
}

/* Tablet adjustments */
@media (max-width: 1023px) and (min-width: 768px) {
  .cta-buttons a {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    min-width: 110px;
  }
}

@media (max-width: 767px) {
  .site-header {
    background-color: rgba(3, 1, 22, 0.95);
  }
  
  .lang-current {
    padding: 0.375rem;
  }
  
  .lang-name {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu.active {
    display: block;
  }
  
  .desktop-menu {
    display: none;
  }
  
  .site-main {
    padding-top: 5rem;
  }
  
  .hero-card .content h3 {
    font-size: 1.25rem;
  }
  
  .cta-section {
    padding: 2rem 1rem;
  }
  
  .cta-section h2 {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .cta-buttons a {
    width: 100%;
    max-width: 280px;
    min-width: auto;
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

/* Responsive Utility Classes */
.bg-glow::before {
  content: "";
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 1151px;
  height: 1175px;
  border-radius: 1151px;
  opacity: 0.25;
  background: radial-gradient(50% 50% at 50% 50%, #2c4aa1 0%, #01041a 100%);
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
}

.max-w-none {
  max-width: none;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

/* Restaurant Logos Marquee */
.enable-restaurant-inner {
  margin-top: 96px;
}

/* 
 * UNIFIED MARQUEE SYSTEM
 * Uses single animation with direction classes for consistency
 */

/* Marquee container with fade effect and proper height */
.marquee {
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgb(0, 0, 0) 5%,
    rgb(0, 0, 0) 95%,
    rgba(0, 0, 0, 0) 100%
  );
  overflow: hidden;
  position: relative;
  width: 100%;
  /* Increased height to prevent logo clipping */
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Add padding to create more space for logos */
  padding: 0 50px;
}

/* Base marquee row styles - unified for both rows */
.marquee-inner,
.marquee-inner-bototm {
  display: flex;
  align-items: center;
  gap: 100px;
  will-change: transform;
  width: max-content;
  /* UNIFIED: Both use same 60s duration with single animation */
  animation: marquee-scroll 60s linear infinite;
}

/* Bottom row specific spacing */
.marquee-inner-bototm {
  margin-top: 60px; /* Further reduced to prevent clipping */
  /* Direction control: Reverse the animation direction */
  animation-direction: reverse;
}

/* Logo image sizing */
.marquee-inner img {
  max-width: 110px;
  flex-shrink: 0;
  /* Fixed: Ensure images maintain aspect ratio */
  height: auto;
  object-fit: contain;
}

/* 
 * UNIFIED ANIMATION KEYFRAME
 * Single animation used by both rows, direction controlled by animation-direction property
 */
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Helper classes */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}