/* ===================== HERO — Logo centered ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    text-align: center;
}

.hero__centered {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__logo {
    max-width: 420px;
    width: 100%;
    height: auto;
    margin-bottom: var(--space-2xl);
    mix-blend-mode: multiply;
}

.hero__desc {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 560px;
    line-height: 1.8;
    font-weight: 300;
    text-align: center;
}

.hero__buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
}

/* ===================== TRUST BAR ===================== */
.trust-bar {
    background: var(--navy);
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    text-align: center;
}

.trust-bar__item {
    position: relative;
}

.trust-bar__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(247, 245, 242, 0.12);
}

.trust-bar__num {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--sand);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.trust-bar__label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: rgba(247, 245, 242, 0.5);
}

/* ===================== SERVICES GRID ===================== */
.services-home {
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

/* ===================== WHY MOVULAB ===================== */
.why-section .grid-2 {
    gap: var(--space-3xl);
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.why-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.why-item__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(22, 40, 66, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-item__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--navy);
    stroke-width: 1.5;
    fill: none;
    opacity: 0.6;
}

.why-item__title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.why-item__text {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-weight: 300;
}

.why-image {
    border-radius: 2px;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

/* ===================== PROCESS SECTION ===================== */
.process-section {
    background: transparent;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

/* ===================== CTA ===================== */
.cta {
    background: var(--navy);
    padding: var(--space-4xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.cta__title {
    font-size: var(--text-5xl);
    color: var(--sand);
    margin-bottom: var(--space-sm);
    letter-spacing: -2px;
}

.cta__subtitle {
    font-size: var(--text-lg);
    color: rgba(247, 245, 242, 0.5);
    margin-bottom: var(--space-2xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}
