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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

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

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle,
.lang-toggle {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
}

.theme-toggle:hover,
.lang-toggle:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: scale(1.1);
}

.lang-text {
    font-size: 0.8rem;
    font-weight: 700;
}

/* Dark Mode Styles */
[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-card: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

[data-theme="dark"] .navbar {
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .nav-link {
    color: var(--text-primary);
}

[data-theme="dark"] .nav-link:hover {
    color: #6366f1;
}

[data-theme="dark"] .theme-toggle,
[data-theme="dark"] .lang-toggle {
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
}

[data-theme="dark"] .theme-toggle:hover,
[data-theme="dark"] .lang-toggle:hover {
    background: rgba(99, 102, 241, 0.3);
}

[data-theme="dark"] .features {
    background: var(--bg-secondary);
}

[data-theme="dark"] .feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .feature-card h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .feature-card p {
    color: var(--text-secondary);
}

[data-theme="dark"] .download {
    background: var(--bg-primary);
}

[data-theme="dark"] .section-title {
    color: var(--text-primary);
}

[data-theme="dark"] .section-description {
    color: var(--text-secondary);
}

[data-theme="dark"] .footer {
    background: #020617;
    border-top: 1px solid var(--border-color);
}

[data-theme="dark"] .footer-section p {
    color: var(--text-secondary);
}

[data-theme="dark"] .footer-section ul li a {
    color: var(--text-secondary);
}

[data-theme="dark"] .footer-bottom {
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
}

.nav-logo i {
    margin-right: 8px;
    font-size: 1.8rem;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #6366f1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6366f1;
    transition: width 0.3s ease;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}
/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

.hero-text {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
    position: relative;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #ff6b6b, #ffd700);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    }
}

.early-access-nav {
    background: linear-gradient(45deg, #ff6b6b, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

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

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ffd700);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

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

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

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

.hero-features {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.feature-highlight i {
    color: #ffd700;
    font-size: 1.2rem;
}

.feature-highlight span {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}
/* Phone Mockup */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.app-interface {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 100%;
    border-radius: 20px;
    padding: 20px;
    color: white;
    overflow: hidden;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.signal-bars {
    display: flex;
    gap: 2px;
}

.signal-bars span {
    width: 3px;
    height: 10px;
    background: white;
    border-radius: 1px;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.app-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.header-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-right i {
    font-size: 1rem;
    opacity: 0.8;
}

/* Authentic Dashboard Card */
.dashboard-card-authentic {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-card-authentic h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.stats-row-authentic {
    display: flex;
    justify-content: space-around;
    margin-bottom: 16px;
}

.stat-item-authentic {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-icon-authentic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    position: relative;
}

.stat-icon-authentic::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: #00bcd4;
    border-radius: 50%;
    border: 2px solid white;
}

.stat-icon-authentic.blue {
    background: rgba(33, 150, 243, 0.3);
    color: #64b5f6;
}

.stat-icon-authentic.green {
    background: rgba(76, 175, 80, 0.3);
    color: #81c784;
}

.stat-icon-authentic.orange {
    background: rgba(255, 152, 0, 0.3);
    color: #ffb74d;
}

.stat-value-authentic {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.earnings-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}

.earnings-icon-authentic {
    width: 32px;
    height: 32px;
    background: rgba(0, 188, 212, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #4dd0e1;
    margin-bottom: 8px;
    position: relative;
}

.earnings-icon-authentic::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: #00bcd4;
    border-radius: 50%;
    border: 2px solid white;
}

.earnings-amount-authentic {
    font-size: 1.1rem;
    font-weight: 700;
    color: #4dd0e1;
}

.portfolio-button {
    width: 100%;
    background: rgba(103, 58, 183, 0.8);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

/* Client Request Section */
.client-request {
    margin-top: 20px;
}

.client-request h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffd700;
}

.request-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.request-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.client-avatar-authentic {
    width: 32px;
    height: 32px;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    border-radius: 50%;
}

.request-info h6 {
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0 0 2px 0;
}

.request-info span {
    font-size: 0.7rem;
    opacity: 0.8;
}
/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-phone {
    position: absolute;
    top: 15%;
    right: -5%;
    width: 120px;
    height: 200px;
    animation: float 4s ease-in-out infinite;
    animation-delay: var(--delay);
    z-index: 10;
}

.mini-phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.mini-app-interface {
    height: 100%;
    border-radius: 12px;
    padding: 10px;
    color: white;
    font-size: 0.7rem;
}

.mini-app-interface.post-creation {
    background: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 100%);
}

.mini-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.mini-header span {
    font-weight: 600;
    font-size: 0.65rem;
}

.mini-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mini-input {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 8px;
    font-size: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.mini-category {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 6px 8px;
    font-size: 0.6rem;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-icon:nth-child(2) { top: 30%; left: -10%; }
.floating-icon:nth-child(3) { bottom: 30%; right: -10%; }
.floating-icon:nth-child(4) { bottom: 10%; left: 20%; }

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

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

.orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #ff6b6b, #ffd700);
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    bottom: -100px;
    left: -100px;
    animation-delay: 2s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #a8edea, #fed6e3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

/* Sections */
section {
    padding: 100px 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}
/* Features Section */
.features {
    background: #f8fafc;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* For Clients Section */
.for-clients {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    padding: 120px 0;
}

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

.clients-text .section-title,
.clients-text .section-description {
    color: white;
    text-align: left;
}

.client-benefits {
    margin: 2rem 0;
}

.client-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #81C784;
    flex-shrink: 0;
}

.benefit-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.benefit-details p {
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.client-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.client-promise {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promise-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #81C784;
}

.promise-subtext {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Client Phone Mockup */
.client-phone {
    width: 300px;
    height: 600px;
    margin: 0 auto;
}

.client-app-interface {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    height: 100%;
    border-radius: 20px;
    padding: 20px;
    color: white;
    overflow: hidden;
}

.client-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.client-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.client-stats-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.client-stats-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.client-stats-grid {
    display: flex;
    justify-content: space-around;
    margin-bottom: 8px;
}

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

.client-stat-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.client-stat-icon.blue {
    background: rgba(33, 150, 243, 0.3);
    color: #64b5f6;
}

.client-stat-icon.green {
    background: rgba(76, 175, 80, 0.3);
    color: #81c784;
}

.client-stat-icon.purple {
    background: rgba(156, 39, 176, 0.3);
    color: #ba68c8;
}

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

.client-stat-label {
    font-size: 0.65rem;
    opacity: 0.8;
}

.active-requests-section h5 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #C8E6C9;
}

.client-request-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.request-status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.request-type {
    font-size: 0.75rem;
    font-weight: 600;
}

.request-status {
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 600;
}

.request-status.in-progress {
    background: rgba(255, 193, 7, 0.3);
    color: #FFD54F;
}

.request-shopper-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.shopper-avatar-client {
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #81C784, #4CAF50);
    border-radius: 50%;
}

.shopper-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.shopper-name {
    font-size: 0.75rem;
    font-weight: 600;
}

.request-budget {
    font-size: 0.7rem;
    color: #81C784;
    font-weight: 600;
}

.request-progress {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    opacity: 0.8;
}

/* Dark Mode for Clients Section */
[data-theme="dark"] .for-clients {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
}

[data-theme="dark"] .client-benefit {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* For Shoppers Section */
.for-shoppers {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0;
}

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

.shoppers-text .section-title,
.shoppers-text .section-description {
    color: white;
    text-align: left;
}

.earning-highlights {
    margin: 2rem 0;
}

.earning-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.earning-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffd700;
    flex-shrink: 0;
}

.earning-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.earning-details p {
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.shopper-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.earning-potential {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.earning-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
}

.earning-period {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Shopper Phone Mockup */
.shopper-phone {
    width: 300px;
    height: 600px;
    margin: 0 auto;
}

.shopper-app-interface {
    background: linear-gradient(135deg, #6A5BC1 0%, #8661C1 100%);
    height: 100%;
    border-radius: 20px;
    padding: 20px;
    color: white;
    overflow: hidden;
}

.shopper-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.shopper-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.header-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-icons i {
    font-size: 1rem;
    opacity: 0.8;
}

.earnings-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.earnings-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.stats-grid-shopper {
    display: flex;
    justify-content: space-around;
    margin-bottom: 16px;
}

.stat-shopper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-icon-shopper {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    position: relative;
}

.stat-icon-shopper::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 6px;
    height: 6px;
    background: #00bcd4;
    border-radius: 50%;
    border: 1px solid white;
}

.stat-icon-shopper.blue {
    background: rgba(33, 150, 243, 0.3);
    color: #64b5f6;
}

.stat-icon-shopper.green {
    background: rgba(76, 175, 80, 0.3);
    color: #81c784;
}

.stat-icon-shopper.orange {
    background: rgba(255, 152, 0, 0.3);
    color: #ffb74d;
}

.stat-value-shopper {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.earnings-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
}

.earnings-icon-shopper {
    width: 28px;
    height: 28px;
    background: rgba(0, 188, 212, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #4dd0e1;
    margin-bottom: 6px;
    position: relative;
}

.earnings-icon-shopper::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 6px;
    height: 6px;
    background: #00bcd4;
    border-radius: 50%;
    border: 1px solid white;
}

.earnings-amount-shopper {
    font-size: 1rem;
    font-weight: 700;
    color: #4dd0e1;
}

.portfolio-btn-shopper {
    width: 100%;
    background: rgba(103, 58, 183, 0.8);
    color: white;
    border: none;
    border-radius: 18px;
    padding: 8px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.no-posts-message {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.active-tasks-section h5 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #e1bee7;
}

.task-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.task-header-real {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.task-type-real {
    font-size: 0.7rem;
    opacity: 0.8;
}

.task-status-real {
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 600;
}

.task-status-real.assigned {
    background: rgba(255, 152, 0, 0.3);
    color: #ffb74d;
}

.task-card h6 {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.task-client-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.client-avatar-real {
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    border-radius: 50%;
}

.client-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.client-name {
    font-size: 0.75rem;
    font-weight: 600;
}

.task-amount-real {
    font-size: 0.7rem;
    color: #81c784;
    font-weight: 600;
}

.task-category {
    margin-top: 8px;
}

.category-tag {
    background: rgba(103, 58, 183, 0.6);
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 500;
}

/* Dark Mode for Shoppers Section */
[data-theme="dark"] .for-shoppers {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

[data-theme="dark"] .earning-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.how-it-works {
    background: white;
}

.how-it-works-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.tab-btn:hover {
    border-color: #6366f1;
    color: #6366f1;
}

.tab-btn.active {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
}

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

.steps-container.hidden {
    display: none;
}

[data-theme="dark"] .how-it-works {
    background: var(--bg-primary);
}

[data-theme="dark"] .tab-btn {
    background: var(--bg-card);
    border-color: var(--border-color);
    color: var(--text-secondary);
}

[data-theme="dark"] .tab-btn:hover {
    border-color: #6366f1;
    color: #6366f1;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.step:hover {
    background: #f1f5f9;
    transform: translateX(10px);
}

.step:nth-child(even) {
    flex-direction: row-reverse;
}

.step:nth-child(even):hover {
    transform: translateX(-10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.step-visual {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b6b, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}
/* Security Section */
.security {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.security-text .section-title,
.security-text .section-description {
    color: white;
    text-align: left;
}

.security-features {
    margin-top: 2rem;
}

.security-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.security-feature i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.security-feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.security-feature p {
    opacity: 0.9;
    line-height: 1.6;
}

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

.security-shield {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-shield i {
    font-size: 4rem;
    color: #ffd700;
    z-index: 2;
    position: relative;
}

.security-rings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ring {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.ring-2 {
    width: 130%;
    height: 130%;
    top: -15%;
    left: -15%;
    animation-delay: 0.5s;
}

.ring-3 {
    width: 160%;
    height: 160%;
    top: -30%;
    left: -30%;
    animation-delay: 1s;
}
/* Early Access Section */
.early-access {
    background: #f8fafc;
    padding: 120px 0;
}

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

.early-access-text .section-title,
.early-access-text .section-description {
    text-align: left;
}

.early-access-benefits {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #6366f1;
}

.benefit-item i {
    color: #6366f1;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.launch-status {
    margin-top: 2rem;
}

.status-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.status-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.status-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.status-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    border-radius: 4px;
    transition: width 2s ease-in-out;
    animation: shimmer 2s ease-in-out infinite;
}

.progress-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffd700;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.signup-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.signup-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.signup-card > p {
    color: #666;
    margin-bottom: 2rem;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #666;
}

.contact-item i {
    color: #6366f1;
    width: 20px;
    text-align: center;
}

.contact-item span {
    font-weight: 500;
}

.form-group label {
    position: absolute;
    top: -8px;
    left: 12px;
    background: white;
    padding: 0 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6366f1;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 1.2rem;
    font-size: 1rem;
}

/* Dark Mode for Early Access */
[data-theme="dark"] .early-access {
    background: var(--bg-secondary);
}

[data-theme="dark"] .benefit-item {
    background: var(--bg-card);
    border-left-color: #6366f1;
}

[data-theme="dark"] .signup-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .signup-card h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .signup-card > p {
    color: var(--text-secondary);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
    background: var(--bg-primary);
    border-color: var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .form-group label {
    background: var(--bg-card);
    color: #6366f1;
}

[data-theme="dark"] .contact-info {
    border-top-color: var(--border-color);
}

[data-theme="dark"] .contact-item {
    color: var(--text-secondary);
}
.download {
    background: white;
}

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

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

.download-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #000;
    color: white;
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.download-btn i {
    font-size: 2rem;
}

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

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

.download-btn strong {
    font-size: 1.1rem;
}

.download-stats {
    display: flex;
    gap: 2rem;
}

.download-stats .stat {
    text-align: left;
}

.download-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.download-stats .stat-label {
    color: #666;
    font-size: 0.9rem;
}
/* Phones Mockup */
.phones-showcase {
    position: relative;
    width: 500px;
    height: 600px;
    margin: 0 auto;
}

.phone {
    position: absolute;
    width: 180px;
    height: 360px;
}

.phone-1 {
    top: 0;
    left: 0;
    z-index: 3;
    transform: rotate(-5deg);
}

.phone-2 {
    top: 80px;
    right: 20px;
    z-index: 2;
    transform: rotate(8deg);
}

.phone-3 {
    top: 200px;
    left: 80px;
    z-index: 1;
    transform: rotate(-3deg);
}

.phone .phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 25px;
    padding: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.app-preview {
    height: 100%;
    border-radius: 15px;
    padding: 12px;
    color: white;
    overflow: hidden;
}

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

.wallet-screen {
    background: linear-gradient(135deg, #6A5BC1 0%, #8661C1 100%);
}

.messages-screen {
    background: linear-gradient(135deg, #009688 0%, #4CAF50 100%);
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.screen-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.screen-header i {
    font-size: 1.2rem;
    opacity: 0.8;
}

.user-avatar-small {
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Dashboard Screen Styles */
.mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.mini-stat {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 8px;
    text-align: center;
}

.mini-stat-value {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.mini-stat-label {
    font-size: 0.6rem;
    opacity: 0.8;
}

.mini-post-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px;
}

.mini-post-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-avatar {
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    border-radius: 50%;
}

.mini-post-title {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.mini-post-amount {
    font-size: 0.7rem;
    color: #81c784;
    font-weight: 600;
}

/* Wallet Screen Styles */
.balance-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    margin-bottom: 16px;
}

.balance-label {
    font-size: 0.7rem;
    opacity: 0.8;
    margin-bottom: 4px;
}

.balance-amount {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffd700;
}

.withdraw-btn {
    background: white;
    color: #6A5BC1;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
}

.transaction-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 8px;
}

.transaction-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.transaction-icon.green {
    background: rgba(76, 175, 80, 0.3);
    color: #81c784;
}

.transaction-icon.orange {
    background: rgba(255, 152, 0, 0.3);
    color: #ffb74d;
}

.transaction-title {
    font-size: 0.7rem;
    font-weight: 500;
}

.transaction-amount {
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: auto;
}

/* Messages Screen Styles */
.chat-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px;
    position: relative;
}

.chat-item.active {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.chat-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    border-radius: 50%;
}

.chat-info {
    flex: 1;
}

.chat-name {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.chat-preview {
    font-size: 0.7rem;
    opacity: 0.8;
}

.chat-badge {
    width: 18px;
    height: 18px;
    background: #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
}
/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 8px;
    font-size: 1.8rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #6366f1;
    transform: translateY(-2px);
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #6366f1;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* 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);
    }
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    [data-theme="dark"] .nav-menu {
        background-color: var(--bg-secondary);
    }

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

    .nav-controls {
        gap: 0.5rem;
    }

    .theme-toggle,
    .lang-toggle {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    [data-theme="dark"] .bar {
        background: var(--text-primary);
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-features {
        justify-content: center;
        gap: 1rem;
    }

    .feature-highlight {
        padding: 0.6rem 1rem;
    }

    .feature-highlight span {
        font-size: 0.8rem;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

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

    .step {
        flex-direction: column !important;
        text-align: center;
    }

    .step:nth-child(even):hover {
        transform: translateY(-5px);
    }

    .step:hover {
        transform: translateY(-5px);
    }

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

    .security-text .section-title,
    .security-text .section-description {
        text-align: center;
    }

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

    .shoppers-text .section-title,
    .shoppers-text .section-description {
        text-align: center;
    }

    .shopper-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .shopper-phone {
        width: 250px;
        height: 500px;
    }

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

    .clients-text .section-title,
    .clients-text .section-description {
        text-align: center;
    }

    .client-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .client-phone {
        width: 250px;
        height: 500px;
    }

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

    .early-access-text .section-title,
    .early-access-text .section-description {
        text-align: center;
    }

    .launch-status {
        margin-top: 1.5rem;
    }

    .status-card {
        padding: 1.5rem;
    }

    .status-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .phones-showcase {
        width: 350px;
        height: 450px;
    }

    .phone {
        width: 140px;
        height: 280px;
    }

    .phone-1 {
        transform: rotate(-3deg);
    }

    .phone-2 {
        top: 60px;
        right: 15px;
        transform: rotate(5deg);
    }

    .phone-3 {
        top: 150px;
        left: 60px;
        transform: rotate(-2deg);
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .feature-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .step {
        padding: 1.5rem;
    }

    .download-btn {
        padding: 0.8rem 1rem;
    }

    .download-btn i {
        font-size: 1.5rem;
    }
}

/* Form Error Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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