 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
 }

 html,
 body {
     overflow-x: hidden;
     width: 100%;
     max-width: 100vw;
 }

 body {
     font-family: 'Plus Jakarta Sans', sans-serif;
     position: relative;
 }

 * {
     max-width: 100%;
 }

 img,
 video,
 svg {
     max-width: 100%;
     height: auto;
 }

 .max-w-container {
     max-width: min(1200px, 100vw);
 }

 /* Fallback color classes for custom palette */
 .bg-navy {
     background-color: #0D121F !important;
 }

 .bg-navy-card {
     background-color: #14171F !important;
 }

 .bg-primary {
     background-color: #7C5CFC;
 }

 .text-primary {
     color: #7C5CFC;
 }

 .bg-primary\/10 {
     background-color: rgba(124, 92, 252, 0.1);
 }

 .bg-primary\/20 {
     background-color: rgba(124, 92, 252, 0.2);
 }

 .bg-primary\/30 {
     background-color: rgba(124, 92, 252, 0.3);
 }

 .bg-primary\/40 {
     background-color: rgba(124, 92, 252, 0.4);
 }

 .bg-primary\/50 {
     background-color: rgba(124, 92, 252, 0.5);
 }

 .text-green-accent {
     color: #9CD323;
 }

 .bg-green-accent {
     background-color: #9CD323;
 }

 .text-text-light {
     color: #90A3BF;
 }

 .text-text-gray {
     color: #596780;
 }

 .bg-light-bg {
     background-color: #F3F5F7;
 }

 .text-dark-secondary {
     color: #1A202C;
 }

 .bg-dark-secondary {
     background-color: #1A202C;
 }

 .border-primary {
     border-color: #7C5CFC;
 }

 /* Hero decorative circles */
 .hero-circle-tl {
     position: absolute;
     top: -200px;
     left: -200px;
     width: 900px;
     height: 900px;
     border-radius: 50%;
     opacity: 0.04;
     background: radial-gradient(circle, white 0%, transparent 70%);
 }

 .hero-circle-br {
     position: absolute;
     bottom: -200px;
     right: -200px;
     width: 900px;
     height: 900px;
     border-radius: 50%;
     opacity: 0.04;
     background: radial-gradient(circle, white 0%, transparent 70%);
 }

 .hero-ring-tr {
     position: absolute;
     top: -200px;
     right: -200px;
     width: 800px;
     height: 800px;
     border-radius: 50%;
     border: 50px solid rgba(255, 255, 255, 0.05);
 }

 .hero-ring-bl {
     position: absolute;
     bottom: -200px;
     left: -200px;
     width: 800px;
     height: 800px;
     border-radius: 50%;
     border: 50px solid rgba(255, 255, 255, 0.05);
 }

 /* Swiper */
 .testimonial-swiper .swiper-slide {
     height: auto;
 }

 .swiper-button-prev-custom,
 .swiper-button-next-custom {
     width: 48px;
     height: 48px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s;
 }

 .swiper-button-prev-custom {
     background: #1A202C;
 }

 .swiper-button-next-custom {
     background: #165DFE;
 }

 .swiper-button-prev-custom:hover {
     background: #2a3040;
 }

 .swiper-button-next-custom:hover {
     background: #0F4FE0;
 }

 /* Pricing toggle */
 .toggle-switch {
     position: relative;
     width: 52px;
     height: 28px;
     cursor: pointer;
 }

 .toggle-switch input {
     display: none;
 }

 .toggle-slider {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: #7C5CFC;
     border-radius: 14px;
     transition: 0.3s;
 }

 .toggle-slider::before {
     content: '';
     position: absolute;
     width: 22px;
     height: 22px;
     left: 3px;
     bottom: 3px;
     background: white;
     border-radius: 50%;
     transition: 0.3s;
 }

 .toggle-switch input:checked+.toggle-slider::before {
     transform: translateX(24px);
 }

 /* Mobile menu */
 .mobile-menu {
     transform: translateX(100%);
     transition: transform 0.3s ease;
 }

 .mobile-menu.active {
     transform: translateX(0);
 }

 /* Shadows */
 .mockup-shadow {
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
 }

 .card-shadow {
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
 }

 /* Step numbers */
 .step-number {
     width: 56px;
     height: 56px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     font-weight: 700;
     color: white;
     z-index: 2;
 }

 /* Pricing */
 .pricing-card {
     transition: transform 0.3s, box-shadow 0.3s;
 }

 .pricing-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
 }

 /* Scrollbar hide */
 .hide-scrollbar::-webkit-scrollbar {
     display: none;
 }

 .hide-scrollbar {
     -ms-overflow-style: none;
     scrollbar-width: none;
 }

 /* Process flow */
 .process-step {
     position: relative;
 }

 .process-step:not(:last-child)::after {
     content: '';
     position: absolute;
     top: 28px;
     left: 100%;
     width: 100%;
     border-top: 2px dashed rgba(255, 255, 255, 0.15);
     transform: translateX(-50%);
     z-index: 0;
 }

 @media (max-width: 767px) {
     .process-step:not(:last-child)::after {
         display: none;
     }
 }