/* =============================================================================
   MediaCCCLXV.ai Marketing Site Styles
   Brand Colors: Deep Blue #002F5F, Magenta #ED0099, Electric Purple #6A00FF, Light Cyan #00FFFF
   ============================================================================= */

:root {
    --deep-blue: #002F5F;
    --magenta: #ED0099;
    --electric-purple: #6A00FF;
    --light-cyan: #00FFFF;
    --dark-bg: #0a0a1a;
    --darker-bg: #050510;
    --text-primary: #ffffff;
    --text-secondary: #b0b0c8;
    --gradient-primary: linear-gradient(135deg, #0D5683 0%, #9C27B0 50%, #ED0099 100%);
    --gradient-hero: linear-gradient(135deg, #002F5F 0%, #6A00FF 50%, #ED0099 100%);
}

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

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

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

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

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

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: 0.3s;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(237, 0, 153, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--magenta);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--magenta);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    opacity: 0.1;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(237, 0, 153, 0.3) 0%, transparent 70%);
    top: 20%;
    right: 10%;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2) 0%, transparent 70%);
    bottom: 20%;
    left: 10%;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite reverse;
}

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

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

.hero-badge {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(237, 0, 153, 0.1);
    border: 1px solid rgba(237, 0, 153, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--magenta);
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--dark-bg);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(237, 0, 153, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--magenta);
    box-shadow: 0 20px 40px rgba(237, 0, 153, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

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

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--darker-bg);
}

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

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

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(237, 0, 153, 0.1);
}

.stat-item h3 {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: var(--gradient-hero);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--dark-bg);
}

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

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-link {
    font-size: 1.5rem;
    color: var(--magenta);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--light-cyan);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(237, 0, 153, 0.1);
}

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

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* ========================================
   NEW SECTIONS - Showcase, Case Studies, Platform, Waitlist
   ======================================== */

/* Showcase Section */
.showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a1a 0%, #1a1a3a 50%, #0a0a1a 100%);
}

.showcase-category {
    margin-bottom: 80px;
}

.showcase-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 32px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.category-icon {
    font-size: 40px;
}

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

.samples-grid.four-col {
    grid-template-columns: repeat(4, 1fr);
}

.sample-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
}

.sample-card:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
}

.sample-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
}

.thumb-placeholder {
    width: 100%;
    height: 100%;
    display: block;
}

.duration-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.sample-info {
    padding: 20px;
}

.sample-info h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: white;
}

.sample-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Audio Samples */
.audio-samples {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.audio-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
}

.audio-card:hover {
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
}

.audio-visual {
    margin-bottom: 20px;
}

.waveform {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 4px;
}

.waveform span {
    flex: 1;
    background: linear-gradient(180deg, #8a2be2 0%, #4169e1 100%);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.audio-card:hover .waveform span {
    background: linear-gradient(180deg, #a855f7 0%, #6366f1 100%);
}

.audio-info h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: white;
}

.audio-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.audio-duration {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(138, 43, 226, 0.2);
    border-radius: 12px;
    font-size: 12px;
    color: #8a2be2;
    font-weight: 600;
}

/* Case Studies Section */
.case-studies {
    padding: 100px 0;
    background: #0a0a1a;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.case-study-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.company-logo {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.company-logo svg {
    width: 100%;
    height: 100%;
}

.company-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: white;
}

.industry {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.case-study-content h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: white;
    line-height: 1.3;
}

.case-study-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}

.case-study-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.metric {
    text-align: center;
    padding: 15px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.metric-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #8a2be2 0%, #4169e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.metric-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Platform Section */
.platform {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a1a 0%, #1a1a3a 100%);
}

.platform-preview {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 80px;
}

.platform-mockup {
    background: linear-gradient(135deg, #1a1a3a 0%, #2a2a4a 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.mockup-browser-bar {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-interface {
    display: flex;
    min-height: 450px;
}

.mockup-main {
    flex: 1;
    padding: 30px;
}

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

.header-title {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.action-dot {
    width: 100px;
    height: 36px;
    background: rgba(138, 43, 226, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.mockup-workspace {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.workspace-large {
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    overflow: hidden;
}

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

.workspace-small {
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    overflow: hidden;
}

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

.platform-feature {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
}

.platform-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
}

.feature-icon-large {
    font-size: 48px;
    margin-bottom: 15px;
}

.platform-feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}

.platform-feature p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Waitlist Section */
.waitlist {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(65, 105, 225, 0.1) 100%);
}

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

.waitlist-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #8a2be2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.waitlist-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.7;
}

.waitlist-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.waitlist-form input[type="email"] {
    flex: 1;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.waitlist-form input[type="email"]:focus {
    outline: none;
    border-color: #8a2be2;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.2);
}

.waitlist-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.waitlist-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.benefit span:last-child {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* Responsive - New Sections */
@media (max-width: 1024px) {
    .samples-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .samples-grid.four-col {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .audio-samples {
        grid-template-columns: 1fr;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .waitlist-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .showcase {
        padding: 60px 0;
    }
    
    .category-title {
        font-size: 24px;
    }
    
    .samples-grid,
    .samples-grid.four-col {
        grid-template-columns: 1fr;
    }
    
    .mockup-interface {
        min-height: 350px;
    }
    
    .mockup-main {
        padding: 20px;
    }
    
    .platform-features {
        grid-template-columns: 1fr;
    }
    
    .waitlist-content h2 {
        font-size: 36px;
    }
    
    .waitlist-form {
        flex-direction: column;
    }
    
    .waitlist-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .category-title {
        font-size: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .case-study-card {
        padding: 25px;
    }
    
    .case-study-metrics {
        grid-template-columns: 1fr;
    }
    
    .waitlist-content h2 {
        font-size: 28px;
    }
    
    .waitlist-content p {
        font-size: 16px;
    }
}

/* Additional Platform Styles */
.coming-soon-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: linear-gradient(135deg, #8a2be2 0%, #4169e1 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 8px 30px rgba(138, 43, 226, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(138, 43, 226, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(138, 43, 226, 0.7);
    }
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #ff5f56; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #27c93f; }

.browser-url {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    text-align: center;
}

.mockup-sidebar {
    width: 80px;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.sidebar-item {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.sidebar-item.active {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3) 0%, rgba(65, 105, 225, 0.3) 100%);
    border-color: rgba(138, 43, 226, 0.5);
}

.shimmer {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(138, 43, 226, 0.1) 50%,
        rgba(255, 255, 255, 0.03) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.form-message {
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    display: none;
    margin-top: 15px;
}

.form-message.success {
    display: block;
    background: rgba(39, 201, 63, 0.1);
    border: 1px solid rgba(39, 201, 63, 0.3);
    color: #27c93f;
}

.form-message.error {
    display: block;
    background: rgba(255, 95, 86, 0.1);
    border: 1px solid rgba(255, 95, 86, 0.3);
    color: #ff5f56;
}

.benefit-icon {
    font-size: 32px;
}

/* Responsive additions */
@media (max-width: 768px) {
    .mockup-sidebar {
        width: 60px;
    }
    
    .sidebar-item {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .coming-soon-badge {
        top: -15px;
        right: 20px;
        font-size: 12px;
        padding: 8px 18px;
    }
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(237, 0, 153, 0.2);
    border-radius: 8px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gradient-primary);
    border-color: var(--magenta);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(237, 0, 153, 0.3);
}

.social-icon svg {
    width: 16px;
    height: 16px;
}
