@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00d4ff;
    --secondary: #ff0080;
    --accent: #7c3aed;
    --dark: #0a0a0a;
    --light: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Result Page Styles */
.result-page * {
    font-family: 'Etude Noire', sans-serif;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    -webkit-touch-callout: none !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.result-page {
    width: 100vw;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: auto;
    background: #0a0a0a;
    padding: 24px 0;
}

.result-page .bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background: radial-gradient(circle at 25% 25%, #00d4ff22 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, #ff008022 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, #7c3aed22 0%, transparent 50%),
                linear-gradient(45deg, #0a0a0a, #1a1a2e, #0a0a0a);
    animation: backgroundShift 20s ease-in-out infinite;
    pointer-events: none;
}

.result-page .gradient-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.result-page .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.result-page .gradient-orb:nth-child(1) {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    top: -10%;
    left: -10%;
    animation: float1 15s ease-in-out infinite;
}

.result-page .gradient-orb:nth-child(2) {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ff0080, #00d4ff);
    bottom: -15%;
    right: -15%;
    animation: float2 20s ease-in-out infinite;
}

.result-page .gradient-orb:nth-child(3) {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #7c3aed, #ff0080);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float3 18s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, 40px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, -30px) scale(1.15); }
    66% { transform: translate(20px, -40px) scale(0.85); }
}

@keyframes float3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.result-page .centered-content {
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.result-page .result-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.result-page .result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 32px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 50%,
        rgba(0, 212, 255, 0.03) 100%
    );
    pointer-events: none;
    z-index: -1;
}

.result-page .spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(0, 212, 255, 0.2);
    border-top-color: #00d4ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.result-page .loading-state h2 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.result-page .success-icon,
.result-page .error-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: scaleIn 0.5s ease-out;
}

.result-page .success-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.result-page .error-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

@keyframes scaleIn {
    from {
        transform: scale(0) rotate(0deg);
    }
    to {
        transform: scale(1) rotate(360deg);
    }
}

.result-page .result-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-align: center;
}

.result-page .result-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
}

.result-page .countdown-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin: 16px 0 24px;
}

.result-page .status-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    text-align: center;
    font-weight: 600;
}

.result-page .info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin: 24px 0;
    max-width: 100%;
}

@media (min-width: 501px) {
    .result-page .info-blocks {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .result-page .info-block.full-width {
        grid-column: 1 / -1;
    }
}

.result-page .info-block {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.result-page .info-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 50%
    );
    pointer-events: none;
    z-index: 0;
}

.result-page .info-block > * {
    position: relative;
    z-index: 1;
}

.result-page .info-block:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.result-page .info-block.full-width {
    grid-column: 1 / -1;
}

.result-page .info-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.result-page .info-value {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.result-page .message-box {
    border-radius: 16px;
    padding: 16px;
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.result-page .message-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 50%
    );
    pointer-events: none;
    z-index: 0;
}

.result-page .message-box > * {
    position: relative;
    z-index: 1;
}

.result-page .message-box.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    margin-top: 6px;
}

.result-page .message-box.info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.result-page .message-box.warning {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    justify-content: center;
}

.result-page .message-box.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    justify-content: center;
}

.result-page .message-icon {
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
}

.result-page .message-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.3;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.result-page .message-title {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.result-page .message-subtitle {
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
}

.result-page .message-box.warning .message-text,
.result-page .message-box.error .message-text {
    text-align: center;
    width: 100%;
    font-weight: 600;
}

@media (max-width: 500px) {
    .result-page {
        padding: 16px 0;
    }

    .result-page .result-card {
        padding: 32px 24px;
    }
    
    .result-page .result-title {
        font-size: 24px;
    }
    
    .result-page .success-icon,
    .result-page .error-icon {
        width: 70px;
        height: 70px;
    }
    
    .result-page .success-icon svg,
    .result-page .error-icon svg {
        width: 56px;
        height: 56px;
    }
    
    .result-page .info-blocks {
        grid-template-columns: 1fr !important;
    }
    
    .result-page .info-value {
        font-size: 16px;
    }
}

/* Main Page Styles */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(circle at 25% 25%, #00d4ff22 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, #ff008022 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, #7c3aed22 0%, transparent 50%),
                linear-gradient(45deg, #0a0a0a, #1a1a2e, #0a0a0a);
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(180deg); }
}

.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
    background-image: 
        linear-gradient(90deg, transparent 79px, rgba(0, 212, 255, 0.1) 81px, transparent 82px),
        linear-gradient(rgba(0, 212, 255, 0.05) 0.5px, transparent 0.5px);
    background-size: 80px 80px;
    animation: meshMove 30s linear infinite;
}

@keyframes meshMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(80px) translateY(80px); }
}

.orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 20s ease-in-out infinite;
}

.orb:nth-child(1) {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb:nth-child(2) {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    top: 60%;
    right: 10%;
    animation-delay: -7s;
}

.orb:nth-child(3) {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--accent), var(--secondary));
    bottom: 20%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    padding: 15px 0;
    background: rgba(10, 10, 10, 0.95);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoSpin 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    background: transparent;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.nav-menu a:hover::before {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 40px;
}

.hero-content {
    max-width: 900px;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    backdrop-filter: blur(20px);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-badge i {
    color: var(--primary);
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--light) 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 50px;
    opacity: 0.8;
    line-height: 1.5;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: cardFloat3D 12s ease-in-out infinite;
    transform-style: preserve-3d;
}

.floating-card i {
    font-size: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.floating-card:nth-child(1) {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 25%;
    right: 12%;
    animation-delay: -3s;
}

.floating-card:nth-child(3) {
    bottom: 25%;
    left: 6%;
    animation-delay: -6s;
}

.floating-card:nth-child(4) {
    bottom: 15%;
    right: 10%;
    animation-delay: -9s;
}

.floating-card:nth-child(5) {
    top: 50%;
    left: 2%;
    animation-delay: -2s;
}

.floating-card:nth-child(6) {
    top: 60%;
    right: 4%;
    animation-delay: -5s;
}

@keyframes cardFloat3D {
    0%, 100% { 
        transform: translateY(0) translateX(0) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    25% { 
        transform: translateY(-30px) translateX(15px) rotateX(10deg) rotateY(15deg) rotateZ(5deg);
    }
    50% { 
        transform: translateY(-15px) translateX(-20px) rotateX(-5deg) rotateY(-10deg) rotateZ(-3deg);
    }
    75% { 
        transform: translateY(-25px) translateX(10px) rotateX(8deg) rotateY(12deg) rotateZ(4deg);
    }
}

.btn {
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 60px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: var(--glass);
    color: var(--light);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

a.btn.btn-secondary1 {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--light);
    margin-top: 50px;
}

.features {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    opacity: 0.7;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.feature-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
    color: white;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--light);
}

.feature-card p {
    opacity: 0.8;
    line-height: 1.6;
    font-size: 16px;
}

.stats {
    padding: 120px 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--glass) 0%, transparent 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    max-width: 1000px;
    margin: 60px auto 0;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 62px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.8;
}

.pricing {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.device-selection {
    max-width: 600px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.device-label {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    text-align: center;
}

.slider-container {
    position: relative;
    width: 100%;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: visible;
}

.slider-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 16px;
    transition: width 0.2s ease;
    pointer-events: none;
}

.slider-dots {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.device-slider {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 32px;
    background: transparent;
    outline: none;
    cursor: pointer;
    z-index: 2;
}

.device-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: 4px solid #ffffff;
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.5);
    transition: transform 0.2s ease;
}

.device-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.device-slider::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(1.1);
}

.device-slider::-moz-range-thumb {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: 4px solid #ffffff;
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.5);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.pricing-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.pricing-card.selected {
    border: 2px solid var(--primary);
    background: rgba(0, 212, 255, 0.08);
    transform: scale(1.02);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    background: rgba(0, 212, 255, 0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-card.selected:hover {
    transform: translateY(-10px) scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.pricing-period {
    opacity: 0.6;
    font-size: 16px;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.pricing-features i {
    color: var(--primary);
    font-size: 18px;
}

.coming-soon {
    padding: 120px 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, transparent 100%);
}

footer {
    background: rgba(10, 10, 10, 0.8);
    border-top: 1px solid var(--glass-border);
    padding: 60px 40px 40px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-brand {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.fab {
    color: white;
}

.footer-desc {
    opacity: 0.6;
}

.footer-legal {
    opacity: 0.5;
    font-size: 14px;
    margin-top: 20px;
}

footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.footer-legal-note {
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    margin-top: 10px;
    line-height: 1.4;
}

.footer-legal-note a {
    color: #aaa;
    text-decoration: underline;
}

.footer-legal-note a:hover {
    color: #ccc;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        display: none;
    }

    .hero {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 3rem;
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .features, .pricing, .coming-soon {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .features-grid, .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .device-selection {
        padding: 0;
    }

    .floating-card {
        display: none;
    }
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader .spinner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    animation: spin 1s linear infinite;
    position: relative;
}

.loader .spinner::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: var(--dark);
    border-radius: 50%;
}