/* ===== GINO Landing Page - Premium Styles ===== */

/* === Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6E56CF;
    --accent: #F4A261;
    --bg-light: #F8F9FA;
    --text-dark: #1A1A1A;
    --text-dim: #666;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --radius: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    transition: transform 0.3s;
}

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

.logo img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: contain;
    transition: all 0.3s;
}

.nav {
    display: flex;
    gap: 32px;
}

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

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

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

.nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 24px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #F0F0F0;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s;
}

.mobile-menu-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.3s;
}

.mobile-nav a:hover {
    background: linear-gradient(135deg, rgba(110, 86, 207, 0.1), rgba(244, 162, 97, 0.1));
    color: var(--primary);
    transform: translateX(8px);
}

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

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

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

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

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
}

.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
}

.delay-3 {
    animation-delay: 0.6s;
    opacity: 0;
}

.delay-4 {
    animation-delay: 0.8s;
    opacity: 0;
}

.delay-5 {
    animation-delay: 1s;
    opacity: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* === Hero Section === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: 
        linear-gradient(135deg, 
            rgba(103, 126, 234, 0.65) 0%, 
            rgba(118, 75, 162, 0.65) 100%),
        url('images/ossetia.jpg');
    background-size: cover;
    background-position: center;
    animation: heroReveal 1.5s ease-out;
}

/* Remove parallax ::before - it's causing issues */

@keyframes heroReveal {
    from {
        filter: blur(10px);
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        filter: blur(0);
        opacity: 1;
        transform: scale(1);
    }
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.hero-logo {
    width: 180px;
    height: 180px;
    border-radius: 40px;
    margin-bottom: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    filter: drop-shadow(0 0 30px rgba(255,255,255,0.3));
    animation: logoAppear 1s ease-out 0.5s backwards;
}

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

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
}

.hero-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 24px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
    animation: float 3s ease-in-out infinite;
}

.hero-slogan {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 24px;
    font-weight: 500;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* === Premium Store Buttons === */
.store-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border: 2px solid rgba(255,255,255,0.3);
}

.store-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.store-btn:hover::before {
    left: 100%;
}

.store-btn:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
    border-color: rgba(255,255,255,0.6);
}

.store-btn-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-btn:hover .store-btn-icon {
    transform: rotate(360deg) scale(1.2);
}

.google-play .store-btn-icon {
    background: linear-gradient(135deg, #34A853, #4285F4);
    color: white;
}

.app-store .store-btn-icon {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    color: white;
}

.apk-btn .store-btn-icon {
    background: linear-gradient(135deg, #6E56CF, #F4A261);
    color: white;
}

.telegram-btn .store-btn-icon {
    background: linear-gradient(135deg, #0088cc, #00C6FF);
    color: white;
}

.store-btn-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.store-btn-text small {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-btn-text strong {
    font-size: 18px;
    color: #1A1A1A;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.store-btn-shine {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.store-btn:hover .store-btn-shine {
    opacity: 1;
}

.btn {
    padding: 16px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
}

.btn-secondary {
    background: var(--text-dark);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-telegram {
    background: #0088cc;
    color: var(--white);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 32px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* === Section Title === */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
    color: var(--text-dark);
}

/* === Features Section === */
.features {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(110, 86, 207, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.feature-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(110, 86, 207, 0.3);
    border-color: var(--primary);
    background: white;
}

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

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

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-dim);
    font-size: 16px;
}

/* === How it Works === */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e3e7ed 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background circles */
.how-it-works::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(110, 86, 207, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    filter: blur(40px);
}

.how-it-works::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
    filter: blur(40px);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Connecting line between steps */
.steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 16%;
    right: 16%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary) 15%, 
        var(--accent) 50%, 
        var(--primary) 85%, 
        transparent 100%);
    opacity: 0.3;
    z-index: 0;
}

.step {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 70px 40px 48px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.6);
    margin-top: 40px;
}

/* Gradient glow effect */
.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(110, 86, 207, 0.1) 0%, 
        rgba(244, 162, 97, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
}

.step:hover::before {
    opacity: 1;
}

/* Bottom accent line */
.step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 10px 10px 0 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.step:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 25px 60px rgba(110, 86, 207, 0.3);
    border-color: rgba(110, 86, 207, 0.3);
}

.step-number {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(110, 86, 207, 0.5);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    border: 4px solid #FFFFFF;
}

.step:hover .step-number {
    transform: translateX(-50%) scale(1.25) rotate(360deg);
    box-shadow: 0 15px 50px rgba(110, 86, 207, 0.7);
}

.step-icon {
    font-size: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 28px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(110, 86, 207, 0.2));
    position: relative;
    z-index: 1;
}

.step:hover .step-icon {
    transform: scale(1.15) rotateY(360deg);
    filter: drop-shadow(0 8px 16px rgba(110, 86, 207, 0.4));
}

.step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    transition: color 0.4s;
}

.step:hover h3 {
    color: var(--primary);
}

.step p {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* === Screenshots === */
.screenshots {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.screenshots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.screenshots .section-title {
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    margin-bottom: 60px;
}

.screenshots-slider {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    perspective: 1000px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup {
    width: 320px;
    height: 640px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 45px;
    padding: 14px;
    box-shadow: 
        0 40px 100px rgba(0,0,0,0.6),
        inset 0 1px 2px rgba(255,255,255,0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.phone-mockup.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
    box-shadow: 
        0 50px 120px rgba(110, 86, 207, 0.7),
        0 0 80px rgba(244, 162, 97, 0.4),
        inset 0 1px 2px rgba(255,255,255,0.2);
}

.phone-mockup.prev {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85);
    pointer-events: none;
    z-index: 1;
}

.phone-mockup.next {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85);
    pointer-events: none;
    z-index: 1;
}

/* Gradient border effect */
.phone-mockup.active::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 45px;
    background: linear-gradient(145deg, var(--primary), var(--accent));
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

/* Slider Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(110, 86, 207, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.slider-nav:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 32px rgba(110, 86, 207, 0.4);
}

.slider-nav:hover i {
    color: #FFFFFF;
}

.slider-nav.prev {
    left: -80px;
}

.slider-nav.next {
    right: -80px;
}

.slider-nav i {
    font-size: 24px;
    color: var(--primary);
    transition: color 0.3s;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dot.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(110, 86, 207, 0.5);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 35px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.3);
}

/* === Reviews === */
.reviews {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(110, 86, 207, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 80% 50%, rgba(244, 162, 97, 0.05) 0%, transparent 30%);
    animation: float 15s ease-in-out infinite;
}

.reviews-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 380px;
}

.review-card {
    background: var(--white);
    padding: 36px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: absolute;
    opacity: 0;
    transform: translateX(100px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 700px;
    border: 2px solid transparent;
    text-align: center;
}

.review-card.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    border-color: rgba(110, 86, 207, 0.1);
    box-shadow: 0 20px 60px rgba(110, 86, 207, 0.15);
    position: relative;
}

.review-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 auto 16px;
    box-shadow: 0 10px 30px rgba(110, 86, 207, 0.3);
    transition: transform 0.3s;
}

.review-card.active .review-avatar {
    animation: bounceAvatar 1s ease;
}

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

.stars {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    justify-content: center;
}

.stars i {
    color: #FFD700;
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.review-text::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 80px;
    color: rgba(110, 86, 207, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.review-author strong {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
}

.review-author span {
    color: var(--text-light);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-author span::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
}

.slider-controls {
    display: none;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(110, 86, 207, 0.2);
    background: white;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(110, 86, 207, 0.3);
}

/* Review CTA */
.review-cta {
    text-align: center;
    margin-top: 30px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(110, 86, 207, 0.05) 0%, rgba(244, 162, 97, 0.05) 100%);
    border-radius: 24px;
    border: 2px dashed rgba(110, 86, 207, 0.2);
    position: relative;
    z-index: 10;
}

.review-cta h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.review-cta .btn {
    font-size: 16px;
    padding: 14px 36px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 48px;
    border-radius: 24px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--primary);
    background: rgba(110, 86, 207, 0.1);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 32px;
    text-align: center;
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    font-size: 16px;
    margin-bottom: 20px;
    transition: all 0.3s;
    font-family: inherit;
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(110, 86, 207, 0.1);
}

.rating-input {
    margin-bottom: 20px;
}

.rating-input label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

.stars-input {
    display: flex;
    gap: 12px;
    font-size: 32px;
    margin-bottom: 20px;
}

.stars-input i {
    cursor: pointer;
    color: #DDD;
    transition: all 0.2s;
}

.stars-input i:hover,
.stars-input i.active {
    color: #FFD700;
    transform: scale(1.2);
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.5));
}

.review-form button {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    margin-top: 8px;
}

/* === Scroll to Top Button === */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(110, 86, 207, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 32px rgba(110, 86, 207, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-4px) scale(1.05);
}

/* === Download Section === */
.download {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
}

.download .section-title {
    color: var(--white);
}

.download-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 48px;
    opacity: 0.9;
}

.download-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: center;
}

.download-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.download-btn {
    background: var(--white);
    color: var(--text-dark);
    padding: 24px;
    border-radius: var(--radius);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.download-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.download-btn i {
    font-size: 48px;
    color: var(--primary);
}

.download-btn small {
    display: block;
    font-size: 12px;
    color: var(--text-dim);
}

.download-btn strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.qr-code {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#qrcode {
    padding: 16px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(255,255,255,0.3);
    margin: 0 0 16px 0;
    line-height: 0;
}

#qrcode img {
    display: block !important;
    vertical-align: top !important;
}

.qr-code p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.qr-code small {
    font-size: 14px;
    opacity: 0.8;
}

/* === Contact Form === */
.contact {
    padding: 80px 0;
    background: var(--white);
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #E0E0E0;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(110, 86, 207, 0.1);
}

.contact-form button {
    width: 100%;
}

/* === Footer === */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 48px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    font-size: 18px;
    min-width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact span,
.footer-contact a {
    display: inline;
    line-height: 1;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* === Policy Modals === */
.policy-content {
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
}

.policy-text {
    text-align: left;
    line-height: 1.8;
}

.policy-text h3 {
    color: var(--primary);
    font-size: 20px;
    margin: 24px 0 12px;
    font-weight: 600;
}

.policy-text p {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.policy-text ul {
    margin: 12px 0 16px 24px;
    list-style: disc;
}

.policy-text li {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.policy-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.policy-text a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.policy-text a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Custom scrollbar for policy modals */
.policy-content::-webkit-scrollbar {
    width: 8px;
}

.policy-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.policy-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.policy-content::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* === Responsive === */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .header-content {
        padding: 12px 0;
    }
    
    .nav a {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .logo img {
        width: 42px;
        height: 42px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .steps {
        gap: 32px;
    }
    
    .step {
        padding: 60px 32px 40px;
    }
    
    .steps::before {
        display: none;
    }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .header-content {
        padding: 10px 0;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .logo img {
        width: 40px;
        height: 40px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        min-height: 90vh;
        padding: 60px 0 40px;
    }
    
    .hero-logo {
        width: 140px;
        height: 140px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 42px;
        margin-bottom: 16px;
    }
    
    .hero-slogan {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 32px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .hero-buttons {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .store-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 16px 20px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 32px;
    }
    
    .features,
    .how-it-works,
    .screenshots,
    .reviews,
    .download,
    .contact {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 32px 24px;
    }
    
    .feature-icon {
        font-size: 56px;
    }
    
    .steps {
        gap: 24px;
    }
    
    .step {
        padding: 60px 24px 32px;
        margin-top: 35px;
    }
    
    .step-number {
        width: 56px;
        height: 56px;
        font-size: 28px;
        top: -25px;
    }
    
    .step-icon {
        font-size: 64px;
        margin-bottom: 20px;
    }
    
    .step h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .screenshots-slider {
        max-width: 300px;
        min-height: 600px;
    }
    
    .slider-container {
        height: 600px;
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
        padding: 12px;
        border-radius: 40px;
    }
    
    .phone-mockup img {
        border-radius: 32px;
    }
    
    .slider-dots {
        bottom: -50px;
    }
    
    .reviews-slider {
        min-height: 350px;
    }
    
    .review-card {
        padding: 28px 20px;
    }
    
    .review-avatar {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .review-text {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .review-author strong {
        font-size: 16px;
    }
    
    .review-author span {
        font-size: 14px;
    }
    
    .review-cta {
        padding: 24px;
        margin-top: 20px;
    }
    
    .review-cta h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .download-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .download-buttons {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .download-btn {
        padding: 16px 20px;
    }
    
    .qr-code canvas {
        max-width: 180px;
        height: auto;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-section h4 {
        margin-bottom: 12px;
    }
    
    .footer-contact {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .scroll-to-top {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
    
    .modal-content {
        padding: 32px 24px;
        margin: 20px;
        max-width: calc(100% - 40px);
    }
    
    .policy-content {
        padding: 32px 24px;
        max-height: 80vh;
    }
    
    .policy-text h3 {
        font-size: 18px;
    }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
    .logo img {
        width: 36px;
        height: 36px;
    }
    
    .hero-logo {
        width: 120px;
        height: 120px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-slogan {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .feature-card {
        padding: 24px 20px;
    }
    
    .feature-icon {
        font-size: 48px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    .step {
        padding: 55px 20px 28px;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 24px;
        top: -22px;
    }
    
    .step-icon {
        font-size: 56px;
    }
    
    .step h3 {
        font-size: 18px;
    }
    
    .screenshots-slider {
        max-width: 260px;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .review-card {
        padding: 24px 16px;
    }
    
    .review-cta {
        padding: 20px 16px;
    }
    
    .review-cta h3 {
        font-size: 18px;
    }
    
    .store-btn {
        padding: 14px 16px;
    }
    
    .store-btn-icon {
        font-size: 32px;
    }
    
    .store-btn-text strong {
        font-size: 16px;
    }
    
    .store-btn-text small {
        font-size: 11px;
    }
}
