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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.top-banner {
    background-color: #1a1a1a;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.banner-link {
    color: #4285f4;
    text-decoration: none;
}

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

.header-section {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.5rem;
    color: #333 !important;
    text-decoration: none;
}

.logo {
    height: 32px;
    margin-right: 8px;
}

.brand-text {
    color: #333;
}

.nav-link {
    color: #666 !important;
    font-weight: 500;
    margin: 0 8px;
}

.nav-link:hover {
    color: #4285f4 !important;
}

.btn-primary {
    background-color: #4285f4;
    border-color: #4285f4;
    border-radius: 6px;
    font-weight: 500;
    padding: 8px 16px;
}

.btn-primary:hover {
    background-color: #3367d6;
    border-color: #3367d6;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 80px 0 120px;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(66, 133, 244, 0.1);
    color: #4285f4;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    font-size: 1.1rem;
    padding: 12px 24px;
    border-radius: 6px;
}

.company-logos {
    margin-top: 60px;
}

.company-logo {
    height: 40px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.company-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Section Styles */
.businesses-section {
    padding: 80px 0 40px;
}

.section-badge {
    color: #4285f4;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Industry Solutions */
.industry-solutions {
    padding: 40px 0 80px;
}

.industry-badge {
    display: inline-block;
    background: #e8f0fe;
    color: #4285f4;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.industry-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.industry-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 24px;
}

.industry-features {
    list-style: none;
    margin-bottom: 24px;
}

.industry-features li {
    padding: 8px 0;
    font-size: 1rem;
    color: #333;
}

.industry-features i {
    color: #4285f4;
    margin-right: 12px;
}

.industry-quote {
    font-style: italic;
    color: #666;
    border-left: 4px solid #4285f4;
    padding-left: 16px;
    margin: 24px 0;
    font-size: 1.1rem;
}

.industry-actions {
    margin-top: 24px;
}

.industry-actions .btn {
    margin-right: 12px;
    margin-bottom: 8px;
}

.industry-visual {
    padding: 20px;
}

.industry-visual img {
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* Security Section */
.security-section {
    background-color: #f8f9fa;
}

.security-badge {
    color: #4285f4;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.security-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 24px;
}

/* Integrations Section */
.integrations-section {
    padding: 80px 0;
}

.integration-item {
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.integration-item:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.integration-logo {
    height: 48px;
    margin-bottom: 12px;
}

.integration-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f8f9fa;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    height: 100%;
}

.testimonial-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 14px;
}

/* Footer */
.footer-section {
    background-color: #1a1a1a;
}

.footer-brand {
    text-decoration: none;
}

.footer-logo {
    height: 32px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    color: #666;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #4285f4;
}

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #4285f4;
}

.footer-text {
    color: #999;
    font-size: 14px;
    margin-bottom: 16px;
}

.newsletter-form .form-control {
    background-color: #333;
    border: 1px solid #555;
    color: white;
}

.newsletter-form .form-control:focus {
    background-color: #333;
    border-color: #4285f4;
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(66, 133, 244, 0.25);
}

.footer-divider {
    border-color: #333;
    margin: 40px 0 24px;
}

.footer-contact {
    font-size: 14px;
    color: #999;
}

.footer-copyright {
    color: #999;
    font-size: 14px;
}

.footer-legal {
    margin-top: 8px;
}

.footer-legal a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    margin-left: 16px;
}

.footer-legal a:hover {
    color: #4285f4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .industry-title {
        font-size: 1.5rem;
    }
    
    .company-logos {
        margin-top: 40px;
    }
    
    .company-logo {
        height: 32px;
        margin-bottom: 20px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .footer-legal a {
        margin-left: 0;
        margin-right: 16px;
        display: inline-block;
        margin-top: 4px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .industry-title {
        font-size: 1.25rem;
    }
}

/* Button Styles */
.btn-outline-primary {
    color: #4285f4;
    border-color: #4285f4;
}

.btn-outline-primary:hover {
    background-color: #4285f4;
    border-color: #4285f4;
    color: white;
}

/* Pricing Styles */
.pricing-hero {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.pricing-plans {
    background: white;
}

.pricing-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #4285f4;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(66, 133, 244, 0.15);
}

.pricing-card.featured {
    border-color: #4285f4;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4285f4;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.plan-price {
    margin-bottom: 16px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #4285f4;
}

.period {
    font-size: 1rem;
    color: #666;
    margin-left: 8px;
}

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

.pricing-features {
    margin-bottom: 32px;
}

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

.feature-list li {
    padding: 12px 0;
    font-size: 1rem;
    color: #333;
    border-bottom: 1px solid #f8f9fa;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: #4285f4;
    margin-right: 12px;
    width: 16px;
}

.pricing-footer .btn {
    padding: 12px 24px;
    font-weight: 600;
}

.pricing-faq {
    background-color: #f8f9fa;
}

.accordion-button {
    font-weight: 600;
    color: #333;
}

.accordion-button:not(.collapsed) {
    background-color: #e3f2fd;
    color: #4285f4;
}

.pricing-cta {
    background: linear-gradient(135deg, #4285f4 0%, #3367d6 100%);
    color: white;
}

.pricing-cta h2 {
    color: white;
}

.pricing-cta .lead {
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons .btn {
    margin: 8px;
}

/* Animation Effects */
.hero-section {
    animation: fadeInUp 0.8s ease-out;
}

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

.industry-visual img {
    transition: transform 0.3s ease;
}

.industry-visual img:hover {
    transform: scale(1.02);
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.contact-benefits {
    margin-top: 32px;
}

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

.benefit-item i {
    margin-right: 12px;
    font-size: 1.2rem;
}

.contact-form-container {
    display: flex;
    justify-content: center;
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: center;
}

.contact-info-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact-icon i {
    font-size: 24px;
    color: #4285f4;
}

.contact-detail {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-description {
    color: #666;
    font-size: 14px;
}

/* Features Page Styles */
.features-hero {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon i {
    font-size: 24px;
    color: #4285f4;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.feature-description {
    color: #666;
    margin-bottom: 16px;
}

.feature-benefits {
    list-style: none;
    padding: 0;
}

.feature-benefits li {
    padding: 4px 0;
    font-size: 14px;
    color: #333;
}

.advanced-feature-content {
    padding: 20px 0;
}

.advanced-feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.advanced-feature-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 24px;
}

.advanced-feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.advanced-feature-list li {
    padding: 8px 0;
    font-size: 1rem;
    color: #333;
}

.advanced-feature-list i {
    color: #4285f4;
    margin-right: 12px;
}

.advanced-feature-visual {
    padding: 20px;
}

.integration-category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-align: center;
}

/* Product Page Styles */
.product-hero {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.process-step {
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: #4285f4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 16px;
}

.step-icon i {
    font-size: 32px;
    color: #4285f4;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.step-description {
    color: #666;
    font-size: 14px;
}

.api-feature-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    height: 100%;
}

.api-feature-icon {
    width: 64px;
    height: 64px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.api-feature-icon i {
    font-size: 24px;
    color: #4285f4;
}

.api-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.api-feature-description {
    color: #666;
    margin-bottom: 16px;
}

.api-feature-list {
    list-style: none;
    padding: 0;
}

.api-feature-list li {
    padding: 4px 0;
    font-size: 14px;
    color: #333;
}

.integration-category-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    height: 100%;
}

.integration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.resource-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
}

.resource-icon {
    width: 64px;
    height: 64px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.resource-icon i {
    font-size: 24px;
    color: #4285f4;
}

.resource-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.resource-description {
    color: #666;
    margin-bottom: 24px;
}

/* Legal Pages Styles */
.legal-content {
    background: white;
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.legal-updated {
    color: #666;
    font-size: 1rem;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    margin-top: 24px;
}

.legal-section p {
    color: #333;
    margin-bottom: 16px;
    line-height: 1.6;
}

.legal-section ul {
    margin-bottom: 16px;
}

.legal-section li {
    color: #333;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 16px;
}

.contact-info p {
    margin-bottom: 8px;
}
