/* ============================================
   Mimic Website - Styles
   Brand Colors from Chrome Extension
   ============================================ */

:root {
    /* Brand Colors */
    --brand-color: #e8fb80;
    --brand-dark: #c5d866;
    --brand-hover: #d4e76d;

    /* Backgrounds */
    --bg-dark: #1a1a1a;
    --bg-darker: #0f0f0f;
    --bg-light: #ffffff;
    --bg-section: #f8fafc;

    /* Text */
    --text-dark: #1e293b;
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-secondary: #64748b;

    /* Gradients */
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #1a1a1a 100%);
    --gradient-hero: linear-gradient(180deg, #1a1a1a 0%, #1a1a1a 100%);

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(232, 251, 128, 0.3);

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --container-padding: 0 24px;
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-light);
}

.nav-logo-img {
    width: 36px;
    height: 36px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-light);
}

.nav-cta {
    background: var(--brand-color) !important;
    color: var(--bg-dark) !important;
    padding: 10px 20px !important;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
}

.nav-cta:hover {
    background: var(--brand-hover) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .nav-cta {
    text-align: center;
    margin-top: 8px;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(232, 251, 128, 0.15);
    color: var(--brand-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(232, 251, 128, 0.3);
}

.hero h1 {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-bottom: 24px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand-color);
    color: var(--bg-dark);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: var(--brand-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.hero-stores {
    color: var(--text-muted);
    font-size: 14px;
}

.hero-stores strong {
    color: var(--text-light);
}

.hero-demo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 9/16;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.demo-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.demo-placeholder p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 8px;
}

.demo-placeholder small {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.demo-gif {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Store Logos Bar
   ============================================ */

.stores-bar {
    background: var(--bg-dark);
    padding: 40px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stores-bar-container {
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
}

.stores-bar-title {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.stores-bar-title strong {
    color: var(--brand-color);
}

.stores-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stores-logos img {
    height: 40px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.2s ease;
    filter: brightness(0) invert(1);
}

.stores-logos img:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .stores-logos {
        gap: 32px;
    }

    .stores-logos img {
        height: 32px;
    }
}

/* ============================================
   Sections Common
   ============================================ */

.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 60px;
}

/* ============================================
   How It Works
   ============================================ */

.how-it-works {
    padding: var(--section-padding);
    background: var(--bg-section);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--brand-color);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================
   Features
   ============================================ */

.features {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature {
    padding: 32px;
    background: var(--bg-section);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.feature h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    padding: 80px 24px;
    background: var(--gradient-dark);
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(24px, 4vw, 36px);
    color: var(--text-light);
    margin-bottom: 12px;
}

.cta-section p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 32px;
}

/* ============================================
   Contact Section
   ============================================ */

.contact-section {
    padding: var(--section-padding);
    background: var(--bg-section);
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s ease;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-dark);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.form-status {
    margin-top: 20px;
    padding: 16px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
}

.form-status.success {
    background: #dcfce7;
    color: #15803d;
}

.form-status.error {
    background: #fee2e2;
    color: #b91c1c;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--bg-dark);
    padding: 60px 24px 30px;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-brand span {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-light);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-logo {
    width: 48px;
    height: 48px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--brand-color);
}

.footer-bottom {
    max-width: var(--container-width);
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero-demo {
        margin-top: 40px;
    }

    .demo-placeholder {
        max-width: 300px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 100px 20px 60px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }

    :root {
        --section-padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .btn-primary {
        padding: 14px 24px;
        font-size: 15px;
    }

    .step {
        padding: 30px 20px;
    }

    .feature {
        padding: 24px;
    }
}

/* ============================================
   Utilities
   ============================================ */

.hidden {
    display: none !important;
}