.elementor-2522 .elementor-element.elementor-element-7f1f555{--display:flex;}/* Start custom CSS for html, class: .elementor-element-e10f1da */* {
    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;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background-color: #f88968;
    color: #fff !important; /* White text, high priority to override conflicts */
}

.btn-primary:hover {
    background-color: #e07655;
    color: #fff !important; /* Ensure white text on hover */
}

.btn-outline {
    background-color: transparent;
    color: #f88968;
    border: 2px solid #f88968;
}

.btn-outline:hover {
    background-color: #f88968;
    color: #fff;
}

.btn-yellow {
    background-color: #fbbf24;
    color: #000;
    padding: 16px 32px;
}

.btn-yellow:hover {
    background-color: #f59e0b;
    color: #000;
}

.btn-white {
    background-color: #fff;
    color: #f88968;
    border: 2px solid #fff;
    padding: 16px 32px;
}

.btn-white:hover {
    background-color: #f3f4f6;
    color: #e07655;
}

.btn-lg {
    font-size: 18px;
    padding: 16px 32px;
}

.btn-full {
    width: 100%;
}

/* Text Colors */
.text-primary, .text-orange {
    color: #f88968;
}

.text-green {
    color: #059669;
}

.text-purple {
    color: #7c3aed;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(248, 137, 104, 0.05) 0%, #fff 50%, rgba(16, 185, 129, 0.05) 100%);
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

/* Tools Section */
.tools-section {
    padding: 80px 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.tool-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
}

.tool-card:hover {
    box-shadow: 0 0 20px rgba(248, 137, 104, 0.5); /* Glow effect only, no transform */
}

.tool-header {
    margin-bottom: 24px;
}

.tool-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 24px;
}

.tool-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.tool-header p {
    color: #6b7280;
    font-size: 1rem;
}

.tool-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.features-section h4,
.benefits-section h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    margin-bottom: 12px;
}

.features-section ul,
.benefits-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.features-section li,
.benefits-section li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.875rem;
}

.features-section i {
    color: #059669; /* Green checkmarks */
    margin-top: 2px;
    flex-shrink: 0;
}

.benefits-section i {
    color: #fbbf24; /* Yellow stars */
    margin-top: 2px;
    flex-shrink: 0;
}

.coming-soon {
    text-align: center;
    margin-top: 48px;
}

.coming-soon p {
    font-size: 1.5rem;
    color: #6b7280;
    font-weight: 600;
}

/* Managed Services Section */
.managed-services-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: #f88968;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-card p {
    color: #6b7280;
}

.section-cta {
    text-align: center;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(248, 137, 104, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.benefit-icon i {
    font-size: 2rem;
    color: #f88968;
}

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.benefit-item p {
    color: #6b7280;
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    transition: box-shadow 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-item p {
    color: #6b7280;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    background-color: #f88968;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.step-item p {
    color: #6b7280;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: #f88968;
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .tools-grid {
        grid-template-columns: 1fr;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-yellow,
    .btn-white {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .tool-card,
    .service-card {
        padding: 24px;
    }
}

/* Fallback for button text if white doesn't render */
.btn-primary:not(:hover) {
    color: #fff; /* Primary color */
}

.btn-primary:hover {
    color: #fff; /* Ensure white on hover */
}

@media (forced-colors: active) {
    .btn-primary {
        color: #000; /* Fallback to black for high-contrast modes */
    }
}/* End custom CSS */