/* ========================================
   PROFESSIONAL ENHANCEMENTS
   Additional polish for enterprise appearance
   ======================================== */

/* Refined Section Headers */
.section-header {
    padding-bottom: var(--space-3xl);
}

.section-badge {
    font-weight: var(--font-weight-semibold);
    border: 1.5px solid var(--color-teal);
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(122, 184, 46, 0.05) 0%, rgba(45, 156, 219, 0.05) 100%);
}

.section-header h2 {
    margin-top: var(--space-md);
    font-weight: var(--font-weight-extrabold);
}

/* Enhanced Card Styles */
.tech-card,
.sector-card,
.result-card,
.testimonial-card {
    transition: all var(--transition-normal);
    border: 1px solid var(--color-gray-200);
}

.tech-card:hover,
.sector-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-teal);
}

/* Professional Button Enhancements */
.av-tech-btn {
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.5px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Hero Section Professional Touch */
.hero-subtitle {
    max-width: 560px;
    font-size: 1.125rem;
    line-height: 1.8;
}

.hero-badge {
    font-weight: var(--font-weight-semibold);
    padding: 0.6rem 1.3rem;
    box-shadow: var(--shadow-sm);
}

/* Professional Icons */
.icon-wrapper {
    transition: transform var(--transition-normal);
}

.tech-card:hover .icon-wrapper {
    transform: scale(1.1);
}

/* Refined Statistics */
.stat-number {
    font-weight: var(--font-weight-extrabold);
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Professional Footer */
.footer {
    border-top: 1px solid var(--color-gray-200);
}

/* Enhanced Form Inputs */
input:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 3px rgba(45, 156, 219, 0.1);
}

/* Professional Contact Cards */
.contact-item {
    padding: var(--space-lg);
    transition: var(--transition-normal);
}

.contact-item:hover {
    background: var(--color-gray-50);
    border-radius: var(--radius-md);
}

/* Testimonial Enhancements */
.testimonial-card {
    border-left: 4px solid var(--color-teal);
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    font-style: normal;
}

/* Professional Spacing & White space */
.lead {
    line-height: 1.8;
}

/* Enhanced Process Timeline */
.step-number {
    font-weight: var(--font-weight-extrabold);
    box-shadow: var(--shadow-md);
}

/* Result Cards Professional Look */
.result-number {
    font-weight: var(--font-weight-extrabold);
    letter-spacing: -0.02em;
}

/* Sector Cards Enhancement */
.sector-card h3 {
    font-weight: var(--font-weight-semibold);
}

.sector-tags .tag {
    font-weight: var(--font-weight-medium);
    padding: 0.4rem 0.9rem;
}

/* CTA Section Polish */
.cta-section {
    /* Removed light background override to fix text visibility */
    /* The gradient background from styles.css makes the white text readable */
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Professional Vision Card */
.vision-card h3 {
    font-weight: var(--font-weight-semibold);
    margin-top: var(--space-md);
}

.vision-address {
    font-size: 0.95rem;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-gray-200);
    margin-top: var(--space-sm);
}