/* Instagram Followers App - Modern Dark Theme CSS */

/* Font Awesome Fallback */
.fa, .fab, .fas, .far, .fal, .fad, .fak {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 6 Pro", sans-serif;
    font-weight: 900;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Ensure icons are visible */
.fa::before, .fab::before, .fas::before, .far::before {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

/* Fallback icons using Unicode */
.fa-fallback .fa-instagram::before, .fa-instagram::before { content: "📷"; }
.fa-fallback .fa-google-play::before, .fa-google-play::before { content: "▶"; }
.fa-fallback .fa-apple::before, .fa-apple::before { content: "🍎"; }
.fa-fallback .fa-download::before, .fa-download::before { content: "⬇"; }
.fa-fallback .fa-users::before, .fa-users::before { content: "👥"; }
.fa-fallback .fa-rocket::before, .fa-rocket::before { content: "🚀"; }
.fa-fallback .fa-shield-alt::before, .fa-shield-alt::before { content: "🛡"; }
.fa-fallback .fa-headset::before, .fa-headset::before { content: "🎧"; }
.fa-fallback .fa-chart-line::before, .fa-chart-line::before { content: "📈"; }
.fa-fallback .fa-mobile-alt::before, .fa-mobile-alt::before { content: "📱"; }
.fa-fallback .fa-tachometer-alt::before, .fa-tachometer-alt::before { content: "⚡"; }
.fa-fallback .fa-cog::before, .fa-cog::before { content: "⚙"; }
.fa-fallback .fa-chart-bar::before, .fa-chart-bar::before { content: "📊"; }
.fa-fallback .fa-envelope::before, .fa-envelope::before { content: "✉"; }
.fa-fallback .fa-chevron-down::before, .fa-chevron-down::before { content: "⬇"; }
.fa-fallback .fa-twitter::before, .fa-twitter::before { content: "🐦"; }
.fa-fallback .fa-facebook::before, .fa-facebook::before { content: "📘"; }
.fa-fallback .fa-sign-out-alt::before, .fa-sign-out-alt::before { content: "🚪"; }
.fa-fallback .fa-save::before, .fa-save::before { content: "💾"; }

/* Image fallback styles */
img {
    max-width: 100%;
    height: auto;
}

img[alt]:after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-tertiary);
    border: 2px dashed var(--text-muted);
    content: "🖼️ " attr(alt);
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
    padding: 1rem;
    font-size: 0.9rem;
}

/* CSS Variables */
:root {
    /* Colors */
    --primary-color: #e91e63;
    --primary-dark: #c2185b;
    --secondary-color: #9c27b0;
    --accent-color: #ff4081;
    --gradient-primary: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #ff4081 0%, #e91e63 100%);
    
    /* Dark Theme Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #666666;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 100px 0;
    --border-radius: 20px;
    --border-radius-small: 10px;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Space Grotesk', sans-serif;
    --font-size-h1: clamp(3rem, 8vw, 6rem);
    --font-size-h2: clamp(2rem, 5vw, 3.5rem);
    --font-size-h3: clamp(1.5rem, 3vw, 2rem);
    --font-size-body: 1.1rem;
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-small: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-large: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(233, 30, 99, 0.3);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
    opacity: 0.5;
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor,
    .cursor-follower {
        display: none !important;
    }

    body {
        cursor: auto !important;
    }
}

/* Mobile-specific optimizations */
.mobile-device .floating-element {
    animation: none !important;
    transform: none !important;
}

.mobile-device .instagram-photo {
    animation-duration: 10s !important; /* Slower on mobile */
    width: 60px !important;
    height: 60px !important;
}

.mobile-device .instagram-photo:nth-child(1) {
    animation-duration: 10s !important;
}

.mobile-device .instagram-photo:nth-child(2) {
    animation-duration: 12s !important;
}

.mobile-device .instagram-photo:nth-child(3) {
    animation-duration: 11s !important;
}

.mobile-device .instagram-photo:nth-child(4) {
    animation-duration: 14s !important;
}

.mobile-device .instagram-photo:nth-child(5) {
    animation-duration: 13s !important;
}

.mobile-device .instagram-photo:nth-child(6) {
    animation-duration: 15s !important;
}

.mobile-device .follower-counter {
    animation: none !important;
    position: fixed;
    top: auto;
    bottom: clamp(15px, 3vw, 25px);
    right: clamp(15px, 3vw, 25px);
    z-index: 1000;
    left: auto;
}

.mobile-device .counter-card {
    padding: clamp(0.8rem, 2vw, 1.2rem);
    min-width: clamp(140px, 30vw, 180px);
    max-width: 200px;
}

.mobile-device .counter-number {
    font-size: clamp(1.4rem, 4vw, 2rem);
}

.mobile-device .counter-label {
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
}

.mobile-device .counter-increase {
    font-size: clamp(0.6rem, 1.2vw, 0.8rem);
    padding: clamp(0.15rem, 0.4vw, 0.3rem) clamp(0.4rem, 0.8vw, 0.8rem);
}

.mobile-device [data-parallax] {
    transform: none !important;
}

/* Touch-friendly button styles */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px; /* iOS recommended touch target size */
        touch-action: manipulation;
    }

    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        touch-action: manipulation;
    }

    .nav-toggle {
        min-height: 25px;
        min-width: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }

    .feature-card {
        touch-action: manipulation;
    }

    /* Remove hover effects on touch devices */
    .btn:hover,
    .feature-card:hover,
    .phone-frame:hover,
    .nav-link:hover {
        transform: none;
    }

    .nav-link:hover::after {
        width: 0;
    }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.loading-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.loading-progress {
    width: 200px;
    height: 4px;
    background: var(--bg-tertiary);
    border-radius: 2px;
    overflow: hidden;
}

.loading-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: var(--shadow-medium);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-logo i {
    color: var(--primary-color);
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-normal);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all var(--transition-normal);
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius-small);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn i {
    font-size: 1.2rem;
}

.btn span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.btn strong {
    font-size: 1rem;
    font-weight: 700;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100); /* Mobile viewport height fix */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(233, 30, 99, 0.1) 0%, transparent 70%),
                radial-gradient(ellipse at 80% 20%, rgba(156, 39, 176, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

/* Instagram Photos Animation */
.instagram-photos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.instagram-photo {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0.5;
    pointer-events: auto;

    /* Crystal Glow Effect */
    box-shadow:
        0 0 20px rgba(233, 30, 99, 0.6),
        0 0 40px rgba(233, 30, 99, 0.4),
        0 0 60px rgba(233, 30, 99, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);

    /* LED Border Effect */
    border: 2px solid transparent;
    background:
        linear-gradient(#000, #000) padding-box,
        linear-gradient(45deg, #e91e63, #9c27b0, #3f51b5, #ff6b35, #e91e63) border-box;
    background-size: 100% 100%, 400% 400%;
    animation: ledBorder 3s ease-in-out infinite;

    /* Fire Animation */
    position: relative;
}

/* Sparkling particles effect */
.instagram-photo:nth-child(odd)::after {
    content: '✨';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 12px;
    animation: sparkle 2s ease-in-out infinite;
    z-index: 3;
}

.instagram-photo:nth-child(even)::after {
    content: '💎';
    position: absolute;
    bottom: -15px;
    left: -15px;
    font-size: 12px;
    animation: sparkle 2.5s ease-in-out infinite reverse;
    z-index: 3;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

.instagram-photo::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg,
        rgba(255, 69, 0, 0.8),
        rgba(255, 140, 0, 0.6),
        rgba(255, 215, 0, 0.4),
        rgba(255, 69, 0, 0.8));
    border-radius: 15px;
    z-index: -1;
    animation: fireFlicker 2s ease-in-out infinite alternate;
    filter: blur(3px);
}

.instagram-photo::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle,
        rgba(233, 30, 99, 0.4) 0%,
        rgba(156, 39, 176, 0.3) 30%,
        rgba(63, 81, 181, 0.2) 60%,
        transparent 100%);
    border-radius: 20px;
    z-index: -2;
    animation: crystalPulse 3s ease-in-out infinite;
}

.instagram-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    filter: blur(1px) brightness(0.85) contrast(1.15) saturate(1.1);
    transition: all 0.4s ease;
    transform: scale(1.05);
    position: relative;
    z-index: 1;

    /* Crystal Glass Effect */
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.instagram-photo:hover img {
    filter: blur(0px) brightness(1.2) contrast(1.3) saturate(1.4);
    transform: scale(1);

    /* Enhanced glow on hover */
    box-shadow:
        0 0 30px rgba(233, 30, 99, 0.8),
        0 0 60px rgba(233, 30, 99, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Enhanced hover effects */
.instagram-photo:hover {
    /* Intense crystal glow */
    box-shadow:
        0 0 40px rgba(233, 30, 99, 0.9),
        0 0 80px rgba(233, 30, 99, 0.7),
        0 0 120px rgba(233, 30, 99, 0.5),
        0 15px 50px rgba(0, 0, 0, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.2);

    opacity: 0.8 !important;
    transform: scale(1.2) rotate(5deg);
    animation-play-state: paused;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Fire burn-out effect on hover */
.instagram-photo:hover::before {
    animation: fireBurnOut 2s ease-out forwards;
}

/* Crystal shimmer effect */
@keyframes crystalShimmer {
    0% { filter: brightness(1) hue-rotate(0deg); }
    25% { filter: brightness(1.3) hue-rotate(90deg); }
    50% { filter: brightness(1.5) hue-rotate(180deg); }
    75% { filter: brightness(1.3) hue-rotate(270deg); }
    100% { filter: brightness(1) hue-rotate(360deg); }
}

/* Fire burn-out animation */
@keyframes fireBurnOut {
    0% {
        opacity: 0.8;
        transform: scale(1);
        filter: blur(3px) brightness(1.5);
    }
    30% {
        opacity: 1;
        transform: scale(1.2);
        filter: blur(2px) brightness(2) hue-rotate(30deg);
    }
    60% {
        opacity: 0.6;
        transform: scale(0.8);
        filter: blur(8px) brightness(0.5) hue-rotate(-30deg);
    }
    100% {
        opacity: 0;
        transform: scale(0.3);
        filter: blur(15px) brightness(0);
    }
}

.instagram-photo .photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(233, 30, 99, 0.8), rgba(156, 39, 176, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-weight: 600;
}

.instagram-photo:hover .photo-overlay {
    opacity: 1;
}

.instagram-photo .photo-overlay i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.instagram-photo .photo-overlay .likes {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

/* Photo positioning and unique animations */
.instagram-photo:nth-child(1) {
    top: 15%;
    left: -100px;
    animation: flyPhotoStraight 8s ease-in-out infinite;
    animation-delay: 0s;
}

.instagram-photo:nth-child(2) {
    top: 30%;
    left: -100px;
    animation: flyPhotoWave 10s ease-in-out infinite;
    animation-delay: 1.5s;
}

.instagram-photo:nth-child(3) {
    top: 45%;
    left: -100px;
    animation: flyPhotoBounce 9s ease-in-out infinite;
    animation-delay: 3s;
}

.instagram-photo:nth-child(4) {
    top: 60%;
    left: -100px;
    animation: flyPhotoSpiral 12s ease-in-out infinite;
    animation-delay: 4.5s;
}

.instagram-photo:nth-child(5) {
    top: 75%;
    left: -100px;
    animation: flyPhotoZigzag 11s ease-in-out infinite;
    animation-delay: 6s;
}

.instagram-photo:nth-child(6) {
    top: 20%;
    left: -100px;
    animation: flyPhotoFloat 13s ease-in-out infinite;
    animation-delay: 7.5s;
}



/* Animation 1: Straight Line Movement */
@keyframes flyPhotoStraight {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    15% {
        opacity: 0.5;
        transform: translateX(150px) translateY(0) rotate(5deg) scale(1);
    }
    85% {
        opacity: 0.5;
        transform: translateX(calc(100vw - 50px)) translateY(0) rotate(-5deg) scale(1);
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(0) rotate(10deg) scale(0.8);
        opacity: 0;
    }
}

/* Animation 2: Wave Movement */
@keyframes flyPhotoWave {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(0.9);
        opacity: 0;
    }
    15% {
        opacity: 0.5;
        transform: translateX(200px) translateY(-30px) rotate(10deg) scale(1);
    }
    35% {
        opacity: 0.5;
        transform: translateX(40vw) translateY(40px) rotate(-15deg) scale(1.1);
    }
    65% {
        opacity: 0.5;
        transform: translateX(70vw) translateY(-50px) rotate(20deg) scale(1);
    }
    85% {
        opacity: 0.5;
        transform: translateX(calc(100vw - 100px)) translateY(20px) rotate(-10deg) scale(0.9);
    }
    100% {
        transform: translateX(calc(100vw + 150px)) translateY(0) rotate(0deg) scale(0.8);
        opacity: 0;
    }
}

/* Animation 3: Bounce Movement */
@keyframes flyPhotoBounce {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(0.7);
        opacity: 0;
    }
    15% {
        opacity: 0.5;
        transform: translateX(180px) translateY(-60px) rotate(-10deg) scale(1.2);
    }
    30% {
        opacity: 0.5;
        transform: translateX(35vw) translateY(10px) rotate(15deg) scale(0.9);
    }
    50% {
        opacity: 0.5;
        transform: translateX(55vw) translateY(-80px) rotate(-20deg) scale(1.3);
    }
    70% {
        opacity: 0.5;
        transform: translateX(75vw) translateY(15px) rotate(25deg) scale(0.8);
    }
    85% {
        opacity: 0.5;
        transform: translateX(calc(100vw - 80px)) translateY(-40px) rotate(-15deg) scale(1.1);
    }
    100% {
        transform: translateX(calc(100vw + 120px)) translateY(0) rotate(0deg) scale(0.7);
        opacity: 0;
    }
}

/* Animation 4: Spiral Movement */
@keyframes flyPhotoSpiral {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(0.6);
        opacity: 0;
    }
    15% {
        opacity: 0.5;
        transform: translateX(250px) translateY(-40px) rotate(45deg) scale(1);
    }
    25% {
        opacity: 0.5;
        transform: translateX(30vw) translateY(-80px) rotate(90deg) scale(1.2);
    }
    35% {
        opacity: 0.5;
        transform: translateX(45vw) translateY(-40px) rotate(135deg) scale(1);
    }
    45% {
        opacity: 0.5;
        transform: translateX(50vw) translateY(0) rotate(180deg) scale(0.8);
    }
    55% {
        opacity: 0.5;
        transform: translateX(55vw) translateY(40px) rotate(225deg) scale(1.1);
    }
    65% {
        opacity: 0.5;
        transform: translateX(70vw) translateY(80px) rotate(270deg) scale(1.3);
    }
    75% {
        opacity: 0.5;
        transform: translateX(85vw) translateY(40px) rotate(315deg) scale(1);
    }
    85% {
        opacity: 0.5;
        transform: translateX(calc(100vw - 50px)) translateY(0) rotate(360deg) scale(0.9);
    }
    100% {
        transform: translateX(calc(100vw + 200px)) translateY(-20px) rotate(405deg) scale(0.6);
        opacity: 0;
    }
}

/* Animation 5: Zigzag Movement */
@keyframes flyPhotoZigzag {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    12% {
        opacity: 0.5;
        transform: translateX(150px) translateY(-50px) rotate(30deg) scale(1);
    }
    25% {
        opacity: 0.5;
        transform: translateX(25vw) translateY(60px) rotate(-45deg) scale(1.1);
    }
    37% {
        opacity: 0.5;
        transform: translateX(40vw) translateY(-70px) rotate(60deg) scale(0.9);
    }
    50% {
        opacity: 0.5;
        transform: translateX(55vw) translateY(80px) rotate(-75deg) scale(1.2);
    }
    62% {
        opacity: 0.5;
        transform: translateX(70vw) translateY(-60px) rotate(90deg) scale(1);
    }
    75% {
        opacity: 0.5;
        transform: translateX(85vw) translateY(50px) rotate(-105deg) scale(0.8);
    }
    87% {
        opacity: 0.5;
        transform: translateX(calc(100vw - 100px)) translateY(-40px) rotate(120deg) scale(1.1);
    }
    100% {
        transform: translateX(calc(100vw + 150px)) translateY(0) rotate(-135deg) scale(0.8);
        opacity: 0;
    }
}

/* Animation 6: Float Movement */
@keyframes flyPhotoFloat {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(0.9);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
        transform: translateX(120px) translateY(-20px) rotate(5deg) scale(1);
    }
    20% {
        opacity: 0.5;
        transform: translateX(20vw) translateY(-35px) rotate(-8deg) scale(1.05);
    }
    30% {
        opacity: 0.5;
        transform: translateX(35vw) translateY(-15px) rotate(12deg) scale(0.95);
    }
    40% {
        opacity: 0.5;
        transform: translateX(50vw) translateY(-45px) rotate(-15deg) scale(1.1);
    }
    50% {
        opacity: 0.5;
        transform: translateX(60vw) translateY(-25px) rotate(18deg) scale(1);
    }
    60% {
        opacity: 0.5;
        transform: translateX(70vw) translateY(-40px) rotate(-20deg) scale(0.9);
    }
    70% {
        opacity: 0.5;
        transform: translateX(80vw) translateY(-18px) rotate(22deg) scale(1.05);
    }
    80% {
        opacity: 0.5;
        transform: translateX(90vw) translateY(-35px) rotate(-25deg) scale(1);
    }
    90% {
        opacity: 0.5;
        transform: translateX(calc(100vw - 80px)) translateY(-20px) rotate(28deg) scale(0.95);
    }
    100% {
        transform: translateX(calc(100vw + 180px)) translateY(0) rotate(-30deg) scale(0.9);
        opacity: 0;
    }
}

/* Fire Flicker Animation */
@keyframes fireFlicker {
    0% {
        opacity: 0.8;
        transform: scale(1) rotate(0deg);
        filter: blur(3px) hue-rotate(0deg);
    }
    25% {
        opacity: 1;
        transform: scale(1.05) rotate(1deg);
        filter: blur(2px) hue-rotate(10deg);
    }
    50% {
        opacity: 0.9;
        transform: scale(0.98) rotate(-1deg);
        filter: blur(4px) hue-rotate(-5deg);
    }
    75% {
        opacity: 1;
        transform: scale(1.02) rotate(0.5deg);
        filter: blur(2.5px) hue-rotate(15deg);
    }
    100% {
        opacity: 0.7;
        transform: scale(0.95) rotate(-0.5deg);
        filter: blur(5px) hue-rotate(-10deg);
    }
}

/* Crystal Pulse Animation */
@keyframes crystalPulse {
    0% {
        opacity: 0.4;
        transform: scale(1);
        box-shadow: 0 0 30px rgba(233, 30, 99, 0.4);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
        box-shadow: 0 0 50px rgba(233, 30, 99, 0.6);
    }
    100% {
        opacity: 0.4;
        transform: scale(1);
        box-shadow: 0 0 30px rgba(233, 30, 99, 0.4);
    }
}

/* LED Border Animation */
@keyframes ledBorder {
    0% {
        background-position: 0% 50%;
        filter: brightness(1) saturate(1);
    }
    25% {
        background-position: 100% 50%;
        filter: brightness(1.2) saturate(1.3);
    }
    50% {
        background-position: 100% 100%;
        filter: brightness(1.5) saturate(1.5);
    }
    75% {
        background-position: 0% 100%;
        filter: brightness(1.2) saturate(1.3);
    }
    100% {
        background-position: 0% 50%;
        filter: brightness(1) saturate(1);
    }
}

/* Fire Burst Animation */
@keyframes fireBurst {
    0% {
        transform: translate(-50%, -50%) scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(2) rotate(180deg);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(4) rotate(360deg);
        opacity: 0;
    }
}

/* Sparkle Explosion Animation */
@keyframes sparkleExplosion {
    0% {
        transform: translate(-50%, -50%) scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%)
                   translateX(calc(cos(var(--angle)) * var(--distance)))
                   translateY(calc(sin(var(--angle)) * var(--distance)))
                   scale(1.5) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%)
                   translateX(calc(cos(var(--angle)) * calc(var(--distance) * 2)))
                   translateY(calc(sin(var(--angle)) * calc(var(--distance) * 2)))
                   scale(0) rotate(360deg);
        opacity: 0;
    }
}

/* Crystal Resonance Animation */
@keyframes crystalResonance {
    0% {
        transform: scale(1);
        opacity: 0.8;
        border-color: rgba(233, 30, 99, 0.6);
    }
    50% {
        transform: scale(1.5);
        opacity: 0.4;
        border-color: rgba(156, 39, 176, 0.8);
    }
    100% {
        transform: scale(2);
        opacity: 0;
        border-color: rgba(63, 81, 181, 0.2);
    }
}

/* Enhanced Glow Variations */
.instagram-photo:nth-child(1) {
    --glow-color: rgba(233, 30, 99, var(--glow-intensity, 0.6));
}

.instagram-photo:nth-child(2) {
    --glow-color: rgba(156, 39, 176, var(--glow-intensity, 0.6));
}

.instagram-photo:nth-child(3) {
    --glow-color: rgba(63, 81, 181, var(--glow-intensity, 0.6));
}

.instagram-photo:nth-child(4) {
    --glow-color: rgba(255, 107, 53, var(--glow-intensity, 0.6));
}

.instagram-photo:nth-child(5) {
    --glow-color: rgba(76, 175, 80, var(--glow-intensity, 0.6));
}

.instagram-photo:nth-child(6) {
    --glow-color: rgba(255, 193, 7, var(--glow-intensity, 0.6));
}

/* Follower Counter */
.follower-counter {
    position: absolute;
    top: clamp(15%, 20vw, 25%);
    right: clamp(5%, 8vw, 12%);
    z-index: 2;
    animation: counterFloat 3s ease-in-out infinite;
}

.counter-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: clamp(12px, 2vw, 20px);
    padding: clamp(1rem, 2.5vw, 2rem);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    min-width: clamp(160px, 25vw, 220px);
    max-width: 280px;
}

.counter-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #e91e63;
    font-weight: 600;
}

.counter-header i {
    font-size: 1.2rem;
}

.counter-number {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: countUp 2s ease-out;
    line-height: 1.1;
}

.counter-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.8rem, 1.5vw, 1.1rem);
    margin-bottom: 0.75rem;
}

.counter-increase {
    color: #4CAF50;
    font-weight: 600;
    font-size: clamp(0.7rem, 1.2vw, 1rem);
    background: rgba(76, 175, 80, 0.1);
    padding: clamp(0.2rem, 0.5vw, 0.4rem) clamp(0.5rem, 1vw, 1rem);
    border-radius: 20px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    animation: pulse 2s ease-in-out infinite;
    display: inline-block;
}

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

@keyframes countUp {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
}

/* Clean Hero Styles */
.instagram-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.instagram-badge i {
    font-size: 1rem;
}

/* Simplified Hero Title */
.hero-title {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
    color: white;
}

.title-gradient {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

/* Clean Hero Subtitle */
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    text-align: center;
}

/* Simple Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 4vw, 3rem);
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 80px;
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.phone-mockup {
    position: relative;
    width: clamp(280px, 35vw, 400px);
    height: clamp(560px, 70vw, 800px);
    margin: 0 auto;
    max-width: 400px;
    max-height: 800px;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: clamp(30px, 5vw, 50px);
    padding: clamp(15px, 3vw, 25px);
    box-shadow:
        0 0 0 clamp(6px, 1vw, 10px) #333,
        0 0 0 clamp(10px, 1.5vw, 15px) #222,
        0 clamp(15px, 3vw, 25px) clamp(40px, 8vw, 80px) rgba(0, 0, 0, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
}

.phone-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #444;
    border-radius: 3px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #000 0%, #111 100%);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.instagram-interface {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #000 0%, #1a1a1a 100%);
    color: white;
    display: flex;
    flex-direction: column;
    padding: 20px 15px;
}

.instagram-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
}

.instagram-header i {
    font-size: 1.5rem;
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instagram-header span {
    font-size: 1.2rem;
    font-weight: 600;
}

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #e91e63;
    padding: 3px;
    background: linear-gradient(45deg, #e91e63, #9c27b0);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-stats {
    display: flex;
    gap: 20px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.8rem;
    color: #999;
}

.growth-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    padding: 10px 15px;
    border-radius: 20px;
    margin-top: auto;
    animation: growthPulse 2s ease-in-out infinite;
}

.growth-indicator i {
    color: white;
    font-size: 1rem;
}

.growth-indicator span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Floating Stats */
.floating-stats {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-stat {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 8px 15px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: floatStat 4s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.floating-stat:nth-child(1) {
    top: 10%;
    right: -20%;
    animation-delay: 0s;
}

.floating-stat:nth-child(2) {
    top: 40%;
    left: -25%;
    animation-delay: 1s;
}

.floating-stat:nth-child(3) {
    bottom: 20%;
    right: -15%;
    animation-delay: 2s;
}

.floating-stat i {
    color: #e91e63;
    font-size: 1rem;
}

@keyframes floatStat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px) scale(1.05);
        opacity: 1;
    }
}

/* Hero Content Layout */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    min-height: 80vh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    z-index: 2;
    text-align: center;
}

/* Simplified Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.growth-visualization {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.growth-circle {
    position: relative;
    width: clamp(200px, 25vw, 300px);
    height: clamp(200px, 25vw, 300px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.growth-inner {
    width: 80%;
    height: 80%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(233, 30, 99, 0.4);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.growth-inner i {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #e91e63;
    margin-bottom: 0.75rem;
}

.growth-number {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.growth-label {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.8);
    text-transform: lowercase;
    font-weight: 500;
}



.growth-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid #e91e63;
    border-radius: 50%;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.growth-indicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    color: white;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.indicator:nth-child(1) { animation-delay: 0.5s; }
.indicator:nth-child(2) { animation-delay: 1s; }
.indicator:nth-child(3) { animation-delay: 1.5s; }

.indicator i {
    color: #e91e63;
    font-size: 1rem;
}

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

/* Instagram Stories Section */
.instagram-stories {
    padding: 6rem 0;
    background: linear-gradient(135deg, #241d25 0% 0%, #0a0a0a 100% 100%);
    position: relative;
    overflow: hidden;
}

.instagram-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(233,30,99,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.instagram-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 1;
}

.instagram-post {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.instagram-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
    border-color: rgba(233, 30, 99, 0.3);
}

.post-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 0.75rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #e91e63;
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    padding: 2px;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.user-info {
    flex: 1;
}

.username {
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}

.location {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.verified-badge {
    color: #1DA1F2;
    font-size: 1rem;
}

.post-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-post:hover .post-image img {
    transform: scale(1.05);
}

.follower-growth {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.growth-badge {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    animation: growthPulse 2s ease-in-out infinite;
}

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

.post-actions {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.action-buttons {
    display: flex;
    gap: 1rem;
}

.action-buttons i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-buttons i:hover {
    color: #e91e63;
    transform: scale(1.2);
}

.likes-count {
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}

.post-caption {
    padding: 0 1rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
}

.post-caption strong {
    color: white;
}

/* Success Metrics */
.success-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.metric {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.metric:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2);
}

.metric-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-text {
    z-index: 2;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-h1);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    color: var(--text-primary);
}

.title-gradient {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--font-size-body);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
    flex: 1;
    max-width: 150px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Analytics Section */
.analytics {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.analytics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(233, 30, 99, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(156, 39, 176, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.analytics::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%);
    background-size: 40px 40px, 40px 40px, 80px 80px, 80px 80px;
    background-position: 0 0, 0 0, 0 0, 40px 40px;
    opacity: 0.4;
    pointer-events: none;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(40px, 40px);
    }
}

/* Floating geometric shapes */
.analytics .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.analytics .floating-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: floatAnalytics 8s ease-in-out infinite;
}

.analytics .floating-shape:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.analytics .floating-shape:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 70%;
    right: 10%;
    animation-delay: 2s;
}

.analytics .floating-shape:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 5%;
    animation-delay: 4s;
}

.analytics .floating-shape:nth-child(4) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 15%;
    animation-delay: 1s;
}

@keyframes floatAnalytics {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(10px) rotate(180deg);
    }
    75% {
        transform: translateY(-15px) rotate(270deg);
    }
}

/* Animated particles */
.analytics .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.analytics .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 12s linear infinite;
}

.analytics .particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.analytics .particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 12s;
}

.analytics .particle:nth-child(3) {
    left: 40%;
    animation-delay: 4s;
    animation-duration: 8s;
}

.analytics .particle:nth-child(4) {
    left: 60%;
    animation-delay: 1s;
    animation-duration: 14s;
}

.analytics .particle:nth-child(5) {
    left: 80%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.analytics .particle:nth-child(6) {
    left: 90%;
    animation-delay: 5s;
    animation-duration: 11s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
        transform: scale(1);
    }
    90% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

.analytics-content {
    position: relative;
    z-index: 2;
}

.analytics .section-header {
    position: relative;
    z-index: 3;
}

.analytics .section-title {
    position: relative;
    display: inline-block;
}

.analytics .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.analytics .section-subtitle {
    margin-top: 1.5rem;
}

.analytics-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.analytics-stat-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.analytics-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.analytics-stat-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.analytics-stat-item:hover::before {
    transform: scaleX(1);
}

.analytics-stat-item:hover::after {
    opacity: 1;
}

.analytics-stat-item:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(233, 30, 99, 0.4);
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.2);
}

.analytics-stat-item .stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.analytics-stat-item .stat-content {
    margin-bottom: 1.5rem;
}

.analytics-stat-item .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.analytics-stat-item .stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.analytics-stat-item .stat-chart {
    margin-top: 1.5rem;
}

.mini-chart {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.chart-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    width: 0%;
    transition: width 2s ease-in-out;
    position: relative;
    box-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
}

.chart-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.growth-chart {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.growth-chart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.growth-chart::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.growth-chart:hover::after {
    opacity: 0.1;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.chart-header h4 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
}

.chart-period {
    display: flex;
    gap: 0.5rem;
}

.period-btn {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 0.85rem;
    font-weight: 500;
}

.period-btn:hover,
.period-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
}

.chart-container {
    position: relative;
    height: 200px;
}

.chart-fallback {
    display: none;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 150px;
    padding: 1rem 0;
}

.chart-bar-item {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    animation: chartGrow 1.5s ease-out;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.8rem;
    padding-top: 0.5rem;
}

@keyframes chartGrow {
    from {
        height: 0;
    }
    to {
        height: var(--final-height, 50%);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup {
    position: relative;
    z-index: 2;
}

.phone-image {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.phone-screen {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 70%;
    border-radius: 25px;
    overflow: hidden;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.character {
    position: absolute;
    z-index: 1;
    animation: bounce 3s ease-in-out infinite;
}

.character img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.character.victor {
    top: 10%;
    left: -20%;
    animation-delay: 0s;
}

.character.anyishman {
    bottom: 10%;
    right: -20%;
    animation-delay: 1.5s;
}

.character-bubble {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    animation: bubbleShow 3s ease-in-out infinite;
}

.character-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--primary-color);
}

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

@keyframes bubbleShow {
    0%, 70%, 100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    10%, 60% {
        opacity: 1;
        transform: translateX(-50%) translateY(0px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-secondary);
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
}

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

.section-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-h2);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Features Section */
.features {
    background: var(--bg-secondary);
}

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

.feature-card {
    background: var(--bg-tertiary);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    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 var(--transition-normal);
    z-index: 1;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: var(--font-size-h3);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Download Section */
.download {
    background: var(--bg-primary);
}

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

.download-text h2 {
    font-family: var(--font-secondary);
    font-size: var(--font-size-h2);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-text p {
    font-size: var(--font-size-body);
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.download-visual {
    position: relative;
}

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

.phone-frame {
    flex: 1;
   
    transition: all var(--transition-normal);
}

.phone-frame:nth-child(2) {
    transform: scale(1.1);
    z-index: 2;
}

.phone-frame:hover {
    transform: scale(1.05);
}

.phone-frame:nth-child(2):hover {
    transform: scale(1.15);
}

.phone-frame img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-large);
}

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

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--primary-color);
    font-size: 2rem;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--border-radius-small);
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-btn:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
}

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

/* Responsive Design */
@media (max-width: 480px) {
    /* Extra Small Screens */
    .phone-mockup {
        width: clamp(240px, 80vw, 300px);
        height: clamp(480px, 160vw, 600px);
    }

    .follower-counter {
        bottom: clamp(15px, 3vw, 20px) !important;
        right: clamp(15px, 3vw, 20px) !important;
        top: auto !important;
        left: auto !important;
    }

    .counter-card {
        min-width: clamp(120px, 35vw, 160px) !important;
        padding: clamp(0.6rem, 1.5vw, 1rem) !important;
    }

    .counter-number {
        font-size: clamp(1.2rem, 5vw, 1.8rem) !important;
    }

    .instagram-photo {
        width: 50px !important;
        height: 50px !important;
    }

    .floating-stat {
        font-size: 0.6rem !important;
        padding: 4px 8px !important;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 0;
    }

    .nav-container {
        padding: 0.75rem 1rem;
        min-height: 60px;
    }

    .nav-logo {
        font-size: 1.25rem;
        z-index: 1001;
    }

    .nav-logo i {
        font-size: 1.75rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform var(--transition-normal);
        z-index: 1000;
        box-shadow: var(--shadow-large);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    /* Prevent body scroll when mobile menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .nav-link {
        font-size: 1.5rem;
        padding: 1rem 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
        z-index: 1001;
        position: relative;
        width: 30px;
        height: 24px;
        justify-content: space-between;
    }

    .nav-toggle span {
        width: 100%;
        height: 3px;
        background: var(--text-primary);
        transition: all var(--transition-normal);
        border-radius: 2px;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        min-height: calc(var(--vh, 1vh) * 100);
        padding: 70px 0 40px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    /* Hero Section Mobile */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
        min-height: auto;
    }

    .hero-text {
        order: 1;
    }

    .hero-visual {
        order: 2;
        margin-top: 1rem;
    }

    .hero-stats {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .stat-item {
        padding: 0.75rem;
        min-width: 70px;
    }

    .growth-circle {
        width: clamp(150px, 40vw, 200px);
        height: clamp(150px, 40vw, 200px);
    }

    .growth-inner {
        backdrop-filter: blur(10px);
    }

    .growth-inner i {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        margin-bottom: 0.5rem;
    }

    .growth-number {
        font-size: clamp(1.4rem, 4vw, 2.2rem);
        margin-bottom: 0.2rem;
    }

    .growth-label {
        font-size: clamp(0.7rem, 1.8vw, 0.9rem);
    }

    .growth-indicators {
        gap: 0.75rem;
    }

    .indicator {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 1rem;
        margin-bottom: 2rem;
        justify-content: center;
    }

    .stat-item {
        flex: 1;
        min-width: 80px;
        max-width: 120px;
    }

    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 0.25rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        padding: 0 1rem;
    }

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

    .phone-mockup {
        max-width: 250px;
        margin: 0 auto;
    }

    /* Analytics Section Mobile */
    .analytics .floating-shapes,
    .analytics .particles {
        display: none; /* Hide complex animations on mobile for performance */
    }

    .analytics-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .analytics-stat-item {
        padding: 1.5rem;
        backdrop-filter: blur(10px);
    }

    .analytics-stat-item .stat-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .analytics-stat-item .stat-number {
        font-size: 2rem;
    }

    .analytics-stat-item .stat-label {
        font-size: 0.85rem;
    }

    .growth-chart {
        padding: 1.5rem;
    }

    .chart-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .chart-header h3 {
        font-size: 1.25rem;
    }

    .chart-container {
        height: 200px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

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

    /* Characters */
    .character {
        display: none; /* Hide on mobile for better performance */
    }

    .hero-visual {
        order: -1;
        margin-bottom: 2rem;
    }

    /* Instagram Photos Mobile */
    .instagram-photo {
        width: 60px;
        height: 60px;
        animation-duration: 10s;
    }

    .follower-counter {
        top: auto;
        bottom: 20px;
        right: 20px;
        position: fixed;
        z-index: 1000;
    }

    .counter-card {
        padding: 1rem;
        min-width: 160px;
    }

    .counter-number {
        font-size: 2rem;
    }

    /* Instagram Badge Mobile */
    .instagram-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1.5rem;
    }

    /* Hero Benefits Mobile */
    .hero-benefits {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .benefit-item {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .benefit-item:hover {
        transform: translateY(-2px);
    }

    /* Hero Title Mobile */
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-bottom: 1.5rem;
    }

    /* Hero Subtitle Mobile */
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    /* Hero Visual Mobile */
    .phone-mockup {
        width: clamp(280px, 70vw, 350px);
        height: clamp(560px, 140vw, 700px);
        margin: 2rem auto;
    }

    .phone-frame {
        transform: perspective(800px) rotateY(-2deg) rotateX(1deg);
    }

    .phone-frame:hover {
        transform: perspective(800px) rotateY(0deg) rotateX(0deg) scale(1.01);
    }

    .floating-stat {
        font-size: clamp(0.6rem, 1.5vw, 0.8rem);
        padding: clamp(4px, 1vw, 8px) clamp(8px, 2vw, 15px);
    }

    .floating-stat:nth-child(1) {
        right: -25%;
        top: 15%;
    }

    .floating-stat:nth-child(2) {
        left: -30%;
        top: 45%;
    }

    .floating-stat:nth-child(3) {
        right: -20%;
        bottom: 25%;
    }

    /* Follower Counter Mobile Positioning */
    .follower-counter {
        position: fixed;
        top: auto;
        bottom: clamp(20px, 4vw, 30px);
        right: clamp(20px, 4vw, 30px);
        left: auto;
        z-index: 1000;
    }

    /* Instagram Stories Mobile */
    .instagram-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .instagram-post {
        max-width: 400px;
        margin: 0 auto;
    }

    .success-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }

    .metric {
        padding: 1.5rem;
    }

    .metric-number {
        font-size: 2rem;
    }

    .metric-label {
        font-size: 0.9rem;
    }

    .phone-mockup {
        max-width: 250px;
        margin: 0 auto;
    }

    .phone-image {
        max-width: 100%;
    }

    /* Features Section */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    /* Download Section */
    .download-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .download-text {
        order: 2;
    }

    .download-visual {
        order: 1;
    }

    .phones-showcase {
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
        overflow-x: auto;
        padding: 1rem 0;
    }

    .phone-frame {
        flex: 0 0 auto;
      
    }

    .phone-frame:nth-child(2) {
        transform: scale(1.1);
        order: 0;
    }

    .download-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

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

    .social-links {
        justify-content: center;
    }

    .footer-download-buttons {
        align-items: center;
    }

    /* Section Spacing */
    section {
        padding: 60px 0;
    }

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

    .section-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Base Layout */
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0.5rem 1rem;
        min-height: 56px;
    }

    .nav-logo {
        font-size: 1.1rem;
    }

    .nav-logo i {
        font-size: 1.5rem;
    }

    .nav-toggle {
        width: 28px;
        height: 22px;
    }

    .nav-toggle span {
        height: 2px;
    }

    .nav-menu {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 1.25rem;
        padding: 0.75rem 0;
    }

    /* Hero Section - Extra Small Screens */
    .hero {
        padding: 70px 0 30px;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 0 1rem;
    }

    /* Hero Section Small Mobile */
    .hero {
        padding: 60px 0 30px;
        min-height: 90vh;
    }

    .hero-content {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1.1;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 0.75rem;
        margin: 1.5rem 0;
        justify-content: space-between;
        padding: 0 0.5rem;
    }

    .stat-item {
        flex: 1;
        min-width: 70px;
        max-width: 90px;
    }

    .stat-number {
        font-size: 1.4rem;
        margin-bottom: 0.125rem;
    }

    .stat-label {
        font-size: 0.65rem;
        line-height: 1.2;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0 0.5rem;
    }

    .btn {
        width: 100%;
        max-width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .phone-mockup {
        max-width: 200px;
    }

    /* Analytics Section Small Mobile */
    .analytics-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .analytics-stat-item {
        padding: 1.25rem;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 1rem;
    }

    .analytics-stat-item .stat-icon {
        font-size: 2rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .analytics-stat-item .stat-content {
        flex: 1;
        margin-bottom: 0;
    }

    .analytics-stat-item .stat-number {
        font-size: 1.75rem;
        margin-bottom: 0.25rem;
    }

    .analytics-stat-item .stat-label {
        font-size: 0.8rem;
    }

    .analytics-stat-item .stat-chart {
        margin-top: 0.5rem;
        width: 80px;
        flex-shrink: 0;
    }

    .growth-chart {
        padding: 1rem;
    }

    .chart-header h3 {
        font-size: 1.1rem;
    }

    .period-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }

    .chart-container {
        height: 150px;
    }

    .chart-bars {
        height: 100px;
        gap: 0.25rem;
    }

    .chart-labels {
        font-size: 0.7rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
        max-width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn i {
        font-size: 1rem;
    }

    .btn small {
        font-size: 0.7rem;
    }

    .btn strong {
        font-size: 0.9rem;
    }

    /* Phone Mockup */
    .phone-mockup {
        max-width: 200px;
    }

    /* Features */
    .features {
        padding: 40px 0;
    }

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

    .feature-card {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Download Section */
    .download {
        padding: 40px 0;
    }

    .download-text h2 {
        font-size: clamp(1.75rem, 6vw, 2rem);
        margin-bottom: 1rem;
    }

    .download-text p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .phones-showcase {
        gap: 0.25rem;
        padding: 0.5rem;
    }



    /* Footer */
    .footer {
        padding: 30px 0;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-logo {
        font-size: 1.25rem;
    }

    .footer-logo i {
        font-size: 1.5rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer-section p,
    .footer-section ul li a {
        font-size: 0.9rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }

    .footer-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }

    /* Section Spacing */
    section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .section-title {
        font-size: clamp(1.75rem, 6vw, 2rem);
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Loading Screen */
    .loading-logo {
        font-size: 3rem;
    }

    .loading-text {
        font-size: 1rem;
    }

    .loading-progress {
        width: 150px;
    }

    /* Scroll Indicator */
    .scroll-indicator {
        bottom: 1rem;
    }

    .scroll-text {
        font-size: 0.8rem;
    }
}

/* AOS Animation Overrides */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Additional Mobile Responsive Styles */
@media (max-width: 320px) {
    .nav-container {
        padding: 0.5rem 0.75rem;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .nav-logo i {
        font-size: 1.25rem;
    }

    .nav-toggle {
        width: 24px;
        height: 20px;
    }

    /* Hero Section Extra Small */
    .hero {
        padding: 50px 0 20px;
        min-height: 85vh;
    }

    .hero-content {
        gap: 1rem;
        padding: 0 0.25rem;
    }

    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        padding: 0 0.25rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 0.5rem;
        margin: 1rem 0;
        padding: 0 0.25rem;
    }

    .stat-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        background: rgba(255, 255, 255, 0.05);
        padding: 0.75rem;
        border-radius: 8px;
        max-width: none;
    }

    .stat-number {
        font-size: 1.25rem;
        margin-bottom: 0;
        color: var(--primary-color);
    }

    .stat-label {
        font-size: 0.65rem;
        margin-left: 0.5rem;
    }

    .hero-buttons {
        gap: 0.5rem;
        padding: 0 0.25rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .phone-mockup {
        max-width: 180px;
    }

    /* Analytics Section Extra Small */
    .analytics-stats {
        gap: 0.75rem;
    }

    .analytics-stat-item {
        padding: 1rem;
        gap: 0.75rem;
    }

    .analytics-stat-item .stat-icon {
        font-size: 1.75rem;
    }

    .analytics-stat-item .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.125rem;
    }

    .analytics-stat-item .stat-label {
        font-size: 0.75rem;
    }

    .analytics-stat-item .stat-chart {
        width: 60px;
    }

    .growth-chart {
        padding: 0.75rem;
    }

    .chart-header {
        gap: 0.5rem;
    }

    .chart-header h3 {
        font-size: 1rem;
    }

    .period-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }

    .chart-container {
        height: 120px;
    }
}

/* Landscape mobile orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .nav-menu {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link:last-child {
        border-right: none;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection Styling */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}
