/* HOME.CSS */

.hero-home {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 180px 0 120px;
    background:
        url('../img/hero/hero.webp') center center / cover no-repeat;
    overflow: hidden;
    background-attachment: fixed;
    animation: heroZoom 18s ease forwards;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            rgba(0, 0, 0, .78),
            rgba(0, 0, 0, .45));
}

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

.hero-text {
    max-width: 760px;
    color: var(--color-white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .3px;
}

.hero-home h1 {
    color: var(--color-white);
    margin-bottom: 24px;
}

.hero-subtitle {
    margin-bottom: 24px;
    font-size: clamp(22px, 2vw, 34px);
    font-weight: 600;
    line-height: 1.3;
    color: rgba(255, 255, 255, .92);
}

.hero-description {
    max-width: 620px;
    margin-bottom: 42px;
    font-size: 18px;
    color: rgba(255, 255, 255, .78);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 42px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
}

@media screen and (max-width: 768px) {
    .hero-home {
        min-height: auto;
        padding: 170px 0 100px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

.trust-band {
    padding: 0;
    background: var(--color-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: -55px;
    position: relative;
    z-index: 5;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.trust-grid div {
    padding: 34px 28px;
    border-right: 1px solid var(--color-border);
}

.trust-grid div:last-child {
    border-right: 0;
}

.trust-grid strong {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-title);
    color: var(--color-black);
    font-size: 22px;
}

.trust-grid span {
    color: var(--color-text);
}

.services-preview {
    background: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 34px;
    min-height: 230px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: var(--color-primary);
    transition: var(--transition);
}

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

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

.service-card span {
    display: block;
    width: 42px;
    height: 42px;
    margin-bottom: 28px;
    border-radius: 14px;
    background: rgba(204, 0, 0, .1);
}

.service-card h3 {
    margin-bottom: 14px;
}

.why-section {
    background: var(--color-light);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.section-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 13px;
}

.why-content h2 {
    margin-bottom: 28px;
}

.why-content p {
    margin-bottom: 34px;
    max-width: 560px;
}

.check-list {
    display: grid;
    gap: 16px;
}

.check-list li {
    position: relative;
    padding-left: 32px;
    color: var(--color-black);
    font-weight: 600;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-weight: 800;
}

.portfolio-preview {
    background: var(--color-white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
}

.portfolio-card {
    position: relative;
    min-height: 420px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.portfolio-card:first-child {
    min-height: 520px;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
}

.portfolio-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .7), rgba(0, 0, 0, 0));
}

.portfolio-card div {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
}

.portfolio-card h3 {
    margin-bottom: 6px;
    color: var(--color-white);
}

.portfolio-card p {
    color: rgba(255, 255, 255, .8);
}

.portfolio-card:hover img {
    transform: scale(1.06);
}

.portfolio-card:hover::after {
    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .82),
            rgba(0, 0, 0, .15));
}

.section-action {
    display: flex;
    justify-content: center;
    margin-top: 46px;
}

.steps-section {
    background: var(--color-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.steps-grid div {
    position: relative;
    padding: 36px 28px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.steps-grid span {
    display: inline-flex;
    margin-bottom: 28px;
    color: var(--color-primary);
    font-family: var(--font-title);
    font-size: 34px;
    font-weight: 800;
}

.steps-grid h3 {
    margin-bottom: 14px;
}

.final-cta {
    background: var(--color-black);
    color: rgba(255, 255, 255, .75);
}

.final-cta h2 {
    margin-bottom: 18px;
    color: var(--color-white);
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.final-cta-inner p {
    max-width: 720px;
}

.final-cta-actions {
    display: flex;
    gap: 18px;
    flex-shrink: 0;
}

.areas-section {
    background: var(--color-white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.areas-grid div {
    padding: 32px;
    background: var(--color-light);
    border-radius: var(--radius-md);
}

.areas-grid h3 {
    margin-bottom: 18px;
    font-size: 22px;
}

.areas-grid p {
    font-size: 15px;
}

.service-icon
{
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 24px;
}