/* Custom CSS for CyberLogicC - Hume.ai inspired design */

:root {
    --primary-bg: rgb(255, 244, 232);
    --text-color: rgb(53, 53, 53);
    --accent-color: #2c3e50;
    --gradient-start: #667eea;
    --gradient-end: #764ba2;
    --card-bg: rgba(255, 255, 255, 0.8);
    --border-color: rgba(0, 0, 0, 0.1);
}

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

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

/* Navigation */
.navbar {
    background-color: rgba(255, 244, 232, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-color) !important;
    text-decoration: none;
}

.brand-text {
    font-weight: 600;
    letter-spacing: -0.5px;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.btn-dark {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background-color: #1a252f;
    border-color: #1a252f;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    padding-right: 2rem;
}

.announcement-badge {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.announcement-badge .badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: rgba(53, 53, 53, 0.8);
    line-height: 1.7;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: var(--card-bg);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

/* Hero Demo */
.hero-demo {
    padding-left: 2rem;
}

.demo-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

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

.demo-header h5 {
    margin: 0;
    font-weight: 600;
}

.lead-example {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.lead-avatar {
    margin-right: 1rem;
    font-size: 2.5rem;
    color: var(--accent-color);
}

.lead-info h6 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.lead-info p {
    margin-bottom: 0.5rem;
    color: rgba(53, 53, 53, 0.7);
    font-size: 0.9rem;
}

.lead-score {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.score-label {
    font-size: 0.8rem;
    color: rgba(53, 53, 53, 0.6);
}

.score-value {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.demo-actions {
    display: flex;
    gap: 0.5rem;
}

.cta-section {
    text-align: center;
}

.cta-text {
    margin-bottom: 1rem;
    color: rgba(53, 53, 53, 0.8);
}

/* Trusted Section */
.trusted-section {
    background: rgba(255, 255, 255, 0.5);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.company-logo {
    font-weight: 600;
    color: rgba(53, 53, 53, 0.6);
    font-size: 1.1rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.company-logo:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.1rem;
    color: rgba(53, 53, 53, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.feature-visual {
    padding: 2rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Social Integration Demo */
.social-integration-demo {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.network-node:hover {
    transform: scale(1.1);
    border-color: var(--accent-color);
}

.network-node.center {
    position: relative;
    width: 80px;
    height: 80px;
    font-size: 2rem;
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.network-node:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.network-node:nth-child(2) { top: 20%; right: 0; }
.network-node:nth-child(3) { bottom: 20%; right: 0; }
.network-node:nth-child(5) { bottom: 20%; left: 0; }
.network-node:nth-child(6) { top: 20%; left: 0; }

/* Technology Section */
.technology-section {
    background: rgba(255, 255, 255, 0.3);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.tech-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    height: 100%;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tech-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.tech-card h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
}

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

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

.cta-section .btn-dark {
    background-color: white;
    color: var(--accent-color);
    border-color: white;
}

.cta-section .btn-dark:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--accent-color);
}

/* Footer */
.footer {
    background-color: var(--accent-color);
    color: white;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content,
    .hero-demo {
        padding: 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-tags {
        justify-content: center;
    }
    
    .social-integration-demo {
        height: 200px;
    }
    
    .network-node {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .network-node.center {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Button Animations */
.btn {
    transition: all 0.3s ease;
}

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.hero-demo {
    animation: fadeInUp 0.8s ease-out;
}

/* Pricing Page Styles */
.pricing-hero {
    padding-top: 120px;
    background: var(--primary-bg);
}

.pricing-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.pricing-tabs {
    font-size: 1.1rem;
    color: rgba(53, 53, 53, 0.7);
}

.pricing-tabs .tab {
    padding: 0 1rem;
}

.pricing-tabs .tab.active {
    color: var(--text-color);
    font-weight: 600;
}

.pricing-tabs .tab-separator {
    color: rgba(53, 53, 53, 0.3);
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-unit {
    font-size: 1rem;
    color: rgba(53, 53, 53, 0.6);
    margin-left: 0.5rem;
}

.plan-description {
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.feature-list i {
    color: #28a745;
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.pricing-footer {
    margin-top: auto;
}

.pricing-note {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.value-prop {
    text-align: center;
    padding: 1rem;
}

.value-prop i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.value-prop h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-faq {
    background: rgba(255, 255, 255, 0.3);
    border-top: 1px solid var(--border-color);
}

.accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.accordion-button {
    background: transparent;
    border: none;
    font-weight: 600;
    color: var(--text-color);
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--accent-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.pricing-cta {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
}

/* Contact Page Styles */
.contact-hero {
    padding-top: 120px;
    background: var(--primary-bg);
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: rgba(53, 53, 53, 0.8);
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.contact-form .form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
    background: white;
}

.thank-you-content {
    padding: 3rem 2rem;
}

.contact-info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-info-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info-card a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.benefit-item {
    text-align: center;
    padding: 1rem;
}

.benefit-item i {
    font-size: 2.5rem;
    display: block;
}

.benefit-item h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* About Page Styles */
.about-hero {
    padding-top: 120px;
    background: var(--primary-bg);
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.2rem;
    color: rgba(53, 53, 53, 0.8);
}

.story-visual,
.tech-visual {
    padding: 2rem;
}

.story-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.story-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.mission-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.tech-features {
    margin-top: 2rem;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.tech-feature h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tech-diagram {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-node {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.tech-node:hover {
    transform: scale(1.1);
    border-color: var(--accent-color);
}

.tech-node.center {
    position: relative;
    width: 100px;
    height: 100px;
    font-size: 2rem;
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.tech-node span {
    font-size: 0.7rem;
    margin-top: 0.25rem;
    font-weight: 600;
}

.tech-node:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.tech-node:nth-child(2) { top: 30%; right: 0; }
.tech-node:nth-child(3) { bottom: 30%; right: 0; }
.tech-node:nth-child(5) { bottom: 30%; left: 0; }

.team-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.team-avatar {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.team-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    margin-bottom: 1.5rem;
    color: rgba(53, 53, 53, 0.8);
}

.team-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 600;
    color: rgba(53, 53, 53, 0.8);
}

/* Legal Pages Styles */
.legal-hero {
    padding-top: 120px;
    background: var(--primary-bg);
}

.legal-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.legal-subtitle {
    color: rgba(53, 53, 53, 0.6);
    font-size: 1.1rem;
}

.legal-document {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.legal-document h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-document p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-document ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-details {
    background: rgba(44, 62, 80, 0.05);
    border-left: 4px solid var(--accent-color);
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
}

.legal-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1a252f;
}
