:root {
    --primary: #00d9ff;
    --secondary: #7c3aed;
    --accent: #f59e0b;
    --success: #10b981;
    --dark: #0a0a0f;
    --dark-light: #1a1a2e;
    --text: #ffffff;
    --text-muted: #94a3b8;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

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

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-1);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: var(--gradient-2);
    top: 50%;
    right: -300px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--gradient-3);
    bottom: -200px;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 15, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text) !important;
    transition: all 0.3s ease;
}

.navbar-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 217, 255, 0.25);
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.nav-link:hover::after {
    width: 80%;
}

.btn-nav {
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    background: var(--gradient-primary);
    border: none;
    color: var(--text);
    transition: all 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: var(--text);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.4);
    color: var(--text);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.3);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text);
    transform: translateY(-3px);
    color: var(--text);
}

.btn-light {
    background: var(--text);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: slideInLeft 0.8s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: slideInLeft 0.8s 0.2s ease backwards;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(30deg); }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
    animation: slideInLeft 0.8s 0.4s ease backwards;
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

.hero-buttons {
    animation: slideInLeft 0.8s 0.6s ease backwards;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: slideInLeft 0.8s 0.8s ease backwards;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    font-size: 1.5rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Hero Phone Mockup */
.hero-phone-mockup {
    position: relative;
    animation: slideInRight 0.8s 0.4s ease backwards;
    text-align: center;
}

.phone-mockup-img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 50px 100px rgba(0, 0, 0, 0.5));
    animation: float-phone 6s ease-in-out infinite;
}

@keyframes float-phone {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float-card 3s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-card i {
    font-size: 1.25rem;
    color: var(--primary);
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -15%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    left: -15%;
    animation-delay: 2s;
}

/* Section Styles */
.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* How It Works */
.how-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.step-card:hover::before {
    opacity: 0.1;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.2);
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.1;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 20px;
    font-size: 2rem;
    color: var(--text);
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.step-text {
    color: var(--text-muted);
    font-size: 0.9375rem;
    position: relative;
    z-index: 1;
}

/* Features Section - Screenshot */
.screenshot-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.screenshot-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: screenshot-float 6s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
}

@keyframes screenshot-float {
    0%, 100% { 
        transform: translateY(0) rotateX(0deg) rotateY(0deg); 
        box-shadow: 
            0 50px 100px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(255, 255, 255, 0.1);
    }
    50% { 
        transform: translateY(-20px) rotateX(5deg) rotateY(5deg); 
        box-shadow: 
            0 80px 150px rgba(0, 0, 0, 0.6),
            0 0 0 1px rgba(255, 255, 255, 0.2);
    }
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    transition: transform 0.5s ease;
}

.screenshot-frame:hover .screenshot-img {
    transform: scale(1.02);
}

.screenshot-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: var(--gradient-primary);
    opacity: 0;
    mix-blend-mode: overlay;
    animation: glow-pulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

.screenshot-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    z-index: 10;
    animation: badge-float 4s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.screenshot-badge i {
    color: var(--primary);
    font-size: 1.25rem;
}

.badge-1 {
    top: 15%;
    left: -15%;
    animation-delay: 0s;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(124, 58, 237, 0.2));
}

.badge-2 {
    top: 50%;
    right: -10%;
    animation-delay: 1s;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(239, 68, 68, 0.2));
}

.badge-3 {
    bottom: 20%;
    left: -12%;
    animation-delay: 2s;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(34, 197, 94, 0.2));
}

.feature-badge {
    display: inline-block;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.feature-main-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
}

.feature-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1.0625rem;
}

.feature-list i {
    color: var(--success);
    font-size: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.2);
}

.feature-card-highlight {
    background: var(--gradient-primary);
    border-color: var(--primary);
}

.feature-card-highlight .feature-card-text {
    color: rgba(255, 255, 255, 0.9);
}

.feature-card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 15px;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.feature-card-text {
    color: var(--text-muted);
    font-size: 0.9375rem;
    position: relative;
    z-index: 1;
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

/* Integration Section */
.integration-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    margin: 3rem 0;
}

.flow-node {
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.flow-node:hover {
    transform: scale(1.1);
}

.node-1 {
    background: var(--gradient-primary);
}

.node-2 {
    background: var(--gradient-1);
}

.node-3 {
    background: var(--gradient-2);
}

.flow-node i {
    font-size: 4rem;
}

.flow-node h4 {
    font-size: 1.25rem;
    margin: 0;
}

.flow-arrow {
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
}

.flow-arrow i {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.flow-arrow span {
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(0, 217, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    border: 1px solid var(--primary);
}

.sync-feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.sync-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.sync-feature i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.sync-feature h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sync-feature p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

/* Pricing Section */
.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.2);
}

.pricing-card-popular {
    background: linear-gradient(145deg, rgba(0, 217, 255, 0.15), rgba(124, 58, 237, 0.15));
    border: 3px solid var(--primary);
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 217, 255, 0.3);
}

.pricing-card-popular:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 217, 255, 0.4);
}

.popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent) 0%, #ff6b6b 100%);
    color: var(--text);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.875rem;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.price-period {
    color: var(--text-muted);
    font-size: 1rem;
}

.pricing-discount {
    display: inline-block;
    background: var(--success);
    color: var(--text);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.pricing-features i.fa-check {
    color: var(--success);
    font-size: 1.25rem;
}

.pricing-features i.fa-times {
    color: var(--text-muted);
    font-size: 1.25rem;
}

/* FAQ Section */
.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: var(--text);
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1.5rem;
    border: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: rgba(0, 217, 255, 0.1);
    color: var(--primary);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: none;
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    font-size: 1.5rem;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 3rem;
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.9;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--dark-light);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 45px;
    height: 45px;
    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: var(--text);
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==================== OZON SECTION ==================== */
.ozon-section {
    background: linear-gradient(135deg, #0a1628 0%, #0d2137 50%, #0a2a4a 100%);
    position: relative;
    overflow: hidden;
}

.ozon-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 91, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -400px;
    right: -400px;
    animation: pulse-glow-oz 4s ease-in-out infinite;
}

.ozon-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 170, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -300px;
    left: -300px;
    animation: pulse-glow-oz 4s ease-in-out infinite 2s;
}

@keyframes pulse-glow-oz {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Ozon Logo */
.oz-logo-wrapper {
    position: relative;
    display: inline-block;
}

.oz-logo-circle {
    position: relative;
    display: inline-block;
    animation: float-logo 3s ease-in-out infinite;
}

.oz-logo-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 3px solid #005bff;
    opacity: 0;
    animation: logo-pulse-oz 2s ease-out infinite;
}

@keyframes logo-pulse-oz {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.oz-gradient-text {
    background: linear-gradient(135deg, #005bff 0%, #00aaff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Ozon Cards */
.oz-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.oz-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #005bff 0%, #00aaff 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.oz-card:hover::before {
    transform: scaleX(1);
}

.oz-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 91, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 91, 255, 0.3);
}

.oz-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #005bff 0%, #00aaff 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.4s ease;
}

.oz-card:hover .oz-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.oz-card .icon-glow {
    background: linear-gradient(135deg, #005bff 0%, #00aaff 100%);
}

.oz-card:hover .icon-glow {
    opacity: 0.6;
}

.oz-card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(0, 91, 255, 0.2) 0%, rgba(0, 170, 255, 0.2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.oz-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.oz-card-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.oz-card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shine 3s ease-in-out infinite;
}

/* Ozon Flow Diagram */
.oz-flow-container {
    position: relative;
    margin-top: 60px;
}

.oz-flow-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
}

.oz-flow-step {
    text-align: center;
    flex: 0 0 auto;
}

.oz-flow-icon {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 20px;
    position: relative;
    transition: all 0.4s ease;
}

.oz-flow-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.oz-ozon { background: linear-gradient(135deg, #005bff 0%, #00aaff 100%); }
.oz-blue { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.oz-telegram { background: linear-gradient(135deg, #0088cc 0%, #00aaff 100%); }

.oz-flow-step h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.oz-flow-step p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.oz-flow-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.oz-flow-arrow .arrow-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #005bff 0%, #00aaff 100%);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.oz-flow-arrow .arrow-head {
    font-size: 2rem;
    color: #00aaff;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(0, 170, 255, 0.5);
}

.oz-flow-arrow .arrow-label {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.badge-ozon-api { background: linear-gradient(135deg, #005bff 0%, #00aaff 100%); color: white; padding: 5px 12px; border-radius: 15px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-ozon-sync { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 5px 12px; border-radius: 15px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-ozon-instant { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); color: white; padding: 5px 12px; border-radius: 15px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-ozon-live { background: linear-gradient(135deg, #005bff 0%, #f5576c 100%); color: white; padding: 5px 12px; border-radius: 15px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

/* Ozon Data Packets */
.oz-data-packets {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.oz-data-packet {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    animation: float-packet 4s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(0, 91, 255, 0.2);
}

.oz-data-packet i {
    font-size: 1.2rem;
    color: #005bff;
}

/* Ozon CTA */
.oz-cta-wrapper {
    position: relative;
}

.oz-cta-box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    padding: 60px 40px;
    text-align: center;
}

.oz-cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #005bff 0%, #00aaff 100%);
    opacity: 1;
}

.oz-cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 100px 100px;
}

.oz-cta-content {
    position: relative;
    z-index: 1;
}

.oz-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.oz-cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.btn-oz-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: #005bff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-oz-cta:hover {
    background: #f7fafc;
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #00aaff;
}

/* ==================== MOBILE OPTIMIZATIONS ==================== */
@media (max-width: 992px) {
    .floating-card {
        position: static;
        margin: 1rem auto;
        max-width: 250px;
    }
    
    .screenshot-badge {
        position: static;
        margin: 0.5rem auto;
        max-width: 200px;
    }
    
    .badge-1, .badge-2, .badge-3 {
        position: static;
        margin: 0.5rem auto;
    }
    
    /* МойСклад flow mobile */
    .integration-flow {
        flex-direction: column;
        gap: 15px;
    }
    
    .flow-node {
        width: 160px;
        height: 160px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        width: 60px;
        height: 60px;
    }
    
    /* WB flow mobile */
    .wb-flow-card {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
    }
    
    .wb-flow-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .wb-flow-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .wb-cta-title {
        font-size: 1.8rem;
    }
    
    .wb-cta-text {
        font-size: 1rem;
    }
    
    .wb-card-number {
        font-size: 3rem;
    }
    
    /* Ozon flow mobile */
    .oz-flow-card {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
    }
    
    .oz-flow-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .oz-flow-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .oz-cta-title {
        font-size: 1.8rem;
    }
    
    .oz-cta-text {
        font-size: 1rem;
    }
    
    .oz-card-number {
        font-size: 3rem;
    }
    
    .pricing-card-popular {
        transform: scale(1);
    }
    
    .pricing-card-popular:hover {
        transform: translateY(-10px);
    }
    
    .screenshot-container {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        width: 100%;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .cta-box {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .feature-main-title {
        font-size: 2rem;
    }
    
    .navbar-brand {
        gap: 0.75rem;
    }
    
    .navbar-logo {
        height: 45px;
    }
    
    .brand-text {
        font-size: 1.25rem;
    }
    
    .footer-logo {
        height: 45px;
    }
    
    .footer-brand-text {
        font-size: 1.25rem;
    }
    
    /* Mobile Menu Fix */
    .navbar-collapse {
        background: rgba(10, 10, 15, 0.98);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 15px;
    }
    
    .navbar-collapse.show {
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .btn-nav {
        width: 100%;
        margin-top: 1rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    /* WB cards mobile */
    .wb-card {
        padding: 30px 20px;
    }
    
    .wb-card-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .wb-card-title {
        font-size: 1.2rem;
    }
    
    .wb-cta-box {
        padding: 40px 20px;
    }
    
    .wb-cta-title {
        font-size: 1.5rem;
    }
    
    .btn-wb-cta {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .arrow-line {
        width: 60px;
    }
    
    .wb-data-packets {
        gap: 10px;
    }
    
    .data-packet {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    /* Ozon cards mobile */
    .oz-card {
        padding: 30px 20px;
    }
    
    .oz-card-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .oz-card-title {
        font-size: 1.2rem;
    }
    
    .oz-cta-box {
        padding: 40px 20px;
    }
    
    .oz-cta-title {
        font-size: 1.5rem;
    }
    
    .btn-oz-cta {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .oz-flow-arrow .arrow-line {
        width: 60px;
    }
    
    .oz-data-packets {
        gap: 10px;
    }
    
    .oz-data-packet {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    /* МойСклад integration mobile */
    .flow-node {
        width: 140px;
        height: 140px;
    }
    
    .flow-node i {
        font-size: 2.5rem;
    }
    
    .flow-node h4 {
        font-size: 1rem;
    }
    
    .sync-feature {
        padding: 1.5rem;
    }
    
    .sync-feature i {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .popular-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .phone-mockup-img {
        max-height: 450px;
    }
    
    .floating-card {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .navbar-logo {
        height: 40px;
    }
    
    .brand-text {
        font-size: 1.1rem;
    }
    
    .screenshot-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    /* WB/Ozon extra small */
    .wb-flow-card, .oz-flow-card {
        padding: 30px 15px;
    }
    
    .wb-flow-icon, .oz-flow-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        border-radius: 18px;
    }
    
    .wb-flow-step h4, .oz-flow-step h4 {
        font-size: 1rem;
    }
    
    .wb-card-number, .oz-card-number {
        font-size: 2.5rem;
    }
    
    .wb-cta-title, .oz-cta-title {
        font-size: 1.3rem;
    }
    
    .wb-cta-text, .oz-cta-text {
        font-size: 0.9rem;
    }
    
    .btn-wb-cta, .btn-oz-cta {
        padding: 12px 24px;
        font-size: 0.95rem;
        gap: 10px;
    }
    
    /* МойСклад small */
    .flow-node {
        width: 120px;
        height: 120px;
    }
    
    .flow-node .icon1 {
        width: 50px;
        height: 50px;
    }
    
    .flow-node h4 {
        font-size: 0.85rem;
    }
}
.icon1 {
    width: 80px;
    height: 80px;
    object-fit: contain;
}