/*
Theme Name: DojoTrack
Theme URI: https://dojotrack.com
Author: Jared Reed
Version: 1.0
*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

/* GLOBAL CSS */
html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}
body {
  background-color: #f3f4f5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: #26282c;
}
body,
p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
h1 {
  font-size: 48px;
  font-weight: 900;
}
h2 {
  font-size: 36px;
  font-weight: 700;
}
h3 {
  font-size: 28px;
  font-weight: 600;
}
h4 {
  font-size: 22px;
  font-weight: 500;
}
p,
a {
  font-weight: 400;
  font-size: 17px;
  color: #3a3a3a;
  font-family: "Roboto", sans-serif;
}
a {
  text-decoration: none;
}
.navbar-nav .nav-link {
  font-weight: 400;
  font-size: 1rem;
  color: #3a3a3a;
  font-family: "Roboto", sans-serif;
}
img {
  border-radius: 8px;
  overflow: hidden;
}

.navbar {
  padding: 20px 20px;
}
.custom-navbar {
  background-color: #FFFFFF !important;
}
.custom-dropdown .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
  padding: 10px;
  min-width: 200px;
  margin-top: 3px;
  /* display: none; */
}
.dropdown.show .dropdown-menu {
  display: block;
}
.dropdown-item:focus,
.dropdown-item:active {
  background-color: transparent !important;
  color: inherit !important;
  outline: none !important;
  box-shadow: none !important;
}
a.dropdown-item {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
}
.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  background: none !important;
  padding: 10px;
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}
.navbar-toggler:hover {
  background-color: transparent !important;
}
nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
}
.navbar-nav .nav-link {
  font-weight: 400;
  font-size: 1rem;
  color: #3a3a3a;
  font-family: "Roboto", sans-serif;
}

/* Home Page Nav Styling */
.home .navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent !important;
  padding: 1.5rem 0;
}

.home .navbar .nav-link {
  color: #ffffff !important;
  transition: color 0.3s ease;
}

.home .navbar .nav-link:hover {
  color: #a5b4fc !important;
}

.home .navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.home .navbar .btn-purple {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.home .navbar .btn-purple::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.5s ease;
}

.home .navbar .btn-purple:hover::before {
  left: 100%;
}

.home .navbar .btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.home .navbar .btn-purple:active {
  transform: translateY(0);
}

/* All Other Pages Nav Styling (matching home page transparent nav) */
body:not(.home) .navbar,
body:not(.home) .custom-navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent !important;
  background-color: transparent !important;
  padding: 1.5rem 0;
}

body:not(.home) .navbar .nav-link {
  color: #ffffff !important;
  transition: color 0.3s ease;
}

body:not(.home) .navbar .nav-link:hover {
  color: #a5b4fc !important;
}

body:not(.home) .navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

body:not(.home) .navbar .btn-purple {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

body:not(.home) .navbar .btn-purple::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.5s ease;
}

body:not(.home) .navbar .btn-purple:hover::before {
  left: 100%;
}

body:not(.home) .navbar .btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
  color: #ffffff;
  text-decoration: none;
}

body:not(.home) .navbar .btn-purple:active {
  transform: translateY(0);
}

img.logo {
  max-width: 215px;
  border-radius: 0;
  overflow: visible;
}
ul#menu-main-menu {
  align-items: center;
}
.nav-link:focus-visible {
  box-shadow: none !important;
}
/* FOOTER */
.footer {
  background-color: #0a0a0f;
  color: #e0e7ff;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
.footer h5,
.footer h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: bold;
  color: #ffffff;
}
.footer p,
.footer li {
  font-size: .875rem;
  color: #94a3b8;
}
.footer .list-unstyled li {
  margin-bottom: 5px;
}
.footer-link {
  color: #94a3b8;
  transition: color 0.3s ease-in-out;
}
.footer-link:hover {
  color: #ffffff;
}

.footer-mission-text {
  max-width: 80%;
}

@media (max-width: 768px) {
  .footer-mission-text {
    max-width: 100%;
  }
}

.footer .row.mt-4 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 40px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-links-social {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 1rem;
}

/* REUSABLE COMPONENTS */
/* .curved-section-up {
  background: #9cafa1;
  padding: 135px 0;
  clip-path: ellipse(100% 100% at 50% 100%);
}
.curved-section-down {
  background: #9cafa1;
  padding: 135px 0;
  clip-path: ellipse(100% 100% at 50% 0%);
} */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

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

/* ============================================
   PRICING PAGE - COMPLETE REBUILD
   ============================================ */

/* Pricing Page Hero Section */
.pricing-page .section1 {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2d1b4e 100%) !important;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 5rem;
}

.pricing-page .section1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: backgroundShift 8s ease-in-out infinite;
}

.pricing-page .section1 .container {
  position: relative;
  z-index: 1;
}

.pricing-page .section1 h1,
.pricing-page .section1 h2 {
  color: #FFFFFF;
}

.pricing-page .section1 .hero-subtitle,
.pricing-page .section1 p {
  color: #cbd5e1;
}

/* Value Card */
.value-card {
  background: rgba(15, 23, 42, 0.6) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3.5rem 3rem;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
  position: relative;
  overflow: visible;
}

.value-badge {
  position: absolute;
  top: -12px;
  right: 2rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #FFFFFF;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  letter-spacing: 0.025em;
  z-index: 10;
}

.value-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.value-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.value-card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #cbd5e1;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.value-card-text strong {
  color: #FFFFFF;
}

/* Pricing Plans Section */
.pricing-plans-section {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2d1b4e 100%) !important;
  padding: 6rem 0;
  width: 100%;
  position: relative;
}

.pricing-plans-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: backgroundShift 8s ease-in-out infinite;
}

.pricing-plans-section .container {
  position: relative;
  z-index: 1;
}

/* Pricing Plans Row - Exact same structure as data-migration migration-steps-row */
.pricing-plans-row {
  display: flex;
  flex-wrap: wrap;
}

.pricing-plans-row > [class*="col-"] {
  display: flex;
}

.pricing-plans-row .pricing-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 1400px) {
  .pricing-plans-row .col-xl {
    flex: 0 0 auto;
    width: calc(20% - 1.2rem);
    max-width: calc(20% - 1.2rem);
  }
}

@media (max-width: 1399px) and (min-width: 992px) {
  .pricing-plans-row .col-xl {
    flex: 0 0 auto;
    width: calc(33.333333% - 1rem);
    max-width: calc(33.333333% - 1rem);
  }
}

/* Pricing Cards */
.pricing-card {
  background: rgba(15, 23, 42, 0.6) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.pricing-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.pricing-card p {
  color: #94a3b8;
  margin-bottom: 1rem;
}

.pricing-card .text-muted {
  color: #94a3b8 !important;
}

.pricing-card .fw-bold {
  color: #FFFFFF;
  font-weight: 600;
}

.pricing-card .text-primary-purple {
  color: #a5b4fc !important;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.5);
}

.pricing-card-popular {
  border-color: rgba(99, 102, 241, 0.5) !important;
  border-width: 2px !important;
  background: rgba(15, 23, 42, 0.8) !important;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.pricing-card-popular:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
  border-color: rgba(99, 102, 241, 0.7) !important;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #FFFFFF;
  padding: 0.35rem 1rem;
  border-radius: 24px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: capitalize;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  letter-spacing: 0.025em;
  z-index: 10;
  white-space: nowrap;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 1.5rem 0;
}

.price-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-left: 0.35rem;
  font-weight: 500;
}

.pricing-card .btn-outline-purple {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: auto;
}

.pricing-card .btn-outline-purple:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.pricing-card .btn-purple {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.pricing-card .btn-purple::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.5s ease;
}

.pricing-card .btn-purple:hover::before {
  left: 100%;
}

.pricing-card .btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
  color: #ffffff;
}

/* SMS Addon Section */
.sms-addon-wrapper {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sms-addon-title {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sms-addon-subtitle {
  font-size: 1.15rem;
  color: #94a3b8;
  text-align: center;
  margin-bottom: 3rem;
}

.addon-card {
  background: rgba(15, 23, 42, 0.6) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.addon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.5);
}

.addon-card-highlighted {
  border-color: rgba(99, 102, 241, 0.5) !important;
  border-width: 2px !important;
  background: rgba(15, 23, 42, 0.8) !important;
  position: relative;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.addon-card-highlighted:hover {
  border-color: rgba(99, 102, 241, 0.7) !important;
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
}

.hassle-free-badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #FFFFFF;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.addon-icon {
  width: 64px;
  height: 64px;
  background: rgba(99, 102, 241, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #a5b4fc;
  margin-bottom: 1.5rem;
}

.addon-icon-purple {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
  color: #a5b4fc;
}

.addon-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.addon-card-text {
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.addon-card-text-small {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.addon-card-price {
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.addon-card-price strong {
  color: #FFFFFF;
  font-weight: 700;
}

.addon-card-price span {
  color: #94a3b8;
  font-weight: 500;
}

.addon-card-price-small {
  font-size: 0.95rem;
  color: #94a3b8;
  margin-bottom: 0;
}

.addon-card-price-small strong {
  color: #FFFFFF;
  font-weight: 700;
}

/* Pricing Page FAQ Section */
.pricing-page .section3 {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2d1b4e 100%) !important;
  padding: 6rem 2rem;
  border-top: none !important;
  border-bottom: none !important;
}

.pricing-page .section3 .container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-page .section3 h2 {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 3rem;
}

.pricing-page .section3 .accordion-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px;
  margin-bottom: 1rem;
  margin-top: 0;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.pricing-page .section3 .accordion-item:hover {
  border-color: rgba(99, 102, 241, 0.5) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.pricing-page .section3 .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(99, 102, 241, 0.5) !important;
}

.pricing-page .section3 .accordion-button {
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 1.25rem 1.5rem;
  border: none !important;
  box-shadow: none;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-page .section3 .accordion-button:not(.collapsed) {
  background: transparent !important;
  color: #ffffff;
  box-shadow: none;
}

.pricing-page .section3 .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.pricing-page .section3 .accordion-button::after {
  background-image: none !important;
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #a5b4fc;
  font-size: 0.75rem;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  background: rgba(165, 180, 252, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pricing-page .section3 .accordion-button:not(.collapsed)::after {
  content: "\f077";
  transform: none;
}

.pricing-page .section3 .accordion-body {
  padding: 1.5rem;
  color: #e0e7ff;
  line-height: 1.8;
  background: transparent !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-page .section3 .accordion-body strong {
  color: #ffffff;
}

.pricing-page .section3 .accordion-body ul {
  color: #e0e7ff;
}

.pricing-page .section3 .accordion-body ul li {
  color: #e0e7ff;
}

/* Pricing Page Responsive */
@media (max-width: 992px) {
  .pricing-page .section1 {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
  
  .pricing-page .section2 {
    padding: 4rem 0;
  }
  
  .pricing-page .section3 {
    padding: 4rem 0;
  }
  
  .pricing-page .section3 .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 768px) {
  .pricing-page .section1 {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
  }
  
  .pricing-page .section1 .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .pricing-page .section2 {
    padding: 3rem 0;
  }
  
  .pricing-plans-section {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  
  .pricing-plans-section .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .value-card {
    padding: 2.5rem 2rem;
  }
  
  .value-card-title {
    font-size: 1.5rem;
  }
  
  .pricing-card {
    margin-bottom: 1.5rem;
  }
  
  .price-number {
    font-size: 2.5rem;
  }
  
  .sms-addon-wrapper {
    padding: 0;
    margin-top: 4rem;
    padding-top: 4rem;
  }
  
  .sms-addon-title {
    font-size: 1.5rem;
  }
  
  .addon-card {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .addon-icon {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }
}
.fade-in-left-to-right {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-left-to-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right-to-left {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-right-to-left.visible {
  opacity: 1;
  transform: translateX(0);
}
section {
  padding: 100px 0;
}
.testimonial-section {
  background-color: #f3f4f5;
  border-radius: 0;
  text-align: center;
}
.testimonial-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}
.testimonial-carousel {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.testimonial {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  text-align: center;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
.testimonial.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.google-icon {
  width: 24px;
  height: 24px;
  display: block;
  margin: 15px auto;
}
.btn-primary {
  background-color: #10243f;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
}
.btn-primary:hover {
  background-color: #0a1829;
  transform: scale(1.05);
}
.btn-secondary {
  background-color: #e9e0d9 !important;
  color: #242424 !important;
  font-size: 20px;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
}
.btn-secondary:hover {
  background-color: #d3cbc5 !important;
  transform: scale(1.05);
}
#form {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
}
input,
textarea {
  font-family: "Lato", sans-serif;
  font-size: 1em;
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  background: transparent;
  outline: none;
  color: #3a3a3a;
  border: solid 1px #3a3a3a;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
}
input::placeholder,
textarea::placeholder {
  color: #3a3a3a;
}
input:focus,
textarea:focus {
  background: #f3f4f5;
  color: #3a3a3a;
  transition: all 0.3s ease-in-out;
}
textarea {
  height: 120px;
  resize: none;
}
#submit {
  background-color: #e9e0d9 !important;
  color: #242424 !important;
  font-size: 20px;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
}
#submit:hover {
  background-color: #d3cbc5 !important;
  transform: scale(1.05);
}
section ul li {
  margin-bottom: 5px;
}
.global-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 100%;
  align-items: stretch;
}
.global-col {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: stretch;
}
.global-content-box {
  border: 1px solid #9cafa1;
  padding: 35px;
  border-radius: 8px;
  background-color: #f3f4f5;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.global-row.cols-2 .global-col {
  width: calc((100% - 25px) / 2);
}
.global-row.cols-3 .global-col {
  width: calc((100% - 50px) / 3);
}
.global-row.cols-4 .global-col {
  width: calc((100% - 75px) / 4);
}
.global-row.cols-5 .global-col {
  width: calc((100% - 100px) / 5);
}
.global-row.cols-6 .global-col {
  width: calc((100% - 125px) / 6);
}
.global-row.cols-7 .global-col {
  width: calc((100% - 150px) / 7);
}
.global-row.cols-8 .global-col {
  width: calc((100% - 175px) / 8);
}
.global-row.cols-9 .global-col {
  width: calc((100% - 200px) / 9);
}
.global-row.cols-10 .global-col {
  width: calc((100% - 225px) / 10);
}
.global-row.cols-11 .global-col {
  width: calc((100% - 250px) / 11);
}
.global-row.cols-12 .global-col {
  width: calc((100% - 275px) / 12);
}
.white {
  color: #ffffff;
}
.centered-divider {
  width: 50%;
  margin: 40px auto;
  border: 1px solid #ccc;
}
/* REGULAR CSS */
.home .section1 {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2d1b4e 100%) !important;
  position: relative;
  text-align: left;
  padding-top: 6rem;
  padding-bottom: 5rem;
}

@media (max-width: 992px) {
  .home .section1 {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .home .section1 {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
  }
  
  .home .section1 .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 50px;
  color: #a5b4fc;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: '✨';
  font-size: 1rem;
}

/* Hero Content */
.hero-content {
  animation: fadeInUp 1s ease-out;
}

/* Hero Title */
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* Hero Features */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #94a3b8;
  font-size: 0.9375rem;
}

.hero-feature i {
  color: #6366f1;
  font-size: 1.125rem;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-trial-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.0625rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.hero-trial-button::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.5s ease;
}

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

.hero-trial-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
  color: #ffffff;
  text-decoration: none;
}

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

.hero-demo-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.0625rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: inherit;
  white-space: nowrap;
}

.hero-demo-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
}

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

/* Home Quick Demo Modal */
.quick-demo-modal .modal-content {
  background: rgba(10, 10, 15, 0.92);
  border: 1px solid rgba(99, 102, 241, 0.35);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.quick-demo-modal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.25rem;
}

.quick-demo-modal .modal-title {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.quick-demo-modal .modal-body {
  background: rgba(0, 0, 0, 0.15);
}

/* Hero Pricing */
.hero-pricing {
  color: #6ee7b7;
  font-size: 1.375rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

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

/* Hero Image Fade Up Animation */
.hero-image-fade {
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 968px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

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

.stat-label {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.stat-value {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.stat-item .stat-value {
  color: #e0e7ff;
}

.stat-item.green .stat-label,
.stat-item.green .stat-value,
.stat-item.green .stat-description {
  color: #10b981;
}

.stat-description {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.5;
  max-width: 300px;
  margin: 0 auto;
}

.stat-superscript {
  font-size: 0.6em;
  vertical-align: super;
  opacity: 0.7;
}

/* Features Section */
/* Comparison Section */
.comparison-wrapper .d-flex span {
  color: #94a3b8;
}

.comparison-wrapper .d-flex span strong {
  color: #ffffff;
}

.comparison-wrapper .row > * {
  padding-left: 0;
  padding-right: 0;
}

.comparison-wrapper .table {
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 12px;
  overflow: hidden;
}

.comparison-wrapper .table thead {
  background-color: rgba(99, 102, 241, 0.3) !important;
  color: white !important;
  border-bottom: 1px solid #ffffff;
}

.comparison-wrapper .table thead th {
  border-color: #ffffff;
}

.comparison-wrapper .table tbody {
  background: transparent;
}

.comparison-wrapper .table tbody tr {
  border-color: #ffffff;
  background: transparent;
}

.comparison-wrapper .table tbody td {
  color: #ffffff;
  border-color: #ffffff;
  background: transparent;
}

.comparison-wrapper .table tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

.comparison-wrapper #viewMoreBtn {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.0625rem;
  font-weight: 600;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.comparison-wrapper #viewMoreBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.comparison-legend {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 1rem 2rem;
  margin: 0 auto;
  max-width: fit-content;
  background-color: rgba(255, 255, 255, 0.05);
}

.comparison-legend span {
  color: #94a3b8;
}

.comparison-legend span strong {
  color: #ffffff;
}

/* Testimonial Section */
.testimonial-section {
  position: relative;
  padding: 6rem 2rem;
  background: 
    linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.03) 100%),
    linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2d1b4e 100%);
  z-index: 1;
}

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

.testimonial-section .testimonial-card {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-section .testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: rgba(99, 102, 241, 0.2);
  line-height: 1;
}

.testimonial-section .testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.testimonial-section .testimonial-stars i {
  color: #fbbf24;
  font-size: 1.25rem;
}

.testimonial-section .testimonial-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #e0e7ff;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  font-style: italic;
}

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

.testimonial-section .testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(99, 102, 241, 0.3);
}

.testimonial-section .testimonial-author-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.testimonial-section .testimonial-author-title {
  font-size: 0.9375rem;
  color: #94a3b8;
  margin: 0;
}

/* Savings Calculator Styles */
.savings-calculator-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

/* Ensure proper spacing between testimonial and calculator columns on desktop */
@media (min-width: 993px) {
  .testimonial-section .row {
    --bs-gutter-x: 1.5rem;
  }
  
  .testimonial-section .row > * {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
}

.calculator-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-align: center;
}

.calculator-subtitle {
  font-size: 1rem;
  color: #94a3b8;
  text-align: center;
  margin-bottom: 2rem;
}

/* Form Fields Wrapper - Consistent spacing container */
.calculator-form .form-fields-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Form Field Group - Wraps each row of fields */
.calculator-form .form-field-group {
  display: flex;
  flex-direction: column;
}

/* Form Row - Contains side-by-side fields on desktop */
.calculator-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Individual Form Field */
.calculator-form .form-field {
  display: flex;
  flex-direction: column;
}

.calculator-form .form-field-full {
  grid-column: 1 / -1;
}

.calculator-form .form-label {
  color: #e0e7ff;
  font-weight: 500;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  text-align: left;
  display: block;
  width: 100%;
}

.calculator-form .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #ffffff;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.calculator-form .form-control:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
  outline: none;
  color: #ffffff;
}

.calculator-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.calculator-form select.form-control {
  cursor: pointer;
}

.calculator-form select.form-control option {
  background: #1a1a2e;
  color: #ffffff;
}

.btn-calculate {
  width: 100%;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.0625rem;
  font-weight: 600;
  padding: 1rem 2rem;
  margin-top: 2.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-calculate:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.btn-calculate:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-success-message {
  margin-top: 1.5rem;
  animation: fadeIn 0.5s ease-in;
}

.form-success-message .alert {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-success-message .alert i {
  font-size: 1.25rem;
  color: #10b981;
}

.form-success-message .alert strong {
  color: #10b981;
  font-weight: 600;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calculator-results {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.results-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-align: center;
}

.results-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.summary-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.summary-card.dojotrack {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
  border-color: rgba(99, 102, 241, 0.4);
}

.platform-name {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.platform-price {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.platform-plan {
  font-size: 0.875rem;
  color: #a5b4fc;
}

.savings-amount {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.savings-label {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.savings-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 0.25rem;
}

.savings-period {
  font-size: 0.875rem;
  color: #94a3b8;
}

.comparison-table-wrapper {
  margin-top: 2rem;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table thead {
  background: rgba(99, 102, 241, 0.2);
}

.comparison-table th {
  padding: 1rem;
  text-align: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table td {
  padding: 1rem;
  color: #e0e7ff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.comparison-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

.comparison-table tbody tr.savings-row {
  background: rgba(16, 185, 129, 0.1);
}

/* Mobile Cards */
.comparison-cards-mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.comparison-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.comparison-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.comparison-card.savings-card {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
}

.card-header-mobile {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-platform-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
}

.card-body-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.card-row.savings-row-mobile {
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-label {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.card-value {
  font-size: 1rem;
  color: #e0e7ff;
  font-weight: 600;
  text-align: right;
}

.platform-note {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.25rem;
  font-style: italic;
}

.savings-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  padding: 0.375rem 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
}

.cost-badge {
  display: inline-block;
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  padding: 0.375rem 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
}

.results-cta {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
  .testimonial-section {
    padding: 4rem 1.5rem;
  }
  
  /* Form fields wrapper spacing on mobile */
  .calculator-form .form-fields-wrapper {
    gap: 1.25rem;
  }
  
  /* Form row stacks on mobile */
  .calculator-form .form-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  /* Button spacing on mobile */
  .calculator-form .btn-calculate {
    margin-top: 2rem;
  }
  
  .savings-calculator-card {
    padding: 2rem 1.5rem;
  }
  
  .calculator-title {
    font-size: 1.75rem;
  }
  
  .results-summary {
    flex-direction: column;
    align-items: stretch;
  }
  
  .summary-card,
  .savings-amount {
    min-width: 100%;
  }
  
  .comparison-table-wrapper {
    overflow-x: visible;
  }
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 3rem 1rem;
  }
  
  .savings-calculator-card {
    padding: 1.5rem 1.5rem;
  }
  
  .calculator-title {
    font-size: 1.5rem;
  }
  
  .platform-price,
  .savings-value {
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  /* Remove Bootstrap's left/right padding (gutter-x) on mobile for this section */
  .testimonial-section .row > * {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  /* Reorder columns on mobile: calculator first, testimonial second */
  .testimonial-section .row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .testimonial-section .col-lg-4 {
    order: 2;
    margin-top: 0;
  }
  
  .testimonial-section .col-lg-8 {
    order: 1;
    margin-bottom: 0;
  }
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  overflow: visible;
  position: relative;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 1rem;
}

.features-header .logo-container {
  display: inline-block;
  padding: 1rem 3rem;
  margin: 0 auto;
  position: relative;
  overflow: visible;
  width: auto;
  box-sizing: content-box;
}

.features-header .logo-container img.logo {
  max-width: 80px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  position: relative;
  object-fit: contain;
  overflow: visible;
  border-radius: 0;
}

.features-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2d1b4e 100%);
  z-index: 1;
  overflow: visible;
  width: 100%;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  position: relative;
  width: 100%;
}

.features-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.features-subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
}

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

.features-section .feature-card {
  background: rgba(15, 23, 42, 0.6) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.features-section .feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.features-section .feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
  border-radius: 16px;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: #a5b4fc;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.feature-description {
  font-size: 1rem;
  color: #94a3b8 !important;
  line-height: 1.7;
}

.about-page .features-section .feature-description {
  color: #94a3b8 !important;
}

.features-footer {
  text-align: left;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.features-footer-text {
  font-size: 1.125rem;
  color: #cbd5e1 !important;
  line-height: 1.8;
  width: 100%;
  margin-bottom: 1.5rem;
  text-align: center;
}

.features-footer-text strong {
  color: #ffffff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .features-section {
    padding: 4rem 0;
    width: 100%;
  }
  
  .features-container {
    padding: 0 25px;
    width: 100%;
    max-width: 100%;
  }
  
  .features-header .logo-container {
    padding: 1rem 3rem;
    width: auto;
    display: block;
    margin: 0 auto;
    box-sizing: content-box;
    overflow: visible;
  }
  
  .features-header .logo-container img.logo {
    max-width: 80px;
    width: auto;
    overflow: visible;
  }
  
  .features-section .feature-card {
    padding: 2rem;
  }
}

/* Video Section Title and Subtitle */
.video-wrapper-container {
  width: 100%;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .video-wrapper-container {
    background: transparent;
    border-radius: 0;
    padding: 0;
    backdrop-filter: none;
  }
  
  .video-wrapper-container .video-container {
    border-radius: 0 !important;
  }
  
  .video-wrapper-container .video-container iframe {
    border-radius: 0 !important;
  }
}

.video-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  text-align: center;
}

.video-section-subtitle {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 0;
  text-align: center;
}

/* Terms and Privacy Policy pages now use .terms-hero-section and .privacy-hero-section */
.data-migration-page .section1 {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2d1b4e 100%) !important;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.data-migration-page .section1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.data-migration-page .section1 .container {
  position: relative;
  z-index: 1;
}

.data-migration-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.data-migration-hero-title .text-primary-purple {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.data-migration-hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

/* Data Migration - Left align on mobile only */
@media (max-width: 768px) {
  .data-migration-page .section1 .text-center {
    text-align: left !important;
  }
  
  .data-migration-page .hero-badge {
    display: inline-flex;
    margin-left: 0;
  }
  
  .data-migration-hero-title {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  
  .data-migration-hero-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
}
.data-migration-page .section2 {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2d1b4e 100%) !important;
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.data-migration-page .section2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.data-migration-page .section2 .container {
  position: relative;
  z-index: 1;
}

.data-migration-section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.data-migration-section-text {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.8;
  color: #cbd5e1;
}

.data-migration-section-text strong {
  color: #ffffff;
  font-weight: 600;
}

.data-migration-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.data-migration-feature-list li {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.data-migration-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 1.25rem;
}

.data-migration-page .section2 code {
  background-color: rgba(99, 102, 241, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.875rem;
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.example-message-card {
  background: rgba(15, 23, 42, 0.6) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.example-message-label {
  font-weight: 600;
  color: #ffffff !important;
  margin-bottom: 1rem;
}

.example-message-card pre {
  background-color: rgba(99, 102, 241, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5e1;
  white-space: pre-wrap;
  word-wrap: break-word;
  border: 1px solid rgba(99, 102, 241, 0.2);
  margin: 0;
}

.data-migration-cta-button {
  display: inline-block;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.data-migration-cta-button::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.5s ease;
}

.data-migration-cta-button:hover::before {
  left: 100%;
}

.data-migration-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.data-migration-cta-button:active {
  transform: translateY(0);
}

.data-migration-support-link {
  color: #a5b4fc;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.data-migration-support-link:hover {
  color: #ffffff;
  text-decoration: underline;
}
.about-page .section1 {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2d1b4e 100%) !important;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 5rem;
}

@media (max-width: 992px) {
  .about-page .section1 {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .about-page .section1 {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
  }
  
  .about-page .section1 .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.about-page .section1 h1,
.about-page .section1 h2 {
  color: #FFFFFF;
}

.about-page .section1 .hero-subtitle,
.about-page .section1 p {
  color: #cbd5e1;
}

/* Value Calculator Widget Page Styles */
.value-calculator-widget-page .section1 {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2d1b4e 100%) !important;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 5rem;
}

.value-calculator-widget-page .section1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: backgroundShift 8s ease-in-out infinite;
}

.value-calculator-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

@media (min-width: 992px) {
  .value-calculator-widget-page .value-calculator-hero-title {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}

.value-calculator-hero-title .text-primary-purple {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.value-calculator-hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 4rem;
}

.value-calculator-hero-subtitle strong {
  color: #ffffff;
  font-weight: 600;
}

.value-calculator-widget-page .widget-preview-card {
  background: rgba(15, 23, 42, 0.6) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.value-calculator-widget-page .widget-info-card {
  background: rgba(15, 23, 42, 0.6) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.value-calculator-widget-page .widget-info-card h2 {
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.value-calculator-widget-page .widget-info-card .lead {
  color: #cbd5e1;
  font-size: 1.125rem;
  line-height: 1.7;
}

.value-calculator-widget-page .widget-info-card .lead strong {
  color: #ffffff;
  font-weight: 600;
}

.value-calculator-widget-page .info-accordion {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: rgba(15, 23, 42, 0.4);
}

.value-calculator-widget-page .info-accordion-btn {
  background-color: rgba(15, 23, 42, 0.6) !important;
  color: #ffffff !important;
  border: none !important;
  text-align: left !important;
  justify-content: space-between !important;
}

.value-calculator-widget-page .info-accordion-btn:hover {
  background-color: rgba(15, 23, 42, 0.8) !important;
}

.value-calculator-widget-page .info-accordion-btn.active {
  background-color: rgba(15, 23, 42, 0.8) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.value-calculator-widget-page .info-accordion-btn h3 {
  color: #ffffff !important;
}

.value-calculator-widget-page .info-accordion-panel {
  background-color: rgba(15, 23, 42, 0.4) !important;
  color: #cbd5e1;
}

.value-calculator-widget-page .info-accordion-panel.active {
  background-color: rgba(15, 23, 42, 0.4) !important;
}

.value-calculator-widget-page .info-accordion-panel p,
.value-calculator-widget-page .info-accordion-panel ul,
.value-calculator-widget-page .info-accordion-panel li {
  color: #cbd5e1;
}

.value-calculator-widget-page .info-accordion-panel strong {
  color: #ffffff;
}

.value-calculator-widget-page .alert-info {
  background-color: rgba(99, 102, 241, 0.2) !important;
  border: 1px solid rgba(99, 102, 241, 0.3) !important;
  color: #cbd5e1 !important;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.value-calculator-widget-page .alert-info p {
  color: #cbd5e1 !important;
  margin-bottom: 0;
}

.value-calculator-widget-page .alert-info strong {
  color: #ffffff;
}

.value-calculator-widget-page .btn-purple {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.value-calculator-widget-page .btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
  color: #ffffff;
}

/* Lifetime Value Tool Page Styles */
.lifetime-value-tool-page .section1 {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2d1b4e 100%) !important;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 5rem;
}

.lifetime-value-tool-page .section1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: backgroundShift 8s ease-in-out infinite;
}

.lifetime-value-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.lifetime-value-hero-title .text-primary-purple {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lifetime-value-hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 4rem;
}

.lifetime-value-hero-subtitle strong {
  color: #ffffff;
  font-weight: 600;
}

.lifetime-value-tool-page .ltv-calculator-card {
  background: rgba(15, 23, 42, 0.6) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.lifetime-value-tool-page .ltv-intro-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.lifetime-value-tool-page .ltv-intro-section h4 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.lifetime-value-tool-page .ltv-intro-section h4 i {
  color: #a5b4fc;
}

.lifetime-value-tool-page .ltv-intro-section p {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.7;
}

.lifetime-value-tool-page .ltv-intro-section strong {
  color: #ffffff;
  font-weight: 600;
}

.lifetime-value-tool-page .form-label {
  color: #ffffff !important;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.lifetime-value-tool-page .form-control.ltv-input {
  background: rgba(15, 23, 42, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.lifetime-value-tool-page .form-control.ltv-input:focus {
  background: rgba(15, 23, 42, 0.9) !important;
  border-color: rgba(99, 102, 241, 0.5) !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.lifetime-value-tool-page .form-control.ltv-input::placeholder {
  color: #94a3b8 !important;
}

.lifetime-value-tool-page .form-text {
  color: #94a3b8 !important;
}

.lifetime-value-tool-page .btn-purple {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.lifetime-value-tool-page .btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
  color: #ffffff;
}

.lifetime-value-tool-page .btn-outline-purple {
  background: transparent;
  border: 2px solid rgba(99, 102, 241, 0.5);
  border-radius: 8px;
  color: #a5b4fc;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.lifetime-value-tool-page .btn-outline-purple:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.7);
  color: #c7d2fe;
}

.lifetime-value-tool-page .ltv-result {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
}

.lifetime-value-tool-page .ltv-result-header h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
}

.lifetime-value-tool-page .ltv-result-value {
  color: #ffffff;
}

.lifetime-value-tool-page .ltv-currency {
  color: #a5b4fc !important;
}

.lifetime-value-tool-page .ltv-amount {
  color: #ffffff !important;
}

.lifetime-value-tool-page .ltv-tooltip-icon {
  color: #a5b4fc !important;
}

.lifetime-value-tool-page .ltv-input-summary {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.lifetime-value-tool-page .summary-item {
  color: #cbd5e1;
  margin-bottom: 0.75rem;
}

.lifetime-value-tool-page .summary-label {
  color: #94a3b8;
}

.lifetime-value-tool-page .summary-value {
  color: #ffffff;
  font-weight: 600;
}

.lifetime-value-tool-page #dojotrackInfoColumn {
  background: rgba(15, 23, 42, 0.6) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.lifetime-value-tool-page #dojotrackInfoColumn h2 {
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lifetime-value-tool-page #dojotrackInfoColumn .lead {
  color: #cbd5e1;
  font-size: 1.125rem;
  line-height: 1.7;
}

.lifetime-value-tool-page #dojotrackInfoColumn .lead strong {
  color: #ffffff;
  font-weight: 600;
}

.lifetime-value-tool-page .ltv-benefits-list {
  margin-bottom: 2rem;
}

.lifetime-value-tool-page .ltv-benefit-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: #cbd5e1;
}

.lifetime-value-tool-page .ltv-benefit-item i {
  color: #a5b4fc;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.lifetime-value-tool-page .ltv-benefit-item h5 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.lifetime-value-tool-page .ltv-benefit-item p {
  color: #cbd5e1;
  margin: 0;
}

.lifetime-value-tool-page .ltv-impact-box {
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.lifetime-value-tool-page .ltv-impact-box h5 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.lifetime-value-tool-page .ltv-impact-box h5 i {
  color: #a5b4fc !important;
}

.lifetime-value-tool-page .ltv-impact-box p {
  color: #cbd5e1;
  margin: 0;
  line-height: 1.7;
}

.lifetime-value-tool-page .ltv-impact-box strong {
  color: #ffffff;
  font-weight: 600;
}

@media (min-width: 992px) {
  .lifetime-value-tool-page .lifetime-value-hero-title {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 992px) {
  .lifetime-value-tool-page .section1 {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .lifetime-value-tool-page .section1 {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
  }
  
  .lifetime-value-tool-page .section1 .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .lifetime-value-tool-page .section1 .text-center {
    text-align: left !important;
  }
  
  .lifetime-value-tool-page .hero-badge {
    display: inline-flex;
    margin-left: 0;
  }
  
  .lifetime-value-hero-title {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  
  .lifetime-value-hero-subtitle {
    text-align: left;
    margin-left: 0;
    margin-bottom: 3rem;
  }
  
  .lifetime-value-tool-page .ltv-calculator-card {
    padding: 1.5rem;
  }
  
  .lifetime-value-tool-page #dojotrackInfoColumn {
    padding: 1.5rem;
  }
}

@media (max-width: 992px) {
  .value-calculator-widget-page .section1 {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .value-calculator-widget-page .section1 {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
  }
  
  .value-calculator-widget-page .section1 .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .value-calculator-widget-page .section1 .text-center {
    text-align: left !important;
  }
  
  .value-calculator-widget-page .hero-badge {
    display: inline-flex;
    margin-left: 0;
  }
  
  .value-calculator-hero-title {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  
  .value-calculator-hero-subtitle {
    text-align: left;
    margin-left: 0;
    margin-bottom: 3rem;
  }
  
  .value-calculator-widget-page .widget-preview-card {
    padding: 1.5rem;
  }
  
  .value-calculator-widget-page .widget-info-card {
    padding: 1.5rem;
  }
}

.about-page .section2 {
  background-color: #FFFFFF;
  padding: 5rem 0;
}

.about-page .section2 h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #26282c;
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto;
}

.about-page .section2 h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #26282c;
}

.about-page .section3 {
  background: linear-gradient(135deg, #eef0f5 0%, #e0e4f0 100%);
  border-top: 1px solid #e5e7eb;
  padding: 5rem 0;
}

.about-page .section3 h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #26282c;
  line-height: 1.3;
}

.about-page .section5 {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2d1b4e 100%) !important;
  padding: 6rem 2rem;
  border-top: none;
  border-bottom: none;
}

.about-page .section5 .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-page .section5 h2 {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 3rem;
}

.about-page .section5 .accordion-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px;
  margin-bottom: 1rem;
  margin-top: 0;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.about-page .section5 .accordion-item:hover {
  border-color: rgba(99, 102, 241, 0.5) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.about-page .section5 .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(99, 102, 241, 0.5) !important;
}

.about-page .section5 .accordion-button {
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 1.25rem 1.5rem;
  border: none !important;
  box-shadow: none;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-page .section5 .accordion-button:not(.collapsed) {
  background: transparent !important;
  color: #ffffff;
  box-shadow: none;
}

.about-page .section5 .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.about-page .section5 .accordion-button::after {
  background-image: none !important;
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #a5b4fc;
  font-size: 0.75rem;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  background: rgba(165, 180, 252, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.about-page .section5 .accordion-button:not(.collapsed)::after {
  content: "\f077";
  transform: none;
}

.about-page .section5 .accordion-body {
  padding: 1.5rem;
  color: #e0e7ff;
  line-height: 1.8;
  background: transparent !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-page .section5 .accordion-body strong {
  color: #ffffff;
}

.about-page .section5 .cta-text {
  color: #FFFFFF !important;
}

@media (max-width: 992px) {
  .about-page .section5 {
    padding: 4rem 0;
  }
  
  .about-page .section5 .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.about-page-title {
  font-size: 3.5rem;
  font-weight: 600;
  color: #26282c;
  line-height: 1.2;
  text-align: left;
}

.about-page h1 {
  font-size: 3.5rem;
  font-weight: 600;
  color: #26282c;
  line-height: 1.2;
}

.about-page p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b5563;
}

.about-page .features-section p,
.about-page .features-footer-text {
  color: #cbd5e1 !important;
}

.about-page .features-section .feature-description {
  color: #94a3b8 !important;
}

.about-page .section1 img {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
}

.about-page img {
  border-radius: 12px;
}

.contact-page {
  background-color: #f9fafb;
}

.contact-page .section1 {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2d1b4e 100%) !important;
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.contact-page .section1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.contact-page .section1 .container {
  position: relative;
  z-index: 1;
}

.contact-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.contact-hero-title .text-primary-purple {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 50px;
  color: #a5b4fc;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.contact-hero-badge::before {
  content: '✨';
  font-size: 1rem;
}

.contact-hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

.contact-benefit {
  padding: 2rem 1.5rem;
}

.contact-benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: #a5b4fc;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.contact-benefit-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact-benefit-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 0;
}

.contact-form-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-form-wrapper {
  background: rgba(15, 23, 42, 0.6) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.features-page .section1 {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2d1b4e 100%) !important;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 5rem;
  overflow: hidden;
}


.features-page .section1 h1,
.features-page .section1 h2 {
  color: #FFFFFF;
}

.features-page .section1 .hero-subtitle,
.features-page .section1 p {
  color: #cbd5e1;
}

.features-page .section1 .row .col-lg-6:last-child {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0;
  min-height: 100%;
}

.features-page .section1 .row .col-lg-6:last-child img {
  margin-top: auto;
  margin-bottom: 0;
  width: 100%;
}
@media (max-width: 992px) {
  .features-page .section1 {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
  
}

@media (max-width: 768px) {
  .features-page .section1 {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
  }
  
  .features-page .section1 .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  
}
.feature-detail-card {
  background: #FFFFFF;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.feature-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
  border-color: #6366f1;
}
.feature-icon-wrapper {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 1.5rem;
}

.feature-list li {
  padding: 0.75rem 0;
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.features-section .feature-list li {
  color: #94a3b8;
}

.feature-list li i {
  color: #10b981;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.features-section .feature-list li i {
  color: #6366f1;
}
.features-page .section3 {
  background-color: #f9fafb;
  border-top: none !important;
  border-bottom: none !important;
}
.features-page .section4 {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2d1b4e 100%) !important;
  padding: 6rem 2rem;
}

.features-page .section4 .container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-page .section4 .cta-heading {
  color: #FFFFFF;
  font-size: 2.5rem;
  line-height: 1.2;
}

.features-page .section4 .cta-text {
  color: #FFFFFF !important;
  font-size: 1.1rem;
  line-height: 1.8;
}

@media (max-width: 992px) {
  .features-page .section4 {
    padding: 4rem 0;
  }
  
  .features-page .section4 .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .features-page .section4 .cta-wrapper {
    border-radius: 0;
  }
}

.operations-card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.operations-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #10b981;
}
.operations-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.operations-icon i {
  color: #FFFFFF;
  font-size: 1.25rem;
}
.operations-card h5 {
  color: #26282c;
  font-weight: 600;
  font-size: 1.1rem;
}
.operations-card p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Old pricing CSS removed - see consolidated section above */

.contact-page .row.mb-5 + .row {
  margin-top: 4rem;
}

.contact-info-section {
  background: rgba(15, 23, 42, 0.6) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
  height: 100%;
}

.contact-info-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #a5b4fc;
  flex-shrink: 0;
}

.contact-info-content {
  flex: 1;
}

.contact-info-label {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-info-link {
  font-size: 1.125rem;
  color: #a5b4fc;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-info-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.contact-info-text {
  font-size: 1.0625rem;
  color: #cbd5e1;
  margin-bottom: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-page .section1 {
    padding: 3rem 0;
  }
  
  .contact-page .section1 .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .contact-page .text-center {
    text-align: left !important;
  }
  
  .contact-hero-title {
    text-align: left;
  }
  
  .contact-page .section1 .text-center {
    text-align: left !important;
  }
  
  .contact-page .hero-badge,
  .contact-page .contact-hero-badge {
    display: inline-flex;
    margin-left: 0;
  }
  
  .contact-hero-title {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  
  .contact-hero-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  
  .contact-benefit {
    text-align: left;
    padding: 0;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
  
  .contact-page .row.mb-5 {
    margin-left: 0;
    margin-right: 0;
  }
  
  .contact-page .row.mb-5 > [class*="col-"] {
    margin-bottom: 1.5rem !important;
    margin-top: 0 !important;
    padding-left: 0;
    padding-right: 0;
  }
  
  .contact-page .row.mb-5 > [class*="col-"]:last-child {
    margin-bottom: 0 !important;
  }
  
  .contact-benefit-icon {
    width: 64px;
    height: 64px;
    font-size: 2rem;
    margin: 0 0 1.5rem 0;
    margin-left: 0;
  }
  
  .contact-benefit-title,
  .contact-benefit-text {
    padding-left: 0;
    margin-left: 0;
  }
  
  .contact-benefit-title {
    font-size: 1.25rem;
  }
  
  .contact-benefit-text {
    font-size: 1rem;
  }
  
  .contact-info-section {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
  
  .contact-hero-badge {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .pricing-page .section2 {
    padding: 3rem 0;
  }
  
  .pricing-plans-section {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  
  .pricing-plans-section .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}

/* Duplicate pricing CSS removed - see consolidated section above */
.contact-form .form-label {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.contact-input {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  color: #ffffff;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-input:hover {
  border-color: rgba(99, 102, 241, 0.5);
  background-color: rgba(255, 255, 255, 0.08);
}

.contact-input:focus {
  border-color: #6366f1;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
  outline: none;
  color: #ffffff;
}

.contact-input:focus::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form textarea.contact-input {
  min-height: 150px;
  resize: vertical;
  font-family: "Roboto", sans-serif;
  background-color: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
}

.contact-form textarea.contact-input::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.contact-form textarea.contact-input:focus {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: #6366f1 !important;
  color: #ffffff !important;
}

.contact-submit-button {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.contact-submit-button::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.5s ease;
}

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

.contact-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
  color: #ffffff;
}

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

.contact-recaptcha-text {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 0;
  line-height: 1.6;
}

.recaptcha-link {
  color: #a5b4fc;
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.3s ease;
}

.recaptcha-link:hover {
  color: #ffffff;
  text-decoration: underline;
}
.migration-step-card {
  background: rgba(15, 23, 42, 0.6) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.migration-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.5);
}

.migration-step-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.migration-step-card p {
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 0;
}

.migration-step-card p strong {
  color: #FFFFFF;
  font-weight: 600;
}

.migration-step-card code {
  background-color: rgba(99, 102, 241, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.875rem;
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.migration-step-number {
  font-weight: 600;
  font-size: 0.875rem;
  color: #a5b4fc !important;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.migration-steps-row {
  display: flex;
  flex-wrap: wrap;
}

.migration-steps-row > [class*="col-"] {
  display: flex;
}

.migration-steps-row .migration-step-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 1400px) {
  .migration-steps-row .col-xl {
    flex: 0 0 auto;
    width: calc(20% - 1.2rem);
    max-width: calc(20% - 1.2rem);
  }
}

@media (max-width: 1399px) and (min-width: 992px) {
  .migration-steps-row .col-xl {
    flex: 0 0 auto;
    width: calc(33.333333% - 1rem);
    max-width: calc(33.333333% - 1rem);
  }
}
.migration-step-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
}
.migration-step-card code {
  background-color: #f3f4f5;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.875rem;
  color: #6366f1;
}
.example-message-card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.example-message-card pre {
  background-color: #f9fafb;
  padding: 1.5rem;
  border-radius: 8px;
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #374151;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.data-migration-page .section2 code {
  background-color: #f3f4f5;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.875rem;
  color: #6366f1;
}

@media (max-width: 992px) {
  .data-migration-page .section1 {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
  
  .data-migration-page .section1 .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 992px) {
  .data-migration-page .section2 {
    padding: 4rem 0;
  }
  
  .data-migration-page .section2 .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 768px) {
  .data-migration-page .section1 {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
  }
  
  .data-migration-page .section2 {
    padding: 3rem 0;
  }
  
  .migration-step-card {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .migration-step-card h4 {
    font-size: 1.25rem;
  }
  
  .data-migration-cta-button {
    width: 100%;
    max-width: 300px;
  }
  
  .example-message-card {
    padding: 1.5rem;
  }
}
.text-primary-purple {
  color: #6366f1;
}
.btn-purple {
  background-color: #6366f1;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: 2px solid #6366f1;
  line-height: 1;
  display: inline-flex;
  letter-spacing: 0.015em;
  align-items: center;
  justify-content: center;
}
.btn-purple:hover {
  background-color: #4f46e5;
  color: #fff;
  transform: scale(1.05);
}
.btn-outline-dark {
  background-color: transparent;
  color: #3a3a3a;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: 2px solid #3a3a3a;
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-outline-dark:hover {
  background-color: #3a3a3a;
  color: #fff;
  transform: scale(1.05);
}
.home-hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 900;
}
.home .section2 {
  background-color: #FFFFFF;
  text-align: left;
}
.home .section3 {
  background-color: #f3f4f5;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 4rem;
}
.text-purple {
  color: #6366f1;
}
.feature-card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid #6366f1;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}
.feature-card-image {
  position: relative;
  overflow: hidden;
}
.feature-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.feature-card-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 2;
}
.feature-card-content {
  position: relative;
  z-index: 3;
}
.feature-divider {
  width: 60px;
  height: 3px;
  background-color: #6366f1;
}
.home .section4 {
  background-color: #FFFFFF;
  text-align: left;
}
.home .section4 h2 {
  color: #26282c;
}
.testimonial-card {
  background: #FFFFFF;
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 2px solid #6366f1;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(99, 102, 241, 0.2);
}
.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #3a3a3a;
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
}
.home .section5 {
  background: 
    linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.03) 100%),
    linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2d1b4e 100%);
  padding: 6rem 2rem;
  border-top: none;
  border-bottom: none;
}

@media (max-width: 992px) {
  .home .section5 {
    padding: 4rem 0;
  }
  
  .home .section5 .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .comparison-wrapper .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .faq-cta-wrapper {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  
  .faq-cta-wrapper .cta-wrapper {
    border-radius: 0;
  }
}
.home .section5 .container {
  max-width: 1200px;
  margin: 0 auto;
}
.home .section5 h2 {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 3rem;
}
.home .section5 .accordion-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px;
  margin-bottom: 1rem;
  margin-top: 0;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: none !important;
}
.home .section5 .accordion-item:hover {
  border-color: rgba(99, 102, 241, 0.5) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}
.home .section5 .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(99, 102, 241, 0.5) !important;
}
.home .section5 .accordion-button {
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 1.25rem 1.5rem;
  border: none !important;
  box-shadow: none;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  line-height: 1.3;
}
.home .section5 .accordion-button:not(.collapsed) {
  background: transparent !important;
  color: #ffffff;
  box-shadow: none;
}
.home .section5 .accordion-button:focus {
  box-shadow: none;
  border: none;
}
.home .section5 .accordion-button::after {
  background-image: none !important;
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #a5b4fc;
  font-size: 0.75rem;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  background-color: rgba(99, 102, 241, 0.2);
  display: inline-block;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  flex-shrink: 0;
  margin-left: auto;
}
.home .section5 .accordion-button:not(.collapsed)::after {
  content: "\f077";
  transform: none;
}
.home .section5 .accordion-body {
  padding: 1.5rem;
  color: #e0e7ff;
  line-height: 1.8;
  background: transparent !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.home .section5 .accordion-body strong {
  color: #ffffff;
}
.home .section6 {
  background: 
    linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 100%),
    linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2d1b4e 100%);
  padding: 6rem 2rem;
}
.home .section6 .container {
  max-width: 80rem;
  margin: 0 auto;
}
/* FAQ CTA Wrapper */
.faq-cta-wrapper {
  width: 100%;
}

.faq-cta-wrapper .cta-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.faq-cta-wrapper .cta-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 1;
}

.faq-cta-wrapper .cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #111827b3;
  z-index: 2;
}

.faq-cta-wrapper .cta-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-cta-wrapper .cta-heading {
  color: #FFFFFF;
  font-size: 2.5rem;
  line-height: 1.2;
}

.faq-cta-wrapper .cta-text {
  color: #FFFFFF !important;
  font-size: 1.1rem;
  line-height: 1.8;
}
.cta-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 1;
}
.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #111827b3;
  z-index: 2;
}
.cta-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.cta-heading {
  color: #FFFFFF;
  font-size: 2.5rem;
  line-height: 1.2;
}
.cta-text {
  color: #FFFFFF !important;
  font-size: 1.1rem;
  line-height: 1.8;
}
.btn-outline-white {
  background-color: transparent;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: 2px solid #FFFFFF;
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-outline-white:hover {
  background-color: #FFFFFF;
  color: #26282c;
  transform: scale(1.05);
}
/* Blog Page */
img.card-img-top {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
h3.card-title a {
  font-size: 28px !important;
  text-decoration: none;
  line-height: 0.9em;
  font-weight: 600;
}
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}
.pagination li {
  margin: 0 5px;
}
.pagination a,
.pagination span {
  color: #242424;
  background-color: #e9e0d9;
  border: 1px solid #e9e0d9;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease-in-out;
  margin: 3px;
}
.pagination a:hover {
  background-color: #d3cbc5;
  border-color: #d3cbc5;
}
.pagination .current {
  background-color: #e9e0d9;
  color: #3a3a3a;
  font-weight: bold;
}
/* Individual Blog Post */
.single-post-page {
  padding: 50px 0;
}
.single-post-page .section1 {
  padding: 0 0;
}
.post-thumbnail img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}
.post-title {
  font-size: 48px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 10px;
}
.post-meta {
  text-align: left;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
p.post-meta {
  color: #3a3a3a !important;
}
.post-content {
  font-size: 1.1rem;
  line-height: 1.8;
}
.author-box {
  display: flex;
  align-items: center;
}
.author-box img {
  border-radius: 50%;
}
.comments-section {
  margin-top: 40px;
}
.post-meta svg {
  margin-bottom: 0;
  margin-right: 5px;
  vertical-align: middle;
}
.post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}
span.author a {
  font-size: 15px;
  text-decoration: none;
  color: #3a3a3a;
}
/* Media Queries */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
    padding: 20px;
  }
  .dropdown-menu a:not(:last-child) {
    margin-bottom: 5px;
  }
  .navbar-nav .nav-item:last-of-type {
    margin-right: 20px;
  }
  .navbar-nav .dropdown-toggle::after {
    display: none !important;
  }
  .hide-desktop {
    display: none !important;
  }
  .hide-mobile {
    display: block !important;
  }
}
@media (max-width: 992px) {
  .hide-mobile {
    display: none !important;
  }
  .hide-desktop {
    display: block !important;
  }
  .btn-primary,
  .btn-secondary {
    font-size: 18px;
  }
  #submit {
    font-size: 18px;
  }
  .pricing-card {
    margin-bottom: 1.5rem;
  }
  .pricing-plans-section .row.mb-5 {
    margin-bottom: 0 !important;
  }
  .features-page .row.mb-5 {
    margin-bottom: 0 !important;
  }
  .price-number {
    font-size: 2.5rem;
  }
  .value-card {
    padding: 2.5rem 2rem;
  }
  .value-card h3 {
    font-size: 1.5rem;
  }
  .sms-addon-wrapper {
    padding: 0;
    margin-top: 4rem;
    padding-top: 4rem;
  }
  
  .sms-addon-title {
    font-size: 1.5rem;
  }
  
  .addon-card {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .pricing-plans-section .pricing-card {
    margin-bottom: 1.5rem;
  }
  .addon-icon {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }
  .pricing-page .section2 {
    padding: 4rem 0;
  }
  .home .section1 .row.mb-5 {
    margin-bottom: 0 !important;
  }
  .navbar-collapse {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    margin-top: 15px;
    background-color: #0a0a0f;
    padding: 1.5rem;
    border-radius: 12px;
  }
  .navbar {
    padding: 15px 20px;
  }
  .navbar .container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 575px) {
  .navbar .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .pricing-plans-section {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  
  .pricing-plans-section .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .navbar-brand {
    margin-left: 0;
  }
  
  .navbar-toggler {
    margin-right: 0;
  }
  
  .navbar-collapse {
    background-color: #0a0a0f;
    padding: 1.5rem 25px;
    border-radius: 12px;
    margin-left: -25px;
    margin-right: -25px;
    width: calc(100% + 50px);
  }
  
  img.logo {
    max-width: 40px !important;
  }
  .navbar-toggler {
    padding-right: 0;
  }
  .navbar-nav.ms-auto {
    gap: 1.5rem !important;
    align-items: flex-start !important;
  }
  .navbar-nav.ms-auto .nav-item:last-child {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
  }
  .navbar .btn-primary {
    margin-top: 20px;
  }
  .navbar .gap-3 {
    gap: 0.5em !important;
  }
  .navbar-nav {
    width: 100%;
  }
  .navbar-nav .nav-item {
    width: 100%;
  }
  .navbar-nav .nav-link {
    text-align: left;
    padding-left: 0;
    font-size: 16px;
  }
  .row > [class^="col-"]:not(:first-child) {
    margin-top: 40px;
  }
  
  /* Override 40px margin-top for calculator form */
  
  .contact-page .row.mb-5 > [class^="col-"]:not(:first-child) {
    margin-top: 0 !important;
  }
  section {
    padding: 45px 0;
  }
  .curved-section-up {
    padding: 135px 0;
    clip-path: unset;
  }
  .curved-section-down {
    padding: 135px 0;
    clip-path: unset;
  }
  .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  .global-row {
    flex-wrap: wrap;
  }
  .global-col {
    width: 100% !important;
  }
  .full-width-button {
    width: 100%;
    text-align: center;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 20px;
  }
  p {
    font-size: 16px;
  }
  .post-title {
    font-size: 36px;
  }
  .single-post-page {
    padding: 0 0;
  }
  .home-hero-title {
    font-size: 2rem;
  }
  .home .section2 p {
    margin-bottom: 0;
  }
  .home .section3 .lead {
    font-size: 1rem;
  }
  .cta-heading {
    font-size: 28px;
  }
  .cta-text {
    font-size: 1rem;
  }
  footer .row > [class^="col-"]:not(:first-child) {
    margin-top: 10px;
  }
  .footer h5 {
    margin-bottom: 10px;
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1rem;
  }
  .footer-links-social {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1rem;
    order: -1;
  }
  .footer-copyright {
    order: 2;
  }
  span.author a {
    font-size: 15px;
    text-decoration: none;
  }
  a.dropdown-item {
    font-size: 16px;
  }
  
  .about-page-title {
    font-size: 2rem;
  }
  
  .about-page h1 {
    font-size: 2rem;
  }
  
  .about-page p {
    font-size: 1rem;
  }
  
  .about-page .section2 h2 {
    font-size: 1.5rem;
  }
  
  .about-page .section2 h3 {
    font-size: 1.25rem;
  }
  
  .about-page .section3 h2 {
    font-size: 1.5rem;
  }
  
  .about-page .section1 {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }
  
  .about-page .section2 {
    padding: 45px 0;
  }
  
  .about-page .section3 {
    padding: 45px 0;
  }
}

/* Yoast SEO Breadcrumbs */
.breadcrumbs {
  font-size: 14px;
  color: #6b7280;
}

.breadcrumbs a {
  color: #26282c !important;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px !important;
  font-weight: 400 !important;
}

.breadcrumbs a:hover {
  color: #6366f1 !important;
}

.breadcrumbs span {
  color: #6b7280;
  font-size: 14px;
}

.yoast-breadcrumbs {
  font-size: 14px;
  color: #6b7280;
}

.yoast-breadcrumbs a {
  color: #26282c !important;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px !important;
  font-weight: 400 !important;
}

.yoast-breadcrumbs a:hover {
  color: #6366f1 !important;
}

/* Blog Archive Styles */
.featured-post {
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.featured-post-image {
  display: block;
  background: transparent;
  position: relative;
  padding: 0;
}

.featured-post-image a {
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  overflow: hidden;
  display: block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.featured-post-image a:hover {
  transform: scale(1.02);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.featured-post-image img {
  width: 100%;
  height: auto;
  display: block;
}

.featured-post-title {
  font-size: 28px !important;
  font-weight: 600;
  line-height: 1.4;
}

.featured-post-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 28px !important;
  font-weight: 600;
}

.featured-post-title a:hover {
  color: #a5b4fc;
}

.featured-post-excerpt {
  font-size: 17px;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.latest-articles-header {
  padding: 2rem 0;
}

.blog-post-card {
  background: rgba(15, 23, 42, 0.6) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.blog-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.5) !important;
}

.post-card-image {
  display: block;
  overflow: hidden;
}

.post-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

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

.post-card-title {
  font-size: 28px !important;
  font-weight: 600;
  line-height: 1.4;
}

.post-card-title a {
  color: #ffffff !important;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 28px !important;
  font-weight: 600;
}

.post-card-title a:hover {
  color: #a5b4fc !important;
}

.post-card-excerpt {
  font-size: 0.95rem;
  color: #cbd5e1 !important;
  line-height: 1.6;
}

.post-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: #94a3b8;
}

.post-card-meta i {
  color: #a5b4fc;
}

.post-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-pagination {
  display: flex;
  justify-content: center;
}

.blog-pagination ul {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-pagination li {
  margin: 0;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #a5b4fc;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-pagination a:hover {
  background: rgba(99, 102, 241, 0.3);
  color: #ffffff;
  border-color: rgba(99, 102, 241, 0.5);
}

.blog-pagination .current {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #FFFFFF;
  border-color: rgba(99, 102, 241, 0.5);
}

/* Blog Post Styles */
.blog-post-page .col-lg-10 {
  max-width: 56rem;
}

.back-to-blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #6366f1;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-bottom: 1.5rem;
}

.back-to-blog-link:hover {
  color: #4f46e5;
}

.post-category-badge {
  display: block;
  width: fit-content;
  background-color: #ede9fe;
  color: #6366f1;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.featured-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.featured-label {
  display: inline-block;
  background-color: #6366f1;
  color: #FFFFFF;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.post-category-badge-inline {
  display: inline-block;
  background-color: #ede9fe;
  color: #6366f1;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.post-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #26282c;
  line-height: 1.2;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #6b7280;
  font-size: 0.95rem;
}

.post-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.post-meta i {
  color: #9ca3af;
}

.post-featured-image {
  border-radius: 12px;
  overflow: hidden;
}

.post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #374151;
}

.post-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #26282c;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.post-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #26282c;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

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

.post-content strong {
  font-weight: 700;
  color: #26282c;
}

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

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

.post-tags h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #26282c;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag-badge {
  display: inline-block;
  background-color: #f3f4f6;
  color: #4b5563;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tag-badge:hover {
  background-color: #e5e7eb;
  color: #26282c;
}

.related-articles {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-articles h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.related-post-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.related-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(99, 102, 241, 0.3);
  border-color: rgba(99, 102, 241, 0.5);
}

.post-category-small {
  display: inline-block;
  background-color: rgba(99, 102, 241, 0.2) !important;
  color: #a5b4fc !important;
  padding: 0.25rem 0.75rem;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.related-post-card h4 {
  font-size: 1.5rem !important;
  font-weight: 600;
  line-height: 1.4;
}

.related-post-card h4 a {
  color: #ffffff !important;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.5rem !important;
  font-weight: 600;
}

.related-post-card h4 a:hover {
  color: #a5b4fc !important;
}

.related-post-card .text-muted {
  color: #94a3b8 !important;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #a5b4fc !important;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.read-more-link:hover {
  gap: 0.75rem;
  color: #c7d2fe !important;
}

/* Single Blog Post Page Styles - Use WordPress body class */
body.single .navbar,
body.single-post .navbar,
body.single .navbar.bg-light,
body.single-post .navbar.bg-light,
body.single .custom-navbar,
body.single-post .custom-navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent !important;
  background-color: transparent !important;
  padding: 1.5rem 0;
}

body.single .navbar .nav-link,
body.single-post .navbar .nav-link {
  color: #ffffff !important;
  transition: color 0.3s ease;
}

body.single .navbar .nav-link:hover,
body.single-post .navbar .nav-link:hover {
  color: #a5b4fc !important;
}

body.single .navbar .navbar-toggler-icon,
body.single-post .navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

body.single .navbar .btn-purple,
body.single-post .navbar .btn-purple {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

body.single .navbar .btn-purple::before,
body.single-post .navbar .btn-purple::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.5s ease;
}

body.single .navbar .btn-purple:hover::before,
body.single-post .navbar .btn-purple:hover::before {
  left: 100%;
}

body.single .navbar .btn-purple:hover,
body.single-post .navbar .btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.blog-post-header {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2d1b4e 100%) !important;
  position: relative;
  padding: 8rem 0 6rem !important;
  overflow: hidden;
  min-height: auto;
}

.blog-post-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: backgroundShift 8s ease-in-out infinite;
}

.blog-post-header .container {
  position: relative;
  z-index: 1;
}

.blog-post-breadcrumbs {
  display: none !important;
}

.blog-post-header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-post-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 50px;
  color: #a5b4fc;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  margin: 0;
}

.blog-post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #a5b4fc !important;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  margin: 0;
}

.blog-post-back-link:hover {
  color: #c7d2fe !important;
}

.blog-post-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #94a3b8;
  font-size: 0.95rem;
}

.blog-post-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
}

.blog-post-meta-item i {
  color: #a5b4fc;
}

.blog-post-featured-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}


.blog-post-content-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #cbd5e1;
}

.blog-post-content-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-post-content-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.blog-post-content-text h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #e0e7ff;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.blog-post-content-text p {
  margin-bottom: 1.5rem;
  color: #cbd5e1;
}

.blog-post-content-text strong {
  font-weight: 700;
  color: #ffffff;
}

.blog-post-content-text ul,
.blog-post-content-text ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  color: #cbd5e1;
}

.blog-post-content-text li {
  margin-bottom: 0.75rem;
  color: #cbd5e1;
}

.blog-post-content-text a {
  color: #a5b4fc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post-content-text a:hover {
  color: #c7d2fe;
  text-decoration: underline;
}

.blog-post-content-text blockquote {
  border-left: 4px solid #6366f1;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #94a3b8;
}

.blog-post-content-text code {
  background: rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.9em;
}

.blog-post-content-text pre {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  overflow-x: auto;
  margin: 2rem 0;
}

.blog-post-content-text pre code {
  background: transparent;
  color: #cbd5e1;
  padding: 0;
}

.blog-post-content-text img {
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.blog-post-tags {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.blog-post-tags-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.blog-post-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.blog-post-tag-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #a5b4fc;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.blog-post-tag-badge:hover {
  background: rgba(99, 102, 241, 0.3);
  color: #c7d2fe;
  border-color: rgba(99, 102, 241, 0.5);
  transform: translateY(-2px);
}

/* Blog Archive Page */
.blog-hero {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2d1b4e 100%) !important;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 5rem;
  overflow: hidden;
  min-height: auto;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.blog-hero .container {
  position: relative;
  z-index: 1;
}

.blog-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 50px;
  color: #a5b4fc;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.blog-hero-badge::before {
  content: '✨';
  font-size: 1rem;
}

.blog-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.blog-hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

.blog-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.featured-post {
  margin-bottom: 4rem;
}

.featured-post-content {
  background: rgba(15, 23, 42, 0.6) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.featured-post-content .post-meta {
  color: #94a3b8;
}

.featured-post-content .post-meta i {
  color: #a5b4fc;
}

.latest-articles-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.latest-articles-title .text-primary-purple {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Single Post Template Styles */
.single-post-hero-section {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2d1b4e 100%) !important;
  position: relative;
  padding: 6rem 0 4rem;
  overflow: hidden;
  min-height: auto;
}

.single-post-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: backgroundShift 8s ease-in-out infinite;
}

.single-post-hero-section .container {
  position: relative;
  z-index: 1;
}

.single-post-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 50px;
  color: #a5b4fc;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.single-post-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.single-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #94a3b8;
  font-size: 0.95rem;
}

.single-post-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
}

.single-post-meta-item i {
  color: #a5b4fc;
}

.single-post-featured-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.single-post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.single-post-content-section {
  background: #0f172a;
  padding: 4rem 0 6rem;
}

.single-post-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #cbd5e1;
}

.single-post-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.single-post-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.single-post-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #e0e7ff;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.single-post-content p {
  margin-bottom: 1.5rem;
  color: #cbd5e1;
}

.single-post-content strong {
  font-weight: 700;
  color: #ffffff;
}

.single-post-content ul,
.single-post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  color: #cbd5e1;
}

.single-post-content li {
  margin-bottom: 0.75rem;
  color: #cbd5e1;
}

.single-post-content a {
  color: #a5b4fc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.single-post-content a:hover {
  color: #c7d2fe;
  text-decoration: underline;
}

.single-post-content blockquote {
  border-left: 4px solid #6366f1;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #94a3b8;
}

.single-post-content code {
  background: rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.9em;
}

.single-post-content pre {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  overflow-x: auto;
  margin: 2rem 0;
}

.single-post-content pre code {
  background: transparent;
  color: #cbd5e1;
  padding: 0;
}

.single-post-content img {
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.single-post-tags {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.single-post-tags-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.single-post-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.single-post-tag-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #a5b4fc;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.single-post-tag-badge:hover {
  background: rgba(99, 102, 241, 0.3);
  color: #c7d2fe;
  border-color: rgba(99, 102, 241, 0.5);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .blog-hero {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
  
  .blog-hero .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .post-title {
    font-size: 2rem;
  }
  
  .post-meta {
    font-size: 0.875rem;
    gap: 1rem;
  }
  
  .post-content {
    font-size: 1rem;
  }
  
  .post-content h2 {
    font-size: 1.75rem;
  }
  
  .post-content h3 {
    font-size: 1.35rem;
  }
  
  /* Single Post Template Mobile Styles */
  .single-post-hero-section {
    padding: 4rem 0 3rem;
  }
  
  .single-post-hero-section .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .single-post-hero-section .text-center {
    text-align: left !important;
  }
  
  .single-post-badge {
    display: inline-flex;
    margin-left: 0;
  }
  
  .single-post-title {
    font-size: 2rem;
    text-align: left;
  }
  
  .single-post-meta {
    font-size: 0.875rem;
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .single-post-content-section {
    padding: 3rem 0 4rem;
  }
  
  .single-post-content-section .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .single-post-content {
    font-size: 1rem;
  }
  
  .single-post-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
  }
  
  .single-post-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
  }
  
  .single-post-content h4 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
  }
  
  /* Single Blog Post Mobile Styles */
  .blog-post-header {
    padding: 4rem 0 3rem !important;
  }
  
  .blog-post-header .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .blog-post-header .text-center {
    text-align: left !important;
  }
  
  .blog-post-header-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .blog-post-badge {
    display: inline-flex;
    margin-left: 0;
  }
  
  .blog-post-back-link {
    align-self: flex-end;
  }
  
  .blog-post-title {
    font-size: 2rem;
    text-align: left;
  }
  
  .blog-post-meta {
    font-size: 0.875rem;
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .blog-post-header .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .blog-post-content-text {
    font-size: 1rem;
  }
  
  .blog-post-content-text h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
  }
  
  .blog-post-content-text h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
  }
  
  .blog-post-content-text h4 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
  }
  
  .featured-post-title {
    font-size: 24px !important;
  }
  
  .featured-post-excerpt {
    font-size: 1rem;
  }
  
  .featured-post .row {
    flex-direction: column;
  }
  
  .featured-post-image {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .blog-hero {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
  }
  
  .blog-hero .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .blog-post-header {
    padding-top: 3.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  
  .blog-post-header .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .blog-hero .text-center {
    text-align: left !important;
  }
  
  .blog-hero-badge {
    margin-left: 0;
  }
  
  .blog-hero-title {
    text-align: left;
  }
  
  .blog-hero-subtitle {
    text-align: left;
    margin-left: 0;
  }
  
  .featured-post-content {
    padding: 2rem 1.5rem;
  }
}


/* Lifetime Value Tool Page */

/* Legacy LTV styles - overridden by .lifetime-value-tool-page specific styles */
.ltv-calculator-card {
  background: #FFFFFF;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ltv-intro-section {
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.ltv-intro-section h4 {
  color: #26282c;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.ltv-intro-section h4 i {
  color: #6366f1;
}

.ltv-intro-section p {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 0;
  font-size: 1rem;
}

.ltv-calculator-card .form-label {
  font-weight: 600;
  color: #26282c;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.ltv-calculator-card .form-label i {
  color: #6366f1;
}

.ltv-input {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #FFFFFF;
}

.ltv-input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
  outline: none;
}

.ltv-input:hover {
  border-color: #c7d2fe;
}

.ltv-calculator-card .form-text {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

.ltv-input-summary {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-label {
  color: #4b5563;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.summary-label i {
  color: #6366f1;
  font-size: 0.875rem;
}

.summary-value {
  color: #26282c;
  font-size: 1rem;
  font-weight: 600;
}

.ltv-result {
  background: linear-gradient(135deg, #f5f7ff 0%, #ede9fe 100%);
  border: 2px solid #c7d2fe;
  border-radius: 16px;
  padding: 2rem;
  margin-top: 1.5rem;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ltv-result-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid #c7d2fe;
}

.ltv-result-header h3 {
  color: #26282c;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ltv-result-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
}

.ltv-currency {
  font-size: 2.5rem;
  font-weight: 700;
  color: #6366f1;
}

.ltv-amount {
  font-size: 4rem;
  font-weight: 900;
  color: #6366f1;
  line-height: 1;
}

.ltv-tooltip-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 0.5rem;
}

.ltv-tooltip-icon {
  color: #6366f1;
  font-size: 1.25rem;
  cursor: help;
  transition: color 0.3s ease;
}

.ltv-tooltip-icon:hover {
  color: #4f46e5;
}

.ltv-tooltip-content {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 0.75rem;
  background: #1f2937;
  color: #FFFFFF;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.7;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateX(-50%) translateY(-5px);
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 400px;
  min-width: 350px;
  white-space: normal;
  text-align: left;
}

.ltv-tooltip-content::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #1f2937;
}

.ltv-tooltip-wrapper:hover .ltv-tooltip-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.ltv-breakdown {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.breakdown-item:last-child {
  border-bottom: none;
}

.breakdown-item.breakdown-subtotal {
  border-top: 1px solid #c7d2fe;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
}

.breakdown-item.breakdown-total {
  border-top: 2px solid #6366f1;
  margin-top: 0.75rem;
  padding-top: 1rem;
}

.breakdown-label {
  color: #4b5563;
  font-size: 1rem;
}

.breakdown-value {
  color: #26282c;
  font-size: 1.1rem;
  font-weight: 600;
}

.breakdown-total .breakdown-label,
.breakdown-total .breakdown-value {
  color: #6366f1;
  font-size: 1.25rem;
}

.ltv-info-card {
  background: #FFFFFF;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ltv-info-card h4 {
  color: #26282c;
  font-size: 1.5rem;
  font-weight: 700;
}

.ltv-info-card p {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.ltv-info-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.ltv-info-list li {
  padding: 0.75rem 0;
  color: #4b5563;
  line-height: 1.7;
  padding-left: 1.75rem;
  position: relative;
}

.ltv-info-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #10b981;
  font-size: 0.875rem;
}

.ltv-info-list li strong {
  color: #26282c;
}


#calculatorColumn {
  transition: all 0.4s ease-out;
}

#calculatorRow {
  display: flex !important;
  align-items: stretch !important;
}

#calculatorRow > div {
  display: flex !important;
  flex-direction: column !important;
}

#dojotrackInfoColumn {
  display: none !important;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  height: 0;
  overflow: hidden;
}

#dojotrackInfoColumn[style*="display: flex"] {
  display: flex !important;
  height: auto;
  overflow: visible;
}

#calculatorRow .ltv-calculator-card {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: 100%;
}

#dojotrackInfoColumn > div {
  background: #FFFFFF;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.lifetime-value-tool-page #dojotrackInfoColumn > div {
  background: transparent !important;
  border: none !important;
  border-radius: 0;
  padding: 0 !important;
  box-shadow: none;
}

#dojotrackInfoColumn h2 {
  color: #26282c;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.lifetime-value-tool-page #dojotrackInfoColumn h2 {
  color: #ffffff !important;
}

#dojotrackInfoColumn .lead {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}


.ltv-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.ltv-benefit-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.ltv-benefit-item i {
  font-size: 1.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.ltv-benefit-item h5 {
  color: #26282c;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.ltv-benefit-item p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 0.95rem;
}


.ltv-impact-box {
  background: linear-gradient(135deg, #f5f7ff 0%, #ede9fe 100%);
  border: 2px solid #c7d2fe;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.ltv-impact-box h5 {
  color: #26282c;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.ltv-impact-box h5 i {
  color: #6366f1;
}

.ltv-impact-box p {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 0;
  font-size: 1rem;
}

.ltv-impact-box strong {
  color: #6366f1;
  font-weight: 700;
}

.ltv-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 992px) {
  .lifetime-value-tool-page .section1 {
    padding: 3rem 0;
  }
  
  .lifetime-value-tool-page .row.g-4 {
    flex-direction: column;
  }
  
  .ltv-calculator-card {
    padding: 2rem 1.5rem;
  }
  
  .ltv-currency {
    font-size: 2rem;
  }
  
  .ltv-amount {
    font-size: 3rem;
  }
  
  .ltv-info-card {
    padding: 2rem 1.5rem;
    height: auto;
  }
  
  .ltv-info-card h4 {
    font-size: 1.25rem;
  }
  
  #dojotrackInfoColumn > div {
    padding: 0;
  }
  
  .lifetime-value-tool-page #dojotrackInfoColumn > div {
    padding: 0 !important;
  }
  
  #dojotrackInfoColumn h2 {
    font-size: 1.5rem;
  }
  
  .ltv-benefit-item {
    gap: 1rem;
  }
  
  .ltv-benefit-item i {
    font-size: 1.5rem;
  }
  
  .ltv-benefit-item h5 {
    font-size: 1rem;
  }
  
  .ltv-impact-cta-card {
    padding: 2rem 1.5rem;
  }
  
  .ltv-impact-box {
    padding: 1.5rem;
  }
  
  .ltv-impact-box h5 {
    font-size: 1.1rem;
  }
  
  .ltv-cta-buttons {
    flex-direction: column;
  }
  
  .ltv-cta-buttons .btn {
    width: 100%;
  }
}

/* Terms & Privacy Policy Pages */
.terms-page .terms-hero-section,
.privacy-policy-page .privacy-hero-section {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2d1b4e 100%) !important;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  min-height: auto;
}

.terms-page .terms-hero-section::before,
.privacy-policy-page .privacy-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.terms-page .terms-hero-section .container,
.privacy-policy-page .privacy-hero-section .container {
  position: relative;
  z-index: 1;
}

.terms-hero-title,
.privacy-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.terms-hero-subtitle,
.privacy-hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #cbd5e1;
  margin-bottom: 0;
}

/* Terms and Privacy content sections removed - content now in hero sections */

.terms-content-wrapper {
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 0;
}

.privacy-content-wrapper {
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 0;
}

.terms-page .terms-content-wrapper h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.privacy-policy-page .privacy-content-wrapper h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.terms-page .terms-content-wrapper h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  line-height: 1.3;
}

.privacy-policy-page .privacy-content-wrapper h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  line-height: 1.3;
}

.terms-page .terms-content-wrapper h2:first-of-type {
  margin-top: 0;
}

.privacy-policy-page .privacy-content-wrapper h2:first-of-type {
  margin-top: 0;
}

.terms-page .terms-content-wrapper h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #e0e7ff;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.privacy-policy-page .privacy-content-wrapper h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #e0e7ff;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.terms-page .terms-content-wrapper p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.privacy-policy-page .privacy-content-wrapper p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.terms-page .terms-content-wrapper ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.privacy-policy-page .privacy-content-wrapper ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.terms-page .terms-content-wrapper ul li {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.privacy-policy-page .privacy-content-wrapper ul li {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.terms-page .terms-content-wrapper ul ul {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
}

.privacy-policy-page .privacy-content-wrapper ul ul {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
}

.terms-page .terms-content-wrapper ul ul li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.privacy-policy-page .privacy-content-wrapper ul ul li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.terms-page .terms-content-wrapper a {
  color: #a5b4fc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.privacy-policy-page .privacy-content-wrapper a {
  color: #a5b4fc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.terms-page .terms-content-wrapper a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.privacy-policy-page .privacy-content-wrapper a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.terms-page .terms-content-wrapper strong {
  color: #ffffff;
  font-weight: 600;
}

.privacy-policy-page .privacy-content-wrapper strong {
  color: #ffffff;
  font-weight: 600;
}

@media (max-width: 992px) {
  .terms-page .terms-hero-section {
    padding: 4rem 0 3rem;
  }
  
  .privacy-policy-page .privacy-hero-section {
    padding: 4rem 0;
  }
  
  .terms-content-wrapper {
    padding: 0;
  }

.privacy-content-wrapper {
  padding: 0;
}
  
  .terms-page .terms-content-wrapper h2,
  .privacy-policy-page .privacy-content-wrapper h2 {
    font-size: 1.5rem;
  }
  
  .terms-page .terms-content-wrapper h4,
  .privacy-policy-page .privacy-content-wrapper h4 {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .terms-page .terms-hero-section {
    padding: 3rem 0 2.5rem;
  }
  
  .privacy-policy-page .privacy-hero-section {
    padding: 3rem 0;
  }
  
  .terms-content-wrapper {
    padding: 0;
  }
  
  .privacy-content-wrapper {
    padding: 0;
  }
  
  .terms-page .terms-hero-section .text-center,
  .privacy-policy-page .privacy-hero-section .text-center {
    text-align: left !important;
  }
  
  .terms-page .hero-badge,
  .privacy-policy-page .hero-badge {
    display: inline-flex;
    margin-left: 0;
  }
  
  .terms-hero-title,
  .privacy-hero-title {
    font-size: 2.5rem;
    text-align: left;
  }
  
  .terms-hero-subtitle,
  .privacy-hero-subtitle {
    font-size: 1.125rem;
    text-align: left;
  }
  
  .terms-page .terms-content-wrapper h1,
  .privacy-policy-page .privacy-content-wrapper h1 {
    font-size: 2rem;
  }
  
  .terms-page .terms-content-wrapper h2,
  .privacy-policy-page .privacy-content-wrapper h2 {
    font-size: 1.35rem;
    margin-top: 2.5rem;
  }
  
  .terms-page .terms-content-wrapper h4,
  .privacy-policy-page .privacy-content-wrapper h4 {
    font-size: 1.0625rem;
    margin-top: 1.5rem;
  }
  
  .terms-page .terms-content-wrapper p,
  .privacy-policy-page .privacy-content-wrapper p {
    font-size: 1rem;
  }
  
  .terms-page .terms-content-wrapper ul li,
  .privacy-policy-page .privacy-content-wrapper ul li {
    font-size: 1rem;
  }
}

/* Thank You Page */
.thank-you-page {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2d1b4e 100%) !important;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.thank-you-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
  animation: backgroundShift 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes backgroundShift {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1); 
  }
  50% { 
    opacity: 0.8; 
    transform: scale(1.1); 
  }
}

.thank-you-section {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

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

.thank-you-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.thank-you-icon {
  font-size: 5rem;
  color: #10b981;
  line-height: 1;
  position: relative;
  z-index: 2;
  animation: checkMarkAnimation 0.6s ease-out 0.4s both;
}

@keyframes checkMarkAnimation {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-icon-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border: 3px solid rgba(16, 185, 129, 0.3);
  border-radius: 50%;
  animation: ringPulse 2s ease-out infinite;
}

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

.thank-you-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.thank-you-message {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.thank-you-cta {
  animation: fadeInUp 1s ease-out 0.8s both;
}

.thank-you-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.0625rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.thank-you-button::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.5s ease;
}

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

.thank-you-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
  color: #ffffff;
  text-decoration: none;
}

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

@media (max-width: 992px) {
  .thank-you-section {
    padding: 4rem 0;
    min-height: calc(100vh - 150px);
  }
  
  .thank-you-icon {
    font-size: 4rem;
  }
  
  .thank-you-icon-ring {
    width: 100px;
    height: 100px;
  }
  
  .thank-you-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .thank-you-section {
    padding: 3rem 0;
  }
  
  .thank-you-icon {
    font-size: 3.5rem;
  }
  
  .thank-you-icon-ring {
    width: 90px;
    height: 90px;
  }
  
  .thank-you-title {
    font-size: 2.5rem;
  }
  
  .thank-you-message {
    font-size: 1.125rem;
  }
}
