:root {
    --bg-color: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-accent: #f3f4f6;
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --secondary-color: #8b5cf6;
    --text-main: #111827;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.logo span {
    color: var(--primary-color);
}

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

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

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

/* BUTTONS */
.btn-primary,
.btn-primary-large,
.btn-primary-huge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

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

.btn-primary-huge {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.btn-primary:hover,
.btn-primary-large:hover,
.btn-primary-huge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary,
.btn-secondary-large {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

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

.btn-secondary:hover,
.btn-secondary-large:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-arrow {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-arrow:hover {
    transform: translateX(5px);
}

/* HERO SECTION */
.hero-section {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    text-align: center;
    margin-top: 60px;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero-section .highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

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

/* PROBLEM SECTION */
.problem-section {
    padding: 5rem 0;
    background: white;
}

.problem-section h2 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-main);
}

.pain-points {
    max-width: 900px;
    margin: 0 auto 3rem;
    display: grid;
    gap: 2rem;
}

.pain-point {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.pain-point:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.pain-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
    min-width: 60px;
}

.pain-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.pain-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.problem-summary {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--bg-accent);
    border-radius: 16px;
}

.large-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1rem;
}

/* REALITY SECTION */
.reality-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.reality-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.difference-box {
    max-width: 900px;
    margin: 3rem auto;
    padding: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.difference-box h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-family: var(--font-heading);
}

.difference-grid {
    display: grid;
    gap: 1.5rem;
}

.difference-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
}

.difference-item .icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.difference-item p {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

/* HOW IT WORKS SECTION */
.how-it-works-section {
    padding: 5rem 0;
    background: white;
}

.how-it-works-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-family: var(--font-heading);
}

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

.benefit-card {
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

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

.ai-not-scary {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 16px;
}

.ai-not-scary h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.ai-not-scary p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* MORNING SYSTEM SECTION */
.system-morning-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.system-morning-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-family: var(--font-heading);
}

.morning-story {
    max-width: 800px;
    margin: 0 auto;
}

.story-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.notification-example {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin: 2rem 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.notification-icon {
    font-size: 3rem;
}

.notification-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.notification-content p {
    color: var(--text-secondary);
}

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

.morning-item {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    font-weight: 500;
}

/* COOPERATION STEPS */
.cooperation-section {
    padding: 5rem 0;
    background: white;
}

.cooperation-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-family: var(--font-heading);
}

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

.step-card {
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: var(--font-heading);
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

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

/* INDUSTRIES */
.industries-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.industries-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

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

.industry-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.industry-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.industry-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.industries-note {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* STATS SECTION */
.stats-section {
    padding: 5rem 0;
    background: white;
}

.stats-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

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

.stat-card {
    padding: 2.5rem 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.stat-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* FAQ SECTION */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-item {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.faq-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

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

.guarantee-box {
    max-width: 800px;
    margin: 3rem auto;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 16px;
    text-align: center;
}

.guarantee-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.guarantee-box p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* FOR WHO SECTION */
.for-who-section {
    padding: 5rem 0;
    background: white;
}

.for-who-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-family: var(--font-heading);
}

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

.for-who-yes,
.for-who-no {
    padding: 2.5rem;
    border-radius: 12px;
}

.for-who-yes {
    background: #ecfdf5;
    border: 2px solid var(--success-color);
}

.for-who-no {
    background: #fef2f2;
    border: 2px solid #ef4444;
}

.for-who-yes h3,
.for-who-no h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.for-who-yes ul,
.for-who-no ul {
    list-style: none;
}

.for-who-yes ul li,
.for-who-no ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.for-who-yes ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 800;
}

.for-who-no ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 800;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.testimonials-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

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

.testimonial-card {
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-main);
}

/* FINAL CTA SECTION */
.final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.cta-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.cta-buttons-large {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cta-subtext {
    font-size: 1rem;
    color: var(--text-muted);
}

/* FOOTER */
footer {
    padding: 4rem 0 2rem;
    background: var(--text-main);
    color: white;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-contact {
    margin-top: 1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.footer-form-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.form-intro {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 0.9rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-row select {
    color: white;
}

.form-row select option {
    background: var(--text-main);
}

.btn-submit {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.form-privacy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.form-privacy a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-privacy a:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .problem-section h2,
    .reality-section h2,
    .how-it-works-section h2,
    .cooperation-section h2,
    .industries-section h2,
    .stats-section h2,
    .faq-section h2,
    .for-who-section h2,
    .testimonials-section h2,
    .final-cta-section h2 {
        font-size: 2rem;
    }
    
    .pain-point {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .for-who-grid {
        grid-template-columns: 1fr;
    }
}

/* FLOATING CHAT BUTTON */
.floating-chat-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    animation: pulse-chat 2s infinite;
}

.floating-chat-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.chat-btn-icon {
    font-size: 1.5rem;
}

.chat-btn-text {
    font-weight: 600;
    font-size: 1rem;
}

@keyframes pulse-chat {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.6);
    }
}

/* CHAT MODAL */
.chat-modal {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.chat-modal.active {
    display: flex;
}

.chat-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 400px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease;
}

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

.chat-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.chat-modal-header h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin: 0;
}

.chat-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-close:hover {
    color: var(--text-main);
}

.chat-modal-body {
    padding: 2rem;
}

.chat-modal-body p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.chat-options {
    display: grid;
    gap: 1rem;
}

.chat-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.chat-option:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.option-icon {
    font-size: 1.5rem;
}

.option-text {
    font-weight: 500;
}

@media (max-width: 768px) {
    .floating-chat-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1.25rem;
    }
    
    .chat-btn-text {
        display: none;
    }
    
    .chat-btn-icon {
        font-size: 1.8rem;
    }
}
    border-radius: 8px;
    font-size: 0.9rem;
}

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

.metric {
    text-align: center;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Solutions Section */
.solutions-section {
    padding: 6rem 0;
}

.solutions-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.solution-card {
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

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

.solution-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.solution-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Case Studies Section */
.case-studies-section {
    padding: 6rem 0;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--glass-border);
}

.case-studies-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.case-card {
    background: var(--card-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    transition: border-color 0.3s;
}

.case-card:hover {
    border-color: var(--accent-primary);
}

.case-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.metric-highlight {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.case-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.author {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.85rem;
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    text-align: center;
    background: rgba(59, 130, 246, 0.05);
    border-top: 1px solid var(--glass-border);
}

.trust-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.badge {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--accent-primary);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-text {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.95rem;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    font-family: var(--font-body);
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    transition: transform 0.3s;
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-widget-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: var(--card-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    display: none;
}

.chat-widget-window.open {
    display: flex;
}

.widget-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    font-weight: 600;
}

.widget-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    font-size: 1.5rem;
}

.widget-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.widget-input-area {
    padding: 1rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    gap: 0.5rem;
}

.widget-input-area input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.6rem;
    border-radius: 8px;
    outline: none;
}

.widget-input-area button {
    background: var(--accent-primary);
    border: none;
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .demo-grid, .footer-grid, .solutions-grid, .cases-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .trust-logos { gap: 0.8rem; }
    .metrics-grid { grid-template-columns: 1fr; }
    .results { grid-template-columns: 1fr; }
    
    .chat-widget-window {
        width: 320px;
        height: 450px;
    }
}
