/* ===== FONTS ===== */
@font-face {
    font-family: 'Cinzel Decorative';
    src: url('../fonts/CinzelDecorative-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Cinzel Decorative';
    src: url('../fonts/CinzelDecorative-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

/* ===== CSS VARIABLES ===== */
:root {
    --bg-deep: #050510;
    --bg-primary: #0a0a1a;
    --bg-card: rgba(18, 18, 38, 0.65);
    --bg-card-hover: rgba(25, 25, 50, 0.8);
    --gold: #D4A843;
    --gold-light: #F0D68A;
    --gold-dark: #8B6914;
    --gold-glow: rgba(212, 168, 67, 0.3);
    --gold-glow-strong: rgba(212, 168, 67, 0.5);
    --peacock-blue: #1a6b8a;
    --peacock-green: #2d8a4e;
    --text-primary: #F5F0E8;
    --text-secondary: #e1e1e1;
    --text-muted: #7b7368;
    --border-gold: rgba(212, 168, 67, 0.2);
    --border-gold-hover: rgba(212, 168, 67, 0.45);
    --font-heading: 'Cinzel Decorative', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --container-width: 1200px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== TOP NAVBAR ===== */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2.5rem;
    background: transparent;
    box-sizing: border-box;
}

/* When coming from mayrailabs - show only back button */
.topbar.from-mayra {
    justify-content: flex-start;
    background: transparent;
}

.topbar.from-mayra .nav-brand {
    display: none !important;
}

.topbar.from-mayra .nav-cta {
    display: none !important;
}

.topbar.from-mayra .back-link {
    display: flex !important;
}

/* Hide CTA on mobile */

/* Nav Brand (default state - direct visitors) */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(212, 168, 67, 0.3);
    transition: transform 0.3s ease;
}

.nav-brand:hover .nav-logo {
    transform: scale(1.08);
}

.nav-brand-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.04em;
    font-weight: 700;
    -webkit-text-stroke: 0.3px rgba(212, 168, 67, 0.3);
}


@media (max-width: 768px) {
    .topbar {
        padding: 0.75rem 1rem;
        background: rgba(5, 5, 16, 0.85);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .topbar.from-mayra {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-cta {
        display: none !important;
    }

    .nav-brand-text {
        font-size: 0.95rem;
    }

    .nav-logo {
        width: 30px;
        height: 30px;
    }

    .back-link {
        padding: 0.4rem 0.9rem;
    }

    .back-link span {
        font-size: 0.82rem;
    }
}

/* Back Link (from mayrailabs referrer) */
.back-link {
    display: none;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-light);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1.2rem 0.5rem 0.85rem;
    background: rgba(212, 168, 67, 0.06);
    border: 1px solid rgba(212, 168, 67, 0.18);
    border-radius: 50px;
    transition: all 0.35s ease;
    letter-spacing: 0.02em;
}

.back-link:hover {
    color: #fff;
    background: rgba(212, 168, 67, 0.12);
    border-color: rgba(212, 168, 67, 0.35);
    transform: translateX(-3px);
}

.back-link svg {
    transition: transform 0.3s ease;
}

.back-link:hover svg {
    transform: translateX(-3px);
}

/* Nav CTA Button */
.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.6rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #0a0a1a;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50px;
    transition: all 0.35s ease;
    letter-spacing: 0.03em;
    box-shadow: 0 3px 16px rgba(212, 168, 67, 0.28);
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 28px rgba(212, 168, 67, 0.45);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 2rem 6rem;
    background: radial-gradient(ellipse at 50% 30%, rgba(30, 25, 10, 0.5) 0%, var(--bg-deep) 70%);
    width: 100%;
    box-sizing: border-box;
}

/* Hero Background Image */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.png') center center / cover no-repeat;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0.4) 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0.4) 70%, transparent 100%);
}

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

.hero-glow {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    max-width: 100%;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.12) 0%, transparent 65%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* App Icon */
.app-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.icon-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.25) 0%, transparent 60%);
    border-radius: 50%;
    z-index: -1;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.15); opacity: 1; }
}

.app-icon {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    box-shadow: 0 8px 40px rgba(212, 168, 67, 0.3), 0 0 80px rgba(212, 168, 67, 0.1);
    animation: floatIcon 4s ease-in-out infinite;
}

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

/* Hero Title */
.hero-title {
    margin-bottom: 1rem;
}

.title-sanskrit {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark), var(--gold-light));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerGold 4s linear infinite;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-shadow: none;
    filter: drop-shadow(0 3px 15px rgba(212, 168, 67, 0.35));
    -webkit-text-stroke: 0.5px rgba(212, 168, 67, 0.25);
}

@keyframes shimmerGold {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.title-english {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    color: var(--text-secondary);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 0.5rem;
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--gold-light);
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-desc-en {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
}

.btn-primary-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 2rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: #0a0a1a;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
    letter-spacing: 0.02em;
}

.btn-primary-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(212, 168, 67, 0.45);
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 2rem;
    border: 1.5px solid var(--border-gold-hover);
    color: var(--gold-light);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.35s ease;
    background: rgba(212, 168, 67, 0.05);
}

.btn-outline-gold:hover {
    background: rgba(212, 168, 67, 0.12);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.15);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.stat { text-align: center; }

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: var(--border-gold);
}

/* Scroll Indicator */
.scroll-indicator {
    position: relative;
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-arrow {
    animation: bounce 2s ease-in-out infinite;
    color: var(--gold);
}

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

/* ===== SECTION COMMONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FEATURES ===== */
.features {
    padding: 7rem 0;
    background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(10, 10, 26, 1) 50%, var(--bg-deep) 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.feature-card:hover {
    border-color: var(--border-gold-hover);
    background: var(--bg-card-hover);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(212, 168, 67, 0.1), 0 0 0 1px rgba(212, 168, 67, 0.1);
}

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

.feature-icon-wrap {
    margin-bottom: 1.25rem;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(212, 168, 67, 0.15);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.15);
    transform: scale(1.05);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== SCREENSHOTS ===== */
.screenshots {
    padding: 7rem 0;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(15, 12, 5, 0.5) 50%, var(--bg-deep) 100%);
}

.screenshots-carousel {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    width: 100%;
    box-sizing: border-box;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    justify-content: center;
    flex-wrap: nowrap;
}

.phone-mockup {
    flex: 0 0 auto;
    text-align: center;
    transition: all 0.5s ease;
    cursor: pointer;
}

.phone-mockup:hover {
    transform: translateY(-10px) scale(1.05);
}

.phone-mockup:hover .phone-frame {
    border-color: var(--gold);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 60px rgba(212, 168, 67, 0.2);
}

.phone-frame {
    position: relative;
    width: 220px;
    height: 440px;
    background: #0a0a1a;
    border-radius: 36px;
    border: 2.5px solid rgba(212, 168, 67, 0.25);
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5), 
        0 0 40px rgba(212, 168, 67, 0.08), 
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

/* Modern punch-hole camera */
.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 
        0 0 0 2px rgba(40, 40, 60, 0.8),
        0 0 6px rgba(0, 0, 0, 0.5);
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-frame.large {
    width: 280px;
    height: 560px;
}

.screenshot-label {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-gold);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(212, 168, 67, 0.4);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 7rem 0;
    background: var(--bg-deep);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: 2.5rem 1rem;
    text-align: center;
    max-width: 280px;
    flex: 1;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
}

.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold-hover);
    box-shadow: 0 12px 40px rgba(212, 168, 67, 0.1);
}

.step-number {
    position: absolute;
    top: -1px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 168, 67, 0.08);
    line-height: 1;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-connector {
    flex-shrink: 0;
}

/* ===== GITA QUOTE ===== */
.gita-quote {
    padding: 7rem 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(20, 15, 5, 0.4) 50%, var(--bg-deep) 100%);
    overflow: hidden;
}

.quote-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(212, 168, 67, 0.03) 0%, transparent 50%),
                       radial-gradient(circle at 80% 50%, rgba(212, 168, 67, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.quote-card {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 3.5rem 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.quote-ornament {
    position: absolute;
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.3;
}

.quote-ornament.top-left { top: 1rem; left: 1.5rem; }
.quote-ornament.top-right { top: 1rem; right: 1.5rem; }
.quote-ornament.bottom-left { bottom: 1rem; left: 1.5rem; }
.quote-ornament.bottom-right { bottom: 1rem; right: 1.5rem; }

.quote-sanskrit {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--gold-light);
    line-height: 2;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.quote-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.quote-divider::before,
.quote-divider::after {
    content: '';
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold-hover), transparent);
}

.divider-ornament {
    color: var(--gold);
    font-size: 0.8rem;
}

.quote-translation {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.quote-reference {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ===== DOWNLOAD SECTION ===== */
.download {
    padding: 7rem 0;
    background: var(--bg-deep);
    position: relative;
}

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

.download-text .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.download-text .section-title {
    text-align: left;
}

.download-text .section-subtitle {
    text-align: left;
    margin: 0;
}

.download-text .section-badge {
    display: inline-block;
}

/* Store Badges */
.download-badges {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.35s ease;
    min-width: 180px;
}

.store-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.15);
}

.coming-soon-badge {
    cursor: default;
    opacity: 0.5;
    pointer-events: none;
}
.coming-soon-badge:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border);
    transform: none;
    box-shadow: none;
}

.store-icon {
    flex-shrink: 0;
}

.store-text {
    display: flex;
    flex-direction: column;
}

.store-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.2;
}

.store-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

/* Download Highlights */
.download-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    background: rgba(212, 168, 67, 0.06);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Download Visual */
.download-visual {
    display: flex;
    justify-content: center;
}

.floating-phone {
    animation: floatPhone 5s ease-in-out infinite;
}

@keyframes floatPhone {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-15px) rotate(-1deg); }
}

/* ===== FOOTER ===== */
.footer {
    padding: 4rem 0 2rem;
    background: rgba(5, 5, 12, 0.95);
    border-top: 1px solid var(--border-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.2);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.15rem;
}

.footer-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin: 0;
}

.footer-about {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    opacity: 0.85;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav li a {
    font-size: 1rem;
    color: var(--text-secondary);
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-nav li a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-app-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-store-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-store-badges .store-badge {
    min-width: unset;
    width: 100%;
    max-width: 200px;
    padding: 0.6rem 1rem;
}

.footer-store-badges .store-name {
    font-size: 0.95rem;
}

.footer-tagline {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-tagline a {
    color: var(--gold);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold-hover), transparent);
    margin-bottom: 1.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.98rem;
    color: var(--text-muted);
}

.footer-made {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== PRICING ===== */
.pricing {
    padding: 5rem 0;
    background: var(--bg-deep);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 750px;
    margin: 0 auto;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 168, 67, 0.3);
}
.pricing-card.premium {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(212,168,67,0.08) 0%, var(--bg-card) 100%);
    box-shadow: 0 8px 40px rgba(212, 168, 67, 0.15);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), #B8860B);
    color: #0a0a1a;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}
.pricing-tier {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}
.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Cinzel Decorative', serif;
    line-height: 1;
}
.pricing-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}
.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.pricing-features li svg {
    flex-shrink: 0;
}
.pricing-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .pricing-card.premium {
        order: -1;
    }
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    cursor: pointer;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(212, 168, 67, 0.15), 0 0 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox-overlay.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--gold-light);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10000;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 0.5rem;
}

.lightbox-close:hover {
    color: #fff;
    transform: scale(1.15);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .download-text .section-header,
    .download-text .section-title,
    .download-text .section-subtitle {
        text-align: center;
    }
    .download-text .section-subtitle {
        margin: 0 auto;
    }
    .download-badges {
        justify-content: center;
    }
    .download-highlights {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 1.5rem 3rem;
        min-height: auto;
    }

    .hero-content {
        padding-top: 1rem;
    }

    .app-icon {
        width: 90px;
        height: 90px;
        border-radius: 22px;
    }

    .hero-stats {
        gap: 1.25rem;
        flex-wrap: wrap;
    }

    .stat-divider {
        display: none;
    }

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

    .btn-primary-gold,
    .btn-outline-gold {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
    }

    .features, .screenshots, .how-it-works, .gita-quote, .download {
        padding: 4rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .steps-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .step-connector {
        transform: rotate(90deg);
    }

    .step-card {
        max-width: 100%;
    }

    .carousel-track {
        gap: 1rem;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 1rem;
    }

    .phone-mockup {
        scroll-snap-align: center;
    }

    .phone-frame {
        width: 180px;
        height: 360px;
        border-radius: 30px;
    }

    .phone-frame.large {
        width: 220px;
        height: 440px;
    }

    .quote-card {
        padding: 2.5rem 1.5rem;
    }

    .quote-ornament { display: none; }

    .download-content {
        gap: 2.5rem;
    }

    .store-badge {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .download-badges {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-store-badges {
        align-items: center;
    }

    .footer-store-badges .store-badge {
        max-width: 220px;
    }

    .footer-nav {
        align-items: center;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand-col {
        order: 1;
    }

    .footer-links-col {
        order: 2;
    }

    .footer-legal-col {
        order: 3;
    }

    .footer-app-col {
        order: 4;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .nav-cta {
        font-size: 0.78rem;
        padding: 0.4rem 1rem;
    }

    .back-link span {
        font-size: 0.82rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 400px) {
    .title-english {
        letter-spacing: 0.15em;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-num {
        font-size: 1.2rem;
    }
}
