/* ===================================
   CSS Variables & Base Styles
   Using Focus App's Islamic Theme
   =================================== */
:root {
    /* Light Theme - App Colors */
    --primary: #0F3D3E;           /* Emerald/Teal Green */
    --secondary: #B9B29F;         /* Warm Beige */
    --accent: #DBB76C;            /* Gold (for highlights) */
    --bg-light: #F5F1E9;          /* Light Sand/Beige */
    --small-container: #EDE7DD;   /* Light beige container */
    
    /* Dark Theme - App Colors */
    --dark-primary: #DBB76C;      /* Golden highlight */
    --dark-secondary: #B4A78A;    /* Soft sand */
    --dark-bg: #1B2D2A;           /* Deep green/blue */
    --dark-container: #2F3E3C;    /* Dark container */
    --dark-big-container: #384A48;
    
    /* Text Colors */
    --text-dark: #0F3D3E;
    --text-body: #3E3D3C;
    --text-muted: #77736A;
    --white: #FFFFFF;
    
    /* Gradient using brand colors */
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-gold: linear-gradient(135deg, var(--accent) 0%, #C9A652 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(15, 61, 62, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(15, 61, 62, 0.1), 0 2px 4px -2px rgba(15, 61, 62, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(15, 61, 62, 0.1), 0 4px 6px -4px rgba(15, 61, 62, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(15, 61, 62, 0.25);
    
    /* Border Radius */
    --radius: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-light);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

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

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(219, 183, 108, 0.15);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 16px;
    border: 1px solid rgba(219, 183, 108, 0.3);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--text-muted);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(245, 241, 233, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 61, 62, 0.05);
    transition: var(--transition);
}

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

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

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

.logo-icon-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-body);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

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

.btn-nav {
    padding: 10px 24px !important;
    background: var(--primary) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--accent) !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(219, 183, 108, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(15, 61, 62, 0.08) 0%, transparent 50%),
        var(--bg-light);
    z-index: -1;
}

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

.hero-tagline {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 24px;
    line-height: 1.1;
    color: var(--primary);
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

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

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: #1A5456;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--small-container);
    color: var(--primary);
    border: 2px solid rgba(15, 61, 62, 0.15);
}

.btn-secondary:hover {
    border-color: var(--accent);
    background: rgba(219, 183, 108, 0.1);
    transform: translateY(-2px);
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: linear-gradient(135deg, rgba(219, 183, 108, 0.15) 0%, rgba(15, 61, 62, 0.1) 100%);
    border: 2px solid var(--accent);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
}

.badge-icon {
    font-size: 24px;
}

.badge-text {
    color: var(--primary);
}

/* Notify Box */
.notify-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 32px;
    background: var(--small-container);
    border-radius: var(--radius);
    margin-top: 32px;
    border: 1px solid rgba(219, 183, 108, 0.3);
}

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

.notify-box p {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary);
    margin: 0;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--secondary);
}

/* Phone Mockup */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 580px;
    background: var(--primary);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(219, 183, 108, 0.2) inset;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

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

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

.app-preview {
    padding: 40px 24px;
    text-align: center;
    color: var(--white);
}

.preview-header {
    margin-bottom: 30px;
}

.preview-time {
    font-size: 48px;
    font-weight: 800;
    display: block;
    color: var(--dark-primary);
}

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

.preview-circle {
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
}

.preview-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.preview-surah {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-primary);
}

.preview-verse {
    font-family: 'Amiri', serif;
    font-size: 20px;
    color: var(--dark-secondary);
    direction: rtl;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatCard 4s ease-in-out infinite;
    border: 1px solid rgba(219, 183, 108, 0.2);
}

.card-1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 25%;
    left: -20px;
    animation-delay: 2s;
}

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

.card-icon {
    font-size: 24px;
}

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

/* Screenshot Image in Phone Mockup */
.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* ===================================
   Screenshots Gallery Section
   =================================== */
.screenshots-section {
    padding: 100px 24px;
    background: var(--bg-light);
}

.screenshots-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.screenshot-item {
    text-align: center;
    transition: var(--transition);
}

.screenshot-item:hover {
    transform: translateY(-10px);
}

.screenshot-item img {
    width: 100%;
    max-width: 260px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.screenshot-item:hover img {
    box-shadow: var(--shadow-xl);
}

.screenshot-label {
    margin-top: 16px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
}

/* ===================================
   Features Section
   =================================== */
.features {
    padding: 100px 24px;
    background: var(--white);
}

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

.feature-card {
    padding: 32px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* ===================================
   Motivational Quote Banner
   =================================== */
.quote-banner {
    padding: 80px 24px;
    background: var(--primary);
    color: var(--white);
}

.quote-banner-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.banner-arabic {
    font-family: 'Amiri', serif;
    font-size: clamp(28px, 4vw, 36px);
    color: var(--accent);
    line-height: 1.8;
    margin-bottom: 16px;
    direction: rtl;
}

.banner-english {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--white);
    font-style: italic;
    margin-bottom: 12px;
    line-height: 1.6;
    opacity: 0.95;
}

.banner-reference {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
}

/* ===================================
   How It Works Section
   =================================== */
.how-it-works {
    padding: 100px 24px;
    background: var(--small-container);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    text-align: center;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 20px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.step p {
    color: var(--text-muted);
    font-size: 15px;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin-top: 80px;
    flex-shrink: 0;
}

/* ===================================
   Stats Preview Section
   =================================== */
.stats-preview {
    padding: 100px 24px;
    background: var(--dark-bg);
    color: var(--white);
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.stats-text .section-title {
    color: var(--white);
}

.stats-text .section-tag {
    background: rgba(219, 183, 108, 0.2);
    border-color: rgba(219, 183, 108, 0.4);
}

.stats-text .section-description {
    color: var(--dark-secondary);
}

.stats-list {
    list-style: none;
    margin-top: 32px;
}

.stats-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--dark-secondary);
    font-size: 16px;
}

.stats-list svg {
    color: var(--accent);
    flex-shrink: 0;
}

.stats-card {
    background: var(--dark-container);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(219, 183, 108, 0.15);
}

.stats-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.stats-card-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.stats-badge {
    background: rgba(219, 183, 108, 0.2);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 150px;
    gap: 12px;
    margin-bottom: 24px;
}

.bar {
    flex: 1;
    background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 6px 6px 0 0;
    height: var(--height);
    position: relative;
    opacity: 0.6;
    transition: var(--transition);
}

.bar.active, .bar:hover {
    opacity: 1;
}

.bar span {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: var(--dark-secondary);
}

.stats-card-footer {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    border-top: 1px solid rgba(219, 183, 108, 0.15);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    display: block;
    color: var(--accent);
}

.stat-name {
    font-size: 13px;
    color: var(--dark-secondary);
}

/* ===================================
   Beta Signup Section
   =================================== */
.download {
    padding: 100px 24px;
    background: var(--bg-light);
}

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

.beta-cta {
    margin-top: 40px;
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

.btn-large svg {
    transition: var(--transition);
}

.btn-large:hover svg {
    transform: translateX(4px);
}

.form-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: 60px 24px 30px;
    background: var(--small-container);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary);
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--secondary);
    flex-wrap: wrap;
    gap: 12px;
}

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

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-buttons, .hero-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .screenshots-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

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

    .stats-list {
        display: inline-block;
        text-align: left;
    }

    .stats-visual {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 24px 60px;
    }

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

    .floating-card {
        display: none;
    }

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

    .step-connector {
        display: none;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 40px;
    }

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

    .screenshots-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .screenshot-item img {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

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

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .download-buttons {
        flex-direction: column;
    }

    .store-button {
        justify-content: center;
    }
}

/* ===================================
   Browser Extension Section
   =================================== */
.extension-section {
    padding: 100px 24px;
    background: var(--bg-light);
    overflow: hidden;
}

.extension-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-bullets {
    list-style: none;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-bullets li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.bullet-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.bullet-content h4 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--primary);
}

.bullet-content p {
    font-size: 15px;
    color: var(--text-muted);
}

.extension-cta {
    margin-top: 48px;
}

.badge-v1 {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-md);
}

/* CSS Mockup Styling */
.extension-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.css-mockup-wrapper {
    position: relative;
    z-index: 1;
}

.extension-mockup {
    width: 380px;
    background: var(--dark-bg);
    border-radius: 8px;
    padding: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(15, 61, 62, 0.4);
    border: 1px solid rgba(219, 183, 108, 0.2);
    display: flex;
    flex-direction: column;
    animation: floatMockup 6s ease-in-out infinite;
}

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

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

.mockup-header-user {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.mockup-header-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.mockup-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mockup-toggle-area {
    background: rgba(255, 255, 255, 0.02);
    padding: 14px 16px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 4px;
}

.mockup-toggle-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

.mockup-switch {
    width: 36px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
}

.mockup-switch::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 3px;
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.mockup-switch.active {
    background: var(--accent);
}

.mockup-switch.active::after {
    transform: translateX(16px);
    background: var(--primary);
}

.mockup-section-header {
    font-size: 10px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    margin-top: 4px;
}

.mockup-modes-alt {
    background: rgba(0, 0, 0, 0.1);
    padding: 6px;
    border-radius: 12px;
    display: flex;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mode-pill-alt {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
}

.mode-pill-alt.active {
    background: rgba(219, 183, 108, 0.05);
    border: 1px solid var(--accent);
    color: var(--accent);
}

.mockup-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.mockup-list-header span {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.mockup-plus-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 18px;
}

.mockup-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mockup-tag {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tag-close {
    width: 14px;
    height: 14px;
    background: rgba(255, 0, 0, 0.2);
    color: #ff4d4d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.mockup-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.footer-dot.synced {
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent);
}

.footer-divider {
    width: 1px;
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(219, 183, 108, 0.1) 0%, transparent 70%);
    z-index: -1;
}

/* Responsiveness for Extension Section */
@media (max-width: 992px) {
    .extension-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .feature-bullets li {
        justify-content: center;
        text-align: left;
    }
    
    .extension-visual {
        order: -1;
    }
}
