/* ============================================
   Satyr — Base styles (desktop)
   1rem = 10px | Fonts: Cormorant Garamond, Urbanist
   ============================================ */

:root {
    --light-blue: #0096C4;
    --dark-blue: #0A627D;
    --white: #FFFFFF;
    --black: #171717;
    --gray: #303030;
    --light-gray: #F2F2F2;
    --gradient: linear-gradient(to right, #00485E, #0096C4);
    --transition: 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 10px;
}

body {
    margin: 0;
    background-color: var(--white);
    color: var(--black);
    min-width: 144rem;
}

/* --------------------------------------------
   Typography
   -------------------------------------------- */

h1 {
    font-size: 7em;
    font-weight: 700;
    line-height: 0.1em;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    font-family: "Cormorant Garamond", serif;
    color: var(--black);
}

h2 {
    font-size: 6rem;
    font-weight: 700;
    line-height: 0.12em;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    font-family: "Cormorant Garamond", serif;
    color: var(--black);
}

h3 {
    font-size: 5rem;
    font-weight: 600;
    line-height: 0.1em;
    letter-spacing: 0.02em;
    font-family: "Urbanist", sans-serif;
}

h4 {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 0.12em;
    letter-spacing: -0.03em;
    font-family: "Cormorant Garamond", serif;
}

h5 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 0.12em;
    letter-spacing: -0.03em;
    font-family: "Cormorant Garamond", serif;
}

h6 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 0.12em;
    letter-spacing: 0.02em;
    font-family: "Urbanist", sans-serif;
}

p {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
}

.btn {
    text-decoration: none;
    border-radius: 100px;
    padding-block: 1.6rem;
    padding-inline: 2.8rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Urbanist", sans-serif;
    background-color: var(--light-blue);
    color: var(--white);
    border: 1px solid var(--dark-blue);
    display: inline-block;
    cursor: pointer;
    transition: all var(--transition);
}

.btn:hover {
    padding-inline: calc(2.8rem + 5px);
    /* background-color: var(--dark-blue); */
    border-color: var(--dark-blue);
    color: var(--white);
    box-shadow: 0 0 1.4rem rgba(0, 150, 196, 0.55), 0 0.4rem 1.6rem rgba(0, 150, 196, 0.35);
    /* transform: translateY(-0.2rem); */
}

.btn--invert {
    transition: all var(--transition);
}

.btn--invert:hover {
    padding-inline: calc(2.8rem + 5px);
    background-color: var(--light-gray);
    color: var(--dark-blue);
    border-color: var(--white);
    box-shadow: 0 0 1.4rem rgba(0, 150, 196, 0.45), 0 0.4rem 1.6rem rgba(255, 255, 255, 0.2);
    /* transform: translateY(-0.2rem); */
}

/* --------------------------------------------
   Hero
   -------------------------------------------- */

.site-header {
    padding: 2.4rem 6rem;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.site-header__logo {
    transition: all var(--transition);
}

.site-header__logo:hover {
    opacity: 0.85;
}

.site-header__logo img {
    display: block;
    height: 8rem;
    width: auto;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 5.6rem;
}

.site-header__nav li {
	list-style: none;
}


.site-header__nav li.is-active a {
	font-weight: 700;
}

.site-header__nav a {
    font-family: "Urbanist", sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--black);
    text-transform: capitalize;
    transition: all var(--transition);
}

.site-header__nav a:hover {
    color: var(--light-blue);
}

.site-header__nav a.is-active {
    font-weight: 700;
}

.hero {
    padding: 0 6rem 6rem;
}

.hero__box {
    background-color: rgba(0, 150, 196, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 3.2rem;
    padding: 6rem 8rem 0 8rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4rem;
    overflow: hidden;
    min-height: 72rem;
}

.hero__content {
    /* flex: 0 1 58rem; */
    padding-bottom: 8rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero__rating {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background-color: rgba(0, 150, 196, 0.15);
    border-radius: 0.8rem;
    padding: 1rem 1.6rem;
    margin-bottom: 2rem;
    transition: all var(--transition);
    transform-origin: left center;
}

.hero__rating:hover {
    transform: scale(1.2);
}

.hero__stars {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.hero__rating-text {
    font-family: "Urbanist", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.02em;
}

.hero h1 {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 0.85;
}

.hero h1 em {
    color: var(--light-blue);
    font-style: italic;
}

.hero p {
    font-family: "Urbanist", sans-serif;
    color: var(--gray);
    max-width: 52rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero__visual {
    position: relative;
    flex: 0 0 auto;
    align-self: flex-end;
    line-height: 0;
}

.hero__visual img {
    display: block;
    width: 58rem;
    height: auto;
}

.hero__badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background-color: var(--white);
    border-radius: 2rem;
    padding: 1.6rem 2rem;
    box-shadow: 0 0.4rem 2.4rem rgba(23, 23, 23, 0.12);
    transition: all var(--transition);
    transform-origin: center;
}

.hero__badge:hover {
    transform: scale(1.2);
    z-index: 2;
    box-shadow: 0 0.8rem 3.2rem rgba(0, 150, 196, 0.2);
}

.hero__badge--savings {
    bottom: 14rem;
    right: 2rem;
}

.hero__badge--compliance {
    bottom: 4rem;
    left: -4rem;
}

.hero__badge h4 {
    margin: 0;
    color: var(--black);
    line-height: 1;
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 4rem;
    transition: all var(--transition);
}

.hero__badge-label {
    font-family: "Urbanist", sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--gray);
    transition: all var(--transition);
}

.hero__badge:hover h4,
.hero__badge:hover .hero__badge-label {
    color: var(--light-blue);
}

/* --------------------------------------------
   About
   -------------------------------------------- */

.about {
    padding: 0 6rem 6rem;
}

.about__inner {
    display: flex;
    align-items: stretch;
    gap: 2.4rem;
}

.about__media {
    /* flex: 1; */
    border-radius: 3.2rem;
    overflow: hidden;
    line-height: 0;
}

.about__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition);
}
.about__media:hover img, .contact-info__media:hover img, .audit-services__media:hover img, .bookkeeping__media:hover img {
    transform: scale(1.05);
}

.about__card {
    flex: 1;
    background-color: var(--gray);
    border-radius: 3.2rem;
    padding: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all var(--transition);
}

/* .about__card:hover {
    background-color: color-mix(in srgb, var(--light-blue) 10%, var(--gray));
} */

.about__card p {
    font-family: "Urbanist", sans-serif;
    color: var(--white);
    line-height: 1.5;
    margin: 0 0 2.4rem;
}

.about__card p:last-of-type {
    margin-bottom: 4rem;
}

.about__card .btn--invert {
    background-color: var(--white);
    color: var(--light-blue);
    border-color: var(--white);
    align-self: flex-start;
}

/* --------------------------------------------
   Testimonials
   -------------------------------------------- */

.testimonials {
    background-color: var(--light-gray);
    padding: 8rem 6rem;
}

.testimonials__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 5.6rem;
}

.testimonials__intro h2 {
    margin: 0 0 2.4rem;
    line-height: 1.1;
}

.testimonials__intro p {
    font-family: "Urbanist", sans-serif;
    color: var(--gray);
    line-height: 1.5;
    max-width: 56rem;
    margin: 0;
}

.testimonials__header .btn {
    flex-shrink: 0;
    align-self: center;
}

.testimonials__slider {
    overflow: hidden;
    margin-bottom: 2.8rem;
    --testimonial-gap: 2.4rem;
    --testimonial-visible: 3;
}

.testimonials__track {
    display: flex;
    gap: var(--testimonial-gap);
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 var(--card-width, 42rem);
    background-color: var(--white);
    border-radius: 3.2rem;
    padding: 4rem 4.8rem;
    transition: all var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 1.2rem 3.2rem rgba(23, 23, 23, 0.1);
    transform: translateY(-0.4rem);
}

.testimonial-card__rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.4rem;
}

.testimonial-card__stars {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.testimonial-card__score {
    font-family: "Urbanist", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.02em;
}

.testimonial-card__text {
    font-family: "Urbanist", sans-serif;
    color: var(--gray);
    line-height: 1.5;
    margin: 0 0 3.2rem;
}

.testimonial-card__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.testimonial-card__author {
    margin: 0;
    line-height: 1.2;
}

.testimonial-card__author-name {
    font-family: "Urbanist", sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--light-blue);
}

.testimonial-card__author-tag {
    font-family: "Urbanist", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: color-mix(in srgb, var(--gray) 50%, transparent);
}

.testimonial-card__quote {
    flex-shrink: 0;
    line-height: 0;
}

.testimonials__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
}

.testimonials__arrow {
    width: 4rem;
    height: 4rem;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    background-color: var(--light-blue);
    transition: all var(--transition);
}

.testimonials__arrow:hover {
    background-color: var(--dark-blue);
    transform: scale(1.08);
    box-shadow: 0 0.4rem 1.6rem rgba(0, 150, 196, 0.35);
}
/* --------------------------------------------
   CTA + Footer
   -------------------------------------------- */

.site-footer-wrap {
    position: relative;
    padding: 6rem 2rem 0;
}

.cta {
    padding: 0 12rem;
    position: relative;
    z-index: 2;
    margin-bottom: -10rem;
}

.cta__box {
    background: var(--gradient);
    border-radius: 5rem;
    padding: 8rem 8rem 8rem;
    text-align: center;
    box-shadow: 0 1.2rem 4rem rgba(23, 23, 23, 0.15);
}

.cta__box h2 {
    margin: 0 0 2rem;
    color: var(--white);
    line-height: 1.1;
}

.cta__box p {
    font-family: "Urbanist", sans-serif;
    color: var(--white);
    line-height: 1.5;
    max-width: 72rem;
    margin: 0 auto 4rem;
}

.cta__form {
    display: flex;
    align-items: center;
    max-width: 76rem;
    margin: 0 auto;
    background-color: var(--light-gray);
    border-radius: 100px;
    padding: 0.8rem 0.8rem 0.8rem 3.2rem;
    gap: 1.6rem;
}

.cta__input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: "Urbanist", sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--black);
    letter-spacing: -0.02em;
    outline: none;
    min-width: 0;
}

.cta__input::placeholder {
    color: color-mix(in srgb, var(--gray) 50%, transparent);
}

.cta__submit {
    flex-shrink: 0;
    border-color: var(--light-blue);
}

.site-footer {
    background-color: var(--gray);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 3.2rem 3.2rem 0 0;
    padding: 14rem 6rem 4rem;
    position: relative;
    overflow: hidden;
}

.site-footer__inner {
    position: relative;
    z-index: 1;
}

.site-footer__main {
    display: flex;
    justify-content: space-between;
    gap: 6rem;
    padding-bottom: 5.6rem;
    border-bottom: 1px solid color-mix(in srgb, var(--white) 15%, transparent);
}

.site-footer__brand {
    flex: 0 1 42rem;
}

.site-footer__logo {
    display: inline-block;
    margin-bottom: 2.4rem;
    transition: all var(--transition);
}

.site-footer__logo:hover {
    opacity: 0.85;
}

.site-footer__logo img {
    display: block;
    height: 8rem;
    width: auto;
}

.site-footer__brand p {
    font-family: "Urbanist", sans-serif;
    color: var(--white);
    line-height: 1.5;
    margin: 0 0 3.2rem;
}

.site-footer__social {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.site-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--black) 35%, transparent);
    transition: all var(--transition);
}

.site-footer__social a:hover {
    background-color: var(--light-blue);
    transform: translateY(-0.2rem);
}

.site-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 1rem;
}

.site-footer__nav a {
    font-family: "Urbanist", sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
    transition: all var(--transition);
}

.site-footer__nav a:hover {
    color: var(--light-blue);
    transform: translateX(0.4rem);
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    padding-top: 1rem;
}

.site-footer__contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-family: "Urbanist", sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
    transition: all var(--transition);
}

.site-footer__contact-item:hover {
    color: var(--light-blue);
    transform: translateX(0.4rem);
}

.site-footer__contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 3.2rem;
}

.site-footer__bottom p {
    font-family: "Urbanist", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    margin: 0;
    line-height: 1.5;
}

.site-footer__legal {
    display: flex;
    align-items: center;
    gap: 3.2rem;
}

.site-footer__legal a {
    font-family: "Urbanist", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    transition: all var(--transition);
}

.site-footer__legal a:hover {
    color: var(--light-blue);
    opacity: 1;
}

/* --------------------------------------------
   Contact page
   -------------------------------------------- */

.contact-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.contact-page__main {
    flex: 1;
}

.contact-banner {
    padding: 0 6rem 6rem;
}

.contact-banner__box {
    background-color: rgba(0, 150, 196, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 3.2rem;
    padding: 8rem 8rem;
    text-align: center;
}

.contact-banner__box h1 {
    margin: 0 0 2rem;
    line-height: 1.1;
    font-size: 10rem;
}

.contact-banner__box p {
    font-family: "Urbanist", sans-serif;
    color: var(--gray);
    line-height: 1.5;
    max-width: 72rem;
    margin: 0 auto;
}

.contact-info {
    padding: 0 6rem 6rem;
}

.contact-info__box {
    display: flex;
    align-items: stretch;
    gap: 2.4rem;
    background-color: var(--light-gray);
    border-radius: 3.2rem;
    padding: 6rem;
    justify-content: space-between;
}

.contact-info__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 60rem;
}

.contact-info__content h2 {
    margin: 0 0 2.4rem;
    color: var(--light-blue);
    line-height: 1.1;
}

.contact-info__content p {
    font-family: "Urbanist", sans-serif;
    color: var(--gray);
    line-height: 1.5;
    margin: 0 0 2rem;
}

.contact-info__content p:last-of-type {
    margin-bottom: 4rem;
}

.contact-info__details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: auto;
}

.contact-info__item {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    font-family: "Urbanist", sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--gray);
    transition: all var(--transition);
}

.contact-info__item:hover {
    color: var(--light-blue);
}

.contact-info__item:hover .contact-info__icon {
    background-color: var(--dark-blue);
    transform: scale(1.05);
}

.contact-info__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 0.8rem;
    background-color: var(--light-blue);
    transition: all var(--transition);
}

.contact-info__media {
    /* flex: 1; */
    border-radius: 3.2rem;
    overflow: hidden;
    line-height: 0;
    transition: all var(--transition);
}

.contact-info__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition);
}

.schedule {
    padding: 0 6rem 6rem;
}

.schedule__box {
    background: linear-gradient(to bottom right, #C5E1E9, #F2F2F2, #C5E1E9);
    border-radius: 3.2rem;
    padding: 6rem;
}

.schedule__header {
    text-align: center;
    margin-bottom: 4.8rem;
}

.schedule__header h2 {
    margin: 0 0 2rem;
    line-height: 1.1;
}

.schedule__header p {
    font-family: "Urbanist", sans-serif;
    color: var(--gray);
    line-height: 1.5;
    max-width: 64rem;
    margin: 0 auto;
}

.schedule__panels {
    display: flex;
    gap: 2.4rem;
    align-items: stretch;
}

.schedule__form-card,
.schedule__calendar-card {
    flex: 1;
    background-color: var(--white);
    border-radius: 3.2rem;
    padding: 4rem;
}

.schedule__form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

.schedule__form-row {
    display: flex;
    gap: 2rem;
}

.schedule__form-row .schedule__input {
    flex: 1;
}

.schedule__input {
    width: 100%;
    border: none;
    border-radius: 1.2rem;
    background-color: var(--light-gray);
    padding: 1.8rem 2rem;
    font-family: "Urbanist", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--black);
    letter-spacing: -0.02em;
    outline: none;
}

.schedule__input::placeholder {
    color: color-mix(in srgb, var(--gray) 50%, transparent);
}

.schedule__textarea {
    min-height: 16rem;
    resize: vertical;
}

.schedule__submit {
    align-self: flex-start;
    margin-top: auto;
    /* border-radius: 1.2rem; */
}

.schedule__calendar {
    display: flex;
    gap: 3.2rem;
    margin-bottom: 3.2rem;
}

.schedule__calendar-main {
    flex: 1;
}

.schedule__weekdays,
.schedule__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.8rem;
    text-align: center;
}

.schedule__weekdays span {
    font-family: "Urbanist", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: color-mix(in srgb, var(--gray) 50%, transparent);
    padding-bottom: 0.8rem;
}

.schedule__days span {
    font-family: "Urbanist", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gray);
    line-height: 4rem;
    border-radius: 50%;
}

.schedule__days .is-muted {
    color: color-mix(in srgb, var(--gray) 35%, transparent);
}

.schedule__days .is-selected {
    background-color: var(--light-blue);
    color: var(--white);
    font-weight: 600;
}

.schedule__months {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding-top: 2.4rem;
}

.schedule__months span {
    font-family: "Urbanist", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: color-mix(in srgb, var(--gray) 50%, transparent);
}

.schedule__months .is-active {
    color: var(--light-blue);
    font-weight: 600;
    padding: 0.4rem 0;
    border-top: 1px solid color-mix(in srgb, var(--gray) 25%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--gray) 25%, transparent);
}

.schedule__calendar-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 2.4rem;
    border-top: 1px solid color-mix(in srgb, var(--gray) 20%, transparent);
}

.contact-page .site-footer {
    padding-top: 6rem;
    margin-top: auto;
}

/* --------------------------------------------
   Tax Services (Pricing)
   -------------------------------------------- */

.tax-services {
    padding: 0 6rem 6rem;
}

.tax-services > h2 {
    margin: 0 0 4rem;
    line-height: 1.1;
}

.tax-services__top {
    display: flex;
    gap: 2.4rem;
    align-items: stretch;
}

.tax-services__cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.tax-services__card--small {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 150, 196, 0.1);
    border-radius: 3.2rem;
    padding: 4rem;
    transition: all var(--transition);
}

.tax-services__card--small:hover {
    background-color: rgba(0, 150, 196, 0.28);
    box-shadow: 0 0.8rem 2.4rem rgba(0, 150, 196, 0.12);
}

.tax-services__pricing {
    margin-top: auto;
}

.tax-services__card--small h4 {
    margin: 0 0 2.4rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.tax-services__line {
    font-family: "Urbanist", sans-serif;
    margin: 0 0 1.6rem;
    line-height: 1.4;
}

.tax-services__line:last-child {
    margin-bottom: 0;
}

.tax-services__price {
    font-family: "Urbanist", sans-serif;
    font-size: 4.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--light-blue);
}

.tax-services__note,
.tax-services__label {
    font-family: "Urbanist", sans-serif;
    font-size: 2.6rem;
    font-weight: 400;
    color: var(--gray);
    letter-spacing: -0.02em;
}

.tax-services__label {
    display: block;
    margin-bottom: 0.4rem;
}

.tax-services__line--row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.8rem 1rem;
}

.tax-services__line--row .tax-services__label {
    display: inline;
    margin-bottom: 0;
}

.tax-services__visual {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    border-radius: 3.2rem;
    overflow: hidden;
    transition: all var(--transition);
}

.tax-services__media,
.tax-services__fees {
    grid-area: 1 / 1;
    min-height: 48rem;
    transition: all var(--transition);
}

.tax-services__media {
    border-radius: 3.2rem;
    overflow: hidden;
    line-height: 0;
    position: relative;
}

.tax-services__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 48rem;
    object-fit: cover;
}

.tax-services__media-title {
    text-align: center;
    text-transform: uppercase;
    line-height: 1.1;
    position: absolute;
    bottom: 4rem;
    left: 6rem;
    color: var(--white);
    margin: 0;
    transition: all var(--transition);
}

.tax-services__fees {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    padding: 4rem;
    background-color: var(--light-gray);
    border-radius: 3.2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.tax-services__fees-title {
    margin: 0;
    color: var(--light-blue);
    line-height: 1.1;
}

.tax-services__fees-box {
    border-radius: 2rem;
    padding: 2.4rem 3.2rem;
}

.tax-services__fees-box--gray {
    background-color: color-mix(in srgb, var(--gray) 14%, var(--light-gray));
    margin-top: auto;
}

.tax-services__fees-box--gray p {
    font-family: "Urbanist", sans-serif;
    /* font-size: 1.6rem; */
    font-weight: 400;
    line-height: 1.5;
    color: var(--gray);
    margin: 0;
    letter-spacing: -0.02em;
}

.tax-services__fees-box--blue {
    background-color: rgba(0, 150, 196, 0.1);
    margin-top: 0;
}

.tax-services__fees-box--blue p {
    font-family: "Urbanist", sans-serif;
    /* font-size: 1.6rem; */
    font-weight: 700;
    line-height: 1.5;
    color: var(--light-blue);
    margin: 0;
    letter-spacing: -0.02em;
}

.tax-services__visual:hover .tax-services__media {
    opacity: 0;
    visibility: hidden;
}

.tax-services__visual:hover .tax-services__fees {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.tax-services__banner {
    margin-top: 2.4rem;
    background-color: var(--light-gray);
    border-radius: 3.2rem;
    padding: 4rem 6rem;
}

.tax-services__banner p {
    font-family: "Urbanist", sans-serif;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --------------------------------------------
   Audit Services (Pricing)
   -------------------------------------------- */

.audit-services {
    padding: 0 6rem 6rem;
}

.audit-services > h2 {
    margin: 0 0 4rem;
    text-align: center;
    line-height: 1.1;
}

.audit-services__top {
    display: flex;
    gap: 2.4rem;
    align-items: stretch;
    margin-bottom: 2.4rem;
}

.audit-services__media {
    /* flex: 1; */
    border-radius: 3.2rem;
    overflow: hidden;
    line-height: 0;
}

.audit-services__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 40rem;
    object-fit: cover;
    transition: all var(--transition);
}

.audit-services__main {
    flex: 1;
    background-color: var(--gray);
    border-radius: 3.2rem;
    padding: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all var(--transition);
}
/* 
.audit-services__main:hover {
    background-color: color-mix(in srgb, var(--light-blue) 12%, var(--gray));
} */

.audit-services__main h3 {
    margin: 0 0 2.4rem;
    color: var(--white);
    line-height: 1.1;
    text-transform: uppercase;
}

.audit-services__main p {
    font-family: "Urbanist", sans-serif;
    color: var(--white);
    line-height: 1.5;
    margin: 0 0 4rem;
}

.audit-services__btn {
    align-self: flex-start;
}

.audit-services__cards {
    display: flex;
    gap: 2.4rem;
}

.audit-services__card {
    flex: 1;
    background-color: var(--light-gray);
    border-radius: 3.2rem;
    padding: 4rem;
    display: grid;
    border: 1px solid rgba(0, 0, 0, 0);
    transition: all var(--transition);
}

.audit-services__card:hover {
    background-color: color-mix(in srgb, var(--light-blue) 8%, var(--light-gray));
    box-shadow: 0 0.8rem 2.4rem rgba(23, 23, 23, 0.08);
    /* transform: translateY(-0.4rem); */
    border-color: var(--light-blue);
}

.audit-services__card h6 {
    margin: 0 0 2rem;
    color: var(--black);
    line-height: 1.2;
    text-transform: uppercase;
}

.audit-services__card p {
    font-family: "Urbanist", sans-serif;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
    margin-top: auto;
}

/* --------------------------------------------
   Bookkeeping Services (Pricing)
   -------------------------------------------- */

.bookkeeping {
    padding: 0 6rem;
}

.bookkeeping__box {
    display: flex;
    gap: 2.4rem;
    align-items: stretch;
    background-color: var(--light-gray);
    border-radius: 3.2rem;
    padding: 4rem;
}

.bookkeeping__media {
    /* flex: 0 0 42rem; */
    border-radius: 3.2rem;
    overflow: hidden;
    line-height: 0;
}

.bookkeeping__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    transition: all var(--transition);
}

.bookkeeping__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bookkeeping__content > h2 {
    margin: 0 0 2rem;
    color: var(--light-blue);
    line-height: 1.1;
}

.bookkeeping__content > h4 {
    margin: 0 0 1.6rem;
    color: var(--black);
    line-height: 1.1;
}

.bookkeeping__content > p {
    font-family: "Urbanist", sans-serif;
    color: var(--gray);
    line-height: 1.5;
    margin: 0 0 2.4rem;
}

.bookkeeping__inner-card {
    background-color: rgba(0, 150, 196, 0.1);
    border-radius: 2rem;
    padding: 2.4rem 3.2rem;
    margin-bottom: 2.4rem;
    display: grid;
    transition: all var(--transition);
}

.bookkeeping__inner-card:hover {
    background-color: rgba(0, 150, 196, 0.18);
    box-shadow: 0 0.6rem 2rem rgba(0, 150, 196, 0.1);
}

.bookkeeping__inner-card--wide {
    margin-bottom: 3.2rem;
}

.bookkeeping__inner-card h4 {
    margin: 0 0 1.2rem;
    color: var(--light-blue);
    line-height: 1.1;
    font-family: "Urbanist", sans-serif;
}

.bookkeeping__inner-label {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--light-blue);
    margin: 0;
    letter-spacing: 0.02em;
}

.bookkeeping__inner-text {
    font-family: "Urbanist", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--light-blue);
    margin: 0;
    letter-spacing: -0.02em;
    margin-top: auto;
}

.bookkeeping__features {
    list-style: none;
    margin: 0 0 2.4rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bookkeeping__features li {
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;
    font-family: "Urbanist", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--gray);
    letter-spacing: -0.02em;
}

.bookkeeping__check {
    flex-shrink: 0;
    line-height: 0;
}

.bookkeeping__inner-row {
    display: flex;
    gap: 2.4rem;
    margin-top: auto;
}

.bookkeeping__inner-row .bookkeeping__inner-card {
    flex: 1;
    margin-bottom: 0;
    height: 18rem;
}

.bookkeeping__inner-card.bookkeeping__inner-card--wide {
    height: 12rem;
}

.contact-page .cta {
    display: none;
}
.contact-page .site-footer-wrap {
    padding-top: 0;
}


.schedule__form-card .wpcf7 {
    height: 100%;
}

.schedule__form-card .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

.schedule__form-card .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.schedule__form-card .schedule__form-row {
    display: flex;
    gap: 2rem;
}

.schedule__form-card .schedule__form-row .wpcf7-form-control-wrap {
    flex: 1;
    min-width: 0;
}

.schedule__form-card .wpcf7-form-control {
    width: 100%;
}

.schedule__form-card .wpcf7-not-valid-tip {
    font-family: "Urbanist", sans-serif;
    font-size: 1.2rem;
    margin-top: 0.6rem;
    color: #c0392b;
}

.schedule__form-card .wpcf7-response-output {
    margin: 0 !important;
    padding: 1.2rem 1.6rem;
    border-radius: 1.2rem;
    font-family: "Urbanist", sans-serif;
    font-size: 1.4rem;
}

.schedule__form-card .wpcf7-spinner {
    margin-left: 1rem;
    vertical-align: middle;
    display: none;
}
.wpcf7-form.submitting .wpcf7-spinner {
    display: block;
}
.schedule__form-card .wpcf7 input[type="submit"].schedule__submit {
    align-self: flex-start;
    margin-top: auto;
}

form p {
    margin: 0;
}

.schedule__form-row p {
    display: flex;
    gap: 2rem;
    width: 100%;
}

.schedule__form-row br {
    display: none;
}