@font-face {
    font-family: 'Changa One';
    font-style: italic;
    font-weight: 400;
    src: url(/assets/fonts/ChangaOne-Italic.ttf) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Changa One';
    font-style: normal;
    font-weight: 400;
    src: url(/assets/fonts/ChangaOne-Regular.ttf) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --google-blue: #4285f4;
    --google-red: #ea4335;
    --google-yellow: #fbbc04;
    --google-green: #34a853;
    --primary-50: #e8f0fe;
    --primary-500: #4285f4;
    --primary-600: #1a73e8;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f4;
    --gray-200: #e8eaed;
    --gray-600: #80868b;
    --gray-700: #5f6368;
    --gray-800: #3c4043;
    --gray-900: #202124;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --easing-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --easing-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: #fff;
    overflow-x: hidden;
    
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
}


body.loading {
    overflow: hidden;
}


.preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 50%, #fff5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s, visibility 0.6s;
    overflow: hidden;
}


.preloader::before,
.preloader::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: preloaderOrb 8s ease-in-out infinite;
}

.preloader::before {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    top: -100px;
    right: -100px;
}

.preloader::after {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #fbbc04, #ea4335);
    bottom: -80px;
    left: -80px;
    animation-delay: -4s;
}

@keyframes preloaderOrb {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.1) translate(20px, -20px);
    }
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.logo-image {
    width: 120px;
    height: auto;
    opacity: 0;
    transform: scale(0.3);
    filter: drop-shadow(0 10px 30px rgba(66, 133, 244, 0.3));
    animation: logoEnter 1.2s var(--easing-bounce) 0.3s forwards;
}

@keyframes logoEnter {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

    70% {
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.logo-image.move-left {
    animation: logoMoveLeft 0.8s var(--easing-smooth) forwards;
}

@keyframes logoMoveLeft {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.brand-text {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 300;
    color: #202124;
    letter-spacing: -1px;
    white-space: nowrap;
    opacity: 0;
    margin-left: 0px;
    clip-path: inset(0 100% 0 0);
}

.brand-text.show {
    animation: brandTextShow 0.8s var(--easing-smooth) forwards;
}

@keyframes brandTextShow {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }

    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

.brand-try,
.brand-to,
.brand-start {
    color: #202124;
}


.loader-progress {
    margin-top: 40px;
    width: 200px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
    height: 20px;
}

.loader-progress.show {
    opacity: 1;
    transform: translateY(0);
}

.progress-track {
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #4285f4, #34a853, #fbbc04, #ea4335);
    background-size: 300% 100%;
    border-radius: 4px;
    transition: width 0.3s ease-out;
    animation: progressGradient 2s linear infinite;
}

@keyframes progressGradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.progress-text {
    margin-top: 12px;
    font-size: 13px;
    color: #5f6368;
    text-align: center;
    font-weight: 500;
}


.main-content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s, visibility 0.8s;
}

.main-content.visible {
    opacity: 1;
    visibility: visible;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo {
    width: 40px;
    transition: transform 0.3s;
}

.nav-brand:hover .nav-logo {
    transform: scale(1.1) rotate(-5deg);
}

.nav-brand-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--google-blue), var(--google-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 24px;
    transition: all 0.15s;
}

.nav-link:hover {
    color: var(--primary-600);
    background: var(--primary-50);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--gray-600);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
}

.lang-selector:hover {
    background: var(--gray-100);
}

.dropdown-arrow {
    opacity: 0.6;
}

.btn-login {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--primary-500);
    border: none;
    padding: 10px 24px;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
}

.btn-login:hover {
    background: var(--primary-600);
    transform: translateY(-1px);
}


.hero {
    min-height: 100vh;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 50%, #e0e7ff 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(66, 133, 244, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 188, 4, 0.25) 0%, transparent 70%);
    bottom: -100px;
    left: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(234, 67, 53, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(0, 20px) scale(0.95);
    }

    75% {
        transform: translate(-30px, -10px) scale(1.02);
    }
}


.hero {
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    display: flex;
    gap: 10px;
    align-items: center;
    min-height: calc(100vh - 72px);
    position: relative;
    z-index: 1;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    animation: fadeInUp 1s var(--easing-smooth) 0.5s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 900;
    line-height: 0.9;
    color: var(--gray-900);
    margin-bottom: 24px;
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, var(--google-blue) 0%, #00c6ff 50%, var(--google-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

.hero-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 40px;
    max-width: 500px;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 28px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-primary {
    color: #fff;
    background: var(--primary-500);
    box-shadow: 0 4px 16px rgba(66, 133, 244, 0.35);
}

.btn-primary:hover {
    background: var(--primary-600);
    transform: translateY(-2px);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    color: var(--primary-600);
    background: transparent;
    border: 2px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, var(--google-blue), var(--google-green));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.btn-secondary:hover {
    transform: translateY(-2px);
}


.hero-visual {
    position: relative;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s var(--easing-smooth) 0.8s backwards;
}


.hero-logo-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.15;
}

.hero-logo-animated {
    width: 110px;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(66, 133, 244, 0.3)) blur(1px);
    animation: logoFloat 6s ease-in-out infinite;
    position: relative;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(1deg);
    }

    50% {
        transform: translateY(-8px) rotate(0deg);
    }

    75% {
        transform: translateY(-20px) rotate(-1deg);
    }
}

@keyframes logoAppear {
    from {
        opacity: 0;
        transform: scale(0.5) translateY(50px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}


.hero-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle,
            rgba(66, 133, 244, 0.4) 0%,
            rgba(52, 168, 83, 0.2) 40%,
            transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: glowPulse 3s ease-in-out infinite, logoAppear 1s ease-out 2.8s backwards;
    z-index: 1;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.15);
    }
}


.hero-logo-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
    z-index: 0;
}

.hero-logo-particles::before,
.hero-logo-particles::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    border-radius: 50%;
    animation: particleFloat 5s ease-in-out infinite;
}

.hero-logo-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-logo-particles::after {
    top: 70%;
    right: 15%;
    animation-delay: 2.5s;
    background: linear-gradient(135deg, #fbbc04, #ea4335);
}

@keyframes particleFloat {

    0%,
    100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }

    10% {
        opacity: 1;
        transform: translateY(-10px) scale(1);
    }

    90% {
        opacity: 1;
        transform: translateY(-80px) scale(0.8);
    }

    100% {
        opacity: 0;
        transform: translateY(-100px) scale(0);
    }
}


.hero-character {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100vh;
    min-height: 100%;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    animation: characterAppear 1s ease-out 0.5s forwards;
}


.section-character {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100vh;
    min-height: 100%;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    animation: characterAppear 1s ease-out 0.3s forwards;
}

@keyframes characterAppear {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


.feature-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.feature-section .hero-container {
    min-height: 100vh;
}


.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, #f0f9ff 100%);
    pointer-events: none;
    z-index: 2;
}


.providers-marquee {
    background: #006eff;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.providers-marquee::before,
.providers-marquee::after {
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.providers-marquee::before {
    left: 0;
    background: #000;
}

.providers-marquee::after {
    right: 0;
    background: #000;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: fit-content;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
}

.provider-logo {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.provider-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.dashboard-section {
    background: linear-gradient(180deg, #0f0f14 0%, #1a1a24 50%, #12121a 100%);
}

.dashboard-section .hero-title {
    color: #f0f0f5;
}

.dashboard-section .hero-description {
    color: #9ca3af;
}

.dashboard-section .feature-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #e5e7eb;
}

.dashboard-container {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-direction: column;
}


.feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.feature-badge svg {
    color: #7c3aed;
}


.screenshots-showcase {
    perspective: 1000px;
    padding: 60px 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.screenshots-stack {
    position: relative;
    width: 600px;
    height: 450px;
    transform-style: preserve-3d;
}

.screenshot-card {
    position: absolute;
    width: 450px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-label {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}


.screenshot-card[data-index="1"] {
    left: 50%;
    bottom: 20px;
    z-index: 4;
    transform: translateX(-50%) rotate(-6deg);
}

.screenshot-card[data-index="2"] {
    left: 50%;
    bottom: 30px;
    z-index: 3;
    transform: translateX(-40%) rotate(-2deg);
}

.screenshot-card[data-index="3"] {
    left: 50%;
    bottom: 40px;
    z-index: 2;
    transform: translateX(-60%) rotate(2deg);
}

.screenshot-card[data-index="4"] {
    left: 50%;
    bottom: 50px;
    z-index: 1;
    transform: translateX(-50%) rotate(6deg);
}


.screenshot-card:hover {
    transform: translateX(-50%) translateY(-40px) rotate(0deg) scale(1.08) !important;
    z-index: 10;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}


.screenshot-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.screenshot-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}


.cards-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 10;
}

.stack-row {
    display: flex;
    gap: 16px;
    justify-content: center;
}


.floating-card {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
    transition: all 0.3s ease;
    animation: cardAppear 0.6s ease-out backwards;
}

.stack-row:nth-child(1) .floating-card {
    animation-delay: 0.8s;
}

.stack-row:nth-child(2) .floating-card:nth-child(1) {
    animation-delay: 1s;
}

.stack-row:nth-child(2) .floating-card:nth-child(2) {
    animation-delay: 1.1s;
}

.stack-row:nth-child(3) .floating-card:nth-child(1) {
    animation-delay: 1.2s;
}

.stack-row:nth-child(3) .floating-card:nth-child(2) {
    animation-delay: 1.3s;
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.floating-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-green {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: var(--google-green);
}

.icon-purple {
    background: linear-gradient(135deg, #e2d9f3, #d4c4ec);
    color: #7c3aed;
}

.icon-blue {
    background: linear-gradient(135deg, #d1e7ff, #b6d4fe);
    color: var(--google-blue);
}

.icon-teal {
    background: linear-gradient(135deg, #d1f2eb, #a7e8d8);
    color: #14b8a6;
}

.icon-orange {
    background: linear-gradient(135deg, #ffedd5, #fed7aa);
    color: #f97316;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


.features {
    padding: 100px 0;
    background: #fff;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-600);
    background: var(--primary-50);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
    overflow: hidden;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--google-blue), var(--google-green));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card:hover {
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-600);
}


.stats {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, #fff 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 32px 16px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    color: var(--gray-900);
    display: inline;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-500);
    display: inline;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-600);
    margin-top: 12px;
}


.cta {
    padding: 100px 0;
    background: #fff;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-600) 0%, #6366f1 100%);
    border-radius: 32px;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 450px;
}

.cta-actions {
    position: relative;
    z-index: 1;
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
    background: #fff;
    color: var(--primary-600);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-large:hover {
    background: var(--gray-50);
    transform: translateY(-3px);
}


.footer {
    background: var(--gray-900);
    padding: 60px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 36px;
    filter: brightness(1.2);
}

.footer-brand-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 14px;
    color: #9aa0a6;
    text-decoration: none;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copyright {
    font-size: 14px;
    color: #80868b;
}


@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-description {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

    .features-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 60px 40px;
    }

    .cta-content p {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 64px;
    }

    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-logo-3d img {
        width: 180px;
    }

    .section-title {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 48px;
    }

    .footer-container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .brand-text {
        font-size: 32px;
    }

    .logo-image {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .floating-card {
        display: none;
    }

    .card-uptime,
    .card-slots {
        display: flex;
    }

    .cta-card {
        padding: 40px 24px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .brand-text {
        font-size: 24px;
    }

    .logo-image {
        width: 50px;
    }
}


.screenshot-carousel {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    border-radius: 16px;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 350px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: translateX(100px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border-radius: 16px;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 2;
}

.carousel-slide.prev {
    opacity: 0;
    transform: translateX(-100px) scale(0.95);
}

.carousel-slide:hover {
    transform: scale(1.02);
}


.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    z-index: 10;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn svg {
    transition: transform 0.2s;
}

.carousel-prev:hover svg {
    transform: translateX(-2px);
}

.carousel-next:hover svg {
    transform: translateX(2px);
}


.carousel-dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(124, 58, 237, 0.3);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    border-color: #7c3aed;
    background: rgba(124, 58, 237, 0.2);
}

.carousel-dot.active {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-color: #7c3aed;
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.5);
}


@media (max-width: 768px) {
    .screenshot-carousel {
        gap: 10px;
        padding: 0 10px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-track {
        height: 250px;
    }

    .carousel-dots {
        bottom: -35px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .carousel-track {
        height: 200px;
    }
}


.benefits-marquee {
    background: linear-gradient(135deg, #1a1a24, #0f0f14);
    padding: 50px 0;
    overflow: hidden;
    position: relative;
}

.benefits-marquee::before,
.benefits-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.benefits-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #1a1a24, transparent);
}

.benefits-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, #0f0f14, transparent);
}

.marquee-reverse {
    animation: marqueeReverse 25s linear infinite;
}

@keyframes marqueeReverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.marquee-item {
    font-size: 72px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    padding: 8px 24px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-family: 'Changa One';
    text-transform: uppercase;
    cursor: pointer !important;
}

.marquee-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}


.partnership-section {
    background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 50%, #fed7aa 100%);
}

.partnership-container {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-direction: column;
}


.partnership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
    max-width: 600px;
}

.partnership-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(249, 115, 22, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.partnership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.3);
}

.partnership-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.partnership-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.partnership-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}


.partnership-cta {
    margin-top: 40px;
}

.partnership-btn {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.35);
    text-decoration: none;
}

.partnership-btn:hover {
    background: linear-gradient(135deg, #d97706, #dc2626);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.45);
}


@media (max-width: 768px) {
    .partnership-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .marquee-item {
        font-size: 14px;
        padding: 6px 16px;
    }
}

@media (max-width: 480px) {
    .partnership-card {
        padding: 20px;
    }

    .partnership-icon {
        width: 48px;
        height: 48px;
    }

    .partnership-icon svg {
        width: 24px;
        height: 24px;
    }
}





.partnership-section {
    background: linear-gradient(135deg, #fef3e2 0%, #fde4cf 50%, #ffecd2 100%);
    position: relative;
    overflow: hidden;
}

.partnership-section .hero-title {
    color: #1a1a2e;
}

.partnership-section .hero-description {
    color: #4a4a68;
}

.partnership-container {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 10;
}


.section-bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    min-width: 100%;
    max-height: 959px;
    object-fit: cover;
    z-index: 0;
    opacity: 0.85;
    display: block;
}





.contact-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    padding: 0 20px;
    flex-direction: column;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.06),
        0 1px 2px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 280px;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.contact-card--primary::before {
    background: linear-gradient(135deg, #4285f4 0%, #1a73e8 100%);
}

.contact-card--software::before {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.contact-card--gaming::before {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.contact-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.contact-card__icon svg {
    width: 20px;
    height: 20px;
}

.contact-card--primary .contact-card__icon {
    background: linear-gradient(135deg, #4285f4, #1a73e8);
    color: #fff;
    box-shadow: 0 2px 10px rgba(66, 133, 244, 0.3);
}

.contact-card--software .contact-card__icon {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.3);
}

.contact-card--gaming .contact-card__icon {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.contact-card:hover .contact-card__icon {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(-5deg);
}

.contact-card__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 1;
}

.contact-card__label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
    transition: color 0.4s ease;
}

.contact-card:hover .contact-card__label {
    color: rgba(255, 255, 255, 0.8);
}

.contact-card__username {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    letter-spacing: -0.3px;
    transition: color 0.4s ease;
}

.contact-card:hover .contact-card__username {
    color: #fff;
}

.contact-card__arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.contact-card__arrow svg {
    width: 14px;
    height: 14px;
}

.contact-card:hover .contact-card__arrow {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateX(4px);
}


.contact-cta {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.contact-cta__pulse {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #34a853, #4285f4);
    border-radius: 50%;
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(52, 168, 83, 0.4);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.2);
        box-shadow: 0 0 0 8px rgba(52, 168, 83, 0);
    }
}

.contact-cta__text {
    font-size: 15px;
    font-weight: 500;
    color: #4a4a68;
}


@media (max-width: 900px) {
    .contact-cards {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 100%;
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 16px 20px;
        min-width: unset;
        gap: 12px;
    }

    .contact-card__icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .contact-card__icon svg {
        width: 26px;
        height: 26px;
    }

    .contact-card__username {
        font-size: 17px;
    }

    .contact-card__label {
        font-size: 11px;
    }

    .contact-card__arrow {
        width: 36px;
        height: 36px;
    }

    .contact-cta {
        padding: 12px 20px;
        margin: 32px 16px 0;
    }

    .contact-cta__text {
        font-size: 13px;
        text-align: center;
    }
}