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

:root {
    --red: #ff3131;
    --black: #0d0d0d;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    scroll-behavior: smooth;
    font-feature-settings: 'liga' 1, 'kern' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    position: relative;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-logo a:hover {
    opacity: 0.8;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--red);
}

.nav-link.cta-btn {
    background: var(--red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link.cta-btn:hover {
    background: #e62b2b;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    z-index: 1001;
    position: relative;
}

.hamburger:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--gray-800);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 64px 1rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 49, 49, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    min-height: 600px;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--red) 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.hero-image img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeInUp 1s ease 2s both, fadeOutAfterDelay 6s ease 4s both;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 10;
    text-align: center;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-indicator:hover {
    opacity: 1 !important;
}

.scroll-arrow {
    color: var(--gray-400);
    font-size: 1.5rem;
    animation: subtleBounce 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.8);
    color: var(--gray-600);
    transform: scale(1.05);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 0.8;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes fadeInUpMobile {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 0.8;
        transform: translateX(-50%) translateY(0);
    }
}

/* Desktop positioning adjustment */
@media (min-width: 769px) {
    .scroll-indicator {
        left: calc(50% - 60px);
        animation: fadeInUp 1s ease 2s both;
    }
}

/* Mobile optimizations for scroll indicator */
@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 1.5rem !important;
        width: 45px !important;
        height: 45px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        animation: fadeInUpMobile 1s ease 2s both, fadeOutAfterDelay 6s ease 4s both !important;
        margin-left: 0 !important;
        right: auto !important;
    }
    
    .scroll-arrow {
        font-size: 1.2rem;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .scroll-indicator {
        bottom: 1rem !important;
        width: 40px !important;
        height: 40px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        animation: fadeInUpMobile 1s ease 2s both, fadeOutAfterDelay 6s ease 4s both !important;
        margin-left: 0 !important;
        right: auto !important;
    }
    
    .scroll-arrow {
        font-size: 1.1rem;
    }
}

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

@keyframes fadeOutAfterDelay {
    0% { opacity: 0.8; }
    80% { opacity: 0.8; }
    100% { opacity: 0; }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background: #e62b2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--red);
    border: 2px solid var(--red);
}

.btn-secondary:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--red), #ff4d4d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Vitals Section */
.vitals-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.vitals-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.vitals-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.vitals-text h3 {
    font-size: 1.5rem;
    color: var(--red);
    margin-bottom: 1.5rem;
}

.vitals-text p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.vitals-list {
    margin-bottom: 2rem;
}

.vital-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.vital-letter {
    width: 40px;
    height: 40px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}



/* Integration Section */
.integration-section {
    padding: 6rem 0;
    background: var(--white);
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.integration-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.integration-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

.integration-footer {
    text-align: center;
    margin-top: 3rem;
}

.integration-footer p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Premium Budget Estimator Section */
.premium-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 49, 49, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.premium-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--red), #ff4d4d);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.premium-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #ff1f1f, var(--red));
    color: var(--white);
    text-decoration: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.premium-section h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.premium-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    font-weight: 400;
}

.premium-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.premium-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.premium-feature:hover {
    transform: translateY(-4px);
    border-color: var(--red);
    box-shadow: var(--shadow-xl);
    background: rgba(255, 255, 255, 0.95);
}

.premium-feature i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--red), #ff4d4d);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.premium-feature h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.premium-feature p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.premium-cta {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid var(--gray-200);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-lg);
}

.premium-unlock {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.premium-unlock i {
    color: var(--red);
    font-size: 1.25rem;
}

.premium-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.benefit {
    font-size: 0.9rem;
    font-weight: 600;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Budget Access Modal */
.budget-access-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.budget-access-modal {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    margin: 1rem;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.4s ease;
    overflow: hidden;
}

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

.budget-access-content {
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.budget-access-icon {
    margin-bottom: 1.5rem;
}

.budget-access-icon i {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--red), #ff4d4d);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translate3d(0, 0, 0); }
    40%, 43% { transform: translate3d(0, -30px, 0); }
    70% { transform: translate3d(0, -15px, 0); }
    90% { transform: translate3d(0, -4px, 0); }
}

.budget-access-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.budget-access-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.budget-access-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Training Section */
.training-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, #f8fafc 100%);
    position: relative;
}

.training-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.training-text h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.training-text h3 {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    color: var(--red);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.training-text p {
    font-size: clamp(1rem, 3vw, 1.125rem);
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

.training-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.training-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    font-size: clamp(0.95rem, 2.5vw, 1rem);
    transition: all 0.3s ease;
}

.training-list li:hover {
    color: var(--gray-800);
    padding-left: 2.25rem;
}

.training-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: bold;
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.training-list li:hover::before {
    transform: scale(1.1);
}

.training-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: var(--white);
    padding: 0.5rem;
}

.training-image img {
    width: 100%;
    height: auto;
    min-height: 300px;
    max-height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 16px;
}

.training-image:hover img {
    transform: scale(1.02);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--red) 0%, #ff4d4d 100%);
    color: var(--white);
    text-align: center;
}

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

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--red);
}

.cta-section .btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-section .btn-secondary:hover {
    background: var(--white);
    color: var(--red);
}

/* Impact Statistics Section */
.impact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.impact-category {
    margin-bottom: 4rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.category-header i {
    width: 48px;
    height: 48px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.category-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-card.proactive {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, var(--white) 100%);
}

.stat-card.reactive {
    border-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2 0%, var(--white) 100%);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-100);
}

.stat-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: var(--gray-900);
}

.stat-header i {
    font-size: 1.5rem;
}

.proactive .stat-header i {
    color: #10b981;
}

.reactive .stat-header i {
    color: #ef4444;
}

.stat-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.proactive .stat-number {
    color: #10b981;
}

.reactive .stat-number {
    color: #ef4444;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-description {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.5;
    font-style: italic;
}

.impact-summary {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.impact-summary h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.impact-summary p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 80px 1rem 4rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0;
        min-height: auto;
        align-items: stretch;
    }
    
    .hero-text {
        order: 1;
        padding-bottom: 2rem;
    }
    
    .hero-image {
        order: 2;
        margin: 0;
    }
    
    .hero-image img {
        min-height: 300px;
        max-height: 400px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
        margin-bottom: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2.5rem;
        padding: 2rem 1rem;
        border-top: 1px solid var(--gray-200);
        flex-wrap: wrap;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 12px;
        box-shadow: var(--shadow-sm);
        backdrop-filter: blur(10px);
        position: relative;
        z-index: 10;
    }
    
    .hero-stat {
        min-width: 120px;
        text-align: center;
        padding: 0.5rem;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-stat-label {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    /* Premium section mobile */
    .premium-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .premium-feature {
        padding: 1.5rem;
    }
    
    .premium-cta {
        padding: 2rem 1.5rem;
    }
    
    .premium-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .budget-access-content {
        padding: 2rem 1.5rem;
    }
    
    .budget-access-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .category-header h3 {
        font-size: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .impact-summary {
        padding: 2rem 1rem;
    }
    
    .impact-summary h3 {
        font-size: 1.5rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fafafa 0%, var(--white) 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 49, 49, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-section .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-section .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.contact-section .section-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    margin-top: 4rem;
    align-items: start;
}

.contact-info {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red) 0%, #ff6b6b  100%);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 49, 49, 0.05) 50%, transparent 100%);
    transition: left 0.5s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(255, 49, 49, 0.02) 0%, transparent 100%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-item i {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--red) 0%, #ff6b6b 100%);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(255, 49, 49, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-item:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 24px rgba(255, 49, 49, 0.4);
}

.contact-item div {
    position: relative;
    z-index: 1;
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.contact-item p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--red) 0%, #ff6b6b 50%, var(--red) 100%);
    z-index: -1;
    border-radius: 26px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-form:hover::before {
    opacity: 0.1;
}

.form-group {
    margin-bottom: 1.75rem;
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.125rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(255, 49, 49, 0.1), 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
    line-height: 1.6;
}

.contact-form .btn {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--red) 0%, #ff4d4d 100%);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(255, 49, 49, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.contact-form .btn:hover::before {
    width: 300px;
    height: 300px;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 49, 49, 0.4);
}

.contact-form .btn:active {
    transform: translateY(0);
}

/* Form label enhancements */
.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

/* System Components List Styling */
.system-components ul {
    margin: 0.75rem 0 0 0;
    padding: 0;
    list-style: none;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.system-components li {
    margin: 0.25rem 0;
    line-height: 1.4;
}

/* Budget Guidelines Styling */
.budget-guidelines {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.guideline-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.guideline-card:hover {
    border-color: var(--gray-300);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.guideline-card h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
}

.guideline-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.info-section {
    background: linear-gradient(135deg, rgba(255, 49, 49, 0.02) 0%, rgba(255, 49, 49, 0.01) 100%);
    border: 1px solid rgba(255, 49, 49, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

/* Tier Select Dropdown Styling */
.tier-select {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    outline: none;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"><path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd" /></svg>');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px;
    padding-right: 2.5rem;
    min-width: 120px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.tier-select:hover {
    border-color: var(--gray-300);
    background-color: var(--gray-50);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.tier-select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(255, 49, 49, 0.1), 0 4px 12px rgba(0, 0, 0, 0.08);
    background-color: white;
    transform: translateY(-1px);
}

.tier-selector {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.tier-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
    margin: 0;
    min-width: 35px;
}

/* Checkbox Grid for Contact Form */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.875rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--gray-700);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 12px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.checkbox-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 49, 49, 0.05) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.checkbox-label:hover::before {
    left: 100%;
}

.checkbox-label:hover {
    color: var(--red);
    border-color: var(--red);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 49, 49, 0.15);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    accent-color: var(--red);
    border-radius: 4px;
    position: relative;
    z-index: 1;
}

.checkbox-label input[type="checkbox"]:checked {
    transform: scale(1.1);
}

.checkbox-label span {
    position: relative;
    z-index: 1;
}

/* Form Messages */
.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    border: 2px solid;
}

.form-message.success {
    background: #f0f9ff;
    color: #0369a1;
    border-color: #38bdf8;
}

.form-message.error {
    background: #fef2f2;
    color: #dc2626;
    border-color: #f87171;
}

/* Error state styling for form fields */
.field-error .form-select,
.field-error .form-input,
.field-error .radio-group,
.field-error.checkbox-group {
    border-color: #dc2626 !important;
    background-color: #fef2f2;
}

.field-error .form-label {
    color: #dc2626;
}

.field-error .radio-item input[type="radio"] {
    border-color: #dc2626;
}

.field-error .checkbox-item input[type="checkbox"] {
    border-color: #dc2626;
}

/* AVL Solutions Checkbox Styling */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-item {
    position: relative;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.checkbox-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 49, 49, 0.08) 50%, transparent 100%);
    transition: left 0.6s ease;
    z-index: 0;
}

.checkbox-item:hover {
    border-color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 49, 49, 0.15);
}

.checkbox-item:hover::before {
    left: 100%;
}

.checkbox-item label {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-800);
    font-size: 1rem;
    position: relative;
    z-index: 1;
    margin: 0;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    accent-color: var(--red);
    border-radius: 6px;
    transition: transform 0.2s ease;
}

.checkbox-item input[type="checkbox"]:checked {
    transform: scale(1.1);
}

.checkbox-item:has(input[type="checkbox"]:checked) {
    background: linear-gradient(135deg, rgba(255, 49, 49, 0.05) 0%, rgba(255, 49, 49, 0.02) 100%);
    border-color: var(--red);
    box-shadow: 0 4px 16px rgba(255, 49, 49, 0.2);
}

/* Results section styling */
.estimate-results {
    display: none;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.results-header {
    text-align: center;
    margin-bottom: 2rem;
}

.results-header h2 {
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.budget-range {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--red);
    margin: 1rem 0;
}

.results-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.result-label {
    font-weight: 500;
    color: var(--gray-700);
}

.result-value {
    font-weight: 600;
    color: var(--gray-900);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--gray-300);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: var(--gray-300);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--red);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-400);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo-image {
        height: 36px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 64px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        width: 100%;
        height: calc(100vh - 64px);
        text-align: center;
        transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 3rem 1rem;
        gap: 2rem;
        justify-content: flex-start;
        overflow-y: auto;
        border-right: 1px solid var(--gray-200);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.125rem;
        font-weight: 600;
        padding: 1rem;
        border-radius: 12px;
        transition: all 0.3s ease;
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .nav-link:hover {
        background: rgba(255, 49, 49, 0.08);
        transform: translateY(-1px);
    }

    .nav-link.cta-btn {
        background: linear-gradient(135deg, var(--red) 0%, #ff4d4d 100%);
        color: var(--white);
        box-shadow: 0 8px 16px rgba(255, 49, 49, 0.3);
        margin-top: 1rem;
    }

    .nav-link.cta-btn:hover {
        background: linear-gradient(135deg, #e62b2b 0%, #ff3131 100%);
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(255, 49, 49, 0.4);
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background: var(--red);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background: var(--red);
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    .training-section {
        padding: 4rem 0;
    }

    .training-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .training-image {
        order: 1;
        max-width: 100%;
        margin: 0 auto;
    }

    .training-text {
        order: 2;
        text-align: left;
        padding: 0 1rem;
    }

    .training-text h2 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 0.75rem;
    }

    .training-text h3 {
        font-size: 1.25rem;
        text-align: center;
        margin-bottom: 1.25rem;
    }

    .training-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .training-list {
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
    }

    .training-list li {
        padding-left: 1.5rem;
        margin-bottom: 0.875rem;
        font-size: 0.95rem;
    }

    .hero-content,
    .vitals-content,
    .contact-section {
        padding: 4rem 0;
    }

    .contact-section .section-header h2 {
        font-size: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 3rem;
    }

    .contact-info,
    .contact-form {
        padding: 2rem;
        border-radius: 20px;
    }

    .contact-item {
        padding: 1rem;
        margin-bottom: 2rem;
    }

    .contact-item i {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .checkbox-label {
        padding: 0.875rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .integration-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .vitals-text h2,
    .training-text h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }
}

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

[data-aos="fade-up"] {
    animation: fadeInUp 0.6s ease-out;
}
