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

:root {
    /* Instagram-inspired gradient colors */
    --gradient-pink: #f09433;
    --gradient-purple: #e6683c;
    --gradient-orange: #dc2743;
    --gradient-blue: #cc2366;
    --gradient-violet: #bc1888;

    /* Additional colors */
    --bg-dark: #0a0a0a;
    --bg-dark-secondary: #1a1a1a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 100px 20px;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-purple), var(--gradient-orange), var(--gradient-blue), var(--gradient-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(10, 10, 10, 0.95);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-icon {
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-pink), var(--gradient-violet));
    transition: var(--transition-smooth);
}

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

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

.btn-nav {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-violet));
    border-radius: 25px;
    color: white !important;
}

.btn-nav::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

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

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-pink);
    top: -250px;
    right: -250px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-violet);
    bottom: -200px;
    left: -200px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--gradient-blue);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-tagline {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-secondary);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-violet));
    color: white;
    box-shadow: 0 10px 30px rgba(188, 24, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(188, 24, 136, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 1s ease 0.8s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Phone Mockup */
.hero-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease 0.5s both;
}

.phone-mockup {
    position: relative;
    perspective: 1000px;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
    animation: phoneFloat 6s ease-in-out infinite;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #0a0a0a;
    border-radius: 15px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.hero-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.app-preview {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.app-nav {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.app-content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.story-bar {
    display: flex;
    gap: 8px;
    height: 60px;
}

.story-item {
    flex: 1;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-violet));
    animation: pulse 2s ease-in-out infinite;
}

.story-item:nth-child(2) {
    animation-delay: 0.2s;
}

.story-item:nth-child(3) {
    animation-delay: 0.4s;
}

.story-item:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.feed-post {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.post-header {
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.post-image {
    flex: 1;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-violet));
    border-radius: 8px;
    opacity: 0.7;
}

.post-actions {
    height: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

@keyframes phoneFloat {

    0%,
    100% {
        transform: translateY(0) rotateY(0deg);
    }

    50% {
        transform: translateY(-20px) rotateY(5deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

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

.wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
}

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

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(188, 24, 136, 0.5);
    box-shadow: 0 20px 40px rgba(188, 24, 136, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-violet));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
    color: white;
    box-shadow: 0 10px 30px rgba(188, 24, 136, 0.3);
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Screenshots Section */
.screenshots {
    padding: var(--section-padding);
    background: var(--bg-dark);
    position: relative;
}

.screenshots-slider {
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.screenshot-track {
    display: flex;
    gap: 30px;
    width: fit-content;
    transition: transform 0.5s ease;
}


.screenshot-item {
    flex: 0 0 300px;
}

.screenshot-mockup {
    text-align: center;
}

.mockup-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 35px;
    padding: 12px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    transition: var(--transition-bounce);
}

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

.mockup-screen {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.mockup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    display: block;
}

.feed-screen {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.story-screen {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.reels-screen {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.profile-screen {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.chat-screen {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.explore-screen {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.screen-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.screen-header {
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.screen-body {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.screenshot-label {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
}

.screenshot-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-violet));
    border-color: transparent;
    transform: scale(1.1);
}

/* How It Works Section */
.how-it-works {
    padding: var(--section-padding);
    background: var(--bg-dark-secondary);
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
}

.step-item {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 120px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    line-height: 1;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-violet));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
    color: white;
    box-shadow: 0 15px 40px rgba(188, 24, 136, 0.4);
    position: relative;
    z-index: 1;
    transition: var(--transition-bounce);
}

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

.step-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.step-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.step-connector {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-pink), var(--gradient-violet));
    opacity: 0.3;
}

/* Download Section */
.download {
    padding: var(--section-padding);
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.download-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.download-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.btn-download {
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-violet));
    color: white;
    padding: 20px 40px;
    font-size: 18px;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(188, 24, 136, 0.4);
}

.btn-download:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(188, 24, 136, 0.6);
}

.btn-download i {
    font-size: 32px;
}

.btn-download div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.btn-label {
    font-size: 12px;
    opacity: 0.8;
}

.btn-text {
    font-size: 20px;
    font-weight: 700;
}

.qr-code-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.qr-code {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.qr-placeholder {
    text-align: center;
    color: #333;
}

.qr-placeholder i {
    font-size: 60px;
    margin-bottom: 10px;
}

.qr-placeholder p {
    font-size: 12px;
    font-weight: 600;
}

.qr-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.download-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-illustration {
    position: relative;
    width: 300px;
    height: 600px;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(188, 24, 136, 0.3), transparent);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.download-progress {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gradient-pink), var(--gradient-violet));
    border-radius: 10px;
    width: 75%;
    animation: progress-animate 2s ease-in-out infinite;
}

@keyframes progress-animate {
    0% {
        width: 0%;
    }

    50% {
        width: 75%;
    }

    100% {
        width: 100%;
    }
}

.progress-text {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background: var(--bg-dark-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition-bounce);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(188, 24, 136, 0.5);
    box-shadow: 0 20px 40px rgba(188, 24, 136, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-violet));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.testimonial-rating {
    color: #ffd700;
    font-size: 14px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

/* Community Section */
.community {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(188, 24, 136, 0.1), rgba(240, 148, 51, 0.1));
    position: relative;
    overflow: hidden;
}

.community-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.floating-icon {
    position: absolute;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.1);
    animation: floatIcon 20s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-icon:nth-child(1) {
    top: var(--y);
    left: var(--x);
}

.floating-icon:nth-child(2) {
    top: var(--y);
    left: var(--x);
}

.floating-icon:nth-child(3) {
    top: var(--y);
    left: var(--x);
}

.floating-icon:nth-child(4) {
    top: var(--y);
    left: var(--x);
}

.floating-icon:nth-child(5) {
    top: var(--y);
    left: var(--x);
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }

    50% {
        transform: translate(-15px, 15px) rotate(-5deg);
    }

    75% {
        transform: translate(10px, 10px) rotate(3deg);
    }
}

.community-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.community-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.community-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.community-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn-community {
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-violet));
    color: white;
    padding: 20px 50px;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 20px 50px rgba(188, 24, 136, 0.4);
}

.btn-community:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(188, 24, 136, 0.6);
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-violet));
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--text-primary);
    padding-left: 5px;
}

.footer-download {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-download:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.footer-download i {
    font-size: 32px;
}

.footer-download div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-download div span:first-child {
    font-size: 12px;
    opacity: 0.8;
}

.footer-download div span:last-child {
    font-size: 16px;
    font-weight: 700;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        padding: 30px;
        transition: var(--transition-smooth);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-mockup {
        order: -1;
    }

    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .download-visual {
        order: -1;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-connector {
        width: 2px;
        height: 50px;
    }

    .section-title {
        font-size: 36px;
    }

    .community-title {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-tagline {
        font-size: 22px;
    }

    .hero-cta {
        flex-direction: column;
    }

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

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

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .community-title {
        font-size: 32px;
    }

    .phone-frame,
    .mockup-frame {
        width: 240px;
        height: 480px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* Scroll animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* ===== ABOUT PAGE STYLES ===== */

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.about-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.about-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-tagline {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.about-intro {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Mission Section */
.mission-section {
    padding: var(--section-padding);
    background: var(--bg-dark-secondary);
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-text {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Key Features Section */
.key-features-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.key-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.key-feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: var(--transition-bounce);
}

.key-feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(188, 24, 136, 0.5);
    box-shadow: 0 20px 40px rgba(188, 24, 136, 0.2);
}

.key-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-violet));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 0 auto 25px;
    color: white;
    box-shadow: 0 10px 30px rgba(188, 24, 136, 0.3);
}

.key-feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.key-feature-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Promise Section */
.promise-section {
    padding: var(--section-padding);
    background: var(--bg-dark-secondary);
}

.promise-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.promise-text {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}


/* Leadership Section */
.leadership-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.leader-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-bounce);
}

.leader-card:hover {
    transform: translateY(-10px);
    border-color: rgba(188, 24, 136, 0.5);
    box-shadow: 0 20px 40px rgba(188, 24, 136, 0.2);
}

.leader-image-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid transparent;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-violet));
    padding: 4px;
}

.leader-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: var(--bg-dark);
}

.leader-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.leader-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--gradient-pink);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leader-bio {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact Form Section */
.contact-form-section {
    padding: var(--section-padding);
    background: var(--bg-dark-secondary);
}

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

.contact-form {
    margin-top: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gradient-pink);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(188, 24, 136, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

/* Responsive for About Page */
@media (max-width: 768px) {
    .about-title {
        font-size: 48px;
    }
    
    .about-tagline {
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== LEGAL PAGES STYLES ===== */

.legal-page {
    padding: 120px 20px 80px;
    background: var(--bg-dark);
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-updated {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    margin-top: 30px;
}

.legal-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    margin-top: 25px;
}

.legal-section p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0 15px 30px;
}

.legal-section li {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-link {
    color: var(--gradient-pink);
    text-decoration: underline;
    transition: var(--transition-smooth);
}

.legal-link:hover {
    color: var(--gradient-violet);
}


/* ===== CONTACT PAGE STYLES ===== */

.contact-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 60px;
    overflow: hidden;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.contact-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-content-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form-area,
.contact-info-area {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-violet));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}

.contact-info-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-info-text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 5px;
}

.contact-social {
    margin-top: 40px;
}

.contact-social h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.social-links-large {
    display: flex;
    gap: 15px;
}

.social-link-large {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 22px;
    transition: var(--transition-bounce);
}

.social-link-large:hover {
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-violet));
    border-color: transparent;
    color: white;
    transform: translateY(-5px);
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-title {
        font-size: 48px;
    }
}

