/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0f;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    position: relative;
}

.preloader-logo {
    animation: float 3s ease-in-out infinite;
    margin-bottom: 24px;
}

.preloader-logo svg {
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
}

.preloader-title {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ff9a56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.preloader-spinner {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
}

.spinner-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 3px solid transparent;
}

.spinner-ring:nth-child(1) {
    width: 120px;
    height: 120px;
    border-top-color: #ff6b35;
    border-right-color: #ff6b35;
    animation: spin 2s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 90px;
    height: 90px;
    border-top-color: #f7931e;
    border-left-color: #f7931e;
    animation: spin 1.5s linear infinite reverse;
}

.spinner-ring:nth-child(3) {
    width: 60px;
    height: 60px;
    border-top-color: #ff9a56;
    border-bottom-color: #ff9a56;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.preloader-progress {
    margin-bottom: 20px;
}

.progress-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 12px;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 107, 53, 0.3),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ff9a56);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    position: relative;
    z-index: 1;
}

.progress-text {
    font-size: 18px;
    font-weight: 700;
    color: #ff6b35;
    font-variant-numeric: tabular-nums;
}

.preloader-status {
    font-size: 14px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

:root {
    --primary: #ff6b35;
    --primary-glow: rgba(255, 107, 53, 0.5);
    --secondary: #f7931e;
    --accent: #ff9a56;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --bg: #0a0a0f;
    --bg-elevated: #14141f;
    --bg-card: rgba(20, 20, 31, 0.8);
    --border: rgba(148, 163, 184, 0.1);
    --success: #10b981;
    --glow: rgba(255, 107, 53, 0.15);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 154, 86, 0.05) 0%, transparent 50%);
    animation: gradientShift 20s ease infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gradientShift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(5%, -5%) rotate(120deg); }
    66% { transform: translate(-5%, 5%) rotate(240deg); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo svg {
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav a:hover {
    color: var(--text);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

.btn-header {
    position: relative;
    padding: 12px 28px;
    background: rgba(255, 107, 53, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: white !important;
    border-radius: 12px;
    font-weight: 700 !important;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-header:hover::before {
    left: 100%;
}

.btn-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.4), rgba(247, 147, 30, 0.4));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.btn-header:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 107, 53, 0.6);
    background: rgba(255, 107, 53, 0.15);
}

.btn-header:hover::after {
    opacity: 1;
}

/* Easter Egg: All-Seeing Eye (Eye of Providence) */
.easter-eye {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 85px;
    height: 85px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    opacity: 0.08;
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.15));
}

.easter-eye:hover {
    transform: translateX(-50%) scale(1.05);
    opacity: 0.9;
    filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.4));
}

/* Triangle */
.eye-triangle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    pointer-events: none;
}

.eye-triangle svg {
    width: 100%;
    height: 100%;
}

/* Eye container - clipped by triangle shape */
.eye-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 80px;
    height: 80px;
    clip-path: polygon(50% 15%, 88% 80%, 12% 80%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Eye itself - Simple style */
.eye-white {
    width: 36px;
    height: 20px;
    background: transparent;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
    margin-top: 5px;
}

/* Iris - Simple brown */
.eye-iris {
    position: absolute;
    width: 16px;
    height: 16px;
    background: radial-gradient(
        circle at 40% 35%,
        rgba(100, 70, 50, 1),
        rgba(60, 40, 30, 1)
    );
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease-out;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

/* Pupil - Simple black */
.eye-pupil {
    position: absolute;
    width: 9px;
    height: 9px;
    background: #000;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease-out;
}

/* Simple light reflection */
.eye-shine {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 1.5px;
    left: 1.5px;
}

/* Blink animation */
@keyframes blink {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.08); }
}

/* Hero Section */
.hero {
    padding: 200px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: 120px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff9a56 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes shimmerText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 32px;
}

.hero-tags {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.hero-tag:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.2);
    color: white;
    transform: translateY(-2px);
}

.hero-tag svg {
    color: var(--primary);
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    border: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

/* Tech Buttons */
.btn-tech {
    position: relative;
    padding: 0;
    overflow: hidden;
    border: 1.5px solid transparent;
}

.btn-tech .btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
}

.btn-tech::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    z-index: 1;
    transition: left 0.6s;
}

.btn-tech:hover::before {
    left: 100%;
}

.btn-tech .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    color: white;
}

.btn-tech .arrow {
    transition: transform 0.3s;
}

.btn-tech:hover .arrow {
    transform: translateX(4px);
}

.btn-tech:hover .btn-bg {
    transform: scale(1.05);
}

.btn-tech:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px var(--primary-glow);
    border-color: rgba(255, 107, 53, 0.5);
}

.btn-tech.btn-secondary .btn-bg {
    background: var(--bg-elevated);
}

.btn-tech.btn-secondary {
    border: 1.5px solid var(--border);
}

.btn-tech.btn-secondary .btn-content {
    color: var(--text);
}

.btn-tech.btn-secondary:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.btn-tech.btn-secondary:hover .btn-bg {
    background: var(--bg-card);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 0 30px var(--glow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px var(--primary-glow);
}

.btn-secondary {
    background: var(--bg-elevated);
    color: var(--text);
    border: 1.5px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 22px 44px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    background: var(--bg-card);
    border-color: var(--primary);
}

/* Cyberpunk Glass Buttons */
.btn-cyber {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 44px;
    background: rgba(255, 107, 53, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 14px;
    color: white;
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Заливка при hover */
.btn-cyber::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}

.btn-cyber:hover::before {
    opacity: 1;
}

/* Контент поверх фона */
.btn-cyber > * {
    position: relative;
    z-index: 1;
}

.btn-cyber:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-cyber .arrow {
    transition: transform 0.3s;
}

.btn-cyber:hover .arrow {
    transform: translateX(4px);
}

/* Secondary variant */
.btn-cyber-secondary {
    background: rgba(148, 163, 184, 0.05);
    border-color: rgba(148, 163, 184, 0.2);
    color: var(--text);
}

.btn-cyber-secondary:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.4);
    color: white;
}

/* Large variant */
.btn-cyber-large {
    padding: 24px 56px;
    font-size: 15px;
    gap: 14px;
}

/* Скрываем лишние элементы из старой структуры */
.cyber-bg,
.cyber-line,
.cyber-corner,
.cyber-content {
    display: none;
}

/* Hero Media Grid - Bento Box Style */
.hero-media {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 220px);
    gap: 24px;
}

/* Hero Info Column - Fixed Right */
.hero-info {
    position: fixed;
    right: 250px;
    top: 108vh;
    width: 280px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 80vh;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hide scrollbar for hero-info */
.hero-info::-webkit-scrollbar {
    display: none;
}

.media-item {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--border);
}

.media-item:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.media-item:nth-child(1) {
    grid-column: span 3;
    grid-row: span 2;
}

.media-item:nth-child(2) {
    grid-column: span 3;
    grid-row: span 1;
}

.media-item:nth-child(3) {
    grid-column: span 2;
    grid-row: span 2;
}

.media-item:nth-child(4) {
    grid-column: span 4;
    grid-row: span 1;
}

.media-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 28px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* Shimmer effect removed */

.media-label {
    position: relative;
    z-index: 1;
    padding: 10px 18px;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

.media-prompt {
    position: relative;
    z-index: 1;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    line-height: 1.5;
    max-width: 90%;
}

.media-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Info Cards */
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    transition: all 0.3s;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateX(-4px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.15);
}

.info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 11px;
    color: white;
}

.info-content {
    flex: 1;
}

.info-value {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 3px;
    font-family: 'Orbitron', sans-serif;
}

.info-label {
    font-size: 12px;
    color: var(--text);
    line-height: 1.4;
}

/* Feature Badges */
.feature-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 12px;
    color: var(--text);
    transition: all 0.3s;
}

.feature-badge:hover {
    background: rgba(255, 107, 53, 0.1);
    color: white;
}

.feature-badge svg {
    flex-shrink: 0;
    color: var(--primary);
}

/* Trust Section */
.trust-section {
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.trust-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
}

.trust-logos {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.trust-logo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s;
    cursor: pointer;
}

.trust-logo:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateY(-4px);
}

.trust-logo svg {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.trust-logo:hover svg {
    color: var(--primary);
}

/* Download CTA Card */
.download-cta-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    transition: all 0.3s;
    cursor: pointer;
}

.download-cta-card:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.15));
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateX(-4px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.25);
}

.download-cta-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    color: white;
}

.download-cta-content {
    flex: 1;
}

.download-cta-title {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.download-cta-text {
    font-size: 12px;
    color: var(--text);
}

.btn-download-mini {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-download-mini:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--primary);
    transform: scale(1.1);
}

/* ============================================
   POWER STATS BLOCK - WOW EFFECT
   ============================================ */

/* Stats Block */
.stats-block {
    padding: 30px 0;
    max-width: 900px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-item {
    text-align: center;
    padding: 20px 16px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Gradient line on top */
.stat-item::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;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 100px var(--glow);
    border-color: rgba(255, 107, 53, 0.5);
}

.stat-icon {
    width: 38px;
    height: 38px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    color: white;
    box-shadow: 0 10px 30px var(--glow);
    transition: transform 0.3s;
}

.stat-icon svg {
    width: 20px;
    height: 20px;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-value {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Panel Showcase Section */
.panel-showcase {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.panel-showcase-content {
    max-width: 1400px;
    margin: 0 auto;
}

.panel-video-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 80px rgba(255, 107, 53, 0.2);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: var(--bg-elevated);
}

.panel-video-wrapper:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.6), 0 0 120px rgba(255, 107, 53, 0.4);
}

.panel-showcase-video {
    width: 100%;
    height: auto;
    display: block;
    min-height: 600px;
    object-fit: cover;
}

.panel-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.85) 0%, rgba(10, 10, 15, 0.45) 40%, rgba(10, 10, 15, 0) 75%);
}

.panel-video-badge {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255, 107, 53, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.panel-video-title {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.2;
}

.panel-video-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stats-block {
        padding: 20px 0;
    }
    
    .stat-item {
        padding: 18px 14px;
    }
    
    .stat-value {
        font-size: 24px;
    }
}

/* Section Divider */
.section-divider {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

/* Section Styles */
section {
    padding: 150px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-label {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-top: 20px;
}

/* Features Section - Asymmetric Layout */
.features {
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 48px 36px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 28px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 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;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 100px var(--glow);
    border-color: rgba(255, 107, 53, 0.5);
}

.feature-card:nth-child(1) { grid-column: span 4; }
.feature-card:nth-child(2) { grid-column: span 4; }
.feature-card:nth-child(3) { grid-column: span 4; }
.feature-card:nth-child(4) { grid-column: span 5; }
.feature-card:nth-child(5) { grid-column: span 4; }
.feature-card:nth-child(6) { grid-column: span 3; }

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 18px;
    color: white;
    margin-bottom: 28px;
    box-shadow: 0 10px 30px var(--glow);
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text);
}

.feature-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Examples Gallery - Masonry Style */
.examples {
    background: transparent;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 24px;
}

.example-card {
    border-radius: 28px;
    overflow: hidden;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
}

.example-card:nth-child(1) { grid-row: span 2; }
.example-card:nth-child(3) { grid-row: span 2; }
.example-card:nth-child(5) { grid-column: span 2; }

.example-card:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 53, 0.5);
}

.example-media {
    width: 100%;
    height: 70%;
    position: relative;
    overflow: hidden;
}

.example-card:nth-child(1) .example-media,
.example-card:nth-child(3) .example-media {
    height: 75%;
}

.example-card:nth-child(5) .example-media {
    height: 80%;
}

.example-card:nth-child(5) .example-image {
    object-position: center top;
    transform: translateY(0);
}

.example-video,
.example-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.example-info {
    padding: 24px;
    position: relative;
    z-index: 1;
}

/* Высокие карточки - опускаем текст ниже */
.example-card:nth-child(1) .example-info {
    padding-top: 30px;
}

.example-card:nth-child(3) .example-info {
    padding-top: 34px;
}

/* Обычные карточки - поднимаем текст выше */
.example-card:nth-child(2) .example-info {
    padding-top: 20px;
}

.example-card:nth-child(4) .example-info,
.example-card:nth-child(6) .example-info {
    padding-top: 16px;
}

.example-card:nth-child(5) .example-info {
    height: 20%;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.example-card:nth-child(5) .example-type {
    margin-bottom: 0;
    flex-shrink: 0;
}

.example-card:nth-child(5) .example-prompt {
    margin: 0;
}

.example-type {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.example-prompt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Pricing Section - Diagonal Layout */
.pricing {
    position: relative;
    overflow: hidden;
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    position: relative;
    padding: 48px 40px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 32px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 53, 0.5);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 0 60px var(--glow);
    transform: scale(1.05);
    background: rgba(20, 20, 31, 0.9);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px var(--primary-glow);
}

.pricing-plan h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--text);
}

.pricing-plan p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    margin-bottom: 40px;
}

.price {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 18px;
    color: var(--text-muted);
    margin-left: 10px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    font-size: 15px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(148, 163, 184, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-btn {
    position: relative;
    width: 100%;
    padding: 18px;
    background: rgba(148, 163, 184, 0.05);
    backdrop-filter: blur(10px);
    color: var(--text);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: inherit;
    overflow: hidden;
}

.pricing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.pricing-btn:hover::before {
    left: 100%;
}

.pricing-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-btn.primary {
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.2) 0%,
        rgba(247, 147, 30, 0.2) 100%
    );
    backdrop-filter: blur(20px);
    color: white;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.pricing-btn.primary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-btn.primary:hover {
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.35) 0%,
        rgba(247, 147, 30, 0.3) 100%
    );
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* CTA Section */
.cta {
    padding: 200px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 88px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 22px;
    color: var(--text-muted);
    margin-bottom: 48px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
}

.cta-feature:hover {
    color: white;
}

.cta-feature svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Footer */
.footer {
    position: relative;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-main {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 600px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.5px;
}

.footer-logo-tagline {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.footer-description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-download {
    margin-bottom: 32px;
}

.footer-download-title {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer-download-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-download-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-download-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    color: white;
    transform: translateY(-2px);
}

.footer-download-btn svg {
    color: var(--primary);
    flex-shrink: 0;
}

.footer-download-btn-active {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.4);
}

.footer-download-btn-soon {
    opacity: 0.6;
    cursor: default;
}

.footer-download-btn-soon:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 6px;
}

.soon-badge {
    font-size: 10px;
    padding: 2px 6px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 4px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-muted);
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: var(--bg);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px var(--glow);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-column a {
    display: block;
    font-size: 15px;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 14px;
    transition: all 0.2s;
    position: relative;
    padding-left: 0;
}

.footer-column a:hover {
    color: var(--text);
    padding-left: 8px;
}

.footer-column a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s;
}

.footer-column a:hover::before {
    left: -8px;
    opacity: 1;
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-muted);
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-aos="fade-up"] {
    transform: translateY(60px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="slide-left"] {
    transform: translateX(60px);
}

[data-aos="slide-right"] {
    transform: translateX(-60px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Responsive */
@media (max-width: 1400px) {
    .hero-title {
        font-size: 96px;
    }
    
    .section-title {
        font-size: 64px;
    }
    
    .cta-title {
        font-size: 72px;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 72px;
    }
    
    .section-title {
        font-size: 52px;
    }
    
    .cta-title {
        font-size: 56px;
    }
    
    .hero-info {
        position: static;
        transform: none;
        width: 100%;
        margin: 40px auto 0;
        max-height: none;
    }
    
    .media-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(4, 180px);
    }
    
    .media-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .media-item:nth-child(2) { grid-column: span 2; grid-row: span 1; }
    .media-item:nth-child(3) { grid-column: span 2; grid-row: span 2; }
    .media-item:nth-child(4) { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card {
        grid-column: span 1 !important;
    }
    
    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .example-card {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    
    .pricing-wrapper {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .container,
    .footer-container {
        padding: 0 20px;
    }
    
    .nav a:not(.btn-header) {
        display: none;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero-title {
        font-size: 48px;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-tags {
        gap: 12px;
    }
    
    .hero-tag {
        font-size: 13px;
        padding: 8px 14px;
    }
    
    .btn-cyber {
        width: 100%;
        padding: 18px 32px;
        font-size: 13px;
    }
    
    .btn-cyber-large {
        padding: 20px 40px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 40px;
    }
    
    .cta-buttons .btn-cyber {
        width: 100%;
    }
    
    .cta-features {
        gap: 16px;
    }
    
    .cta-feature {
        font-size: 13px;
    }
    
    .hero-info {
        position: static;
        transform: none;
        width: 100%;
        margin: 30px auto 0;
        max-height: none;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
    }
    
    .media-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        min-height: 220px;
    }
    
    .features-grid,
    .examples-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        grid-column: span 1 !important;
    }
    
    .example-card {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    
    .pricing-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 60px;
        margin-bottom: 60px;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 24px 0;
    }
    
    .modal-content {
        padding: 32px 24px;
        max-width: 95%;
    }
    
    .auth-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .btn-cyber {
        padding: 16px 24px;
        font-size: 12px;
        gap: 8px;
    }
    
    .btn-cyber-large {
        padding: 18px 32px;
        font-size: 13px;
    }
    
    .info-card {
        padding: 16px;
        gap: 12px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
    }
    
    .info-value {
        font-size: 20px;
    }
    
    .info-label {
        font-size: 12px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-logo-text {
        font-size: 20px;
    }
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 560px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--bg);
    color: var(--text);
    border-color: var(--primary);
    transform: rotate(90deg);
}

.auth-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    padding: 6px;
    background: var(--bg-card);
    border-radius: 14px;
}

.auth-tab {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.auth-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 20px var(--glow);
}

.auth-form {
    animation: fadeInForm 0.4s ease;
}

.auth-form.hidden {
    display: none;
}

@keyframes fadeInForm {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper svg {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    pointer-events: none;
}

.auth-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.auth-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.auth-input::placeholder {
    color: var(--text-muted);
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 28px 0;
    color: var(--text-muted);
    font-size: 14px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 30px);
    height: 1px;
    background: var(--border);
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

/* Download Section */
.download-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.download-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s;
}

.download-card:hover {
    border-color: var(--primary);
    transform: translateX(4px);
}

.download-icon {
    flex-shrink: 0;
}

.download-info {
    flex: 1;
}

.download-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}

.download-info p {
    font-size: 13px;
    color: var(--text-muted);
}

.btn-download {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-download:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px var(--primary-glow);
}

.download-card-soon {
    opacity: 0.7;
}

.download-card-soon:hover {
    transform: none;
    border-color: var(--border);
}

.coming-soon-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coming-soon-badge svg {
    flex-shrink: 0;
}

.auth-note {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.auth-note svg {
    flex-shrink: 0;
    color: var(--primary);
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.float-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-glow), transparent);
    filter: blur(60px);
    animation: floatAround 20s ease-in-out infinite;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 500px;
    height: 500px;
    bottom: -250px;
    left: -150px;
    background: radial-gradient(circle, rgba(247, 147, 30, 0.3), transparent);
    animation-delay: 7s;
}

.circle-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    background: radial-gradient(circle, rgba(255, 154, 86, 0.2), transparent);
    animation-delay: 14s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, -100px) scale(1.1);
    }
    66% {
        transform: translate(-100px, 100px) scale(0.9);
    }
}

.float-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100px, 100px);
    }
}

/* Easter Egg Modal */
.easter-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.easter-modal.active {
    display: flex;
}

.easter-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.easter-modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: rgba(15, 15, 20, 0.95);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 24px;
    padding: 48px 40px;
    overflow: hidden;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 60px rgba(255, 107, 53, 0.3),
                0 0 120px rgba(247, 147, 30, 0.2);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Animated Background */
.easter-modal-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    opacity: 0.6;
}

.easter-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: floatOrb 8s ease-in-out infinite;
}

.easter-orb.orb-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4) 0%, transparent 70%);
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.easter-orb.orb-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(247, 147, 30, 0.3) 0%, transparent 70%);
    bottom: -30px;
    right: -30px;
    animation-delay: 2s;
}

.easter-orb.orb-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.25) 0%, transparent 70%);
    top: 50%;
    right: -60px;
    animation-delay: 4s;
}

/* Close Button */
.easter-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.easter-modal-close:hover {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    transform: rotate(90deg);
}

/* Modal Content */
.easter-modal-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.easter-modal-icon {
    margin: 0 auto 24px;
    width: 64px;
    height: 64px;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.8));
    }
}

.easter-modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.3;
}

.easter-modal-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

/* Promo Box */
.easter-promo-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.easter-promo-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    to {
        left: 100%;
    }
}

.easter-promo-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    font-weight: 600;
}

.easter-promo-code {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.easter-copy-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(247, 147, 30, 0.15) 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.easter-copy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3) 0%, rgba(247, 147, 30, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.easter-copy-btn:hover::before {
    opacity: 1;
}

.easter-copy-btn:hover {
    border-color: rgba(255, 107, 53, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.easter-copy-btn svg {
    position: relative;
    z-index: 1;
}

.easter-copy-btn span {
    position: relative;
    z-index: 1;
}

.easter-copy-btn.copied span {
    animation: copySuccess 0.5s ease;
}

@keyframes copySuccess {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Modal Footer */
.easter-modal-footer {
    margin-top: 24px;
}

.easter-discount-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.easter-discount-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(200%) translateY(200%) rotate(45deg);
    }
}

.easter-discount-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.easter-discount-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 600px) {
    .easter-modal-content {
        padding: 36px 28px;
        max-width: 90%;
    }
    
    .easter-modal-title {
        font-size: 20px;
    }
    
    .easter-promo-code {
        font-size: 24px;
        letter-spacing: 2px;
    }
}
