/* 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: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: 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;
}

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

.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: white;
}

.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: var(--light-gray);
}

.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: white;
}

.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;
}

/* 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;
    justify-content: space-between;
    align-items: center;
    color: #ccc;
}

.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);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        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;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}
/* 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;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .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;
    }
}