/* Business Lab - Professional Consulting Website Styles */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

video {
    will-change: transform;
}

.service-card, .btn, .nav-link {
    will-change: transform;
}

/* Prevent layout shift */
.hero-video {
    aspect-ratio: 16/9;
    min-height: 100vh;
}

.pattern-element {
    will-change: transform;
}

/* Smooth interactions */
@media (prefers-reduced-motion: no-preference) {
    * {
        transition-duration: 0.15s;
        transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.8;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
    letter-spacing: 0.01em;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(212, 175, 55, 0.02) 1px, transparent 0);
    background-size: 20px 20px;
}

/* Typography - Luxury Spacing */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 2rem;
    color: #4a5568;
    line-height: 1.9;
    letter-spacing: 0.01em;
    max-width: 65ch;
}

/* Container - Luxury White Space */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

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

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    transform: translateY(-2px);
}

.nav-cta {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #0f172a !important;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.nav-cta:hover {
    background: linear-gradient(135deg, #f4d03f, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.nav-cta::after {
    display: none;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Luxury Video Background */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.8)), 
                url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?ixlib=rb-4.0.3&auto=format&fit=crop&w=2126&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.6;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 64, 175, 0.8) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 3rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.03em;
    font-family: 'Playfair Display', serif;
}

.highlight {
    color: #d4af37;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #e2e8f0;
    margin-bottom: 4rem;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 600px;
}

.hero-subtitle-large {
    font-size: 2rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Inter', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: #d1d5db;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.hero-pattern {
    width: 400px;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pattern-element {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
}

.pattern-element:nth-child(1) {
    animation: float 6s ease-in-out infinite;
    transform: rotate(0deg);
}

.pattern-element:nth-child(2) {
    animation: float 8s ease-in-out infinite reverse;
    transform: rotate(120deg) scale(0.8);
    opacity: 0.7;
}

.pattern-element:nth-child(3) {
    animation: float 10s ease-in-out infinite;
    transform: rotate(240deg) scale(0.6);
    opacity: 0.5;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Buttons - Luxury Interactions */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #0f172a;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f4d03f, #d4af37);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #0f172a;
    border-color: transparent;
}

.btn-full {
    width: 100%;
}

/* Section Styles - Editorial Spacing */
section {
    padding: 8rem 0;
}

.section-spacer {
    padding: 10rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 3.2rem;
    color: #0f172a;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.4rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* Services Section */
.services {
    background: 
        linear-gradient(135deg, rgba(248, 250, 252, 0.97) 0%, rgba(241, 245, 249, 0.95) 100%),
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    background-size: cover;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(212, 175, 55, 0.02) 50%, transparent 50%),
        linear-gradient(0deg, rgba(212, 175, 55, 0.02) 50%, transparent 50%);
    background-size: 60px 60px;
    opacity: 0.5;
    pointer-events: none;
}

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

.service-card {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9)),
        radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.02), transparent 50%);
    padding: 4rem 3rem;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-card:hover .service-icon {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.service-card:hover .service-title {
    color: #d4af37;
    transform: translateX(5px);
}

.service-card.featured {
    border: 2px solid #2563eb;
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover .service-icon::before {
    left: 100%;
}

.service-icon i {
    font-size: 2rem;
    color: #0f172a;
}

.service-title {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.service-description {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
    text-align: center;
    padding: 1rem;
    background: #f1f5f9;
    border-radius: 8px;
}

/* Expertise Section */
.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.expertise-points {
    margin-top: 2rem;
}

.expertise-point {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.point-icon {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-icon i {
    font-size: 1.5rem;
    color: #2563eb;
}

.point-content h4 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.point-content p {
    color: #4a5568;
    margin: 0;
}

.expertise-visual {
    display: flex;
    justify-content: center;
}

.expertise-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.metric {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 16px;
    color: white;
}

.metric-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Results Section */
.results {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), 
                url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.results .section-title {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.results .section-subtitle {
    color: #e2e8f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.result-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.result-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.result-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
}

.result-trend {
    font-size: 2rem;
    color: #10b981;
}

.result-title {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.result-description {
    color: #4a5568;
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Section */
.contact {
    background: linear-gradient(rgba(248, 250, 252, 0.95), rgba(248, 250, 252, 0.95)), 
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.contact-method i {
    width: 20px;
    color: #2563eb;
}

/* Forms */
.form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Footer */
.footer {
    background: #1a1a1a;
    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 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .story-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        width: 250px;
        height: 250px;
    }
    
    .hero-image i {
        font-size: 4rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes luxuryGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
    }
}

.luxury-glow {
    animation: luxuryGlow 4s ease-in-out infinite;
    transform-origin: center;
}

/* Loading optimization */
.service-card {
    content-visibility: auto;
    contain-intrinsic-size: 400px;
}

/* Intersection Observer ready */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Text rendering optimization */
h1, h2, h3, h4, h5, h6 {
    text-rendering: optimizeLegibility;
}

p {
    text-rendering: optimizeSpeed;
}

/* GPU acceleration for animations */
.hero-pattern,
.service-icon,
.btn {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-content > *:nth-child(1) { animation: fadeInUp 1s ease-out 0.2s both; }
.hero-content > *:nth-child(2) { animation: slideInLeft 1s ease-out 0.4s both; }
.hero-content > *:nth-child(3) { animation: fadeInUp 1s ease-out 0.6s both; }
.hero-content > *:nth-child(4) { animation: fadeInUp 1s ease-out 0.8s both; }
.hero-content > *:nth-child(5) { animation: fadeInUp 1s ease-out 1s both; }

/* Enhanced scroll behavior */
body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Safari-specific optimizations */
@supports (-webkit-touch-callout: none) {
    .hero-video {
        object-position: center center;
        object-fit: cover;
    }
}

/* Approach Section (same styling as Results) */
.approach {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), 
                url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.approach .section-title {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.approach .section-subtitle {
    color: #e2e8f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Team Section Styling */
.team {
    background: #f8fafc;
}

.team .expertise-point {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Story Section - Magazine Style */
.story-section {
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.97) 0%, rgba(30, 41, 59, 0.95) 100%),
        radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    color: white;
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, rgba(212, 175, 55, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(212, 175, 55, 0.02) 87.5%);
    background-size: 120px 120px;
    opacity: 0.3;
}

.story-content {
    position: relative;
    z-index: 2;
}

.story-header {
    text-align: center;
    margin-bottom: 6rem;
}

.story-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.story-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: white;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-family: 'Cormorant Garamond', serif;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
}

.story-text {
    max-width: none;
}

.story-paragraph {
    margin-bottom: 4rem;
}

.story-lead {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.3px;
}

.story-paragraph p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.story-quote {
    position: relative;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 20px;
    border-left: 4px solid #d4af37;
}

.story-quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: #f1f5f9;
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.story-quote cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #d4af37;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1px;
}

.story-visual {
    position: relative;
}

.story-image-stack {
    position: relative;
    height: 500px;
}

.story-image {
    position: absolute;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.story-image.primary {
    width: 300px;
    height: 200px;
    top: 0;
    left: 0;
    z-index: 2;
}

.story-image.secondary {
    width: 280px;
    height: 180px;
    bottom: 50px;
    right: 20px;
    z-index: 1;
    opacity: 0.8;
}

.story-image:hover {
    transform: translateY(-10px) scale(1.05);
}

.image-placeholder {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: 1px;
}

/* Process Section Styles */
.process {
    padding: 5rem 0;
    background: #f8fafc;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 3rem 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(to right, #d4af37, #d4af37 25%, #e5e7eb 25%, #e5e7eb);
    z-index: 1;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #d4af37;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    position: relative;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.process-step p {
    color: #666;
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 5rem 0;
}

/* Responsive Process Steps */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        width: 100%;
    }
}