html, body {
    /* Ensures the background covers the full browser height even if content is short */
    min-height: 100%;
    margin: 0;
}
body {
    min-height: 100vh;
}
.section-gradient {
    background: #080808;
    background: linear-gradient(180deg,rgba(8, 8, 8, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.home--layer-one {
    background: url("template/original/gfx/2026/home/home_background_1.png") no-repeat center center;
    background-size: contain;
}
.home--layer-two {
    background: url("template/original/gfx/2026/home/home_background_2.png") no-repeat center top;
    background-size: 100%;

}
.home--layer-three {
    background: url("../gfx/2026/home/home_background_1.png") no-repeat center center;
    background-size: cover;
}
.home--layer-four {
    background: url("../gfx/2026/home/home_background_3.png") no-repeat center center;
    background-size: cover;
}
.home--layer-five {
    background: url("../gfx/2026/home/partners_background.png") no-repeat center center;
    background-size: cover;
}
.home--layer-six {
    background: url("../gfx/2026/home/carrer_main_background.png") no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.home--layer-six-addon {
    z-index: 0;
    position: absolute;
    left: 200px;
    top:-50px;
    width: 70%;

    background-size: 100%;
}
.slide-content.grey {
    background: url("../gfx/2026/home/template_background_grey.png") no-repeat center top;
    background-size: 65%;
}
.slide-content.orange {
    background: url("../gfx/2026/home/template_background_orange.png") no-repeat center top;
    background-size: 65%;
}
.slide-content.green {
    background: url("../gfx/2026/home/template_background_green.png") no-repeat center top;
    background-size: 65%;
}
.default-grid {
    padding-top:200px;
    padding-bottom:50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    align-items: center;
    gap: 80px;
    padding-left: 100px;
    z-index: 30;
    position: relative;
}
.default-grid.no-space {
    padding-top:0px;
    padding-bottom:50px;
    padding-left:0;
}
.default-grid.no-gap {
    gap: 0;
}
.default-margins {
    padding-top:100px;
    padding-bottom:100px;

}
.default-margins.skins {
    padding-top:100px;
    padding-bottom:50px;

}
.default-margins-2 {
    padding-top:100px;
    margin-bottom:0px;
}
.default-grid--left {
    text-align: left;
}
.default-grid--left p {
    margin-top:20px;
}
/* Main container for all buttons */
.buttons-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.button-type-1 {
    color: #F97316; /* text-orange-500 */
    font-weight: 600; /* font-semibold */
    font-size:16px; /* text-lg */
    margin-bottom: 2.5rem; /* mb-10 */
    text-decoration: none;
    transition: color 0.3s; /* transition-colors duration-300 */
    box-sizing: border-box;
    display: inline-block;
}
.button-type-1:hover {
    color: #FB923C; /* hover:text-orange-400 */
}
.button-type-1 i {font-size: 14px}
.main-buttons {
    display: flex;
    flex-direction: column; /* Default: flex-col */
    gap: 1.5rem; /* gap-6 */
    margin-top:40px;
}

.button-type-2 {
    /* Base styles */
    font-weight: 700;
    font-size:16px;
    padding: 1rem 2.5rem;
    border-radius: 0.12rem;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
    width: fit-content;
    /* Gradient styles */
    background-image: linear-gradient(to right, #FFAF3F, #E64600);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    /* Add transparent border to match size of outline button */
    border: none;

}
.button-type-2:hover {
    transform: scale(1.05);
    background-image: linear-gradient(to right, #E64600, #E64600);
    color:white;
}

.button-type-3 {
    /* Base styles */
    font-weight: 700;
    width: fit-content;
    font-size:16px;
    padding: 1rem 2.5rem;
    border-radius: 0.12rem;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;

    /* Outline styles */
    border: 2px solid #F97316;
    color: white;
    background-color: transparent;
}
.button-type-3:hover {
    transform: scale(1.05);
    background-color: #E64600 ;
    color: white;
}

/* Responsive styles for main buttons */
@media (min-width: 640px) { /* sm: */
    .main-buttons {
        flex-direction: row; /* sm:flex-row */
    }
}
/* Carousel Container */
.carousel-container {
    width: 100%;
    position: relative;
}

/* Carousel Viewport */
.carousel-viewport {
    overflow: hidden;

}

/* Carousel Track */
.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Carousel Slide */
.carousel-slide {
    width: 100%;
    flex-shrink: 0;
    padding: 2rem 1.5rem; /* p-8 md:p-16 */
}

.slide-content {
    display: flex;
    flex-direction: column-reverse; /* Changed from column */
    align-items: center;
    gap: 2rem; /* gap-8 */
}

.slide-image-col,
.slide-text-col {
    width: 100%;
}

.slide-image-col img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem; /* rounded-lg */
    object-fit: cover;
}

.slide-text-col {
    text-align: center;
}

.slide-text-col h2 {
    font-size:70px; /* text-3xl */
    line-height:78px;
    font-weight: 800;
    margin-bottom: 1rem; /* mb-4 */
    color: #f9fafb; /* Set to white for all slides */
}

.slide-text-col p {

    color: white;
    font-size: 14px;
}

.slide-text-col .learn-more-btn {
    display: inline-block;
    font-weight: 500;
    /* Removed padding, border, and border-radius */
    text-decoration: none;
    transition: color 0.3s;
}

/* Slide-specific Colors */
/* #slide-1 .slide-text-col h2 { color: #f9fafb; }  -- This is now handled by the general .slide-text-col h2 rule */
#slide-1 .slide-text-col .learn-more-btn { color: #d1d5db; /* border-color removed */ } /* text-gray-300 */
#slide-1 .slide-text-col .learn-more-btn:hover { color: #f9fafb; text-decoration: underline; } /* hover:bg-gray-800 */

/* #slide-2 .slide-text-col h2 { color: #22c55e; } -- Removed to use white title */
#slide-2 .slide-text-col .learn-more-btn { color: #22c55e; /* border-color removed */ } /* text-green-500 */
#slide-2 .slide-text-col .learn-more-btn:hover { color: #34d399; text-decoration: underline; } /* hover:bg-green-900/50 */

/* #slide-3 .slide-text-col h2 { color: #f97316; } -- Removed to use white title */
#slide-3 .slide-text-col .learn-more-btn { color: #f97316; /* border-color removed */ } /* text-orange-500 */
#slide-3 .slide-text-col .learn-more-btn:hover { color: #fb923c; text-decoration: underline; } /* hover:bg-orange-900/50 */


/* Navigation Buttons */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(31, 41, 55, 0.5); /* bg-gray-800/50 */
    border: none;
    padding: 0.5rem; /* p-2 */
    border-radius: 9999px; /* rounded-full */
    z-index: 10;
    cursor: pointer;
    transition: background-color 0.3s;
    color: white;
}

.carousel-button:hover {
    background-color: rgba(55, 65, 81, 0.7); /* hover:bg-gray-700/70 */
}

.carousel-button:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

.carousel-button.prev {
    left: 0.5rem;
}

.carousel-button.next {
    right: 0.5rem;
}

.carousel-button svg {
    width: 1.5rem; /* h-6 w-6 */
    height: 1.5rem;
}

/* Navigation Dots */
.carousel-nav-dots {
    position: absolute;
    bottom: 0; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem; /* space-x-3 */
    z-index: 10;
}

.carousel-dot {
    width: 14px; /* w-3 */
    height: 14px; /* h-3 */
    border-radius: 9999px; /* rounded-full */
    background-color: #4b5563; /* bg-gray-700 */
    cursor: pointer;
    transition: background-color 0.3s;
    border: none;
}

.carousel-dot.active {
    background-color: #d1d5db; /* bg-gray-300 */
}
.inline-legend {
    color: var(--color-text-muted);
    font-size: 1rem;
    display: none;
    transition: all 0.5s ease-in-out;
    opacity: 0;
}
.swiper-slide-active .inline-legend {
    display: inline-block;
    opacity: 1;
}
.card-features .value {
    transition: all 0.5s ease-in-out;
}

/* Responsive Layout */
@media (min-width: 768px) {
    .carousel-slide {
        padding: 4rem; /* md:p-16 */
    }

    .slide-content {
        flex-direction: row;
    }

    .slide-image-col,
    .slide-text-col {
        width: 50%;
    }
    .support-career-avatar {
        padding-top:80px;
        padding-bottom:80px;
    }
    .slide-text-col {
        text-align: left;
    }

    .carousel-button.prev {
        left: -1rem; /* md:-left-4 */
    }

    .carousel-button.next {
        right: -1rem; /* md:-right-4 */
    }
}
.enroll-wrap {
    text-align: left;
    max-width: 500px;
    margin-left: 100px;
    margin-top:100px;
    display: flex;
    flex-direction: column;
    gap:10px;
}
.enroll-wrap .button-type-1 {
    margin-bottom: 0;
}
.enroll-avatar {
    max-width: 800px;
    position: absolute;
    right: 0;
    bottom:0;
}
.enroll-container {
    min-height: 600px;
    position: relative;
}
.enroll-height {
    min-height: 600px;
    position: relative;
}
@media (max-width: 968px) {
    .home--layer-six-addon {
        left: -250px;
        width: 200%;
        top: -100px;
    }
    .home--layer-one {
        background-size: cover;
    }
    .home--layer-one {
        background-position: top center !important;
    }
    .mobile-margins {
        padding-bottom:0px;
    }
    .mobile-order-2 {
        order: 2;
    }
    .enroll-wrap {
        text-align: left;
        max-width: initial;
        margin-left: 0px;
        margin-top:50px;

    }
    .enroll-container {
        min-height: 780px;
        padding-left:0px;
        padding-right: 0px;
    }
    .enroll-height {
        min-height: 780px;

    }
    .button-type-3, .button-type-2 {
        width: 100%;
    }
    .default-grid {
        padding-right: 10px;
        padding-left:10px;
        grid-template-columns:1fr;
    }

    .titles-paragraphs {
        padding-left:10px;
        padding-right:10px;
    }
}
/* CSS Color Variables from the image */
:root {
    --color-green: #01AA03;
    --color-blue: #448CFE;
    --color-purple: #8338ec;
    --color-red: #e63946;
    --color-orange: #f77f00;
    --color-bg-dark: #1a1a1a;
    --color-card-dark: #2a2a2a;
    --color-border-dark: #3a3a3a;
    --color-text-light: #f0f0f0;
    --color-text-muted: #aaa;
}


/* New main wrapper for Legend + Cards */
.comparison-grid-wrapper {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    max-width: 1500px; /* Increased max-width */
    margin: 0 auto;
    align-items: flex-start;
    margin-top:100px;
}
.comparison-grid-wrapper ul {
    padding-left: 0;
}

/* New Legend Column */
.grid-legend {
    flex: 0 0 180px; /* Fixed width: Don't grow, don't shrink, base 180px */
    top: 2rem;
}

/* Spacer to align with card headers */
.legend-header-spacer {
    min-height: 300px; /* Matches .card-header min-height */
    /* No border here */
}
.owl-theme .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
}
.legend-list {
    list-style: none;
    overflow: hidden;
}

.legend-list li {
    display: flex;
    align-items: center;
    justify-content: right;
    padding: 1.25rem 1rem;
    min-height: 80px; /* MUST match .card-features li min-height */
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.3;
}

.legend-list li:last-child {
    border-bottom: none;
}

/* Main Card Grid Container */
.card-container {
    flex: 1; /* Card grid takes up the remaining space */
    display: grid;
    /* Show 5 columns on desktop */
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    width: 100%;
}

/* Individual Card Styling */
.card {
    background-color: transparent;
    border-radius: 4px;
    overflow: hidden; /* To keep border-radius */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    border: 2px solid transparent; /* Default transparent border */
}

/* Card Header (Image, Title, Subtitle) */
.card-header {
    text-align: center;
    padding: 1.5rem;
    min-height: 300px; /* Fixed height to align with legend spacer */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative; /* Crucial for the overlay */
    overflow: hidden; /* Hide content that spills */

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* New wrapper for original header content */
.card-header-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Position text at the bottom */
    align-items: center;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding-bottom: 0.5rem; /* Space from bottom */
    z-index: 2; /* Ensure text is above gradient */
    position: relative; /* Needed for z-index */
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-light); /* Make all titles white */
}

.card-header .subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* New Overlay Styles */
.card-header-overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;

    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.overlay-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.overlay-button {
    background-color: var(--color-green); /* Default color, will be overridden */
    color: var(--color-text-light);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    margin-top: 1.25rem;
    text-decoration: none;
}

.overlay-button:hover {
    transform: scale(1.05);
    color:white;
}

.card:hover .card-header-content {
    opacity: 0;
    visibility: hidden;
}

.card:hover .card-header-overlay {
    opacity: 1;
    visibility: visible;
}

/* Feature List Styling */
.card-features {
    list-style: none;
    width: 100%;
}

.card-features li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.25rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    min-height: 80px; /* Ensures all rows are the same height */
}

.card-features li:last-child {
    border-bottom: none;
}

.card-features .value {
    font-size: 1.1rem;
    color: var(--color-text-light);
    font-weight: 500;
    line-height: 1.3;

}
.card-green {
    background: #042102;
    background: linear-gradient(0deg,rgba(4, 33, 2, 1) 0%, rgba(0, 0, 0, 0) 100%);
}
.card-green:hover {
    border-color:  #01AA03 !important;
}
.card-blue {
    background: #00152D;
    background: linear-gradient(0deg,rgba(0, 21, 45, 1) 0%, rgba(0, 0, 0, 0) 100%);
}
.card-blue:hover {border-color: #448CFE !important;}
.card-purple {
    background: #160029;
    background: linear-gradient(0deg,rgba(22, 0, 41, 1) 0%, rgba(0, 0, 0, 0) 100%);
}
.card-purple:hover {border-color: #AE44FE !important;}
.card-red {
    background: #2A0001;
    background: linear-gradient(0deg,rgba(42, 0, 1, 1) 0%, rgba(0, 0, 0, 0) 100%);
}
.card-red:hover {border-color: #FE5444 !important;}
.card-orange {
    background: #37220D;
    background: linear-gradient(0deg,rgba(55, 34, 13, 1) 0%, rgba(0, 0, 0, 0) 100%);
}
.card-orange:hover {border-color: #FE9844 !important;}
    /* Special Value Styles */
.card-features .value.checkmark {
    color: var(--color-green);
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.card-features .value .main {
    display: block;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.card-features .value .sub {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* --- Card Color Variations --- */
/* Updated to use background-image and add gradients */
.card-green { border-color: var(--color-green); }
.card-green .card-header { border-bottom:2px solid var(--color-green); }
.card-green .card-header {
    background-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 80%),
    url('../gfx/2026/avatar_agent_affiliate.png');
}
.card-blue { border-color: var(--color-blue); }
.card-blue .card-header { border-bottom:2px solid var(--color-blue); }
.card-blue .card-header {
    background-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 80%),
    url('../gfx/2026/avatar_whitelabel.png');
}
.card-purple { border-color: var(--color-purple); }
.card-purple .card-header { border-bottom:2px solid var(--color-purple); }
.card-purple .card-header {
    background-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 80%),
    url('../gfx/2026/avatar_turnkey.png');
}
.card-red { border-color: var(--color-red); }
.card-red .card-header { border-bottom: 2px solid var(--color-red); }
.card-red .card-header {
    background-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 80%),
    url('../gfx/2026/avatar_api.png');
}
.card-orange { border-color: var(--color-orange); }
.card-orange .card-header { border-bottom:2px solid var(--color-orange); }
.card-orange .card-header {
    background-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 80%),
    url('../gfx/2026/avatar_platform.png');
}

/* Button Color Variations on Hover */
.card-green:hover .overlay-button, .card-green .overlay-button {
    background-color: var(--color-green);
}
.card-blue:hover .overlay-button, .card-blue .overlay-button {
    background-color: var(--color-blue);
}
.card-purple:hover .overlay-button, .card-purple .overlay-button {
    background-color: var(--color-purple);
}
.card-red:hover .overlay-button, .card-red .overlay-button {
    background-color: var(--color-red);
}
.card-orange:hover .overlay-button, .card-orange .overlay-button {
    background-color: var(--color-orange);
}

/* --- End Card Color Variations --- */


/* --- Responsive Design (Media Queries) --- */

/* Mobile & Tablet - Horizontal Scroll Layout */

@media (max-width: 1200px) {

    .comparison-grid-wrapper {
        gap: 1rem; /* Smaller gap */
    }

    .grid-legend {
        flex: 0 0 140px; /* Make legend a bit narrower */
        top: 1rem; /* Stick to the top (matching body padding) */
        bottom: unset; /* Do not stick to bottom */
    }

    /* Restore fixed heights for alignment */
    .legend-header-spacer,
    .card-header {
        min-height: 300px; /* Restore fixed height */
        padding: 1.5rem 1rem; /* Adjust padding */
    }
    .legend-list li,
    .card-features li {
        min-height: 80px; /* Restore fixed height */
        padding: 1rem; /* Adjust padding */
    }

    .card-container {
        /* Change from grid to flex for horizontal scroll */
        display: flex;
        overflow-x: auto; /* Enable horizontal scroll */
        flex: 1; /* Take remaining space */
        gap: 0.5rem; /* Gap between cards */

        /* Add padding so shadow isn't cut off */
        padding-bottom: 1rem;
    }

    .card {
        /* Give cards a fixed width to force scrolling */
        flex: 0 0 200px; /* Don't grow, don't shrink, base 300px */
        width: 200px;
    }

    /* --- Custom Scrollbar Styling --- */
    /* This targets the scrollbar in the .card-container */
    .card-container::-webkit-scrollbar {
        height: 12px; /* Height of the horizontal scrollbar */
    }

    .card-container::-webkit-scrollbar-track {
        background: var(--color-border-dark); /* Color of the track */
        border-radius: 10px;
    }

    .card-container::-webkit-scrollbar-thumb {
        background-color: var(--color-text-muted); /* Color of the handle */
        border-radius: 10px;
        border: 3px solid var(--color-border-dark); /* Creates padding around thumb */
    }

    .card-container::-webkit-scrollbar-thumb:hover {
        background-color: var(--color-text-light); /* Handle color on hover */
    }
}
.partners-logos {margin-top:100px;}

.our-products--single {
    margin-top:160px;
}
.product-grid {
    padding-top:0px;
    padding-bottom:50px;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0px;
    max-width: 1250px;
    margin:0 auto;
    z-index: 30;
    position: relative;
}
.product-grid .left {
    text-align: left;
}

.product-grid .right {
    text-align: center;
}
.our-products--single h1 {
    font-size: 62px;
    line-height: 64px;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #f9fafb;
    z-index: 10;
    padding-bottom:1rem
}

.our-products--single h1:before {
    content: "";
    display: inline-block;
    width: 1.3em;  /* Scales with font-size */
    height: 1.3em; /* Scales with font-size */
    margin-right: -0.6em;
    top:10px;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    z-index: -10;
}
.our-products--single.compare h2:before {
    width:0;
    height:0;
    margin-right: 0;
}
.our-products--single.compare h2 {
    font-weight: 700;
}
.our-products--single h1.poker-network {
    background: linear-gradient(
            to right,
            #f8d7bf 0%,
            #fdfdfd 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

}
h2.jobs {
    font-size: 66px;
    line-height: 66px;
    font-weight: 800;
    padding-bottom: 0.5rem;
    background: linear-gradient(to right, #D8B4FE, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
    -webkit-font-smoothing: antialiased;
}
h2.support {
    font-size: 66px;
    line-height: 66px;
    font-weight: 800;
    padding-bottom: 0.5rem;
    background: linear-gradient(to right, #b0c4de, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
    -webkit-font-smoothing: antialiased;
}
.our-products--single h1.online-sportbook {
    background: linear-gradient(
            to right,
            #c2e1ff 0%,
            #ffffff 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.our-products--single h1.online-casino {
    background: linear-gradient(
            to right,
            #f2d5d5 0%,
            #ffffff 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.our-products--single h1.payments {
    background: linear-gradient(
            to right,
            #e1f0e5 0%,   /* Soft mint green on the left */
            #ffffff 100%  /* Pure white on the right */
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.our-products--single h1.cross-selling {
    background: linear-gradient(
            to right,
            #e8ddff 0%,
            #ffffff 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.our-products--single h1.gaming-licence {
    background: linear-gradient(
            to right,
            #e1e6ff 0%,
            #ffffff 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.our-products--single h1.anti-fraud {
    background: linear-gradient(
            to right,
            #e8f5e9 0%,
            #ffffff 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.our-products--single h1.ecology {
    background: linear-gradient(
            to right,
            #f8e0b0 0%,
            #ffffff 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.our-products--single h2.agent-affiliate {
    background: linear-gradient(
            to left,
            #bcffb2 0%,   /* Very light mint/white at the top */
            #ffffff 100%  /* Soft lime green at the bottom */
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.our-products--single h2.whitelabel {
    background: linear-gradient(
            to left,
            #d1e5ff 0%,   /* Soft Sky Blue */
            #ffffff 100%  /* Pure White */
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.our-products--single h2.turnkey {
    background: linear-gradient(
            to left,
            #C9A9FF 0%,   /* Soft Sky Blue */
            #ffffff 100%  /* Pure White */
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.our-products--single h2.api {
    background: linear-gradient(
            to left,
            #FF1F17 0%,   /* Soft Sky Blue */
            #ffffff 100%  /* Pure White */
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.our-products--single h2.platform {
    background: linear-gradient(
            to left,
            #FF9900 0%,   /* Soft Sky Blue */
            #ffffff 100%  /* Pure White */
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.our-products-section h2.title-pnetwork {
    background: linear-gradient(
            to right,
            #FFA876 0%,   /* Soft Sky Blue */
            #ffffff 100%  /* Pure White */
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.our-products-section h2.title-sportbook {
    background: linear-gradient(
            to right,
            #aec1ff 0%,   /* Soft Sky Blue */
            #ffffff 100%  /* Pure White */
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.our-products-section h2.title-casino {
    background: linear-gradient(
            to right,
            #ffa5a7 0%,   /* Soft Sky Blue */
            #ffffff 100%  /* Pure White */
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.our-products-section h2.title-payments {
    background: linear-gradient(
            to right,
            #E6FFA8 0%,   /* Soft Sky Blue */
            #ffffff 100%  /* Pure White */
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.our-products-section h2.title-cross-selling {
    background: linear-gradient(
            to right,
            #C9A8FF 0%,   /* Soft Sky Blue */
            #ffffff 100%  /* Pure White */
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.our-products-section h2.title-licence {
    background: linear-gradient(
            to right,
            #96dfff 0%,   /* Soft Sky Blue */
            #ffffff 100%  /* Pure White */
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.our-products-section h2.title-fraud {
    background: linear-gradient(
            to right,
            #a4ffaa 0%,   /* Soft Sky Blue */
            #ffffff 100%  /* Pure White */
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.our-products-section h2.title-ecology {
    background: linear-gradient(
            to right,
            #FFDA6B 0%,   /* Soft Sky Blue */
            #ffffff 100%  /* Pure White */
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.our-products--single-content {
    margin-top:40px;
}
.our-products--single-content h2 {
    font-size: 32px !important;
    line-height: 32px !important;
}
.our-products--single-content a {
    color: var(--color--light-orange);
    text-decoration: none;
}
.our-products--single.compare .our-products--single-content{
    margin-top:10px;
}
.our-products--single h1.online-casino:before {
    background-image: url("../gfx/2026/our-products/addon_title_casino.svg");
}
.our-products--single h1.cross-selling:before {
    background-image: url("../gfx/2026/our-products/addon_title_cross-selling.svg");
}
.our-products--single h1.gaming-licence:before {
    background-image: url("../gfx/2026/our-products/addon_title_licence.svg");
}
.our-products--single h1.anti-fraud:before {
    background-image: url("../gfx/2026/our-products/addon_title_fraud.svg");
}
.our-products--single h1.ecology:before {
    background-image: url("../gfx/2026/our-products/addon_title_ecology.svg");
}
.our-products--single h1.payments:before {
    background-image: url("../gfx/2026/our-products/addon_title_payments.svg");
}
.our-products--single h1.poker-network:before {
    background-image: url("../gfx/2026/our-products/addon_title_poker_network.svg");
}
.our-products--single h1.online-sportbook:before {
    background-image: url("../gfx/2026/our-products/addon_title_sportbook.svg");
}
.footer-wrap {
    background: #101010;
    background: linear-gradient(0deg,rgba(16, 16, 16, 1) 0%, rgba(0, 0, 0, 1) 100%);
    padding-top: 50px;
    margin-top: 0;
}
.card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    width: 100%;

    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.cards-index .card {
    height: 670px;
    background: transparent;
}
.card.v2 {
    border: 2px solid transparent;

    padding:4px 6px 6px 6px;
}
.card.v2:hover h3 {
    margin-top:0 !important;
}
.card.v2:hover {
    border: 2px solid var(--color--light-orange);

    padding:4px 6px 6px 6px;
    transform: scale(1);
    margin-top:-15px;
}
.card.v2:hover .overlay {
    top: initial !important;
}
.card.v2:hover .overlay .text-overlay {
    display: none;
}
.card.v2:hover .overlay .text-regular {
    display: block;
}
.card.v2:hover .overlay {
    top: initial !important;
}
.card.v2 label {
    position: absolute;
    top:0;
    left:0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 8px;
    padding:4px 14px 4px 14px;
    background:var(--red-color) ;
    font-weight: 800;
    z-index: 110;
    color:white;
}
.card:hover {
    border-color:var(--red-color)
}
.card:hover .overlay {
    top:0;
}
.card:hover .overlay h3 {
    margin-top:30px;
    transition: all 0.3s ease;
}
.card .overlay .text-overlay {
    display: none;
}
.card:hover .overlay .text-overlay {
    display: inline-block;
    padding-left:40px;
    padding-right: 40px;
    text-align: left;
    margin-top:30px;
    color:var( --grey-color-100);
}
.card:hover .overlay .text-regular {
    display: none;
}
.card .overlay .button-default {
    display: none;
    transition: all 0.1s ease;
}
.card:hover .overlay .button-default {
    display: inline-block;
    margin-top:20px;

}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    color: #fff;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}
.card.v2 .overlay {
    background: rgba(0, 0, 0, 0.9);
}
.card.v2 img {
    border-radius: 8px;
}
.overlay h3   {
    font-size: 42px;
    margin: 0;
    font-weight: 800;
    text-transform: uppercase;

}
.card.v2.gridz h3 {
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 800;
    text-align: left;
}
.card.v2.blog {
    margin-bottom: 60px;
}
.card.v2.blog:hover {
    transform: scale(1);
    margin-top:0;
}
.overlay p, .card.v2.gridz p  {
    font-size: 1.2rem;
    margin-bottom: 0;
    margin-top:10px;
    color:var(--grey-color);
}

.card.v2.gridz p {
    color:var(--grey-color-100);
    text-align:left;
}
.grid-blog {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding: 1rem;
    margin-top:100px;
}

.blog-left {
    padding: 1rem;
}

.blog-right {
    color: white;
    padding: 1rem;
    max-width: 280px;
    width: 100%;
}
.blog--item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
    margin-bottom: 50px;
    max-width: 100%;
    text-decoration: none;
}
.blog--item h2::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color--light-orange);
    transition: width 0.3s ease;
}

.blog--item:hover h2::before {
    width: 30%;
}
.blog--item.v2 {
    gap: 2rem;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom:1px solid var(--color--light-orange);

}

.blog--item .text-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.blog--item .text-content h2 {
    margin: 0;
    color:white;
    text-align: left;
    font-size: 24px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}
.blog--item.v2 .text-content h2 {
    font-size: 20px;
}

.blog--item .text-content p {
    margin: 0;
    color: #8FA1A5;
    font-size: 18px;
    text-align: left;
}

.blog--item .text-content .date {
    text-align: left;
    font-size: 12px;
    color:var(--color--light-orange);
}

.blog--item .img-container img {
    width: 100%;
    max-width: 330px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}
.blog--content {
    text-align: left;
}
.blog--content h2 {
    text-align: left;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;

}
.blog--content-text, .blog--content-text p  {
    color:#8FA1A5;
    margin-bottom: 40px;
    font-size: 18px;
    text-align: left;
}
.blog--content-cover {
    margin-bottom: 80px;
}
.blog--content-published {
    text-align: left;
    color:var(--color--light-orange);
    font-size: 12px;
    margin-bottom: 10px;
}
.card.v2.blog:hover .overlay .text-overlay {
    width: 100%;
    text-align: center;
}
.content-wrap {
    max-width: 968px;
    margin:0 auto;
}
.static-regular-content {
    margin-top:50px;
    text-align: left;
}
.step-into {
    display: block;
    letter-spacing: -0.04em;
    font-size: 2.5rem;
    font-weight: 700;
    color: #8a8a8a; /* Muted grey for the top text */
    margin-bottom: -10px; /* Pulls the main text closer */
}

h2.weplay-network {
    font-size: 66px;
    line-height: 66px;
    font-weight: 800;
    padding-bottom: 0.5rem;
    background: linear-gradient(
            to right,
            #90d7ff 0%,    /* Light Blue */
            #90d7ff 25%,   /* Lavender Blue */
            #c4b5fd 50%,   /* Purple/Violet */
            #ff3a3a 75%,   /* Soft Coral */
            #ff3a3a 100%   /* Deep Pink/Orange */
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.5));
    -webkit-font-smoothing: antialiased;
}
h2.our-partners {
    font-size: 66px;
    line-height: 66px;
    font-weight: 800;
    padding-bottom: 0.5rem;
    background: linear-gradient(to right, #ffffff 0%, #f3d5b5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    /* The "Bottom Example" Secret: Inner Depth */
    /* This filter creates the subtle dark inner ridge seen in your image */
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.5));

    /* Smoothness Rendering */
    -webkit-font-smoothing: antialiased;
}
.what-we-do {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 130px;
}
h1.index {
    font-size: 66px;
    line-height: 66px;
    font-weight: 800;
    display: flex;
    gap: 10px;
    align-items: center;
    letter-spacing: -0.04em;
}
h1.index span {
    color:#FF5500
}
@media (max-width: 968px){
    .product-grid {
        grid-template-columns: 1fr;
        padding-left:20px;
        padding-right:20px;
        gap:30px;
    }
}
/* Hover dropdown on desktop only */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr !important;
        margin-bottom: 60px !important;
    }
    .blog--item {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0rem;
        margin-bottom: 50px;
    }
    .img-container {
        justify-self: center;
        order:1;

    }
    .blog--item .text-content {
        order:2;
    }
    .blog-right {
        display: none;
    }
    .blog--item .img-container img {
        width: 100%;
        max-width: 100%;

    }
    .products-grid-right {

        margin-left: 0px !important;
        position: relative;
    }
    .products-grid {
        grid-template-columns: 1fr !important;

    }
    .products-grid:first-child, .about-section {
        order:2;
    }
    .products-grid-right, .about-avatar, .products-avatar{
        order:1;
    }
    .products-avatar {
        margin-bottom: -50px;
    }
    .our-products-main-avatar {
        margin-top:50px;
    }

}
@media ( min-width: 968px){
    .products-avatar {max-width: 500px}
    .what-we-do {margin-top:-350px;}
    .products-avatar {
        margin-right: -140px;
    }
    /* Optional: Remove margin that may push the dropdown away */
    .dropdown-menu {
        top: 100% !important; /* force it to open directly below */
        left: 20px;
        margin-top: 0;
        background: black;

    }
    .left {
        padding-left:50px;
    }
}
@media ( max-width: 968px){
    .stats .line {
        display: none;
    }
    .card .overlay .button-default {
        display: inline-block;
    }
    .card:hover .overlay {
        top:initial;
    }
    .card:hover .overlay .text-regular {
        display: block;
    }
    .card:hover .overlay .text-overlay {
        display: none;
    }
}
@media ( max-width: 768px){
    .comparison-grid-container {
        padding-left:20px;
        padding-right:20px;
    }
    .home-slide .carousel-slide {

        padding: 0;
    }
    h1.index {
        font-size:66px;
        line-height:66px;
        font-weight: 800;
        display: flex;
        gap: 10px;
        align-items: center;
        letter-spacing: -0.04em;
        flex-direction: column;
        align-items: baseline;
    }
    h1.index span {

    }
    .main-buttons {
        margin-top: 70px;
    }
    .left h1 {
        font-size: 44px;
    }
    body {
        --grid-gap:2.5rem;
    }
    .triple-title {
        font-size: 34px;
    }
    .triple-title img {
        height: 44px;
    }
    .card.v2 .overlay h3 {
        font-size: 20px;
    }
    .image-container {
        position: absolute;
        top:0;
    }
    .left-overlay {
        background: transparent;
        height:100%;

    }
    .blog-left {
        padding: 0;
    }
    .main-title h2 {
        font-size: 44px;
    }
    .main-title img {
        display: none;
    }
    .main-wrap {
        padding-left:10px;
        padding-right: 10px;
    }
    .grid-blog {
        gap:0;
        padding: 0;
    }
    .card .overlay .button-default {
        margin-top:20px;
    }
    .card.v2.gridz h3 {
        font-size: 44px;
    }
    .left-overlay {
        padding: 50px 30px 30px 30px;
    }
    .image-container::before {
        background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 4, 80, 0) 100%);

    }
    h2 {
        font-size: 50px !important;
        line-height: 52px !important;

    }
}
@media (max-width: 973px) {
    .mobileStyle {
        background: linear-gradient(103.19deg, #090A0F 4.61%, #1a1a1a 87.53%);
    }
}

@media only screen and (max-width: 768px) {
    .blog--item .img-container {
        justify-self: left;
        order: 1;
        max-width: 120px !important;

    }
    .blog--item .text-content h2 {
        font-size: 16px !important;
        line-height: 18px !important;
        font-weight: 600;
    }
    .blog--item {
        grid-template-columns: 35% 65%;
        text-align: center;
        padding: 0rem;
        margin-bottom: 50px;
        gap:1rem;
        align-items: flex-start;
    }
    .blog--content h2 {
        font-size: 32px !important;
        line-height: 34px !important;
        margin-bottom: 40px !important;

    }
    .blog--item .text-content h2 {
        order:2;
    }
    .blog--item .text-content .date {
        order: 1;
        margin-bottom: 5px;
    }
    .blog--item .text-content {
        gap:0;
        padding-right: 10px;
    }
}

.enroll_scene {
    width: 100%;
    max-width: 1020px;
    position: relative;
    overflow: hidden;

    margin:0 auto;
    margin-bottom: 40px;
}

/* ── Cards ── */
.enroll_cards-wrapper {
    display: flex;
    gap: 20px;
    width: 100%;
    transition: opacity 0.4s ease, transform 0.4s ease;

}

.enroll_cards-wrapper.enroll_cards--exit {
    animation: enroll_cardsOut 0.45s ease forwards;
}

@keyframes enroll_cardsOut {
    0%   { opacity: 1; transform: scale(1) translateY(0); }
    100% { opacity: 0; transform: scale(0.92) translateY(-24px); }
}

.enroll_card {
    background-color: #0f0f0f;
    border-radius: 16px;
    padding: 36px 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 560px;
    border: 1.5px solid #3a3a3c;
    text-align: left;
}

.enroll_card__label {
    font-size: 15px;
    color: #b0b0b8;
    font-weight: 400;
    margin-bottom: 6px;
}

.enroll_card__title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 18px;
}

.enroll_card__subtitle {
    font-size: 13px;
    color: #8e8e96;
    line-height: 1.6;
    margin-bottom: 32px;
}

.enroll_card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
    flex: 1;
    padding-left:0;

}

.enroll_card__features li {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
}

.enroll_card__btn {
    margin-top: 40px;
    padding: 14px 20px;
    border-radius: 10px;
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    letter-spacing: 0.01em;
    text-decoration: none;
    text-align: center;
}

.enroll_card--b2b { border-color: #3a3a3c; }
.enroll_card--b2b .enroll_card__btn { border: 2px solid #39d353; color: #ffffff; }
.enroll_card--b2b .enroll_card__btn:hover { background: rgba(57,211,83,0.1); }

.enroll_card--affiliate { border-color: #3a3a3c; }
.enroll_card--affiliate .enroll_card__btn { border: 2px solid #9b5de5; color: #ffffff; }
.enroll_card--affiliate .enroll_card__btn:hover { background: rgba(155,93,229,0.1); }

.enroll_card--support { border-color: #3a3a3c; }
.enroll_card--support .enroll_card__features li { font-size: 15px; }
.enroll_card--support .enroll_card__btn { border: 2px solid #ffffff; color: #ffffff; }
.enroll_card--support .enroll_card__btn:hover { background: rgba(255,255,255,0.08); }

/* ── Form panel ── */
.enroll_form-panel {
    display: none;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
    margin-top:150px;
    margin-bottom: 70px;
}

.enroll_form-panel.enroll_form--enter {
    animation: enroll_formIn 0.45s ease forwards;
}

@keyframes enroll_formIn {
    0%   { opacity: 0; transform: scale(0.94) translateY(28px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.enroll_back-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
    padding: 0;
    font-family: inherit;
}
.enroll_back-btn:hover { color: #fff; }
.enroll_back-btn::before { content: '←'; font-size: 16px; }

.enroll_modal__title {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 12px;
    position: relative;
}

.enroll_modal__title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20%;
    width: 110%;
    height: 300%;
    transform: translateY(-50%);
    background: radial-gradient(ellipse at center, rgba(30, 100, 40, 0.55) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.enroll_modal__title--affiliate::before {
    background: radial-gradient(ellipse at center, rgba(100, 40, 180, 0.55) 0%, transparent 70%);
}

.enroll_modal__desc {
    font-size: 13px;
    color: #9a9a9a;
    line-height: 1.6;
    margin-bottom: 28px;
}

.enroll_field {
    margin-bottom: 14px;
}

.enroll_field__label {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
    text-align: left;
}

.enroll_field__input,
.enroll_field__textarea {
    width: 100%;
    background: transparent;
    border: 1px solid #3a3a3c;
    border-radius: 6px;
    padding: 11px 14px;
    font-size: 14px;
    color: #ffffff;
    outline: none;
    font-family: inherit;
}

.enroll_field__input:focus,
.enroll_field__textarea:focus { border-color: #666; }

.enroll_field__textarea {
    resize: vertical;
    min-height: 90px;
}

.enroll_group {
    margin: 24px 0 8px;
}

.enroll_group__question {
    font-size: 13px;
    color: #d0d0d0;
    margin-bottom: 14px;
    text-align: left;
}

.enroll_group__options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.enroll_option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    user-select: none;
}

.enroll_option input { display: none; }

.enroll_option__box {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 2px solid #555;
    background: transparent;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, border-color 0.15s;
}

.enroll_option input:checked + .enroll_option__box {
    background: #f5a623;
    border-color: #f5a623;
}

.enroll_option input:checked + .enroll_option__box::after {
    content: '';
    width: 6px;
    height: 10px;
    border: 2px solid #1a1a1a;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
    display: block;
}

.enroll_modal__note {
    font-size: 12px;
    color: #7a7a7a;
    line-height: 1.6;
    margin: 22px 0 18px;
}

.enroll_recaptcha {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    background: #f9f9f9;
    width: fit-content;
}

.enroll_recaptcha__checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid #ccc;
    border-radius: 3px;
    background: #fff;
    flex-shrink: 0;
}

.enroll_recaptcha__label {
    font-size: 13px;
    color: #333;
}

.enroll_recaptcha__logo {
    margin-left: 8px;
    font-size: 10px;
    color: #aaa;
    text-align: center;
    line-height: 1.3;
}

.enroll_submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(to right, #e8500a, #f5a020);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: filter 0.15s;
}
.enroll_submit-btn:hover { filter: brightness(1.1); }
.home--layer-two .mobile-overlay-button {
    display: none;
}
/* ── Responsive ── */
@media (min-width: 768px) {
    .our-products--single .product-grid .right img {
        position: sticky;
        top: 100px;
    }
}

@media (max-width: 768px) {
    .card-header-overlay .overlay-button{
        display: none;
    }
    .home--layer-two .swiper-slide-active .mobile-overlay-button {
         display: inline-block;
    }
    .cards-index .card {
        height: 720px;
    }
    .products-grid::after {z-index: 0}
    .form-section {
        flex: 1;
        width: 100%;
    }
    .slide-text-col h2 {
        margin-bottom:20px !important;
    }
    .button-type-2.mobile-rule {
        position: absolute;
        bottom:120px;
        width: 89%;
        z-index: 20;
    }
    .enroll-avatar {
        z-index: 0;
        left: 50%;
        transform: translate(-50%, 0);
        width: 550px !important;
    }
    .home--layer-three {
        overflow: hidden;
    }

    .slide-content {
        background-size: 120% !important;
    }
    .hide--mobile {display:none;}
    .product-grid .left {
        order:2;
        margin-top:-80px;
    }

    .our-products--single {
        margin-top: 100px;
    }
    .product-grid .right {
        text-align: center;
        order:1;
    }
    .enroll_modal__title {
        overflow: hidden;
    }


    .enroll_cards-wrapper {
        flex-direction: column;
        gap: 14px;
    }

    .enroll_card {
        min-height: unset;
        padding: 28px 22px 24px;
    }

    .enroll_card__title {
        font-size: 28px !important;
        line-height: 28px !important;
    }

    .enroll_card__btn {
        margin-top: 28px;
    }

    .enroll_form-panel {
        max-width: 100%;
        padding-left:15px;
        padding-right:15px;
    }

    .enroll_modal__title {
        font-size: 22px;
    }

    .enroll_modal__title::before {
        left: 0;
        height: 80%;
        width: 100%;
    }

    .enroll_recaptcha {
        width: 100%;
    }
}

@media (max-width: 480px) {

    .enroll_card {
        padding: 22px 18px 20px;
    }

    .enroll_card__title {
        font-size: 20px;
    }

    .enroll_modal__title {
        font-size: 20px;
    }

    .enroll_field__input,
    .enroll_field__textarea {
        font-size: 16px; /* prevents iOS zoom on focus */
    }

    .enroll_option {
        font-size: 13px;
    }

    .enroll_submit-btn {
        padding: 14px;
        font-size: 14px;
    }
}
@media (max-width: 768px){
    .show-on-mobile {display: inline-block;}
    .show-on-desktop {display: none;}
    .comparison-grid-wrapper {
        margin-top: 60px;
    }
}
@media (min-width: 768px){
    .show-on-mobile {display: none;}
    .show-on-desktop {display: inline-block;}
}

                                                                                                                                                                                                               CSS
