.btn-primary {
    background: #1a4793;
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    width: 40%;
    float: left;
    font-size: 20px;
    transition: all 0.3s;
}

.btn-outline-dark {
    background: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    width: 30%;
    border: 2px solid black;
    float: left;
    font-size: 20px;
    transition: all 0.3s;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .btn-primary,
    .btn-outline-dark {
        width: 100%;
        margin-bottom: 20px;
        float: none; /* prevents odd layout issues on mobile */
    }
}

.btn-primary:hover {
    background: #1a4793;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 213, 99, 0.3);
}

.hero-section {
    padding: 10rem 0;
    min-height: 600px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-section h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-section .highlight {
    color: #1a4793;
}

.hero-section p {
    font-size: 2rem;
    color: #666;
    margin-bottom: 2rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.trust-badge img {
    height: 30px;
}

.hero-image {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

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

.section-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.trusted-section p {
    font-size: 2rem;
}

.trusted-section {
    padding: 4rem 0;
    background: white;
}

.logo-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.logo-item {
    height: 60px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.logo-item:hover {
    opacity: 1;
}

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

.text-alone h3 {
    font-size: 2.5em;
}

.text-alone p {
    font-size: 1.5em;
}

.text-alone ul li {
    font-size: 1.2em;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    height: 100%;
}

.tired p {
    font-size: 1.5em;
}

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

.feature-card h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    font-size: 1.7rem;
    line-height: 1.6;
}

.feature-card .fas {
    color: #1a4793;
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.integration-section {
    padding: 5rem 0;
    background: white;
}

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

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

.integration-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.integration-icon i {
    font-size: 2em;
}

.integration-item p {
    font-size: 1.2em;
}

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

.pricing-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

.price-subtitle {
    color: #666;
    margin-top: 0.5rem;
}

.testimonial-section {
    padding: 5rem 0;
    background: white;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    margin: 1rem;
}

.stars {
    color: #ffd700;
    margin-bottom: 1rem;
}

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

.accordion-button {
    font-weight: 600;
    background: white;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-green);
    color: white;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, #00b851 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.btn-light {
    background: white;
    color: var(--primary-green);
    padding: 1rem 3rem;
    border-radius: 25px;
    font-weight: 600;
    border: none;
}

footer {
    background: var(--dark-text);
    color: white;
    padding: 3rem 0;
}

.dashboard-preview {
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}
