/* ==========================================
   GLOBAL STYLES & RESET
========================================== */
body {
    font-family: Montserrat;
    background-color: #000000;
    background-size: 50px 50px;
    color: #E2E2E2;
}

/* ==========================================
   ANIMATIONS
========================================== */
@keyframes glow {
    0% {
        box-shadow: 5px 5px 20px #D6F951, -5px -5px 20px #D6F951;
    }
    50% {
        box-shadow: 5px 5px 30px #d4f9517a, -5px -5px 30px #d4f9517a;
    }
    100% {
        box-shadow: 5px 5px 20px #D6F951, -5px -5px 20px #D6F951;
    }
}
 
/* ==========================================
   UTILITY CLASSES
========================================== */
.gradient-text {
    background: linear-gradient(90deg, #e0e0e0, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-green-400{
    color: #D6F951!important;
}

.secondary-color { color: #d7fa52; }
.secondary-bg { background-color: #d7fa52; }
.secondary-gradient { background: linear-gradient(135deg, #d7fa52, #2a9d8f); }

/* ==========================================
   TYPOGRAPHY
========================================== */
.heading-style {
    font-family: Montserrat;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
}

.tracking-tighter {
    font-family: Montserrat;
    font-weight: 600;
}

.demo_subtitle {
    text-align: left;
    text-transform: uppercase;
    color: #fff6;
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 8px;
}

/* ==========================================
   ICON STYLES
========================================== */
.problem-icon,
.solution-icon {
    margin-right: 0.75rem;
    font-size: 13px;
    width: 22px;
    height: 22px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    font-weight: 900;
    color: black;
    line-height: 1;
    align-items: center;
}

.problem-icon {
    border: 1px solid #F95151;
    background-color: #F95151;
}

.solution-icon {
    border: 1px solid #D6F951;
    background-color: #D6F951;
}

/* ==========================================
   PRELOADER
========================================== */
@keyframes rotate-loader {
    0% { transform: rotate(0); background-size: 100%; }
    50% { transform: rotate(180deg); background-size: 300%; }
    100% { transform: rotate(360deg); background-size: 100%; }
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.e-spinner {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background: linear-gradient(45deg, rgba(0,1,17,0) 0%, rgba(0,89,109,0) 40%, #D6F951 99%, #D6F951 100%);
    transform-origin: center;
    animation: rotate-loader 1s linear infinite;
    position: relative;
}

.e-spinner:before {
    display: block;
    content: "";
    background: #000000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    border-radius: 37px;
}

/* ==========================================
   GRADIENT BORDER BASE STYLES
========================================== */
.gradient-border-base {
    border-radius: 30px;
    padding: 1px;
    position: relative;
    overflow: hidden;
}

.gradient-border-base::before {
    content: "";
    pointer-events: none;
    background-blend-mode: normal;
    background-image: linear-gradient(43.5deg, #121212 3.6%, #797979d6 97.2%);
    background-origin: border-box;
    border: 1px solid transparent;
    border-radius: 30px;
    position: absolute;
    inset: 0;
    -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
    mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
    -webkit-mask-clip: padding-box, border-box;
    mask-clip: padding-box, border-box;
    -webkit-mask-origin: padding-box, border-box;
    mask-origin: padding-box, border-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.gradient-content-base {
    background: linear-gradient(39deg, rgb(18 18 18) 0%, rgb(22, 22, 22) 69%, rgba(81, 81, 81, 0.572) 100%);
    border-radius: 29px;
    position: relative;
    z-index: 2;
}

/* ==========================================
   CARD COMPONENTS
========================================== */
.hero-card {
    border-radius: 30px;
    padding: 1px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    pointer-events: none;
    background-blend-mode: normal;
    background-image: linear-gradient(43.5deg, #121212 3.6%, #797979d6 97.2%);
    background-origin: border-box;
    border: 1px solid transparent;
    border-radius: 30px;
    position: absolute;
    inset: 0;
    -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
    mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
    -webkit-mask-clip: padding-box, border-box;
    mask-clip: padding-box, border-box;
    -webkit-mask-origin: padding-box, border-box;
    mask-origin: padding-box, border-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.hero-card-content {
    background: linear-gradient(39deg, rgb(18 18 18) 0%, rgb(22, 22, 22) 69%, rgba(81, 81, 81, 0.572) 100%);
    border-radius: 29px;
    padding: 3rem 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.gradient-card {
    border-radius: 30px;
    padding: 1px;
    position: relative;
    overflow: hidden;
}

.gradient-card::before {
    content: "";
    pointer-events: none;
    background-blend-mode: normal;
    background-image: linear-gradient(43.5deg, #121212 3.6%, #797979d6 97.2%);
    background-origin: border-box;
    border: 1px solid transparent;
    border-radius: 30px;
    position: absolute;
    inset: 0;
    -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
    mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
    -webkit-mask-clip: padding-box, border-box;
    mask-clip: padding-box, border-box;
    -webkit-mask-origin: padding-box, border-box;
    mask-origin: padding-box, border-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.gradient-card-content {
    background: linear-gradient(39deg, rgb(18 18 18) 0%, rgb(22, 22, 22) 69%, rgba(81, 81, 81, 0.572) 100%);
    border-radius: 29px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.gradient-card-small {
    border-radius: 30px;
    padding: 1px;
    position: relative;
    overflow: hidden;
}

.gradient-card-small::before {
    content: "";
    pointer-events: none;
    background-blend-mode: normal;
    background-image: linear-gradient(43.5deg, #121212 3.6%, #797979d6 97.2%);
    background-origin: border-box;
    border: 1px solid transparent;
    border-radius: 30px;
    position: absolute;
    inset: 0;
    -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
    mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
    -webkit-mask-clip: padding-box, border-box;
    mask-clip: padding-box, border-box;
    -webkit-mask-origin: padding-box, border-box;
    mask-origin: padding-box, border-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.gradient-card-small-content {
    background: linear-gradient(39deg, rgb(18 18 18) 0%, rgb(22, 22, 22) 69%, rgba(81, 81, 81, 0.572) 100%);
    border-radius: 29px;
    padding: 1.6rem 1.3rem;
    position: relative;
    z-index: 2;
}

.gradient-card-small-content h3 {
    font-size: 14px !important;
    font-weight: 600;
    line-height: 1;
}

/* ==========================================
   COMPONENT SPECIFIC STYLES
========================================== */
/* Demo Toggle */
.demo-toggle-btn {
    color: #9ca3af;
}

.demo-toggle-btn.active {
    background: #c6fa02;
    color: black;
}

.demo-content {
    display: none;
}

.demo-content.active {
    display: block;
}

/* FAQ Accordion */
.faq-item .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.faq-item.open .answer {
    max-height: 500px;
}

.faq-item.open .plus-icon {
    transform: rotate(45deg);
}

.plus-icon {
    transition: transform 0.3s ease-in-out;
}

.faq-item .gradient-card-small-content {
    padding: 5px 18px;
}

.gradient-card-small-content .plus-icon {
    font-size: 32px;
    color: #D6F951;
}

.btn_whatsapp{
    background-color: #c6fa02!important;
    color: #000000;
    border-color: #D6F951!important;
    animation: glow 1s infinite;
    min-width: 300px;
}



/* Problem Slider */
#problem-slider h3,
#problem-slider h3 span {
    line-height: 1 !important;
}

#problem-slider h3 span:nth-child(2){
    text-transform: uppercase;
}

.modal-close{

}

#problem-slider .swiper-slide{
    padding: 0 15px;
}

/* Swiper Pagination Custom Styles */
.swiper-pagination-custom .swiper-pagination-bullet-active {
    background-color: #ffffff !important;
}

.swiper-pagination-bullet {
    --tw-bg-opacity: 1;
    background-color: rgb(82 82 82 / var(--tw-bg-opacity, 1)) !important;
    opacity: 1 !important;
}

/* Feature Cards */
.feature-card-container {
    position: relative;
    overflow: hidden;
}

.feature-card-image {
    position: absolute;
    bottom: -55px;
    right: -62px;
    width: 150px;
    height: auto;
    opacity: 1;
    z-index: 3;
    pointer-events: none;
}

#features .gradient-card-small-content {
    padding-right: 6rem;
}

/* Investors Section */
#investors img {
    width: 62px;
    height: 46px;
    flex: 0 0 46px;
    padding-right: 15px;
}

/* Comparison Section */
#comparison .total {
    color: #D6F951;
    font-weight: 600;
    line-height: 1.3px;
    font-style: italic;
}

#comparison .heading-style{
    text-transform: uppercase;
}

#comparison .heading-style span:nth-child(3){
    color: #D6F951;
    font-size: 12px;
}

.comparison-mobile .comparison-label.text-red-500{
    color: #c54444!important;
}

/* Hero Section */
.hero-card .leading-relaxed {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
}

/* Button Styles */
.rounded-full {
    box-shadow: -4px -4px 23px 0 rgb(113 113 113 / 0%), 0 0.7px 0 0 rgb(210 210 210 / 60%) inset, 0 2px 2px 0 rgb(0 0 0 / 30%) inset, -1px 0 0 0 rgb(0 0 0 / 45%) inset, 1px 0 0 0 rgb(0 0 0 / 45%) inset, 0 -0.7px 0 0 rgb(135 135 135 / 45%) inset, 0 2px 3px 1px rgba(255, 255, 255, 0.20) inset, 0 -4px 8px 0 rgb(0 0 0 / 25%) inset, 0 4px 12px 0 rgb(0 0 0 / 29%);
}

.deadline {
    color: #D6F951;
    box-shadow: -4px -4px 23px 0 rgb(113 113 113 / 0%), 0 0.7px 0 0 rgb(210 210 210 / 60%) inset, 0 2px 2px 0 rgb(0 0 0 / 30%) inset, -1px 0 0 0 rgb(0 0 0 / 45%) inset, 1px 0 0 0 rgb(0 0 0 / 45%) inset, 0 -0.7px 0 0 rgb(135 135 135 / 45%) inset, 0 2px 3px 1px rgba(255, 255, 255, 0.20) inset, 0 -4px 8px 0 rgb(0 0 0 / 25%) inset, 0 4px 12px 0 rgb(0 0 0 / 29%);
}

/* Header Badge Styles */
header .rounded-full {
    box-shadow: none !important;
    position: relative;
    border: none !important;
}

header .rounded-full:before {
    content: "";
    pointer-events: none;
    background-blend-mode: normal;
    background: linear-gradient(51deg, #7d7d7d33 0%,#ffffff60 16%,#adadad68 31%,#afafaf52 75%,#40404085 97%);
    background-origin: border-box;
    border: 1px solid transparent;
    border-radius: 30px;
    position: absolute;
    inset: 0;
    -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
    mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
    -webkit-mask-clip: padding-box, border-box;
    mask-clip: padding-box, border-box;
    -webkit-mask-origin: padding-box, border-box;
    mask-origin: padding-box, border-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* ==========================================
   VIDEO PLAY BUTTON STYLES
========================================== */
.play-button-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 80px;
    height: 80px;
    background: #d7fa52;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.play-button svg {
    color: #333;
    margin-left: 4px;
}

.play-button-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: 2;
}

.play-button-ring-2 {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite 0.5s;
    z-index: 1;
}

.app_video{
    background: none!important;
}

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

/* ==========================================
   ANIMATIONS & TRANSITIONS
========================================== */
[data-animate-text] {
    opacity: 0;
}

.line-wrapper {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.line-inner {
    display: inline-block;
}

.investor-chart-bar {
    transition: height 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    height: 0;
}

.hero-card h1{
    font-style: italic;
    font-weight: 800;
    font-size: 22px;
}

/* ==========================================
   CAR IMAGE STYLES
========================================== */
.car_img {
    position: absolute;
    top: 132px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    width: auto!important;
}


#how-it-works .step{
    font-style: italic;
    font-weight: 800;
    font-size: 34px !important;
    color: rgb(204, 255, 0);
}

/* ==========================================
   PHONE FRAME FOR MOBILE APP DEMO
========================================== */
.phone-frame {
    --device-border-width: 0.2rem;
    --device-button-width: 0.3rem;
    position: relative;
    width: min(30.8rem, calc(100vw - 100px), calc(100vh - 200px) * 0.48);
    height: auto;
    aspect-ratio: 308 / 640;
    margin: 0 auto;
}

/* Desktop: smaller iPhone */
@media (min-width: 768px) {
    .phone-frame {
        width: min(20rem, calc(100% - 40px));
        max-width: 20rem;
    }
}

.device {
    position: absolute;
    inset: 0;
    border-radius: 3.2rem;
    z-index: 3;
    pointer-events: none;
    box-shadow: 0 0 0 var(--device-border-width) #000 inset;
}

.device:before,
.device:after {
    content: '';
    position: absolute;
    display: block;
    border-radius: 3.1rem;
    border: 0 solid;
    pointer-events: none;
}

.device:before {
    inset: .1rem .3rem .1rem 0;
    border-top: .2rem solid rgba(255, 255, 255, .8);
    border-bottom: .2rem solid rgba(255, 255, 255, .6);
    z-index: 2;
}

.device:after {
    inset: 0 0 0 .1rem;
    border-top: .3rem solid #000;
    border-bottom: .3rem solid #000;
    z-index: 3;
}

.device__island {
    position: absolute;
    top: 1.4rem;
    left: 50%;
    transform: translate(-50%, 0);
    border: 2px solid #232323;
    width: 7.8rem;
    height: 2.2rem;
    border-radius: 2rem;
    background: #000;
    z-index: 20;
}

.device__island:before,
.device__island:after {
    content: '';
    display: block;
    position: absolute;
    border-radius: 100%;
    opacity: .66;
}

.device__island:before {
    height: 1.4rem;
    width: 1.4rem;
    top: .4rem;
    right: .4rem;
    background: #2f3132;
    z-index: 2;
}

.device__island:after {
    height: .8rem;
    width: .8rem;
    top: .7rem;
    right: .7rem;
    background: radial-gradient(circle at 30% 30%, #134296, #2f3132 100%);
    z-index: 3;
}

.device__home {
    background: #fff;
    width: 10rem;
    height: max(4px, .4rem);
    border-radius: max(4px, .4rem);
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 20;
}

.device__controls {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.device__controls button {
    position: absolute;
    border: 0;
    background: #000;
    padding: 0;
    width: calc(var(--device-button-width) + 1px);
    pointer-events: none;
}

.device__controls__mute {
    top: 12.5%;
    left: calc(var(--device-button-width) * -1 + 1px);
    height: 3.75%;
}

.device__controls__power {
    top: 21%;
    right: calc(var(--device-button-width) * -1 + 1px);
    height: 10.5%;
}

.device__controls__volume {
    position: absolute;
    top: 21%;
    left: calc(var(--device-button-width) * -1 + 1px);
    height: 16.1%;
}

.device__controls__volume__up {
    top: 0;
    left: 0;
    height: 4.5rem;
}

.device__controls__volume__down {
    bottom: 0;
    left: 0;
    height: 4.5rem;
}

.phone-screen {
    overflow: hidden;
    position: absolute;
    inset: .2rem;
    z-index: 2;
    border-radius: 3.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #000;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================
   HAMBURGER MENU ANIMATION
========================================== */
.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hamRotate.active {
    transform: rotate(45deg);
}

.hamRotate180.active {
    transform: rotate(180deg);
}

.line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #D6F951;
    stroke-width: 5.5;
    stroke-linecap: round;
}

.ham4 .top {
    stroke-dasharray: 40 121;
}

.ham4 .bottom {
    stroke-dasharray: 40 121;
}

.ham4.active .top {
    stroke-dashoffset: -68px;
}

.ham4.active .bottom {
    stroke-dashoffset: -68px;
}

/* ==========================================
   MOBILE MENU ANIMATION
========================================== */
.mobile-menu-hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.mobile-menu-visible {
    max-height: 300px;
    opacity: 1;
    transition: max-height 0.3s ease-in, opacity 0.3s ease-in;
}

/* ==========================================
   MOBILE LANGUAGE DROPDOWN
========================================== */
.lang-dropdown {
    position: relative;
}

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    backdrop-filter: blur(8px);
    border-radius: 8px;
    color: #E2E2E2;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.lang-dropdown-btn:hover {
    border-color: rgba(214, 249, 81, 0.4);
    background: rgba(26, 26, 26, 0.8);
    box-shadow: 0 0 12px rgba(214, 249, 81, 0.15);
}

.lang-dropdown-btn.active {
    border-color: #D6F951;
    background: rgba(26, 26, 26, 0.9);
}

.lang-arrow {
    color: #D6F951;
    transition: transform 0.3s ease;
    margin-left: auto;
}

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

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid rgba(214, 249, 81, 0.2);
    border-radius: 12px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 20px rgba(214, 249, 81, 0.1);
}

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

.lang-dropdown-item {
    display: block;
    padding: 10px 14px;
    color: #E2E2E2;
    font-size: 13px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.lang-dropdown-item:hover {
    background: rgba(214, 249, 81, 0.1);
    color: #D6F951;
    transform: translateX(4px);
}

.lang-dropdown-item.active {
    background: rgba(214, 249, 81, 0.15);
    color: #D6F951;
}

#demo-site h3{
    font-size: 20px;
}

/* Hide CRM section on mobile inside demo-site */
@media (max-width: 767px) {
    #demo-site .md\:w-\[70\%\] {
        display: none;
    }
    
    #demo-site .md\:w-\[30\%\] {
        width: 100%;
    }
}

/* ==========================================
   LAYOUT HELPERS
========================================== */
section.border-neutral-800 {
    border: none;
}

.horizontal-scroll-section {
    overflow: hidden;
    position: relative;
}

.horizontal-scroll-track {
    display: flex;
    will-change: transform;
}

.problem-solution-card {
    flex: 0 0 100vw;
    height: 100vh;
    padding: 1.5rem;
}

/* ==========================================
   RESPONSIVE DESIGN
========================================== */
/* Mobile Comparison Styles */
@media (max-width: 767px) {
    .comparison-mobile h3 {
        text-align: center;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 14px;
    }
    
    .comparison-mobile .comparison-label {
        font-weight: 400;
        font-size: 14px;
        color: #D6F951;
    }
    
    .comparison-mobile .comparison-text {
        font-weight: 500;
        font-size: 13px;
    }
    .comparison-mobile .text-gray-500{
        font-size: 13px;
    }
}

/* Problem Solution Card Mobile */
@media (min-width: 768px) {
    .problem-solution-card {
        padding: 5vw;
    }
}

/* Mobile Typography Adjustments */
@media (max-width: 767px) {
    h1 { font-size: 1.8rem !important; line-height: 1.1 !important; }
    h3 { font-size: 1.2rem !important; line-height: 1.3 !important; }
    p { font-size: 0.8rem !important; line-height: 1.4 !important; }
    .text-lg { font-size: 0.9rem !important; }
    .text-xl { font-size: 1rem !important; }
    .text-2xl { font-size: 1.1rem !important; }
    .text-3xl { font-size: 1.2rem !important; }
    .text-4xl { font-size: 1.4rem !important; }
    .text-5xl { font-size: 1.6rem !important; }
    .text-6xl { font-size: 1.8rem !important; }
    .text-7xl { font-size: 2rem !important; }
    button, a { font-size: 0.8rem !important; }
    li { font-size: 0.75rem !important; }

    /* Feature cards mobile adjustments */
    .feature-card-image {
        width: 200px;
    }

    /* Comparison table mobile adjustments */
    #comparison table th { font-size: 0.8rem !important; padding: 0.75rem !important; }
    #comparison table td { font-size: 0.75rem !important; padding: 0.75rem !important; }
    #comparison .md\\:hidden h3 { font-size: 0.9rem !important; }
    #comparison .md\\:hidden .text-sm { font-size: 0.7rem !important; }
    #comparison .md\\:hidden .text-xs { font-size: 0.65rem !important; }
}

/* ==========================================
   MODAL STYLES
========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 1rem;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid #323232;
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 0 50px rgba(214, 249, 81, 0.1);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: transparent;
    border: none;
    color: #888;
    font-size: 2rem!important;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #D6F951;
    transform: rotate(90deg);
}

.modal-overlay.hidden {
    display: none;
}

/* Modal mobile adjustments */
@media (max-width: 640px) {
    .modal-content {
        padding: 1.5rem;
        max-width: 90%;
    }
    
    .modal-content h3 {
        font-size: 1.5rem;
    }
    
    .modal-content p {
        font-size: 0.9rem;
    }
}