/* Home Page Styles - Bold Authority */

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 120px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--color-bg-dark);
    /* Solid Black */
    overflow: hidden;
}

/* Subtle Geometric Pattern instead of Blur */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: radial-gradient(var(--color-text-secondary) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    position: relative;
    color: #fff;
    text-align: left;
    /* Exposure Ninja often left-aligns hero text */
}

.hero h1 {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    margin-bottom: 2rem;
    line-height: 1.05;
    color: #fff;
}

.hero h1 span {
    color: var(--color-brand-yellow);
    /* Yellow Highlight */
    background: none;
    -webkit-text-fill-color: initial;
}

.hero p {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin-bottom: 3rem;
    max-width: 700px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Clients Trust Section */
.clients-trust {
    padding: 3rem 0;
    background-color: var(--color-bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.trust-label {
    text-align: center;
    color: #e0e0e0;
    /* Light Gray for visibility on black */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    font-weight: 600;
}

.client-names {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    opacity: 0.8;
}

.client-name {
    color: #fff;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: var(--transition-normal);
    cursor: default;
    user-select: none;
}

.client-name:hover {
    color: var(--color-brand-yellow);
    opacity: 1;
    transform: scale(1.05);
}

/* Impact Stats */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 4rem;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-brand-yellow);
    line-height: 1;
    font-family: var(--font-secondary);
}

.stat-label {
    color: #ccc;
    /* Light Gray for visibility on black */
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Process Section */
.process-section {
    position: relative;
    overflow: hidden;
}

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

.process-step {
    background: rgba(255, 255, 255, 0.03);
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: var(--transition-normal);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-brand-yellow);
    transform: translateY(-5px);
}

.step-icon {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    line-height: 1;
    font-family: var(--font-secondary);
}

.process-step h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--color-brand-yellow);
    font-weight: 800;
}

.process-step p {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Results Gallery */
.results-gallery {
    background-color: var(--color-bg-primary);
}

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

.result-card {
    background: #fff;
    padding: 3rem;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: var(--transition-normal);
}

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

.result-metric {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-brand-purple);
    margin-bottom: 1rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.result-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.result-card p {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .client-names {
        gap: 2rem;
    }

    .client-name {
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

/* Services Preview */
.services-preview {
    padding: 100px 0;
    background-color: var(--color-bg-primary);
    /* White Background */
    position: relative;
}

/* Yellow divider/accent */
.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: repeating-linear-gradient(45deg,
            var(--color-brand-yellow),
            var(--color-brand-yellow) 10px,
            #000 10px,
            #000 20px);
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

/* Service Card - Flat & Bold */
.service-card {
    background: #fff;
    padding: 3rem 2.5rem;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow-card);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-bottom: 4px solid var(--color-brand-purple);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-brand-purple);
}

.service-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--color-text-primary);
}

.service-desc {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.6;
    font-weight: 500;
}

.service-link {
    color: var(--color-brand-purple);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 0.2rem;
    border-bottom: 2px solid transparent;
}

.service-link:hover {
    gap: 0.8rem;
    border-bottom-color: var(--color-brand-purple);
}


/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding-top: 140px;
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        margin: 0 auto;
        text-align: center;
    }

    .hero h1 {
        font-size: 3rem;
    }

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