.sm-text{
    font-size: 1rem;
}

/* CTA Buttons and Partnership Section */
.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    background: #0A2034;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 32, 52, 0.3);
    margin: 10px 10px 10px 0;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 32, 52, 0.5);
    background: #3E4C5E;
    color: #fff;
    text-decoration: none;
}

.cta-secondary {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0A2034;
    background: transparent;
    border: 2px solid #0A2034;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 10px 10px 10px 0;
}

.cta-secondary:hover {
    background: #0A2034;
    color: #fff;
    text-decoration: none;
}

.availability-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #0A2034;
    color: #fff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.value-prop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    padding: 30px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    background: #fff;
    border-color: #0A2034;
    box-shadow: 0 8px 20px rgba(10, 32, 52, 0.1);
}

.value-card h4 {
    color: #0A2034;
    margin-bottom: 15px;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: none;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.value-card h4 i {
    font-size: 1.4rem;
    color: #0A2034;
    margin-top: 2px;
    flex-shrink: 0;
}

.value-card p {
    margin-bottom: 0;
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 400;
}

.partnership-models {
    margin-top: 30px;
}

.model-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #e9ecef;
    color: #495057;
    border-radius: 20px;
    margin: 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Social Proof & Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0 50px 0;
}

.stat-box {
    text-align: center;
    padding: 35px 25px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: #0A2034;
    box-shadow: 0 8px 25px rgba(10, 32, 52, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0A2034;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 0.95rem;
    color: #6c757d;
    font-weight: 600;
    line-height: 1.3;
}

.company-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.company-badge {
    padding: 10px 20px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-weight: 600;
    color: #495057;
    transition: all 0.3s ease;
}

.company-badge:hover {
    border-color: #0A2034;
    color: #0A2034;
}

/* Modern Contact Form */
.form-control.form-face {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 1rem;
    color: #0A2034;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control.form-face:focus {
    background: #fff;
    border-color: #0A2034;
    box-shadow: 0 0 0 0.2rem rgba(10, 32, 52, 0.1);
    outline: none;
}

.form-control.form-face::placeholder {
    color: #84828F;
}

textarea.form-control.form-face {
    min-height: 150px;
    resize: vertical;
}

.btn-formspree-form {
    background: #0A2034;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 32, 52, 0.3);
    cursor: pointer;
    width: 100%;
}

.btn-formspree-form:hover {
    background: #3E4C5E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 32, 52, 0.5);
}

.form-group {
    margin-bottom: 20px;
}

/* Floating Action Buttons */
.floating-cta-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: #0A2034;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(10, 32, 52, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-cta-btn:hover {
    background: #3E4C5E;
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(10, 32, 52, 0.6);
}

.floating-cta-btn i {
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-cta-container {
        bottom: 20px;
        right: 20px;
    }

    .floating-cta-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .floating-cta-btn span {
        display: none;
    }

    .floating-cta-btn i {
        font-size: 1.5rem;
        margin: 0;
    }
}