/* === VARIABLES === */
:root {
    --color-bg-dark: #0a0a1a;
    --color-bg-deep: #070707;
    --color-bg-header: #0e1116;
    --color-purple: #855afa;
    --color-purple-light: #d881fb;
    --color-purple-pale: #e5a6ff;
    --color-purple-dark: #26183f;
    --color-purple-bright: #8a38f5;
    --color-hover: #d47ffa;
    --color-text: #ffffff;
    --color-text-pink: #f1cdf9;
    --color-text-pink-light: #f0cefe;
    --color-error: #ff6b9d;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --container-width: 1200px;
    --border-radius: 12px;
}

/* === SKIP LINK === */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-purple);
    color: var(--color-text);
    padding: 10px 20px;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    font-size: 14px;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
}

/* === RESET & BASE === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    background: var(--color-bg-dark);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

main {
    width: 100%;
    padding-top: 70px;
}

.mobile-only {
    display: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* === CONTAINER === */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
    padding: 10px 60px;
    gap: 10px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-purple-light));
    color: var(--color-text);
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #5436A4, #9F60B8);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.btn-text {
    display: inline-block;
    width: 140px;
    height: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
}

/* === SECTION STYLES === */
section {
    width: 100%;
    padding: 40px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    scroll-margin-top: 70px;
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: linear-gradient(to right, var(--color-bg-header), #000000);
    width: 100%;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 10px 60px;
    max-width: 1920px;
    gap: 30px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    width: 155px;
    height: 50px;
    object-fit: contain;
}

.nav-list {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    flex: 1;
    max-width: 1645px;
    gap: 41px;
    justify-content: flex-end;
    overflow: visible;
}

.nav-link {
    display: inline-block;
    height: 19px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-hover);
}

/* === MORE DROPDOWN === */
.nav-more {
    position: relative;
    display: none;
}

.nav-more.active {
    display: block;
}

.nav-more-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    height: auto;
    line-height: normal;
    border-radius: 6px;
}

.nav-more.open .nav-more-btn {
    outline: 1px solid var(--color-purple);
    outline-offset: 4px;
}

.nav-more-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid var(--color-text);
    vertical-align: middle;
    margin-left: 5px;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.nav-more.open .nav-more-arrow {
    transform: rotate(180deg);
}

.nav-more-list {
    position: absolute;
    top: 60px;
    right: 0;
    width: 263px;
    padding: 30px 16px;
    border: 1px solid transparent;
    border-radius: 20px;
    background:
        url('assets/backgrounds/who_we_are_text_bg.webp') center/cover no-repeat padding-box,
        linear-gradient(180deg, var(--color-purple-light) 0%, var(--color-purple) 20%, var(--color-purple-dark) 50%, var(--color-purple-dark) 80%, var(--color-purple) 90%, var(--color-purple-pale) 100%) border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Triangle pointer */
.nav-more-list::before {
    content: '';
    position: absolute;
    top: -12px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid var(--color-purple-light);
}

.nav-more-list::after {
    content: '';
    position: absolute;
    top: -9px;
    right: 22px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #1a0a2e;
}

.nav-more.open > .nav-more-list {
    opacity: 1;
    visibility: visible;
}

.nav-more-list li {
    padding: 0;
}

.nav-more-list .nav-link {
    display: block;
    padding: 0;
    width: 100%;
    text-align: center;
    white-space: nowrap;
}

.nav-more-list .nav-link:hover {
    color: var(--color-hover);
}

/* === MOBILE MENU === */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    padding: 10.69px 6.19px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.menu-icon {
    width: 23.63px;
    height: 14.63px;
    display: block;
}

.nav.active .nav-list {
    display: flex;
}

.nav-logo {
    display: none;
}

.nav-close {
    display: none;
}

/* === HERO === */
.hero {
    width: 100%;
    height: 649px;
    padding: 10px 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    background-color: var(--color-bg-header);
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.85) 100%),
        linear-gradient(180deg, #0E1116, rgba(14, 17, 22, 0), rgba(7, 7, 7, 0), #070707),
        url('assets/images/iGaming_banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-title {
    width: 1600px;
    max-width: 100%;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 75px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: 0;
    background: linear-gradient(90deg, var(--color-purple), var(--color-purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    width: 1600px;
    max-width: 100%;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 75px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--color-text);
}

.hero-description {
    max-width: 900px;
    font-family: 'Inter', sans-serif;
    font-size: 27px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: 0.05em;
    color: var(--color-text-pink);
    margin-bottom: 5px;
}

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

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 10px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 193px;
    height: 70px;
    padding: 20px 30px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-purple-light));
    color: var(--color-text);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 100%;
    letter-spacing: 0;
    text-decoration: none;
    transition: all 300ms ease-out;
}

.btn-hero:hover {
    background: linear-gradient(90deg, #5436A4, #9F60B8);
}

.btn-hero-outline {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 162px;
    height: 70px;
    padding: 20px 30px;
    border-radius: 10px;
    background: transparent;
    color: var(--color-text);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 100%;
    letter-spacing: 0;
    text-decoration: none;
    transition: all 300ms ease-out;
}

.btn-hero-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-purple-light));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.btn-hero-outline:hover {
    background: linear-gradient(90deg, var(--color-purple), var(--color-purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === WHO WE ARE === */
.who-we-are {
    width: 100%;
    min-height: 516px;
    padding: 40px 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 42px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.85) 100%),
        linear-gradient(180deg, #0E1116, rgba(14, 17, 22, 0), rgba(7, 7, 7, 0), #070707),
        url('assets/backgrounds/who_we_are.webp');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.who-we-are-title {
    width: 1600px;
    max-width: 100%;
    height: 61px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    background: linear-gradient(90deg, var(--color-text-pink), var(--color-text-pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.who-we-are-text-block {
    width: 1600px;
    max-width: 100%;
    min-height: 240px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px;
    border-radius: 15px;
    background: url('assets/backgrounds/who_we_are_text_bg.webp');
    background-size: cover;
    background-position: center;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    box-shadow: 0 0 9.9px 0 var(--color-purple-light);
    transition: all 300ms ease-out;
}

.who-we-are-text-block::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 17px;
    background: linear-gradient(90deg, var(--color-purple-light), var(--color-purple), var(--color-purple-dark), var(--color-purple-dark), var(--color-purple-bright), var(--color-purple-pale));
    z-index: -1;
}

.integrations-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.who-we-are-text {
    width: 1344px;
    max-width: 100%;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0.1em;
    color: var(--color-text);
    text-align: left;
}

.who-we-are-tagline {
    width: 1600px;
    max-width: 100%;
    height: 51px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    background: linear-gradient(90deg, var(--color-purple-light), var(--color-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === WHY WIZARD === */
.why-wizard {
    width: 100%;
    min-height: 629px;
    padding: 20px 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
    background-color: var(--color-bg-deep);
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.85) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        linear-gradient(180deg, #0E1116, rgba(14, 17, 22, 0), rgba(7, 7, 7, 0), #070707),
        url('assets/backgrounds/why_wizard_matrix_bg.webp');
    background-size: cover;
    background-position: center;
}

.why-wizard-title {
    width: 1600px;
    max-width: 100%;
    height: 61px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    background: linear-gradient(90deg, var(--color-text-pink), var(--color-text-pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-wizard-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.1em;
    text-align: center;
    color: var(--color-text-pink);
    margin-bottom: 2px;
}

.why-wizard-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.1em;
    text-align: center;
    color: var(--color-text-pink);
    margin-top: -22px;
}

.why-wizard-frames {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    position: relative;
}

.carousel-arrow {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(216, 129, 251, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0.7;
    flex-shrink: 0;
}

.carousel-arrow:hover {
    background: rgba(216, 129, 251, 0.5);
    box-shadow: 0 0 25px 5px var(--color-purple-light);
    opacity: 1;
}

.carousel-arrow.hidden {
    opacity: 0.2;
    pointer-events: none;
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.why-wizard-frames-wrapper {
    overflow: hidden;
    padding: 15px 5px;
}

.why-wizard-frames::-webkit-scrollbar {
    display: none;
}

/* Drag scroll styles for all scrollable sections */
.why-wizard-frames,
.services-frames,
.compliance-carousel,
.tech-circles-carousel,
.platforms-grid,
.providers-grid,
.payments-grid {
    cursor: grab;
}

.dragging {
    cursor: grabbing !important;
    user-select: none;
}

.why-wizard-frames-inner {
    display: flex;
    flex-direction: row;
    gap: 25px;
    padding: 15px 0;
    transition: transform 0.3s ease;
}

.why-wizard-frame {
    width: 300px;
    height: 272px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 25px;
    border-radius: 15px;
    background: url('assets/backgrounds/frame_bg.webp');
    background-size: cover;
    background-position: center;
    border: 2px solid transparent;
    position: relative;
    box-shadow: 0 0 9.9px 0 var(--color-purple-light);
    transition: all 300ms ease-out;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.why-wizard-frame:hover {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('assets/backgrounds/frame_bg.webp');
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 25px 5px var(--color-purple-light);
}

.why-wizard-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 17px;
    background: linear-gradient(90deg, var(--color-purple-light), var(--color-purple), var(--color-purple-dark), var(--color-purple-dark), var(--color-purple-bright), var(--color-purple-pale));
    z-index: -1;
}

.frame-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.frame-label {
    width: 250px;
    height: 62px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--color-text-pink), var(--color-text-pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-wizard-bottom-text {
    width: 1600px;
    max-width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.1em;
    text-align: center;
    color: var(--color-text-pink);
    margin-top: 5px;
}

/* === LICENSING === */
.licensing {
    width: 100%;
    min-height: 249px;
    padding: 40px 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.85) 100%),
        linear-gradient(180deg, rgba(14, 17, 22, 0.25), rgba(14, 17, 22, 0.25)),
        linear-gradient(180deg, #070707, rgba(7, 7, 7, 0), rgba(7, 7, 7, 0)),
        linear-gradient(180deg, rgba(7, 7, 7, 0.42), rgba(7, 7, 7, 0.42)),
        url('assets/backgrounds/purple_bg.webp');
    background-size: cover;
    background-position: center;
}

.licensing-title {
    width: 1600px;
    max-width: 100%;
    height: 61px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    background: linear-gradient(90deg, var(--color-text-pink), var(--color-text-pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.licensing-text {
    width: 1600px;
    max-width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.1em;
    text-align: center;
    color: var(--color-text-pink);
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.licensing-line {
    display: block;
}

/* === WHERE WE ARE === */
.where-we-are {
    width: 100%;
    padding: 20px 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
    background-color: var(--color-bg-deep);
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.85) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        linear-gradient(180deg, #0E1116, rgba(14, 17, 22, 0), rgba(7, 7, 7, 0), #070707),
        url('assets/backgrounds/why_wizard_matrix_bg.webp');
    background-size: cover;
    background-position: center;
}

.where-we-are-title {
    width: 1600px;
    max-width: 100%;
    height: 61px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    background: linear-gradient(90deg, var(--color-text-pink), var(--color-text-pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.where-we-are-text {
    width: 1600px;
    max-width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.1em;
    text-align: center;
    color: var(--color-text-pink);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.where-we-are-line {
    display: block;
}

.where-we-are-map {
    width: 100%;
    max-width: 1536px;
    height: auto;
    aspect-ratio: 1536 / 817;
    border-radius: 20px;
    object-fit: cover;
    margin: 0 auto;
}

/* === SERVICES === */
.services {
    width: 100%;
    min-height: 556px;
    padding: 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
    background-color: var(--color-bg-deep);
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.85) 100%),
        linear-gradient(180deg, #0E1116, rgba(14, 17, 22, 0), rgba(7, 7, 7, 0), #070707),
        url('assets/backgrounds/service_background.webp');
    background-size: cover;
    background-position: center;
}

.services-title {
    width: 1600px;
    max-width: 100%;
    height: 61px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    background: linear-gradient(90deg, var(--color-text-pink), var(--color-text-pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-frames {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    position: relative;
}

.services-frames-wrapper {
    overflow: hidden;
    padding: 15px 15px;
}

.services-frames::-webkit-scrollbar {
    display: none;
}

.services-frames-inner {
    display: flex;
    flex-direction: row;
    gap: 25px;
    padding: 15px 0;
    transition: transform 0.3s ease;
}

.service-frame {
    width: 350px;
    min-width: 350px;
    max-width: 350px;
    height: 371px;
    min-height: 371px;
    max-height: 371px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 25px;
    border-radius: 15px;
    background: url('assets/backgrounds/frame_bg.webp');
    background-size: cover;
    background-position: center;
    border: 2px solid transparent;
    position: relative;
    box-shadow: 0 0 9.9px 0 var(--color-purple-light);
    flex-shrink: 0;
    transition: all 300ms ease-out;
}

.service-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 17px;
    background: linear-gradient(90deg, var(--color-purple-light), var(--color-purple), var(--color-purple-dark), var(--color-purple-dark), var(--color-purple-bright), var(--color-purple-pale));
    z-index: -1;
    transition: box-shadow 300ms ease-out;
}

.service-frame:hover::before {
    box-shadow: 0 0 25px 5px var(--color-purple-light);
}

.service-frame-icon {
    width: 150px;
    min-width: 150px;
    height: 150px;
    min-height: 150px;
    object-fit: contain;
    flex-shrink: 0;
}

.service-frame-label {
    width: 300px;
    height: 31px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--color-text-pink), var(--color-text-pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.service-frame-description {
    width: 300px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    line-height: 150%;
    letter-spacing: 0.05em;
    text-align: center;
    color: var(--color-text);
}

/* === SETUP MODEL === */
.setup-model {
    width: 100%;
    min-height: 689px;
    padding: 20px 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
    background-color: var(--color-bg-deep);
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.85) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        linear-gradient(180deg, #0E1116, rgba(14, 17, 22, 0), rgba(7, 7, 7, 0), #070707),
        url('assets/backgrounds/setup_model.webp');
    background-size: cover;
    background-position: center;
}

.setup-model-title {
    width: 1600px;
    max-width: 100%;
    height: 61px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    background: linear-gradient(90deg, var(--color-text-pink), var(--color-text-pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.setup-model-text {
    width: 1600px;
    max-width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.1em;
    text-align: center;
    color: var(--color-text-pink);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.setup-model-line {
    display: block;
}

.setup-model-bottom-text {
    width: 1600px;
    max-width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.1em;
    text-align: center;
    color: var(--color-text-pink);
}

.setup-model-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.setup-model-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}

.setup-model-item {
    width: 474px;
    padding: 20px 30px;
    border-radius: 100px;
    border: 1px solid var(--color-hover);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: all 300ms ease-out;
}

.setup-model-item:hover {
    box-shadow: 0 0 10px 1px rgba(216, 129, 251, 0.3);
}

.setup-model-item-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.setup-model-item-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.05em;
    text-align: left;
    color: var(--color-text);
    white-space: nowrap;
}

/* === CAREERS === */
.careers {
    width: 100%;
    min-height: 400px;
    padding: 20px 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
    background-color: var(--color-bg-header);
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.85) 100%),
        linear-gradient(180deg, #0E1116, rgba(14, 17, 22, 0), rgba(7, 7, 7, 0), #070707),
        url('assets/backgrounds/who_we_are_bg.webp');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.careers-title {
    width: 1600px;
    max-width: 100%;
    height: 61px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    background: linear-gradient(90deg, var(--color-text-pink), var(--color-text-pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.careers-subtitle {
    width: 1600px;
    max-width: 100%;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    background: linear-gradient(90deg, var(--color-purple-light), var(--color-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.careers-text {
    width: 1600px;
    max-width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.1em;
    text-align: center;
    color: var(--color-text-pink);
}

.careers-email {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.careers-email .material-symbols-outlined {
    font-size: 22px;
    color: var(--color-text-pink);
}

.careers-email-text {
    width: 283px;
    height: 22px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.1em;
    text-align: center;
    color: var(--color-text-pink);
}

.careers .btn {
    margin-top: 32px;
}

/* === COMPLIANCE === */
.compliance {
    width: 100%;
    min-height: 500px;
    padding: 20px 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
    background-color: var(--color-bg-deep);
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.85) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        linear-gradient(180deg, #0E1116, rgba(14, 17, 22, 0), rgba(7, 7, 7, 0), #070707),
        url('assets/backgrounds/why_wizard_matrix_bg.webp');
    background-size: cover;
    background-position: center;
}

.compliance-title {
    width: 1600px;
    max-width: 100%;
    height: 61px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    background: linear-gradient(90deg, var(--color-text-pink), var(--color-text-pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.compliance-text {
    width: 1600px;
    max-width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.1em;
    text-align: center;
    color: var(--color-text-pink);
}

.compliance-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.compliance-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    position: relative;
}

.compliance-carousel > .carousel-arrow {
    display: none;
}

.compliance-frames-wrapper {
    overflow: visible;
    padding: 0;
}

.compliance-frames-inner {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.compliance-images {
    width: 688px;
    height: 448px;
    position: relative;
    flex-shrink: 0;
}

.compliance-shield {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.compliance-frame {
    width: 784px;
    min-height: 190px;
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid transparent;
    background: linear-gradient(var(--color-bg-dark), var(--color-bg-dark)) padding-box,
                linear-gradient(180deg, var(--color-purple-light) 0%, var(--color-purple) 20%, var(--color-purple-dark) 50%, var(--color-purple-dark) 80%, var(--color-purple) 90%, var(--color-purple-pale) 100%) border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 21px;
    transition: all 300ms ease-out;
}

.compliance-frame:hover {
    box-shadow: 0 0 20px 3px var(--color-purple-light);
}

.compliance-frame-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
    flex-shrink: 0;
}

.compliance-frame-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.compliance-frame-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    line-height: 160%;
    letter-spacing: 0.1em;
    color: var(--color-text);
}

.compliance-frame-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 25px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0;
    background: linear-gradient(90deg, var(--color-text-pink), var(--color-text-pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === TECHNOLOGY === */
.technology {
    width: 100%;
    min-height: 500px;
    padding: 20px 160px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
    background-color: var(--color-bg-deep);
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.85) 100%),
        linear-gradient(180deg, #0E1116, rgba(14, 17, 22, 0), rgba(7, 7, 7, 0), #070707),
        url('assets/backgrounds/technology_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.technology-title {
    width: 1600px;
    max-width: 100%;
    height: 61px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    background: linear-gradient(90deg, var(--color-text-pink), var(--color-text-pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.technology-text {
    width: 1600px;
    max-width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.1em;
    text-align: center;
    color: var(--color-text-pink);
}

.tech-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.tech-icon-img {
    width: 85px;
    height: 79.69px;
    object-fit: contain;
}

.tech-circles-carousel {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0;
    position: relative;
}

.tech-circles-carousel > .carousel-arrow {
    display: none;
}

.tech-circles-wrapper {
    overflow: visible;
    padding: 0;
}

.tech-circles-inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    margin-top: -24px;
    gap: 24px;
}

.tech-circle {
    width: 350px;
    min-width: 350px;
    height: 350px;
    min-height: 350px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 9.9px 0 var(--color-purple-light);
    transition: all 300ms ease-out;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
}

.tech-circle:nth-child(2),
.tech-circle:nth-child(3) {
    transform: translateY(48px);
}


.tech-bottom-text {
    margin-top: 48px;
    align-self: center;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    line-height: 160%;
    letter-spacing: 0.1em;
    text-align: center;
    color: var(--color-text);
}

/* === PLATFORMS === */
.platforms {
    width: 100%;
    min-height: 500px;
    padding: 20px 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.85) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        linear-gradient(180deg, #0E1116, rgba(14, 17, 22, 0), rgba(7, 7, 7, 0), #070707),
        url('assets/backgrounds/active_platforms.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.platforms-title {
    width: 1600px;
    max-width: 100%;
    height: 61px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    background: linear-gradient(90deg, var(--color-text-pink), var(--color-text-pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platforms-text {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 160%;
    letter-spacing: 0.1em;
    text-align: center;
    color: var(--color-text-pink);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.platforms-line {
    display: block;
    white-space: nowrap;
}

.platforms-grid {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0;
    position: relative;
}

.platforms-grid-wrapper {
    overflow: hidden;
    padding: 15px 10px;
}

.platforms-grid-inner {
    display: flex;
    flex-direction: row;
    gap: 25px;
    padding: 15px 0;
    transition: transform 0.3s ease;
}

.platform-logo {
    width: 250px;
    height: 251px;
    border-radius: 15px;
    border: 1px solid transparent;
    background: transparent padding-box,
                linear-gradient(180deg, var(--color-purple-light) 0%, var(--color-purple) 20%, var(--color-purple-dark) 50%, var(--color-purple-dark) 80%, var(--color-purple) 90%, var(--color-purple-pale) 100%) border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    gap: 20px;
    position: relative;
    transition: box-shadow 0.6s ease, background 0.6s ease;
    box-shadow: 0 0 9.9px 0 var(--color-purple-light);
    cursor: pointer;
    z-index: 1;
}

/* Frame background - collapses on hover */
.platform-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('assets/backgrounds/why_wizard_matrix_bg.webp');
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: transform 0.8s ease, opacity 0.6s ease;
    transform-origin: center center;
}

.platform-logo img {
    width: 180px;
    height: 79px;
    object-fit: contain;
    transition: all 0.6s ease;
}

.platform-logo:hover {
    box-shadow: none;
    background: transparent;
    border-color: transparent;
}

.platform-logo:hover::before {
    transform: scaleY(0) scaleX(0.8);
    opacity: 0;
}

.platform-logo:hover img {
    transform: scale(1.1) translateY(25px);
}

.platform-logo:hover .platform-name {
    opacity: 0;
    transform: translateY(10px);
}

.platform-name {
    width: 200px;
    height: 31px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    background: linear-gradient(90deg, var(--color-text-pink), var(--color-text-pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 15px;
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: relative;
    z-index: 2;
}

/* === OUR PLATFORMS === */
.our-platforms {
    width: 100%;
    min-height: 300px;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
    background-color: var(--color-bg-deep);
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.85) 100%),
        linear-gradient(180deg, #0E1116, rgba(14, 17, 22, 0), rgba(7, 7, 7, 0), #070707),
        url('assets/backgrounds/purple_bg.webp');
    background-size: cover;
    background-position: center;
}

.our-platforms-title {
    width: 1600px;
    max-width: 100%;
    height: 61px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    background: linear-gradient(90deg, var(--color-text-pink), var(--color-text-pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.providers-grid {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0;
    position: relative;
}

.providers-grid::-webkit-scrollbar {
    display: none;
}

.providers-grid-wrapper {
    overflow: hidden;
    padding: 5px 10px;
}

.providers-grid-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    transition: transform 0.3s ease;
}

.provider-logo {
    width: 166px;
    min-width: 166px;
    height: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.provider-logo img {
    width: 166px;
    height: 50px;
    object-fit: contain;
}

.provider-logo:hover {
    transform: scale(1.1);
}

/* === PAYMENT METHODS === */
.payment-methods {
    width: 100%;
    min-height: 300px;
    padding: 20px 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
    background-color: var(--color-bg-deep);
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.85) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        linear-gradient(180deg, #0E1116, rgba(14, 17, 22, 0), rgba(7, 7, 7, 0), #070707),
        url('assets/backgrounds/why_wizard_matrix_bg.webp');
    background-size: cover;
    background-position: center;
}

.payment-methods-title {
    width: 1600px;
    max-width: 100%;
    height: 61px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    background: linear-gradient(90deg, var(--color-text-pink), var(--color-text-pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payments-grid {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0;
    position: relative;
}

.payments-grid-wrapper {
    overflow: hidden;
    padding: 5px 10px;
}

.payments-grid::-webkit-scrollbar {
    display: none;
}

.payments-grid-inner {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 15px 0;
    transition: transform 0.3s ease;
}

.payment-logo {
    width: 188px;
    min-width: 188px;
    height: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.payment-logo img {
    width: 188px;
    height: 40px;
    object-fit: contain;
}

.payment-logo:hover {
    transform: scale(1.1);
}

/* === CONTACT === */
.contact {
    width: 100%;
    min-height: 500px;
    padding: 20px 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
    background-color: var(--color-bg-deep);
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.85) 100%),
        linear-gradient(180deg, #0E1116, rgba(14, 17, 22, 0), rgba(7, 7, 7, 0), #070707),
        url('assets/backgrounds/contact_us_bg.webp');
    background-size: cover;
    background-position: center;
}

.contact-title {
    width: 1600px;
    max-width: 100%;
    height: 61px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    background: linear-gradient(90deg, var(--color-text-pink), var(--color-text-pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.contact-form {
    width: 100%;
    max-width: 1600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 24px;
    padding: 0 7.5%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form > .form-group {
    width: 100%;
    margin-bottom: 24px;
    padding: 0 7.5%;
}

.form-group label {
    width: fit-content;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    height: 64px;
    background: var(--color-purple-dark);
    border: 1px solid var(--color-text-pink);
    border-radius: 10px;
    padding: 20px;
    font-size: 1rem;
    color: var(--color-text);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-row .form-group input {
    width: 100%;
}

.form-group textarea {
    width: 100%;
    max-width: 1600px;
    height: 99px;
    resize: none;
}

.form-group textarea::placeholder,
.form-group input::placeholder {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0;
    color: var(--color-text);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-purple-light);
    box-shadow: 0 0 10px 0 rgba(216, 129, 251, 0.3);
}

.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
    border-color: var(--color-purple-light);
    box-shadow: 0 0 10px 0 rgba(216, 129, 251, 0.3);
}

.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill,
.form-group textarea:-webkit-autofill:hover,
.form-group textarea:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px var(--color-purple-dark) inset, 0 0 10px 0 rgba(216, 129, 251, 0.3);
    -webkit-text-fill-color: var(--color-text);
    border-color: var(--color-purple-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    text-align: center;
    padding: 60px 20px;
}

.form-success h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    background: linear-gradient(90deg, var(--color-text-pink), var(--color-text-pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.form-success p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.1em;
    color: var(--color-text-pink);
}

.form-error {
    text-align: center;
    padding: 20px;
}

.form-error p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.05em;
    color: var(--color-error);
}

.contact-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: -22px;
}

.contact-logo {
    width: 155px;
    height: 50px;
    object-fit: contain;
}

.btn-about {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 70px;
    padding: 20px 30px;
    border-radius: 10px;
    background: transparent;
    color: var(--color-text);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    text-decoration: none;
    transition: all 300ms ease-out;
}

.btn-about::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-purple-light));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.btn-about:hover {
    background: linear-gradient(90deg, var(--color-purple), var(--color-purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === FOOTER === */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px 10px 20px 10px;
    gap: 10px;
    background: linear-gradient(to right, var(--color-bg-header), #000000);
}

.footer-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1900px;
    gap: 53px;
}

.footer-email,
.copyright,
.footer-nav span,
.footer-separator {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.1em;
    text-align: center;
    color: var(--color-text);
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* === RESPONSIVE === */

/* Large Desktop (1600px - 1920px) */
@media (max-width: 1800px) {
    .platforms-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Medium-Large Desktop (1400px - 1600px) */
@media (max-width: 1600px) {
    .nav-list {
        gap: 25px;
    }

    .hero {
        height: auto;
        min-height: 550px;
        padding: 40px 120px;
    }

    .hero-title {
        font-size: 65px;
    }

    .hero-subtitle {
        font-size: 65px;
    }

    .hero-description {
        font-size: 24px;
        max-width: 55%;
    }

    .hero-description br {
        display: none;
    }

    .compliance-layout {
        gap: 30px;
    }

    .compliance-frame {
        width: 650px;
    }

    .compliance-images {
        width: 550px;
        height: auto;
    }

    .tech-circles-inner {
        gap: 16px;
    }

    .tech-circle {
        width: 300px;
        height: 300px;
    }

    .who-we-are-text br,
    .licensing-text br {
        display: none;
    }

    .platforms-line {
        white-space: normal;
    }
}

/* Standard Desktop (1200px - 1400px) */
@media (max-width: 1400px) {
    .header .container {
        padding: 10px 40px;
    }

    .hero {
        padding: 50px 80px;
        height: auto;
        min-height: 500px;
    }

    .hero-title {
        font-size: 55px;
    }

    .hero-subtitle {
        font-size: 55px;
    }

    .hero-description {
        font-size: 22px;
        max-width: 55%;
    }

    .who-we-are,
    .why-wizard,
    .licensing,
    .where-we-are,
    .services,
    .setup-model,
    .careers,
    .compliance,
    .technology,
    .platforms,
    .our-platforms,
    .payment-methods,
    .contact {
        padding-left: 80px;
        padding-right: 80px;
    }

    .nav-list {
        gap: 18px;
    }

    .integrations-img {
        width: 150px;
        height: 150px;
    }

    .compliance-layout {
        flex-direction: column;
        align-items: center;
    }

    .compliance-frame {
        width: 100%;
        max-width: 900px;
    }

    .compliance-images {
        width: 100%;
        max-width: 600px;
        height: auto;
    }

    .setup-model-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .setup-model-item {
        width: 320px;
    }

    .tech-circle {
        width: 250px;
        height: 250px;
    }

    .tech-circle:nth-child(2),
    .tech-circle:nth-child(3) {
        transform: translateY(30px);
    }

    .form-row {
        gap: 30px;
    }
}

/* Small Desktop / Large Tablet (1024px - 1200px) */
@media (max-width: 1200px) {
    .header .container {
        padding: 10px 30px;
        gap: 20px;
    }

    .logo img {
        width: 130px;
        height: 42px;
    }

    .nav-list {
        gap: 12px;
    }

    .nav-link {
        font-size: 0.8rem;
        min-width: auto;
    }

    .hero {
        padding: 50px 50px;
        height: auto;
        min-height: 450px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 48px;
    }

    .hero-description {
        font-size: 20px;
        max-width: 600px;
    }

    .hero-description br {
        display: none;
    }

    .who-we-are,
    .why-wizard,
    .licensing,
    .where-we-are,
    .services,
    .setup-model,
    .careers,
    .compliance,
    .technology,
    .platforms,
    .our-platforms,
    .payment-methods,
    .contact {
        padding-left: 40px;
        padding-right: 40px;
    }

    .who-we-are-title,
    .why-wizard-title,
    .licensing-title,
    .where-we-are-title,
    .services-title,
    .setup-model-title,
    .careers-title,
    .compliance-title,
    .technology-title,
    .platforms-title,
    .our-platforms-title,
    .payment-methods-title,
    .contact-title {
        font-size: 38px;
    }

    .who-we-are-tagline {
        font-size: 32px;
    }

    .careers-subtitle {
        font-size: 28px;
    }

    .who-we-are-text-block {
        flex-direction: column;
        padding: 30px;
    }

    .who-we-are-text {
        text-align: center;
    }

    .who-we-are-text br {
        display: none;
    }

    .setup-model-item {
        width: 280px;
    }

    .setup-model-item-text {
        font-size: 14px;
    }

    .tech-circles-inner {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tech-circle {
        width: 220px;
        height: 220px;
    }

    .tech-circle:nth-child(2),
    .tech-circle:nth-child(3) {
        transform: translateY(0);
    }

    .platform-logo {
        width: 200px;
        height: 200px;
    }

    .platform-logo img {
        width: 140px;
        height: 90px;
    }

    .form-row {
        padding: 0 3%;
    }

    .contact-form > .form-group {
        padding: 0 3%;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-email,
    .copyright,
    .footer-nav span {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .header .container {
        padding: 10px 20px;
        gap: 15px;
    }

    .logo img {
        width: 120px;
        height: 40px;
    }

    .nav-list {
        gap: 6px;
    }

    .nav-link {
        font-size: 0.7rem;
    }

    .hero {
        padding: 40px 30px;
        min-height: 400px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 38px;
    }

    .hero-description {
        font-size: 16px;
        max-width: 500px;
    }

    .btn-hero,
    .btn-hero-outline {
        width: 130px;
        height: 48px;
        font-size: 16px;
        padding: 10px 14px;
    }

    .who-we-are,
    .why-wizard,
    .licensing,
    .where-we-are,
    .services,
    .setup-model,
    .careers,
    .compliance,
    .technology,
    .platforms,
    .our-platforms,
    .payment-methods,
    .contact {
        padding-left: 30px;
        padding-right: 30px;
    }

    .who-we-are-title,
    .why-wizard-title,
    .licensing-title,
    .where-we-are-title,
    .services-title,
    .setup-model-title,
    .careers-title,
    .compliance-title,
    .technology-title,
    .platforms-title,
    .our-platforms-title,
    .payment-methods-title,
    .contact-title {
        font-size: 32px;
        height: auto;
    }

    .why-wizard-text,
    .why-wizard-subtext,
    .why-wizard-bottom-text,
    .licensing-text,
    .where-we-are-text,
    .setup-model-text,
    .careers-text,
    .compliance-text,
    .technology-text,
    .platforms-text,
    .setup-model-bottom-text {
        font-size: 16px;
    }

    .licensing-text br {
        display: none;
    }

    /* Hide all carousel arrows on tablet - use native horizontal scroll */
    .carousel-arrow {
        display: none !important;
    }

    .why-wizard-frames {
        padding: 0;
    }

    .why-wizard-frames-wrapper {
        width: 100% !important;
        min-width: 0 !important;
        overflow-x: auto;
        overflow-y: hidden;
        clip-path: none;
        padding: 10px 0;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .why-wizard-frames-wrapper::-webkit-scrollbar {
        display: none;
    }

    .why-wizard-frames-inner {
        width: max-content;
        gap: 25px;
        padding: 0 20px;
    }

    .why-wizard-frame {
        width: 300px;
        min-width: 300px;
        max-width: 300px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .compliance-layout {
        width: 100%;
    }

    .compliance-carousel {
        width: 100%;
        flex-direction: row;
        padding: 0;
    }

    .compliance-carousel > .carousel-arrow {
        display: none;
    }

    .compliance-frames-wrapper {
        width: 100% !important;
        min-width: 0 !important;
        overflow-x: auto;
        overflow-y: hidden;
        clip-path: none;
        padding: 10px 7px;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .compliance-frames-wrapper::-webkit-scrollbar {
        display: none;
    }

    .compliance-frames-inner {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        width: max-content;
        gap: 25px;
        padding: 0 20px;
    }

    .compliance-frame {
        width: 280px;
        min-width: 280px;
        max-width: 280px;
        min-height: 380px;
        flex-shrink: 0;
        flex-direction: column;
        text-align: center;
        padding: 25px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .compliance-frame-icon {
        width: 100px;
        height: 100px;
    }

    .compliance-frame-title {
        font-size: 20px;
    }

    .compliance-frame-text {
        font-size: 15px;
    }

    .compliance-images {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .services-frames {
        padding: 0;
    }

    .services-frames-wrapper {
        width: 100% !important;
        min-width: 0 !important;
        overflow-x: auto;
        overflow-y: hidden;
        clip-path: none;
        padding: 10px 0;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .services-frames-wrapper::-webkit-scrollbar {
        display: none;
    }

    .services-frames-inner {
        width: max-content;
        gap: 25px;
        padding: 0 20px;
    }

    .service-frame {
        width: 300px;
        min-width: 300px;
        max-width: 300px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .setup-model-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        gap: 15px;
        max-width: 720px;
        margin: 0 auto;
    }

    .setup-model-row {
        display: contents;
    }

    .setup-model-item {
        width: calc(50% - 8px);
        max-width: none;
    }

    .tech-icons {
        gap: 25px;
    }

    .tech-icon-img {
        width: 60px;
        height: auto;
    }

    .tech-circles-carousel {
        flex-direction: row;
        padding: 0;
    }

    .tech-circles-wrapper {
        width: 100% !important;
        min-width: 0 !important;
        overflow-x: auto;
        overflow-y: hidden;
        clip-path: none;
        padding: 10px 0;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .tech-circles-wrapper::-webkit-scrollbar {
        display: none;
    }

    .tech-circles-inner {
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: max-content;
        gap: 25px;
        padding: 0 20px;
        margin-top: 0;
        align-items: center;
    }

    .tech-circle {
        width: 250px;
        min-width: 250px;
        height: 250px;
        min-height: 250px;
        flex-shrink: 0;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
    }

    .tech-circle:nth-child(2),
    .tech-circle:nth-child(3) {
        transform: translateY(0);
    }

    .tech-bottom-text {
        white-space: normal;
        padding: 0 20px;
        font-size: 14px;
        margin-top: 24px;
    }

    .platforms-grid {
        flex-wrap: nowrap;
        padding: 0;
    }

    .platforms-grid-wrapper {
        width: 100% !important;
        min-width: 0 !important;
        overflow-x: auto;
        overflow-y: hidden;
        clip-path: none;
        padding: 10px 0;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .platforms-grid-wrapper::-webkit-scrollbar {
        display: none;
    }

    .platforms-grid-inner {
        width: max-content;
        gap: 25px;
        padding: 0 20px;
    }

    .platform-logo {
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .platform-logo {
        width: 180px;
        height: 180px;
    }

    .platform-logo img {
        width: 120px;
        height: 75px;
    }

    .platform-name {
        font-size: 15px;
    }

    .providers-grid {
        padding: 0;
    }

    .providers-grid-wrapper {
        width: 100% !important;
        min-width: 0 !important;
        overflow-x: auto;
        overflow-y: hidden;
        clip-path: none;
        padding: 5px 0;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .providers-grid-wrapper::-webkit-scrollbar {
        display: none;
    }

    .providers-grid-inner {
        width: max-content;
        gap: 20px;
        padding: 0 20px;
    }

    .payments-grid {
        padding: 0;
    }

    .payments-grid-wrapper {
        width: 100% !important;
        min-width: 0 !important;
        overflow-x: auto;
        overflow-y: hidden;
        clip-path: none;
        padding: 5px 0;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .payments-grid-wrapper::-webkit-scrollbar {
        display: none;
    }

    .payments-grid-inner {
        width: max-content;
        gap: 20px;
        padding: 0 20px;
    }

    .payment-logo {
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .contact-form {
        max-width: 600px;
    }

    .btn-about {
        width: 260px !important;
        height: 48px;
        padding: 10px 60px;
        font-size: 16px;
    }

    .contact-logo {
        width: 155px;
        height: 50px;
        object-fit: contain;
        margin-right: 20px;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

/* === FORM VALIDATION === */
.form-group.error input,
.form-group.error textarea {
    border-color: var(--color-error);
    box-shadow: 0 0 10px 0 rgba(255, 107, 157, 0.3);
}

.form-group.error input:focus,
.form-group.error textarea:focus {
    border-color: var(--color-error);
    box-shadow: 0 0 10px 0 rgba(255, 107, 157, 0.5);
}

.form-error-message {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--color-error);
    margin-top: 4px;
    display: none;
}

.form-group.error .form-error-message {
    display: block;
}

.form-group.success input,
.form-group.success textarea {
    border-color: var(--color-purple-light);
    box-shadow: 0 0 10px 0 rgba(216, 129, 251, 0.3);
}

@media (max-width: 768px) {
    .header .container {
        height: 70px;
        padding: 10px 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 315px;
        height: auto;
        padding: 30px 16px;
        background-color: var(--color-bg-header);
        background-image: url('assets/backgrounds/frame_bg.webp');
        background-size: cover;
        background-position: center;
        border-radius: 20px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
        z-index: 1001;
        overflow-y: auto;
    }

    .nav::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 20px;
        padding: 1px;
        background: linear-gradient(180deg, var(--color-purple-light), var(--color-purple), var(--color-purple-dark), var(--color-purple-dark), var(--color-purple-bright), var(--color-purple-pale));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
        z-index: 0;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav::after {
        content: '';
        flex-grow: 1;
    }


    .nav-logo {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .nav-logo img {
        width: 118px;
        height: 38px;
        object-fit: contain;
        margin-right: 15px;
    }

    .nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 30px;
        right: 16px;
        width: 28px;
        height: 28px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 100;
    }

    .nav-close img {
        width: 28px;
        height: 28px;
        position: relative;
        top: -0.17px;
        left: -0.17px;
    }


    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0;
        position: relative;
        z-index: 1;
    }

    .nav-link {
        width: auto;
        height: 24px;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 0;
        text-align: center;
    }

    .nav > *:not(.nav-close) {
        position: relative;
        z-index: 1;
    }

    /* Hide More dropdown on mobile */
    .nav-more {
        display: none !important;
    }

    .hero {
        width: 100%;
        min-height: 517px;
        height: auto;
        padding: 280px 24px 30px 24px;
        gap: 10px;
        background-color: var(--color-bg-header);
        background-image:
            linear-gradient(180deg, transparent 20%, var(--color-bg-header) 100%),
            url('assets/backgrounds/mobile_bg.webp');
        background-size: auto, 200%;
        background-position: center, 40% -30px;
        background-repeat: no-repeat;
        align-items: center;
        justify-content: flex-start;
    }

    .hero-content {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .hero-title {
        width: 388px;
        max-width: 100%;
        height: auto;
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
        font-size: 31px;
        line-height: 100%;
        letter-spacing: 0;
        text-align: center;
    }

    .hero-subtitle {
        width: 388px;
        max-width: 100%;
        height: auto;
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
        font-size: 31px;
        line-height: 100%;
        letter-spacing: 0;
        text-align: center;
    }

    .hero-description {
        font-size: 13px;
        line-height: 1.5;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }

    .hero-description br {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Section titles mobile */
    .who-we-are-title,
    .why-wizard-title,
    .licensing-title,
    .where-we-are-title,
    .services-title,
    .setup-model-title,
    .careers-title,
    .compliance-title,
    .technology-title,
    .platforms-title,
    .our-platforms-title,
    .payment-methods-title {
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
        font-size: 31px;
        line-height: 100%;
        letter-spacing: 0;
        text-align: center;
    }

    /* Contact title mobile - specific dimensions */
    .contact-title {
        width: 172px;
        height: 41px;
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
        font-size: 31px;
        line-height: 100%;
        letter-spacing: 0;
        text-align: center;
    }

    /* Sections mobile - consistent 20px gap between title and content */
    .who-we-are,
    .why-wizard,
    .licensing,
    .where-we-are,
    .services,
    .setup-model,
    .careers,
    .compliance,
    .technology,
    .platforms,
    .our-platforms,
    .payment-methods,
    .contact {
        gap: 20px !important;
        padding-top: 20px;
        padding-bottom: 10px;
        padding-left: 24px;
        padding-right: 24px;
        min-height: auto;
    }

    /* Reset text margins on mobile - only section gap should apply */
    .who-we-are-text,
    .why-wizard-text,
    .why-wizard-subtext,
    .where-we-are-text,
    .setup-model-text,
    .careers-text,
    .compliance-text,
    .technology-text,
    .platforms-text {
        margin: 0 !important;
    }

    .technology-text {
        font-size: 16px;
    }

    /* Hide all carousel arrows on mobile - use native horizontal scroll */
    .carousel-arrow {
        display: none !important;
    }

    /* Why Wizard mobile */
    .why-wizard {
        padding: 20px 24px 10px;
    }

    .why-wizard-text,
    .why-wizard-subtext {
        width: 388px;
        max-width: 100%;
        height: auto;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 160%;
        letter-spacing: 0.1em;
        text-align: center;
    }

    .why-wizard-frames {
        padding: 0;
        width: calc(100% + 48px);
        margin-left: -24px;
    }

    .why-wizard-frames-wrapper {
        display: block !important;
        flex: none !important;
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        clip-path: none !important;
        padding: 15px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
    }

    .why-wizard-frames-wrapper::-webkit-scrollbar {
        display: none;
    }

    .why-wizard-frames-inner {
        transform: none !important;
        width: max-content !important;
        gap: 20px;
        padding: 0 24px;
    }

    .why-wizard-frame {
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .why-wizard-frame {
        width: 250px;
        min-width: 250px;
        height: auto;
        min-height: 262px;
        border-radius: 15px;
        padding: 25px 20px;
        gap: 10px;
        flex-direction: column;
        justify-content: center;
        overflow: visible;
    }

    .frame-label {
        width: auto;
        max-width: 100%;
        height: auto;
        font-size: 19px;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .why-wizard-bottom-text {
        width: 388px;
        max-width: 100%;
        height: auto;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 160%;
        letter-spacing: 0.1em;
        text-align: center;
        margin: 0 auto;
    }

    /* Services mobile */
    .services {
        padding: 20px 24px 10px;
    }

    .services-frames {
        padding: 0;
        width: calc(100% + 48px);
        margin-left: -24px;
    }

    .services-frames-wrapper {
        display: block !important;
        flex: none !important;
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        clip-path: none !important;
        padding: 15px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
    }

    .services-frames-wrapper::-webkit-scrollbar {
        display: none;
    }

    .services-frames-inner {
        transform: none !important;
        width: max-content !important;
        gap: 20px;
        padding: 0 24px;
    }

    .service-frame {
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .service-frame {
        width: 250px;
        min-width: 250px;
        max-width: 250px;
        height: auto;
        min-height: 374px;
        max-height: none;
        padding: 10px 20px;
        gap: 10px;
        border-radius: 15px;
        justify-content: center;
    }

    .service-frame-icon {
        width: 130px;
        min-width: 130px;
        height: 130px;
        min-height: 130px;
    }

    .service-frame-label {
        width: auto;
        max-width: 100%;
        height: auto;
        font-size: 19px;
        align-items: center;
        justify-content: center;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .service-frame-description {
        width: auto;
        max-width: 100%;
        font-size: 15px;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .who-we-are-text {
        width: 348px;
        max-width: 100%;
        height: auto;
        font-family: 'Inter', sans-serif;
        font-weight: 300;
        font-size: 15px;
        line-height: 160%;
        letter-spacing: 0.1em;
        text-align: center;
    }

    .who-we-are-text br {
        display: none;
    }

    .who-we-are-text br + br {
        display: block;
    }

    .who-we-are-text-block {
        width: 100%;
        max-width: 388px;
        height: auto;
        flex-direction: column;
        border-radius: 15px;
        padding: 20px;
        gap: 16px;
    }

    .integrations-img {
        width: 200px;
        height: 200px;
    }

    .who-we-are-tagline {
        font-size: 24px;
        text-align: center;
    }

    /* Licensing mobile */
    .licensing-text {
        gap: 0;
        margin: 0 !important;
    }

    /* Where We Are mobile */
    .where-we-are-text {
        gap: 0;
        margin-top: -5px !important;
    }

    /* Compliance & Security mobile - carousel */
    .compliance {
        padding: 20px 24px 10px;
    }

    .compliance-layout {
        width: 100%;
        flex-direction: column;
        gap: 20px;
    }

    .compliance-carousel {
        width: calc(100% + 48px);
        margin-left: -24px;
        padding: 0;
    }

    .compliance-frames-wrapper {
        display: block !important;
        flex: none !important;
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        clip-path: none !important;
        padding: 15px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
    }

    .compliance-frames-wrapper::-webkit-scrollbar {
        display: none;
    }

    .compliance-frames-inner {
        transform: none !important;
        width: max-content !important;
        gap: 20px;
        padding: 0 24px;
    }

    .compliance-frame {
        width: 250px;
        min-width: 250px;
        max-width: 250px;
        height: auto;
        min-height: 374px;
        flex-shrink: 0;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 15px 20px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .compliance-frame-icon {
        width: 100px;
        height: 100px;
    }

    .compliance-frame-title {
        font-size: 24px;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .compliance-frame-text {
        font-size: 15px;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .compliance-images {
        display: block;
        width: 388px;
        max-width: 100%;
        height: 252.81px;
        margin: 0 auto;
    }

    .compliance-shield {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Setup Model mobile - vertical stack */
    .setup-model-grid {
        width: 100%;
        padding: 10px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .setup-model-row {
        display: contents;
    }

    .setup-model-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 388px;
        max-width: 100%;
        border-radius: 100px;
        padding: 10px 20px;
        gap: 10px;
        justify-content: flex-start;
    }

    /* Mobile card order */
    .setup-model-row:nth-child(1) .setup-model-item:nth-child(1) { order: 1; } /* Logo */
    .setup-model-row:nth-child(1) .setup-model-item:nth-child(2) { order: 4; } /* Game aggregation */
    .setup-model-row:nth-child(1) .setup-model-item:nth-child(3) { order: 7; } /* SEO */
    .setup-model-row:nth-child(2) .setup-model-item:nth-child(1) { order: 2; } /* Web dev */
    .setup-model-row:nth-child(2) .setup-model-item:nth-child(2) { order: 5; } /* Payments */
    .setup-model-row:nth-child(2) .setup-model-item:nth-child(3) { order: 8; } /* Support */
    .setup-model-row:nth-child(3) .setup-model-item:nth-child(1) { order: 3; } /* Casino */
    .setup-model-row:nth-child(3) .setup-model-item:nth-child(2) { order: 6; } /* CRM */
    .setup-model-row:nth-child(3) .setup-model-item:nth-child(3) { order: 9; } /* Licensing */

    .setup-model-item-icon {
        width: 41.67px;
        height: 41.68px;
        min-width: 41.67px;
        min-height: 41.68px;
    }

    .setup-model-item-text {
        flex: 1;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 18px;
        line-height: 100%;
        letter-spacing: 0.1em;
        word-wrap: break-word;
        white-space: normal;
    }

    /* Careers mobile */
    .careers-subtitle {
        width: 100%;
        max-width: 388px;
        height: auto;
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
        font-size: 21px;
        line-height: 130%;
        letter-spacing: 0;
        text-align: center;
    }

    /* Technology icons mobile */
    .tech-icon-img {
        width: 57.5px;
        height: 58.97px;
        position: relative;
        top: 0.61px;
        left: 1.25px;
    }

    /* Technology circles mobile - native scroll */
    .technology {
        padding: 20px 24px 10px;
    }

    .technology-title,
    .technology-text {
        padding: 0;
    }

    .tech-circles-carousel {
        flex-direction: row;
        padding: 0;
        width: calc(100% + 48px);
        margin-left: -24px;
    }

    .tech-circles-wrapper {
        display: block !important;
        flex: none !important;
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        clip-path: none !important;
        padding: 10px 0;
        scroll-padding-left: 24px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
    }

    .tech-circles-wrapper::-webkit-scrollbar {
        display: none;
    }

    .tech-circles-inner {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start;
        transform: none !important;
        width: max-content !important;
        gap: 20px;
        padding: 15px 24px;
        margin-top: 0;
        align-items: center;
    }

    .tech-circle {
        width: 260px;
        min-width: 260px;
        height: auto;
        min-height: 260px;
        flex-shrink: 0;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
    }

    .tech-circle:nth-child(2),
    .tech-circle:nth-child(3) {
        transform: translateY(0);
    }

    .tech-bottom-text {
        width: 388px;
        max-width: 100%;
        height: auto;
        font-family: 'Inter', sans-serif;
        font-weight: 300;
        font-size: 16px;
        line-height: 160%;
        letter-spacing: 0.1em;
        text-align: center;
        white-space: normal;
        margin-top: 20px;
        padding: 0;
    }

    /* Active Platforms mobile - native scroll */
    .platforms {
        padding: 20px 24px 10px;
    }

    .platforms-grid {
        flex-direction: row;
        flex-wrap: nowrap;
        padding: 0;
        width: calc(100% + 48px);
        margin-left: -24px;
    }

    .platforms-grid-wrapper {
        display: block !important;
        flex: none !important;
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        clip-path: none !important;
        padding: 15px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
    }

    .platforms-grid-wrapper::-webkit-scrollbar {
        display: none;
    }

    .platforms-grid-inner {
        transform: none !important;
        width: max-content !important;
        gap: 20px;
        padding: 0 24px;
    }

    .platform-logo {
        width: 250px;
        min-width: 250px;
        max-width: 250px;
        height: auto;
        min-height: 251px;
        aspect-ratio: 250 / 251;
        flex-shrink: 0;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        background: url('assets/backgrounds/why_wizard_matrix_bg.webp');
        background-size: cover;
        background-position: center;
    }

    /* Our Platforms (Providers) mobile */
    .our-platforms,
    .payment-methods {
        padding: 20px 24px 10px;
        min-height: auto;
    }

    /* Our Platforms (Providers) mobile - native scroll */
    .providers-grid {
        padding: 0;
        width: calc(100% + 48px);
        margin-left: -24px;
    }

    .providers-grid-wrapper {
        display: block !important;
        flex: none !important;
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        clip-path: none !important;
        padding: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
    }

    .providers-grid-wrapper::-webkit-scrollbar {
        display: none;
    }

    .providers-grid-inner {
        transform: none !important;
        width: max-content !important;
        gap: 15px;
        padding: 0 24px;
    }

    .provider-logo {
        width: 132px;
        min-width: 132px;
        max-width: 132px;
        height: 50px;
        min-height: 50px;
        max-height: 50px;
        scroll-snap-align: center;
        overflow: hidden;
    }

    .provider-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* Payment Methods mobile - native scroll */
    .payments-grid {
        padding: 0;
        width: calc(100% + 48px);
        margin-left: -24px;
    }

    .payments-grid-wrapper {
        display: block !important;
        flex: none !important;
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        clip-path: none !important;
        padding: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
    }

    .payments-grid-wrapper::-webkit-scrollbar {
        display: none;
    }

    .payments-grid-inner {
        transform: none !important;
        width: max-content !important;
        gap: 15px;
        padding: 0 24px;
    }

    .payment-logo {
        width: 102px;
        min-width: 102px;
        max-width: 102px;
        height: 40px;
        min-height: 40px;
        max-height: 40px;
        scroll-snap-align: center;
        overflow: hidden;
    }

    .payment-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .mobile-only {
        display: block;
    }

    .contact {
        padding: 20px 24px 10px;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }

    .contact-content {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
        padding: 0 !important;
        align-items: stretch !important;
    }

    .contact .form-row {
        grid-template-columns: 1fr !important;
        padding: 0 !important;
        margin: 0 !important;
        gap: 8px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .contact .form-row .form-group {
        width: 100% !important;
        padding: 0 !important;
        margin-bottom: 16px !important;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .contact .contact-form > .form-group {
        padding: 0 !important;
        margin-bottom: 24px !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    /* Contact title mobile centering */
    .contact-title {
        width: 172px;
        height: 41px;
        text-align: center;
    }

    /* Contact buttons and logo mobile */
    .contact-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: auto;
        margin-top: -22px;
    }

    .contact-logo {
        width: 155px;
        height: 50px;
        object-fit: contain;
        display: block;
        margin-right: 20px;
    }

    /* About Us button mobile */
    .contact .btn-about {
        width: calc(100vw - 36px) !important;
        max-width: calc(100vw - 36px) !important;
        height: 64px;
    }

    /* Contact form labels mobile */
    .contact .form-group label {
        width: 388px;
        max-width: 100%;
        height: 19px;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0;
    }

    /* Contact form textboxes mobile */
    .contact .form-group input,
    .contact .form-row .form-group input {
        width: calc(100vw - 36px) !important;
        max-width: calc(100vw - 36px) !important;
        height: 64px;
        border-radius: 10px;
        border: 1px solid var(--color-text-pink);
        padding: 20px;
        box-sizing: border-box !important;
    }

    .contact .form-group textarea {
        width: calc(100vw - 36px) !important;
        max-width: calc(100vw - 36px) !important;
        height: 99px;
        border-radius: 10px;
        border: 1px solid var(--color-text-pink);
        padding: 20px;
        box-sizing: border-box !important;
    }

    /* Send Message button mobile */
    .contact-form .btn-primary {
        width: 260px;
        height: 44px;
        border-radius: 10px;
        padding: 10px 60px 10px 60px;
        gap: 10px;
        margin: 0 auto;
    }

    /* Footer mobile - 3 lines */
    .footer-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-align: center;
    }

    .footer .copyright,
    .footer .footer-nav,
    .footer .footer-email {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
    }

}
