:root {
    --primary: #FF6B35;
    --secondary: #F7931E;
    --accent: #004E89;
    --dark: #0A0E27;
    --darker: #050812;
    --light: #F4F4F9;
    --gray: #9CA3AF;
    --gradient: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    --gradient-alt: linear-gradient(135deg, #004E89 0%, #1A659E 100%);
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--primary);
}

.logo-text {
    color: var(--light);
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--light);
    transition: all 0.3s ease;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.15), transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(0, 78, 137, 0.15), transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    line-height: 0.95;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 500px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.phone-mockup {
    position: absolute;
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1f3a, #0f1420);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.phone-1 {
    top: 0;
    left: 0;
    transform: rotate(-5deg);
    animation: float 6s ease-in-out infinite;
}

.phone-2 {
    top: 40px;
    right: 0;
    transform: rotate(5deg);
    animation: float 6s ease-in-out infinite 3s;
}

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

.phone-mockup:hover {
    transform: scale(1.05) rotate(0deg) !important;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0A0E27 0%, #050812 100%);
    border-radius: 32px;
    overflow: hidden;
}

.app-preview {
    width: 100%;
    height: 100%;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preview-time {
    position: absolute;
    top: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--light);
}

.countdown-display {
    text-align: center;
    margin: 3rem 0;
}

.countdown-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--gray);
    margin-top: 0.5rem;
}

.countdown-event {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--light);
    padding: 0.75rem 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    border: 1px solid var(--primary);
}

.scan-frame {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 4rem 0;
}

.scan-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--accent);
}

.scan-corner.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.scan-corner.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.scan-corner.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.scan-corner.br { bottom: 0; right: 0; border-left: none; border-top: none; }

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent);
    animation: scan 2s ease-in-out infinite;
}

@keyframes scan {
    0%, 100% { top: 0; }
    50% { top: 100%; }
}

.scan-text {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--accent);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-dot {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.scroll-dot::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 24px; opacity: 0.3; }
}

/* App Sections */
.app-section {
    padding: 8rem 0;
    position: relative;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.section-content.reverse {
    direction: rtl;
}

.section-content.reverse > * {
    direction: ltr;
}

.section-visual {
    position: relative;
    height: 500px;
}

.feature-card {
    position: absolute;
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

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

.card-1 {
    top: 0;
    left: 0;
    width: 200px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.card-2 {
    top: 180px;
    right: 0;
    width: 220px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.card-3 {
    bottom: 0;
    left: 40px;
    width: 200px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.card-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--gray);
    margin-top: 0.5rem;
}

.card-text {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--light);
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.remindown-icon {
    background: var(--gradient);
    color: white;
}

.quickscan-icon {
    background: var(--gradient-alt);
    color: white;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-tagline {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 2rem;
}

.feature-list {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--light);
}

.check-icon {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    flex-shrink: 0;
}

.btn-app {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
}

.btn-app:hover {
    background: var(--gradient);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* QuickScan Visual */
.scan-demo {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.qr-code {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-pattern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 200px;
    height: 200px;
}

.qr-square {
    background: var(--dark);
    border-radius: 8px;
}

.scan-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    box-shadow: 0 0 30px var(--accent);
    animation: scanEffect 3s ease-in-out infinite;
}

@keyframes scanEffect {
    0%, 100% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.stat-cards {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.stat-card {
    background: linear-gradient(145deg, rgba(0, 78, 137, 0.1), rgba(26, 101, 158, 0.05));
    border: 1px solid rgba(0, 78, 137, 0.3);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    background: var(--gradient-alt);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--gray);
    margin-top: 0.5rem;
}

/* Features Grid */
.features-grid-section {
    padding: 8rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.features-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.grid-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.grid-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.grid-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* Download Section */
.download-section {
    padding: 8rem 0;
    text-align: center;
    background: linear-gradient(180deg, var(--darker) 0%, rgba(255, 107, 53, 0.05) 50%, var(--darker) 100%);
}

.download-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.download-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--light);
    color: var(--dark);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-store-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.apple-icon {
    width: 40px;
    height: 40px;
}

.btn-text {
    text-align: left;
}

.btn-small {
    font-size: 0.75rem;
    opacity: 0.8;
}

.btn-large {
    font-size: 1.5rem;
    font-weight: 700;
}

.download-note {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--gray);
    font-size: 0.95rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--light);
}

.footer-column a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-content,
    .section-content.reverse {
        grid-template-columns: 1fr;
        text-align: center;
        direction: ltr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .features-title,
    .download-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .phone-1, .phone-2 {
        transform: scale(0.8);
    }
}
