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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #6b46c1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6b46c1;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #6b46c1;
    transition: transform 0.3s ease;
}

.mobile-menu-btn.active {
    transform: rotate(90deg);
}

.nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.1);
    border-top: 1px solid rgba(107, 70, 193, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    justify-items: center;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-content {
    color: white;
    text-align: left;
    max-width: 500px;
    animation: fadeInUp 1s 0.1s both;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: left;
    animation: fadeInUp 1s 0.2s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 1s 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    animation: fadeInUp 1s 0.4s both;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: white;
    color: #6b46c1;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #6b46c1;
    transform: translateY(-2px);
}

.btn-tertiary {
    background: transparent;
    color: #fff;
    border: 2px dashed #fff;
    opacity: 0.85;
}

.btn-tertiary:hover {
    background: rgba(255,255,255,0.13);
    color: #fff;
    border-style: solid;
    opacity: 1;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
}

.hero-svg-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    filter: blur(0.5px) saturate(1.1);
    opacity: 0.95;
    animation: floatBg 6s ease-in-out infinite alternate;
}

@keyframes floatBg {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.04) translateY(-10px); }
}

.score-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: pulse 2s infinite;
}

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

.score-number {
    font-size: 4rem;
    font-weight: 700;
    color: white;
}

.score-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #6b46c1;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* IRScore Section */
.irscore-section {
    background: #f8f9fa;
}

/* IRScore Hero Section */
.irscore-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.1);
}

.irscore-intro h3 {
    font-size: 2.2rem;
    color: #6b46c1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.irscore-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.irscore-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #333;
}

.benefit-item i {
    color: #10b981;
    font-size: 1.2rem;
}

.irscore-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.score-preview {
    text-align: center;
}

.score-circle-preview {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.3);
    animation: pulse 2s infinite;
}

.score-number-preview {
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.score-label-preview {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

.score-status {
    font-size: 1.1rem;
    color: #f59e0b;
    font-weight: 600;
}

/* Features Grid */
.irscore-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

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

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    color: #6b46c1;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.3rem;
}

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



/* Track Progress Section */
.track-section {
    background: white;
}

/* Progress Overview */
.progress-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.1);
}

.progress-intro h3 {
    font-size: 2.2rem;
    color: #6b46c1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.progress-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.progress-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.progress-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #333;
}

.progress-benefit i {
    color: #6b46c1;
    font-size: 1.2rem;
    width: 20px;
}

.progress-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-chart-enhanced {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.15);
    width: 100%;
    max-width: 500px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.chart-header h4 {
    color: #6b46c1;
    font-weight: 600;
    font-size: 1.3rem;
    margin: 0;
}

.chart-legend {
    display: flex;
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.chart-container-enhanced {
    height: 250px;
    position: relative;
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
}

.chart-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
}

.grid-line {
    height: 1px;
    background: rgba(107, 70, 193, 0.1);
    width: 100%;
}

.chart-line-enhanced {
    position: relative;
    height: 100%;
    padding: 1rem;
}

.data-point-enhanced {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #6b46c1;
    border-radius: 50%;
    transform: translate(-50%, 50%);
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(107, 70, 193, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.data-point-enhanced:hover {
    transform: translate(-50%, 50%) scale(1.2);
}

.data-point-enhanced::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    background: rgba(107, 70, 193, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

.point-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.data-point-enhanced:hover .point-tooltip {
    opacity: 1;
}

.target-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #10b981;
    border-style: dashed;
    border-width: 2px 0;
    border-color: #10b981;
}

.chart-labels-enhanced {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9rem;
    padding: 0 1rem;
}

/* Features Grid */
.track-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Recommendations Preview */
.recommendations-preview {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.1);
}

.recommendations-header {
    text-align: center;
    margin-bottom: 3rem;
}

.recommendations-header h3 {
    font-size: 2rem;
    color: #6b46c1;
    margin-bottom: 1rem;
    font-weight: 700;
}

.recommendations-header p {
    color: #666;
    font-size: 1.1rem;
}

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

.recommendation-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #6b46c1;
}

.recommendation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.2);
}

.rec-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.rec-icon i {
    font-size: 1.5rem;
    color: white;
}

.recommendation-card h4 {
    color: #6b46c1;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.recommendation-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.rec-impact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f0f9ff;
    border-radius: 8px;
    border-left: 3px solid #10b981;
}

.impact-label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.impact-value {
    font-weight: 700;
    font-size: 0.9rem;
}

.impact-value.positive {
    color: #10b981;
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.faq-category h3 {
    color: #6b46c1;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(107, 70, 193, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h4 {
    color: #333;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: #6b46c1;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #6b46c1;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #cbd5e0;
    line-height: 1.6;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: #6b46c1;
    width: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6b46c1;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 1rem;
    text-align: center;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .logo-image {
        height: 48px;
        max-width: 220px;
    }
    
    .hero {
        min-height: 90vh;
        padding: 8rem 0 2rem 0; /* Increased top padding for better spacing from header */
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
        order: 1;
    }
    
    .hero-title {
        font-size: 2.8rem;
        text-align: center;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .hero-visual {
        max-width: 280px;
        order: 2;
        margin: 0 auto;
    }
    
    .score-circle {
        width: 220px;
        height: 220px;
    }
    
    .score-number {
        font-size: 2.8rem;
    }
    
    .score-label {
        font-size: 0.9rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-header {
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .irscore-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .irscore-intro h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .irscore-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .irscore-benefits {
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .benefit-item {
        font-size: 0.95rem;
    }
    
    .score-circle-preview {
        width: 140px;
        height: 140px;
    }
    
    .score-number-preview {
        font-size: 2.2rem;
    }
    
    .score-label-preview {
        font-size: 0.8rem;
    }
    
    .score-status {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
    
    .irscore-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .metric-card {
        padding: 2rem 1.5rem;
    }
    
    .metric-number {
        font-size: 3rem;
    }
    
    .metric-label {
        font-size: 1rem;
    }
    
    .progress-overview {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .progress-intro h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .progress-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .progress-benefits {
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .progress-benefit {
        font-size: 0.95rem;
    }
    
    .progress-chart-enhanced {
        padding: 1.5rem;
    }
    
    .chart-container-enhanced {
        height: 180px;
    }
    
    .chart-header h4 {
        font-size: 1.2rem;
    }
    
    .chart-labels-enhanced {
        font-size: 0.8rem;
    }
    
    .track-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .recommendations-preview {
        padding: 2rem;
    }
    
    .recommendations-header h3 {
        font-size: 1.6rem;
    }
    
    .recommendations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .member-photo {
        width: 120px;
        height: 120px;
    }
    
    .member-info h3 {
        font-size: 1.3rem;
    }
    
    .faq-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .faq-category h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-question h4 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p {
        font-size: 0.95rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-links {
        gap: 0.75rem;
    }
    
    .footer-links a {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 40px;
        max-width: 180px;
    }
    
    .hero {
        min-height: 85vh;
        padding: 5rem 0 1.5rem 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-visual {
        max-width: 240px;
    }
    
    .score-circle {
        width: 200px;
        height: 200px;
    }
    
    .score-number {
        font-size: 2.5rem;
    }
    
    .score-label {
        font-size: 0.85rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .irscore-intro h3 {
        font-size: 1.6rem;
    }
    
    .irscore-description {
        font-size: 0.95rem;
    }
    
    .benefit-item {
        font-size: 0.9rem;
    }
    
    .score-circle-preview {
        width: 120px;
        height: 120px;
    }
    
    .score-number-preview {
        font-size: 1.8rem;
    }
    
    .score-label-preview {
        font-size: 0.75rem;
    }
    
    .score-status {
        font-size: 0.85rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .metric-card {
        padding: 1.5rem 1rem;
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
    
    .metric-label {
        font-size: 0.9rem;
    }
    
    .progress-intro h3 {
        font-size: 1.6rem;
    }
    
    .progress-description {
        font-size: 0.95rem;
    }
    
    .progress-benefit {
        font-size: 0.9rem;
    }
    
    .chart-container-enhanced {
        height: 160px;
    }
    
    .chart-header h4 {
        font-size: 1.1rem;
    }
    
    .chart-labels-enhanced {
        font-size: 0.75rem;
    }
    
    .team-member {
        padding: 1.25rem;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
    }
    
    .member-info h3 {
        font-size: 1.1rem;
    }
    
    .member-title {
        font-size: 0.95rem;
    }
    
    .member-role {
        font-size: 0.85rem;
    }
    
    .member-location {
        font-size: 0.8rem;
    }
    
    .faq-category h3 {
        font-size: 1.3rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    .contact-info p {
        font-size: 0.85rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.feature-card,
.faq-item,
.progress-chart,
.data-input-mockup {
    animation: fadeInUp 0.6s ease forwards;
}

/* Hover Effects */
.feature-card:hover .feature-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #6b46c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #553c9a;
} 

/* Industry Leading Metrics Section */
.metrics-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.metrics-section .section-header h2 {
    color: white;
}

.metrics-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.metric-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-weight: 500;
}

/* Team Section */
.team-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.team-section .section-header h2 {
    color: #6b46c1;
    margin-bottom: 1rem;
}

.team-section .section-header p {
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

.team-member {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(107, 70, 193, 0.1);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.2);
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #6b46c1;
    background: #f8f9fa;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h3 {
    color: #6b46c1;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-title {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.member-role {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.member-location {
    color: #6c757d;
    font-size: 0.9rem;
    font-style: italic;
}

.team-member-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.team-member-link:hover {
    transform: translateY(-5px);
}

.team-member-link:hover .team-member {
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.2);
} 

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(44, 41, 72, 0.5);
    z-index: 2000;
}

.modal-content {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(107, 70, 193, 0.15);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 400px;
    width: 90vw;
    z-index: 2001;
    position: relative;
    animation: fadeInUp 0.4s;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #6b46c1;
    cursor: pointer;
    font-weight: 700;
    transition: color 0.2s;
}
.close-modal:hover {
    color: #764ba2;
}

.modal-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #6b46c1;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 0.01em;
}

.job-form label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 700;
    color: #4b2991;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}

.job-form input,
.job-form textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    margin-bottom: 1.3rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1.05rem;
    font-family: inherit;
    background: #f8f9fa;
    transition: border 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(107, 70, 193, 0.06);
}
.job-form input:focus,
.job-form textarea:focus {
    border: 2px solid #6b46c1;
    outline: none;
    background: #fff;
    box-shadow: 0 4px 16px rgba(107, 70, 193, 0.10);
}
.job-form textarea {
    min-height: 100px;
    resize: vertical;
}
.job-form button[type="submit"] {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    padding: 1rem 0;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

@media (max-width: 480px) {
    .modal-content {
        padding: 1.2rem 0.5rem 1.5rem 0.5rem;
        max-width: 95vw;
    }
    .close-modal {
        top: 0.5rem;
        right: 1rem;
        font-size: 1.5rem;
    }
    .modal-content h2 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    .job-form label {
        font-size: 0.98rem;
    }
    .job-form input,
    .job-form textarea {
        font-size: 0.98rem;
        padding: 0.7rem 0.8rem;
    }
    .job-form button[type="submit"] {
        font-size: 1rem;
        padding: 0.8rem 0;
    }
} 