/* Home Page Specific Styles */

/* Hero */
.hero {
    position: relative;
    padding-top: var(--space-24);
    padding-bottom: var(--space-20);
    background: linear-gradient(135deg, var(--color-gray-50) 0%, var(--color-white) 100%);
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.25rem, calc(2rem + 2vw), 3.25rem);
    font-weight: 700;
    color: var(--color-gray-900);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-6);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--color-gray-600);
    margin-bottom: var(--space-8);
    max-width: 600px;
}

.hero-video {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-top: var(--space-12);
}

/* Credibility Bar */
.credibility-bar {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-gray-100);
    padding: var(--space-8) 0;
}

.credibility-label {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: var(--space-4);
}

.logo-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-12);
    align-items: center;
    flex-wrap: wrap;
    /* Opacity removed to show full brand colors */
}

.logo-text {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--color-gray-400);
}

.logo-text.text-deel {
    color: #00ACEC;
}

.logo-text.text-aon {
    color: #E61B2E;
}

.logo-text.text-xerox {
    color: #DA291C;
}

.logo-text.text-safeguard {
    color: #005696;
}

/* Competencies Section */
.competency-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.competency-header h2 {
    font-size: var(--font-size-4xl);
}

.competency-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-gray-600);
}

.competency-icon {
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.competency-title {
    font-size: var(--font-size-xl);
}

.competency-desc {
    color: var(--color-gray-600);
}

.competency-link {
    margin-top: var(--space-4);
    font-weight: 500;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.competency-link i {
    width: 16px;
}

/* Featured Case Study */
.featured-case-study {
    background-color: var(--color-gray-900);
    color: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.case-study-content {
    padding: var(--space-12);
}

.case-study-label {
    color: var(--color-primary-light);
    font-weight: 600;
    margin-bottom: var(--space-2);
    display: block;
}

.case-study-title {
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.case-study-metric {
    font-size: var(--font-size-6xl);
    font-weight: 700;
    color: var(--color-primary-light);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.case-study-metric-desc {
    margin-bottom: var(--space-8);
    color: rgba(255, 255, 255, 0.8);
}

.case-study-image {
    min-height: 400px;
    background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-icon {
    width: 120px;
    height: 120px;
    color: rgba(255, 255, 255, 0.5);
}

/* Insights */
.section-header-link {
    color: var(--color-primary);
    font-weight: 500;
}

.insight-card {
    padding: 0;
    position: relative;
    height: 400px;
    isolation: isolate;
    border: none;
    overflow: hidden;
}

.insight-image {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: var(--radius-lg);
}

.insight-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.insight-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-8);
    z-index: 2;
}

.insight-tag {
    font-size: var(--font-size-xs);
    color: var(--color-primary-light);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-3);
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.insight-title {
    font-size: clamp(1.25rem, calc(1.1rem + 0.5vw), 1.5rem);
    margin-bottom: var(--space-4);
    color: var(--color-white);
    font-weight: 700;
    line-height: 1.3;
}

.insight-btn {
    width: auto;
    border: 0;
    padding-left: 0;
    justify-content: start;
    color: var(--color-white);
    opacity: 0.9;
}

.insight-btn:hover {
    color: var(--color-primary-light);
    opacity: 1;
    background: transparent;
}

.insight-title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-2);
}

.insight-btn {
    width: 100%;
    border: 0;
    padding-left: 0;
    justify-content: start;
}

/* Recognition */
.recognition-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.recognition-title {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.recognition-org {
    color: var(--color-gray-600);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
}

.stat-label {
    color: var(--color-gray-500);
}

/* CTA Section */
.cta-title {
    color: var(--color-white);
    margin-bottom: var(--space-6);
}

.cta-desc {
    color: var(--color-gray-300);
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: var(--space-8);
}