/* DataZoro - Optimized CSS with Mobile-First Design */

:root {
    --primary: #0066ff;
    --secondary: #00d4ff;
    --dark: #0a0e27;
    --light: #f8f9fa;
    --success: #00c853;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #fff;
}

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

/* WhatsApp Banner */
.whatsapp-banner {
    background: #25d366;
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    position: relative;
    z-index: 1001;
    transition: margin-top 0.3s ease;
}

.whatsapp-banner.hidden {
    margin-top: -44px;
}

.whatsapp-banner p {
    margin: 0;
}

.whatsapp-banner a {
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.whatsapp-banner a:hover {
    border-bottom-color: white;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.logo a {
    text-decoration: none;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

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

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

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

.cta-button {
    background: var(--primary);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,102,255,0.3);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

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

.gradient-text {
    background: linear-gradient(90deg, #fff, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-badge {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

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

.btn {
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.hero-visual {
    margin-top: 3rem;
    position: relative;
    height: 200px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 0;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50px;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

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

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

.floating-card span:last-child {
    color: var(--dark);
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--light);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.service-card.featured {
    background: var(--gradient);
    color: white;
}

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

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Bots Section */
.bots-section {
    padding: 5rem 0;
}

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

.bot-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

.bot-header {
    padding: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bot-header.google { background: #4285f4; }
.bot-header.linkedin { background: #0077b5; }
.bot-header.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.bot-header.facebook { background: #1877f2; }
.bot-header.twitter { background: #000; }
.bot-header.tiktok { background: linear-gradient(45deg, #000, #ff0050); }

.bot-logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: white;
    color: var(--dark);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.bot-card h3 {
    font-size: 1.1rem;
}

.bot-card p {
    padding: 1.5rem;
    color: #666;
}

.bot-stats {
    display: flex;
    justify-content: space-around;
    padding: 1.5rem;
    background: var(--light);
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

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

/* Automation Section */
.automation-section {
    padding: 5rem 0;
    background: var(--light);
}

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

.integration-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.integration-card h4 {
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Technology Section */
.technology {
    padding: 5rem 0;
}

.tech-grid {
    display: grid;
    gap: 2rem;
}

.tech-category {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.tech-category h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-badge {
    background: var(--light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.tech-badge:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--light);
}

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

.feature {
    text-align: center;
    padding: 2rem;
}

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

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

/* Hiring Section */
.hiring-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(102,126,234,0.1) 0%, rgba(118,75,162,0.1) 100%);
}

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

.hire-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

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

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

.hire-skills {
    list-style: none;
    margin: 1rem 0;
}

.hire-skills li {
    padding: 0.3rem 0;
    color: #666;
}

.hire-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s;
}

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

.hiring-benefits {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hiring-benefits h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

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

.benefit {
    padding: 1rem;
    background: var(--light);
    border-radius: 8px;
    color: var(--dark);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    position: relative;
}

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

.testimonials .section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.testimonials .section-header p {
    font-size: 1rem;
    color: #666;
}

.testimonials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-wrapper {
    overflow: hidden;
    flex: 1;
}

.testimonials-grid {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1.5rem;
}

.testimonial-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    min-width: calc(33.333% - 1rem);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-item .rating {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.testimonial-item h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.testimonial-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    min-height: 60px;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 0.75rem;
    border-top: 1px solid #eee;
}

.author {
    display: flex;
    flex-direction: column;
}

.author strong {
    color: var(--dark);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.author span {
    color: #777;
    font-size: 0.8rem;
}

.metrics {
    display: flex;
    align-items: center;
}

.metric {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.carousel-btn {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.3rem;
    color: var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Tablet View - 2 cards */
@media (max-width: 992px) {
    .testimonial-item {
        min-width: calc(50% - 0.75rem);
    }
}

/* Mobile View - 1 card */
@media (max-width: 768px) {
    .testimonials {
        padding: 2rem 0;
    }
    
    .testimonial-item {
        min-width: 100%;
    }
    
    .testimonials-grid {
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .testimonial-item p {
        min-height: auto;
    }
}

/* Process Section */
.process {
    padding: 5rem 0;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

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

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

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

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

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

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

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: left 0.3s;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .services-grid,
    .bots-showcase,
    .integrations-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-card {
        display: none;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Page Hero */
.page-hero {
    background: var(--gradient);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* About Page Styles */
.about-overview {
    padding: 5rem 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.overview-text h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.overview-text h3 {
    margin: 2rem 0 1rem;
    color: var(--dark);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.overview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
}

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

.expertise-section {
    padding: 5rem 0;
    background: var(--light);
}

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

.expertise-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.expertise-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.expertise-card ul {
    list-style: none;
    margin-top: 1rem;
}

.expertise-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.expertise-card li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.team-section {
    padding: 5rem 0;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-role {
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.values-section {
    padding: 5rem 0;
    background: var(--light);
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.tech-stack-section {
    padding: 5rem 0;
}

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

.tech-category {
    margin-bottom: 2rem;
}

.tech-category h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.tech-list {
    background: var(--light);
    padding: 1.5rem;
    border-radius: var(--radius);
    font-size: 1.1rem;
    line-height: 1.8;
}

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

/* Contact Page Styles */
.contact-main {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.info-card h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.info-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item a {
    color: var(--primary);
    text-decoration: none;
}

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

.response-time {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.response-time:last-child {
    border-bottom: none;
}

.time-value {
    font-weight: bold;
    color: var(--success);
}

.service-list,
.process-list {
    list-style: none;
    margin: 0;
}

.service-list li,
.process-list li {
    padding: 0.5rem 0;
}

.process-list {
    counter-reset: step;
}

.process-list li {
    counter-increment: step;
    position: relative;
    padding-left: 2rem;
}

.process-list li:before {
    content: counter(step);
    position: absolute;
    left: 0;
    background: var(--primary);
    color: white;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.contact-faq {
    padding: 5rem 0;
    background: var(--light);
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-cta {
    padding: 5rem 0;
    background: var(--gradient);
    color: white;
    text-align: center;
}

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

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

.cta-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.cta-stat .stat-label {
    opacity: 0.9;
}

/* Products Page Styles */
.products-section {
    padding: 5rem 0;
}

.products-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-header h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

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

.product-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    position: relative;
    transition: transform 0.3s;
}

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

.product-card.featured {
    border: 2px solid var(--primary);
}

.product-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-header h3 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.product-price {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
}

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

.product-description {
    margin-bottom: 1.5rem;
    color: #666;
}

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

.product-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.product-tech {
    background: var(--light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.enterprise-section {
    padding: 5rem 0;
    background: var(--light);
}

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

.enterprise-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
}

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

.enterprise-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 0.3rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.enterprise-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin: 1rem 0;
}

.enterprise-card ul {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.enterprise-card li {
    padding: 0.5rem 0;
}

.product-features-section {
    padding: 5rem 0;
}

/* Services Page Styles */
.services-overview {
    padding: 3rem 0;
    background: var(--light);
}

.overview-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
}

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

.core-services {
    padding: 5rem 0;
}

.core-services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

.service-card.featured {
    border: 2px solid var(--primary);
}

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

.service-card h3 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.service-pricing {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--light);
    border-radius: 8px;
    text-align: center;
}

.price-from {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    display: block;
}

.price-note {
    color: #666;
    font-size: 0.9rem;
}

.specialized-services {
    padding: 5rem 0;
    background: var(--light);
}

.specialized-services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

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

.specialized-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    transition: transform 0.3s;
}

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

.specialized-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.specialized-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.spec-price {
    font-weight: bold;
    color: var(--dark);
}

.enterprise-services {
    padding: 5rem 0;
}

.enterprise-services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

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

.enterprise-tier {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.enterprise-tier.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.tier-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.tier-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin: 1rem 0;
}

.tier-price span {
    font-size: 1rem;
    color: #666;
}

.tier-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.tier-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.tier-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.service-process {
    padding: 5rem 0;
    background: var(--light);
}

.service-process h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: 50px;
    background: var(--primary);
    opacity: 0.3;
}

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

.step-content h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.step-duration {
    color: var(--primary);
    font-weight: bold;
    font-size: 0.9rem;
}

.technologies-section {
    padding: 5rem 0;
}

.technologies-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

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

.tech-category {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.tech-category h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tags span {
    background: var(--light);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.tech-tags span:hover {
    background: var(--primary);
    color: white;
}

.services-cta {
    padding: 5rem 0;
    background: var(--gradient);
    color: white;
    text-align: center;
}

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

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    background: rgba(255,255,255,0.2);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Resources Page Styles */
.quick-nav {
    padding: 2rem 0;
    background: var(--light);
    border-bottom: 1px solid #eee;
}

.quick-nav h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-links a {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s;
    border: 1px solid #ddd;
}

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

.resources-content {
    padding: 3rem 0;
}

.content-section {
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.content-section h2 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.intro {
    text-align: center;
    padding: 2rem;
    background: var(--light);
    border-radius: var(--radius);
}

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-top: 2rem;
}

.warning-box h4 {
    color: #d63031;
    margin-bottom: 0.5rem;
}

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

.detection-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.detection-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.detection-card ul {
    list-style: none;
}

.detection-card li {
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
}

.detection-card li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.technique-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.technique-section h3 {
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.tools-list {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.tool-item {
    background: var(--light);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tool-item strong {
    color: var(--primary);
}

.tool-price {
    background: var(--primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.code-example {
    margin: 1.5rem 0;
}

.code-example h4 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.code-example pre {
    background: #2d3748;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 0.9rem;
    line-height: 1.4;
}

.best-practices {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.best-practices h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

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

.fingerprint-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.fingerprint-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.automation-tips {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 8px;
}

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

.proxy-type {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.proxy-rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.proxy-type h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.proxy-type ul {
    list-style: none;
    margin: 1rem 0;
    text-align: left;
}

.proxy-type li {
    padding: 0.3rem 0;
}

.proxy-price {
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    margin-top: 1rem;
    display: inline-block;
}

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

.captcha-service {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.captcha-service h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.captcha-avoidance {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 8px;
}

.tools-categories {
    display: grid;
    gap: 3rem;
}

.tool-category h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

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

.tool-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.tool-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.tool-level {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.8rem;
}

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

.platform-guide {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.platform-guide h3 {
    margin-bottom: 1rem;
}

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

.legal-section {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.legal-section h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.best-practices-legal {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--light);
    border-radius: var(--radius);
}

.best-practices-legal h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.resources-faq {
    padding: 5rem 0;
    background: var(--light);
}

.resources-faq h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 3rem;
}

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

.resources-faq .faq-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
}

.resources-faq .faq-item h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.resources-cta {
    padding: 5rem 0;
    background: var(--gradient);
    color: white;
    text-align: center;
}

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

/* Landing Page Styles */
.landing-hero {
    padding: 5rem 0;
    background: var(--gradient);
    color: white;
}

.landing-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.landing-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.landing-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 1.2rem;
}

.hero-pricing {
    margin-bottom: 2rem;
}

.hero-pricing .price {
    font-size: 3rem;
    font-weight: bold;
    display: block;
}

.hero-pricing .price-note {
    opacity: 0.8;
    font-size: 1rem;
}

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

.demo-preview {
    background: white;
    color: var(--dark);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.demo-header {
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-align: center;
}

.demo-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
}

.demo-stats .stat {
    text-align: center;
}

.demo-stats .stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
}

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

.demo-progress {
    text-align: center;
}

.progress-bar {
    background: #f0f0f0;
    height: 8px;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.progress-fill {
    background: var(--gradient);
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s;
}

.progress-text {
    color: #666;
    font-size: 0.9rem;
}

.landing-features {
    padding: 5rem 0;
}

.landing-features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

.how-it-works {
    padding: 5rem 0;
    background: var(--light);
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.step:not(:last-child):after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: 60px;
    background: var(--primary);
    opacity: 0.3;
}

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

.step-content h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.landing-pricing {
    padding: 5rem 0;
}

.pricing-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.package-features h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: sticky;
    top: 2rem;
}

.price-header {
    margin-bottom: 2rem;
}

.price-header .price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary);
    display: block;
}

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

.price-features {
    margin: 2rem 0;
}

.price-features .feature {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.money-back {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--success);
    font-weight: bold;
}

.landing-faq {
    padding: 5rem 0;
    background: var(--light);
}

.landing-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.landing-faq .faq-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.landing-faq .faq-item h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.landing-cta {
    padding: 5rem 0;
    background: var(--gradient);
    color: white;
    text-align: center;
}

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

.landing-cta .cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.landing-cta .cta-stat {
    text-align: center;
}

.landing-cta .cta-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.landing-cta .cta-stat .stat-label {
    opacity: 0.9;
}

/* Priority Contact Styles */
.priority-contact {
    border: 2px solid var(--primary) !important;
    background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(0,102,255,0.1)) !important;
}

.chat-priority {
    text-align: center;
    padding: 1rem;
}

.chat-highlight {
    background: var(--gradient);
    color: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.chat-highlight strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.email-note {
    margin-top: 1rem;
    text-align: center;
    color: var(--text-muted);
}

/* Responsive for About & Contact Pages */
@media (max-width: 968px) {
    .overview-content {
        grid-template-columns: 1fr;
    }
    
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-visual,
    .cta-section,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    .container {
        max-width: 100%;
    }
}