/* Home/Taxes page */

.taxes-page {
    --tax-blue-900: #1f2f57;
    --tax-blue-800: #2a3b6c;
    --tax-blue-700: #294b84;
    --tax-sky-50: #f2f6ff;
    --tax-orange: #f28c28;

    color: #1b2437;
}

.taxes-page .taxes-hero {
    position: relative;
    background: radial-gradient(1200px 600px at 10% 10%, rgba(255, 255, 255, .25), transparent 60%),
        linear-gradient(180deg, rgba(31, 47, 87, .92) 0%, rgba(41, 75, 132, .80) 55%, rgba(31, 47, 87, .90) 100%),
        url("/assets/images/taxes-hero-bg.jpeg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.taxes-page .taxes-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 28, 48, .55) 0%, rgba(20, 28, 48, .35) 45%, rgba(20, 28, 48, .15) 100%);
    pointer-events: none;
}

.taxes-page .taxes-hero .hero-inner {
    position: relative;
    z-index: 1;
    padding: 2.75rem 0 1.6rem;
}

@media (min-width: 992px) {
    .taxes-page .taxes-hero .hero-inner {
        padding: 3.25rem 0 1.9rem;
    }
}

.taxes-page .taxes-hero h1 {
    color: #fff;
    font-weight: 900;
    letter-spacing: .2px;
    margin: 0;
}

.taxes-page .crumbbar {
    background: rgba(255, 255, 255, .90);
    border-top: 1px solid rgba(0, 0, 0, .05);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.taxes-page .crumbbar .breadcrumb-mini {
    display: flex;
    gap: .5rem;
    align-items: center;
    padding: .75rem 0;
    color: rgba(27, 36, 55, .75);
    font-size: .95rem;
    font-weight: 600;
}

.taxes-page .crumbbar .sep {
    opacity: .65;
}

.taxes-page .content-wrap {
    background: linear-gradient(180deg, #f3f7ff 0%, #ffffff 70%);
}

.taxes-page .page-title {
    font-weight: 900;
    color: var(--tax-blue-900);
    margin: 0;
}

.taxes-page .page-lead {
    color: rgba(27, 36, 55, .78);
    max-width: 62ch;
    margin-top: .6rem;
}

.taxes-page .glass-card {
    border-radius: 16px;
    border: 1px solid rgba(31, 47, 87, .10);
    box-shadow: 0 14px 32px rgba(14, 22, 45, .10);
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(10px);
}

.taxes-page .card-title {
    font-weight: 900;
    color: var(--tax-blue-900);
    margin: 0 0 .75rem;
}

.taxes-page .list-check {
    list-style: none;
    padding: 0;
    margin: 0;
}

.taxes-page .list-check li {
    display: flex;
    gap: .55rem;
    align-items: flex-start;
    margin: .45rem 0;
    color: rgba(27, 36, 55, .82);
}

.taxes-page .list-check .check {
    color: #2eac66;
    font-weight: 900;
    line-height: 1;
    margin-top: .05rem;
    flex: 0 0 auto;
}

.taxes-page .info-callout {
    margin-top: 1rem;
    padding: .9rem 1rem;
    border-radius: 12px;
    background: rgba(243, 247, 255, .9);
    border: 1px solid rgba(31, 47, 87, .08);
    color: rgba(27, 36, 55, .78);
    font-weight: 600;
    font-size: .95rem;
}

.taxes-page .steps {
    display: grid;
    gap: .8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.taxes-page .step {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: .75rem;
    align-items: start;
}

.taxes-page .step .n {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(180deg, #6ea1dc 0%, #3f79c2 100%);
    box-shadow: 0 10px 22px rgba(63, 121, 194, .25);
}

.taxes-page .step .t {
    font-weight: 900;
    color: rgba(27, 36, 55, .9);
    line-height: 1.15;
}

.taxes-page .step .d {
    color: rgba(27, 36, 55, .72);
    font-size: .92rem;
    margin-top: .2rem;
}

.taxes-page .card-footer-note {
    margin-top: .9rem;
    color: rgba(27, 36, 55, .65);
    font-weight: 600;
    font-size: .9rem;
}

.taxes-page .btn-orange {
    background: linear-gradient(180deg, #ff9b3c 0%, var(--tax-orange) 100%);
    border: 0;
    color: #fff;
    border-radius: 10px;
    font-weight: 900;
    padding: .6rem 1rem;
}

.taxes-page .btn-orange:hover,
.taxes-page .btn-orange:focus {
    background: linear-gradient(180deg, #ffab58 0%, #ff922d 100%);
    color: #fff;
}

.taxes-page .btn-outline-soft {
    border-radius: 10px;
    font-weight: 800;
    padding: .6rem 1rem;
    border: 1px solid rgba(31, 47, 87, .25);
    color: rgba(31, 47, 87, .92);
    background: rgba(255, 255, 255, .8);
}

.taxes-page .btn-outline-soft:hover,
.taxes-page .btn-outline-soft:focus {
    border-color: rgba(31, 47, 87, .45);
    color: rgba(31, 47, 87, 1);
}

.taxes-page .cta {
    background: linear-gradient(180deg, rgba(245, 248, 255, 1) 0%, rgba(235, 242, 255, 1) 100%);
}

.taxes-page .cta-box {
    text-align: center;
    padding: 2.2rem 1.5rem;
}

@media (min-width: 992px) {
    .taxes-page .cta-box {
        padding: 2.6rem 2rem;
    }
}

.taxes-page .cta-title {
    font-weight: 900;
    color: var(--tax-blue-900);
    margin: 0;
}

.taxes-page .cta-text {
    margin: .65rem auto 1.25rem;
    color: rgba(27, 36, 55, .78);
    max-width: 56ch;
}

.taxes-page .contact-mini {
    margin-top: 1.2rem;
    color: rgba(27, 36, 55, .75);
    font-weight: 600;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .9rem 1.2rem;
    font-size: .95rem;
}

.taxes-page .contact-mini a {
    color: inherit;
    text-decoration: none;
}

.taxes-page .contact-mini a:hover {
    text-decoration: underline;
}
