.hero {
    color: var(--white);
    background: linear-gradient(135deg, rgba(5, 7, 10, 0.96), rgba(8, 59, 102, 0.94));
}

.hero-inner {
    width: min(1120px, calc(100% - 40px));
    min-height: 620px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    align-items: center;
    gap: 56px;
    padding: 72px 0 86px;
}

.hero-copy {
    max-width: 680px;
}

.hero-text {
    max-width: 620px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.18rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-logo {
    justify-self: end;
    width: min(420px, 100%);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-logo img {
    width: 88%;
    height: 88%;
    object-fit: contain;
}

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

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.service-card {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 28px;
    color: var(--ink);
    text-decoration: none;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(8, 24, 42, 0.06);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: var(--cyan);
    box-shadow: var(--shadow);
}

.service-number {
    color: var(--blue);
    font-size: 0.9rem;
    font-weight: 900;
}

.service-card p {
    margin: 0;
    color: var(--muted);
}

.tax-benefit {
    background: #eef8f2;
}

.tax-benefit-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: center;
    gap: 34px;
}

.tax-benefit .eyebrow {
    color: var(--green);
}

.tax-benefit-copy {
    max-width: 760px;
}

.tax-benefit-copy p:not(.eyebrow) {
    margin: 18px 0 0;
    color: var(--muted);
}

.tax-benefit-note {
    font-weight: 700;
}

.tax-benefit-source {
    font-size: 0.92rem;
}

.tax-benefit-source a {
    color: var(--blue);
    font-weight: 900;
}

.tax-benefit-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    padding: 30px;
    color: var(--white);
    background: var(--green);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.tax-benefit-value {
    color: var(--white);
    font-size: 4.4rem;
    font-weight: 900;
    line-height: 0.95;
}

.tax-benefit-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.12rem;
    font-weight: 800;
}

.contact-band {
    color: var(--white);
    background: var(--dark);
}

.contact-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.contact-band h2 {
    margin-bottom: 10px;
}

.contact-band p:not(.eyebrow) {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 860px) {
    .hero-inner {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 58px 0 66px;
    }

    .hero-logo {
        justify-self: start;
        width: min(320px, 100%);
    }

    .service-grid,
    .tax-benefit-inner {
        grid-template-columns: 1fr;
    }

    .tax-benefit-card {
        min-height: auto;
    }

    .contact-band-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .hero-inner {
        width: min(100% - 28px, 1120px);
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .service-card,
    .tax-benefit-card {
        padding: 22px;
    }

    .tax-benefit-value {
        font-size: 3.4rem;
    }
}
