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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1C1C1E;
    background-color: #FAFAFA;
}

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

/* Color Variables */
:root {
    --primary-blue: #007BFF;
    --secondary-green: #00E676;
    --dark-charcoal: #1C1C1E;
    --light-gray: #F4F4F6;
    --off-white: #FAFAFA;
    --gradient: linear-gradient(135deg, #007BFF 0%, #00E676 100%);
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
    transition: opacity 0.3s ease;
}

.nav-logo:hover,
.nav-logo:visited,
.nav-logo:active,
.nav-logo:focus,
.nav-logo:link {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
    opacity: 0.8;
}

.nav-logo * {
    text-decoration: none !important;
    text-decoration-line: none !important;
    border-bottom: none !important;
}

.logo-icon {
    position: relative;
    width: 32px;
    height: 32px;
}

.loop {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid;
    border-radius: 50%;
}

.loop-human {
    border-color: var(--primary-blue);
    top: 0;
    left: 0;
}

.loop-ai {
    border-color: var(--secondary-green);
    top: 6px;
    left: 6px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
}

.nav-logo .logo-text,
a .logo-text,
a:hover .logo-text,
a:visited .logo-text,
a:active .logo-text,
a:focus .logo-text {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
}

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

.nav-link {
    text-decoration: none;
    color: var(--dark-charcoal);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link.active {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

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

.btn-outline {
    background: transparent;
    color: var(--dark-charcoal);
    border: 2px solid var(--dark-charcoal);
}

.btn-outline:hover {
    background: var(--dark-charcoal);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #FAFAFA 0%, #F4F4F6 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

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

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Hero Visual - Live Feed */
.live-feed {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 500px;
    display: flex;
    flex-direction: column;
}

.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    background: var(--light-gray);
}

.feed-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    margin: 0;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.feed-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.feed-post {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(-20px);
}

.feed-post.show {
    opacity: 1;
    transform: translateY(0);
}

.feed-post.hide {
    opacity: 0;
    transform: translateY(20px);
}

.post-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.post-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
}

.post-info {
    flex: 1;
}

.post-author {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-charcoal);
}

.post-time {
    font-size: 0.8rem;
    color: #666;
}

.ai-badge {
    background: var(--secondary-green);
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
}

.post-content {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--dark-charcoal);
    margin-bottom: 0.5rem;
}

.more-link {
    color: var(--primary-blue);
    cursor: pointer;
    font-weight: 500;
    margin-left: 0.5rem;
}

.more-link:hover {
    text-decoration: underline;
}

.post-engagement {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #666;
}

.engagement-labels {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 90px;
}

.engagement-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.engagement-stats {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.engagement-line {
    font-size: 0.7rem;
    color: #888;
}

.feed-post.fade-out {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--dark-charcoal);
}

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

.problem-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: var(--light-gray);
    transition: transform 0.3s ease;
}

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

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

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

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.ai-human-indicator {
    display: flex;
    gap: 4px;
    align-items: end;
}

.human-bar, .ai-bar {
    width: 8px;
    border-radius: 4px;
}

.human-bar {
    height: 30px;
    background: var(--primary-blue);
}

.ai-bar {
    height: 20px;
    background: var(--secondary-green);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

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

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--light-gray);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    border: 2px solid var(--primary-blue);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: #666;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-charcoal);
}

.period {
    font-size: 1rem;
    color: #666;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-weight: bold;
}

/* Legal pages nested list styling */
.feature-card ul {
    list-style: none;
    padding-left: 0;
}

.feature-card ul li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.feature-card ul ul {
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
    padding-left: 2rem;
}

.feature-card ul ul li {
    padding: 0.2rem 0;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.feature-card ul ul li::before {
    content: "◦";
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient);
    color: white;
    text-align: center;
}

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

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

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

.cta-section .btn-secondary {
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
}

/* Footer */
.footer {
    background: var(--dark-charcoal);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand .logo-text {
    color: white;
}

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

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: #ccc;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom .social-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-bottom .social-links a {
    color: #999;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-bottom .social-links a:hover {
    color: #fff;
}

.footer-registration {
    font-size: 0.75rem;
    color: #777;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

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

.footer-legal a:hover {
    color: var(--secondary-green);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 20px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        min-width: 200px;
    }
    
    .nav-menu.show {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--dark-charcoal);
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-bottom-row {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .footer-registration {
        text-align: center;
    }
}
/* Signu
p Section */
.signup-section {
    padding: 80px 0;
    background: white;
}

.signup-content {
    text-align: center;
    margin-bottom: 3rem;
}

.signup-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

.signup-content p {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.signup-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-gray);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.signup-form iframe {
    border-radius: 8px;
}

@media (max-width: 768px) {
    .signup-content h2 {
        font-size: 2rem;
    }
    
    .signup-content p {
        font-size: 1.1rem;
    }
    
    .signup-form {
        padding: 1rem;
        margin: 0 1rem;
    }
    
    .signup-form iframe {
        height: 400px;
    }
}/* AI C
hallenge Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.popup-overlay.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.popup-content {
    background: white;
    border-radius: 16px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.popup-image {
    width: 100%;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.popup-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 200px;
    object-fit: cover;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: #f0f0f0;
    color: #333;
}

.popup-header {
    padding: 0 2rem;
}

.popup-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 0.5rem;
    padding-right: 2rem;
    line-height: 1.3;
}

.popup-date {
    font-size: 1rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.popup-body {
    padding: 0 2rem 2rem 2rem;
}

.popup-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.popup-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.popup-btn {
    flex: 1;
    min-width: 140px;
    padding: 12px 20px;
    font-size: 0.95rem;
}

.popup-contact {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.popup-contact a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.popup-contact a:hover {
    text-decoration: underline;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .popup-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .popup-header h2 {
        font-size: 1.3rem;
    }
    
    .popup-buttons {
        flex-direction: column;
    }
    
    .popup-btn {
        width: 100%;
    }
}/*
 About Page Styles */
.story-milestone {
    padding: 2rem;
    border-left: 4px solid var(--primary-blue);
    background: var(--light-gray);
    border-radius: 0 12px 12px 0;
    position: relative;
}

.story-milestone::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 2rem;
    width: 12px;
    height: 12px;
    background: var(--primary-blue);
    border-radius: 50%;
}

.milestone-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.milestone-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.milestone-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: var(--dark-charcoal);
}

.milestone-date {
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin: 0;
}

.story-milestone p:last-child {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

/* Team section enhancements */
.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    box-shadow: 0 8px 32px rgba(0, 123, 255, 0.2);
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .story-milestone {
        padding: 1.5rem;
        margin-left: 1rem;
    }
    
    .milestone-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .milestone-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .story-milestone::before {
        left: -6px;
        width: 8px;
        height: 8px;
    }
    
    .team-avatar {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .story-milestone {
        padding: 1rem;
        margin-left: 0.5rem;
        border-left-width: 3px;
    }
    
    .milestone-header h3 {
        font-size: 1.1rem;
    }
    
    .story-milestone::before {
        left: -5px;
        width: 6px;
        height: 6px;
    }
}

/* Extensions and API Page Styles */

/* Comparison table styling */
.comparison-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: var(--light-gray);
    font-weight: 600;
    border-bottom: 2px solid #e0e0e0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-row:last-child {
    border-bottom: none;
}

.feature-col, .platform-col {
    padding: 1rem;
    display: flex;
    align-items: center;
    min-height: 60px;
}

.feature-col {
    background: #fafafa;
    font-weight: 500;
    border-right: 1px solid #e0e0e0;
}

.platform-col {
    text-align: center;
    justify-content: center;
    border-right: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.platform-col:last-child {
    border-right: none;
}

.platform-col.juntoai {
    background: rgba(0, 123, 255, 0.05);
    color: var(--primary-blue);
    font-weight: 600;
}

.platform-col.linkedin {
    background: rgba(0, 119, 181, 0.05);
    color: #0077b5;
}

.platform-col.twitter {
    background: rgba(29, 161, 242, 0.05);
    color: #1da1f2;
}

.platform-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    font-weight: 700;
}

@media (max-width: 768px) {
    .comparison-header, .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .feature-col {
        background: var(--primary-blue);
        color: white;
        font-weight: 600;
    }
    
    .platform-col {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 0.75rem;
    }
    
    .platform-col.juntoai::before {
        content: "JuntoAI: ";
        font-weight: 600;
    }
    
    .platform-col.linkedin::before {
        content: "LinkedIn: ";
        font-weight: 600;
    }
    
    .platform-col.twitter::before {
        content: "X: ";
        font-weight: 600;
    }
}

/* CRM Demo Styles */
.chat-container {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}

.chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 1rem;
    background: #fafafa;
}

.chat-message {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.chat-message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.chat-message.user .message-avatar {
    background: var(--dark-charcoal);
}

.message-content {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-width: 70%;
}

.chat-message.user .message-content {
    background: var(--primary-blue);
    color: white;
}

.chat-input {
    display: flex;
    padding: 1rem;
    background: white;
    border-top: 1px solid #e0e0e0;
}

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

.contact-card {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    transition: transform 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
}

.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contact-header h3 {
    margin: 0;
    color: var(--dark-charcoal);
    font-size: 1.1rem;
}

.contact-category {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
}

.contact-category.investor {
    background: #e3f2fd;
    color: #1976d2;
}

.contact-category.client {
    background: #e8f5e8;
    color: #388e3c;
}

.contact-category.colleague {
    background: #fff3e0;
    color: #f57c00;
}

.contact-category.mentor {
    background: #f3e5f5;
    color: #7b1fa2;
}

.contact-category.prospect {
    background: #fce4ec;
    color: #c2185b;
}

@media (max-width: 768px) {
    .chat-messages {
        height: 300px;
    }
    
    .message-content {
        max-width: 85%;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
}

/* Legal pages styling */
.feature-card h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-charcoal);
}

.feature-card h2:first-child {
    margin-top: 0;
}

.feature-card h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

.feature-card ul {
    margin-bottom: 1.5rem;
}

.feature-card li {
    margin-bottom: 0.5rem;
}
.nav-link.active {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Code Preview */
.code-preview {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #2d2d30;
    border-bottom: 1px solid #3e3e42;
}

.code-title {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.code-lang {
    color: #569cd6;
    font-size: 0.8rem;
    font-weight: 500;
}

.code-preview pre {
    margin: 0;
    padding: 1.5rem;
    background: transparent;
    overflow-x: auto;
}

.code-preview code {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* API Endpoints */
.api-endpoints {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.endpoint-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.endpoint-card:hover {
    transform: translateY(-2px);
}

.endpoint-method {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    min-width: 60px;
    text-align: center;
    color: white;
}

.endpoint-method.get {
    background: #28a745;
}

.endpoint-method.post {
    background: #007bff;
}

.endpoint-method.put {
    background: #ffc107;
    color: #000;
}

.endpoint-method.delete {
    background: #dc3545;
}

.endpoint-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--dark-charcoal);
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.endpoint-details p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Form Styles */
.feature-request-form,
.api-request-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-charcoal);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

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

/* FAQ Page Styles */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-item {
    max-width: 900px;
    margin: 0 auto 2rem auto;
}

.faq-question {
    width: 100%;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question:hover {
    border-color: var(--primary-blue);
    background: rgba(0, 123, 255, 0.03);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-toggle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--primary-blue);
    min-width: 20px;
}

.faq-answer {
    display: none;
    color: #444;
    line-height: 1.8;
    font-size: 1rem;
    padding: 2rem;
    background: white;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-answer p {
    margin-bottom: 1.5rem;
    color: #444;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 2.5rem 0 1.25rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.faq-answer h3:first-child {
    margin-top: 0;
}

.faq-answer ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.faq-answer li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.faq-answer li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.faq-answer strong {
    color: var(--dark-charcoal);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .hero-container {
        text-align: center;
    }
    
    .code-preview {
        margin-top: 2rem;
    }
    
    .endpoint-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .endpoint-method {
        align-self: flex-start;
    }
    
    .code-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .form-group {
        gap: 0.25rem;
    }
    
    .faq-item {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: 1.5rem;
    }
}

/* Use Cases Page Styles */
.use-cases-grid {
    padding: 2rem 0 4rem;
    background: var(--light-gray);
}

.use-cases-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.use-case-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.use-case-card.active {
    border: 2px solid var(--primary-blue);
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

.use-case-card.coming-soon {
    opacity: 0.7;
    cursor: default;
}

.use-case-card.coming-soon:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.use-case-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.use-case-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    margin: 0;
    line-height: 1.3;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.status-badge.available {
    background: var(--secondary-green);
    color: white;
}

.status-badge.coming-soon {
    background: #ffc107;
    color: #000;
}

.use-case-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.use-case-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.use-case-stats .stat {
    text-align: left;
}

.use-case-stats .stat-number {
    font-size: 1.5rem;
    color: var(--secondary-green);
}

.use-case-stats .stat-label {
    font-size: 0.85rem;
}

.use-case-preview {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.use-case-preview span {
    font-size: 0.9rem;
    color: #666;
    padding-left: 1rem;
    position: relative;
}

.use-case-preview span::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

/* Detailed Use Case Styles */
.detailed-use-case {
    padding: 4rem 0;
    background: white;
}

.use-case-content {
    max-width: 1000px;
    margin: 0 auto;
}

.use-case-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.use-case-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-section {
    margin-bottom: 4rem;
}

.comparison-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    margin-bottom: 2rem;
    text-align: center;
}

.current-state-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-card.negative {
    border-left: 4px solid #dc3545;
}

.stat-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.stat-content .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 0.25rem;
}

.stat-content .stat-label {
    font-size: 0.9rem;
    color: #666;
}

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

.approach-card {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.approach-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.approach-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
}

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

.comparison-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    min-height: 60px;
}

.comparison-row.header {
    background: var(--dark-charcoal);
    color: white;
    font-weight: 600;
}

.comparison-row.linkedin {
    background: rgba(220, 53, 69, 0.05);
}

.comparison-row.juntoai {
    background: rgba(0, 123, 255, 0.05);
}

.comparison-cell {
    padding: 1rem;
    display: flex;
    align-items: center;
    border-right: 1px solid #e0e0e0;
    font-size: 0.9rem;
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-cell strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.method-subtitle {
    font-size: 0.8rem;
    color: #666;
    font-weight: normal;
}

.cost-high {
    color: #dc3545;
    font-weight: 700;
    font-size: 1.1rem;
}

.cost-low {
    color: var(--secondary-green);
    font-weight: 700;
    font-size: 1.1rem;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.scenario-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.scenario-card:hover {
    transform: translateY(-3px);
}

.scenario-card.highlighted {
    border: 2px solid var(--secondary-green);
    background: rgba(0, 230, 118, 0.05);
}

.scenario-rate {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.scenario-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.scenario-leads {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-charcoal);
}

.scenario-cost {
    font-size: 1rem;
    color: var(--secondary-green);
    font-weight: 600;
}

.scenarios-note {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 1rem;
}

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

.benchmark-card {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.benchmark-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benchmark-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    margin-bottom: 0.5rem;
}

.benchmark-rate {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.benchmark-desc {
    font-size: 0.9rem;
    color: #666;
}

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

.advantage-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
}

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

.narrative-section {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
}

.narrative-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    margin-bottom: 2rem;
}

.narrative-content blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary-blue);
    margin: 0 0 2rem 0;
    padding: 0;
    border: none;
    line-height: 1.6;
}

.slogan {
    font-size: 1.1rem;
    color: var(--dark-charcoal);
    margin-top: 1rem;
}

.use-case-cta {
    background: var(--gradient);
    color: white;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
}

.use-case-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.use-case-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.use-case-cta .btn {
    background: white;
    color: var(--primary-blue);
}

/* Responsive Design for Use Cases */
@media (max-width: 768px) {
    .use-cases-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .use-case-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .use-case-stats {
        gap: 1rem;
    }
    
    .use-case-intro h2 {
        font-size: 2rem;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        justify-content: center;
        text-align: center;
    }
    
    .scenarios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .narrative-section {
        padding: 2rem;
    }
    
    .narrative-content blockquote {
        font-size: 1.1rem;
    }
    
    .use-case-cta {
        padding: 2rem;
    }
    
    .use-case-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .scenarios-grid {
        grid-template-columns: 1fr;
    }
    
    .current-state-grid,
    .approach-grid,
    .benchmarks-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}
/* Fix for use cases comparison tables */
.detailed-use-case .comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    min-height: 60px;
}
/* Add spacing between title and subtitle in comparison tables */
.method-subtitle {
    display: block;
    margin-top: 0.25rem;
}

/* Beta badge for Terms of Service */
.beta-badge-tos {
    background: #ffc107;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-beta 2s infinite;
    white-space: nowrap;
}

@keyframes pulse-beta {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}


/* JuntoAI Minis Carousel Styles */
.minis-section {
    position: relative;
    overflow: hidden;
}

.minis-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.minis-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.minis-carousel::-webkit-scrollbar {
    display: none;
}

.mini-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.mini-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mini-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1C1C1E;
    margin-bottom: 0.5rem;
}

.mini-subtitle {
    font-size: 1rem;
    color: #007BFF;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mini-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.mini-value {
    background: #F4F4F6;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #1C1C1E;
    border-left: 4px solid #00E676;
}

.mini-value strong {
    color: #007BFF;
}

/* Mini Vote Section */
.mini-vote-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1rem;
    background: #F4F4F6;
    border-radius: 8px;
}

.btn-vote {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #007BFF;
    color: #007BFF;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-vote:hover:not(:disabled) {
    background: #007BFF;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-vote:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #E1E5E9;
    border-color: #E1E5E9;
    color: #666;
}

.btn-vote .vote-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-vote:hover:not(:disabled) .vote-icon {
    transform: scale(1.2);
}

.vote-count {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.vote-count.voted {
    color: #00E676;
}

/* Vote Signup Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
}

.modal-close:hover {
    background: #F4F4F6;
    color: #1C1C1E;
    transform: rotate(90deg);
}

.modal-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #E1E5E9;
}

.modal-header h2 {
    font-size: 1.8rem;
    color: #1C1C1E;
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.modal-body {
    padding: 2rem;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        max-height: 95vh;
    }

    .modal-header {
        padding: 2rem 1.5rem 1rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #007BFF;
    color: #007BFF;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.carousel-btn:hover {
    background: #007BFF;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E1E5E9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: #007BFF;
    opacity: 0.7;
}

.indicator.active {
    background: #007BFF;
    width: 32px;
    border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .minis-carousel-container {
        padding: 0 40px;
    }

    .mini-card {
        padding: 2rem;
        min-height: 500px;
    }

    .mini-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }

    .mini-title {
        font-size: 1.5rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

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

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }

    .carousel-prev {
        left: -10px;
    }

    .carousel-next {
        right: -10px;
    }
}

/* Kinetic Launch Popup */
.kinetic-popup-content {
    max-width: 480px;
    overflow: visible;
}

.kinetic-popup-inner {
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.kinetic-popup-badge {
    display: inline-block;
    background: var(--gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.35rem 1rem;
    border-radius: 20px;
}

.kinetic-popup-logo {
    width: 100%;
    max-width: 240px;
    height: auto;
}

.kinetic-popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin: 0;
    line-height: 1.3;
}

.kinetic-popup-subtitle {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    max-width: 380px;
}

.kinetic-popup-cta {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
}

.kinetic-popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.35);
    color: white;
    text-decoration: none;
}

.kinetic-popup-audio {
    width: 100%;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #E1E5E9;
}

.kinetic-popup-audio-label {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.kinetic-popup-audio audio {
    width: 100%;
    height: 40px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .kinetic-popup-content {
        max-width: 95%;
    }

    .kinetic-popup-inner {
        padding: 2rem 1.5rem 1.5rem;
    }

    .kinetic-popup-title {
        font-size: 1.25rem;
    }

    .kinetic-popup-logo {
        max-width: 180px;
    }
}
