/* ==========================================================================
   THEMIS ADR — Landing page
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Variables & reset
   -------------------------------------------------------------------------- */
:root {
    --color-navy: #0a1a2f;
    --color-navy-deep: #0a1a2f;
    --color-navy-footer: #0a1a2f;
    --color-navy-legal: #060f1a;
    --color-gold: #A68F63;
    --color-gold-text: #DACAAB;
    --color-gold-hover: #d4ad63;
    --color-cream: #EBE5D9;
    --color-white: #ffffff;
    --color-text: #0a1a2f;
    --color-text-body: #3d4a5c;
    --color-text-on-dark: #ffffff;
    --color-text-on-dark-muted: rgba(255, 255, 255, 0.82);

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', system-ui, sans-serif;

    --content-max: 1280px;
    --content-gutter: 1.5rem;
    --section-padding-y: 5.5rem;
    --radius-pill: 999px;
    --radius-card: 20px;
    --radius-info: 24px;
    --transition: 0.25s ease;
    --transition-slow: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    --shadow-info: 0 16px 48px rgba(10, 26, 47, 0.22);
    --hero-bg-height: 620px;

    /* Typography scale */
    --fs-label: 0.75rem;
    --fs-small: 0.875rem;
    --fs-body: 1rem;
    --fs-lead: 1.0625rem;
    --fs-h1: 3.75rem;
    --fs-h2: 3.375rem;
    --fs-feature-title: 1.0625rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 400;
    line-height: 1.75;
    color: var(--color-text-body);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

strong {
    font-weight: 600;
}

/* Bootstrap container → 1200px content width */
.container {
    max-width: var(--content-max);
    padding-left: var(--content-gutter);
    padding-right: var(--content-gutter);
}

/* --------------------------------------------------------------------------
   2. Utilities
   -------------------------------------------------------------------------- */
.section-padding {
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
}

.section-label {
    margin: 0 0 0.625rem;
    font-family: var(--font-body);
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-gold-text);
}

.section-title {
    margin: 0 0 2.75rem;
    font-family: var(--font-heading);
    font-size: clamp(1.875rem, 3.2vw, var(--fs-h2));
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-align: center;
    color: var(--color-navy);
}

.section-title--light {
    color: var(--color-white);
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
}

.footer-heading--visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    min-height: 3.25rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.2;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    transition: background-color var(--transition), color var(--transition),
        border-color var(--transition), transform var(--transition),
        box-shadow var(--transition);
    cursor: pointer;
    white-space: nowrap;
    font-size: 1.0625rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 26, 47, 0.18);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(10, 26, 47, 0.12);
}

.btn i {
    transition: transform var(--transition);
}

.btn:hover i {
    transform: translateY(1px);
}

.btn--primary {
    background-color: var(--color-navy);
    color: var(--color-white);
    border-color: var(--color-navy);
}

.btn--primary i {
    color: var(--color-gold);
}

.btn--primary:hover {
    background-color: #081525;
    border-color: #081525;
    color: var(--color-white);
}

.btn--primary:hover i {
    color: var(--color-gold-hover);
}

.btn--secondary {
    background-color: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.btn--secondary i {
    color: var(--color-navy);
}

.btn--secondary:hover {
    background-color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    color: var(--color-white);
}

/* --------------------------------------------------------------------------
   4. Hero — sfondo fisso dietro; contenuto e sedi in colonna senza overlap
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    z-index: 2;
    background-color: var(--color-white);
}

.hero__top {
	text-align: center;
	font-size: 0.8em;
	padding: 8px 4px;
	font-weight:500;
}

.hero__stage {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: var(--hero-bg-height);
    overflow: visible;
}

.hero__bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-height: var(--hero-bg-height);
    object-fit: cover;
    object-position: center bottom;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: 2.75rem;
    line-height: 1.75;
}

.hero__logo {
    margin-bottom: 2.75rem;
}

.hero__logo img {
    margin: 0 auto;
    width: min(240px, 58vw);
}

.hero__content {
    width: 100%;
    max-width: 52rem;
    margin: 0 auto;
}

.hero__title {
    margin: 0 0 1.375rem;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.2vw, var(--fs-h1));
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-navy);
}

.hero__lead {
    margin: 0 auto 2.25rem;
    max-width: 42rem;
    font-size: var(--fs-lead);
    font-weight: 600;
    line-height: 1.8;
    color: var(--color-text-body);
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 0;
}

.hero__info-wrap {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    width: 100%;
    margin-top: 5.5rem;
    padding: 0;
}

.hero__info-bar {
    background-color: var(--color-navy);
    border-radius: var(--radius-info);
    box-shadow: var(--shadow-info);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.hero__info-bar:hover {
    box-shadow: 0 20px 56px rgba(10, 26, 47, 0.28);
}

.hero__info-col {
    padding: 1.875rem 2rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.22);
    text-align: center;
    transition: background-color var(--transition);
}

.hero__info-col:last-child {
    border-bottom: none;
}

.hero__info-col--alt {
    background-color: #122a45;
}

@media (min-width: 992px) {
    .hero__info-col {
        border-bottom: none;
    }

    .hero__info-col:last-child {
        border-right: none;
    }
}

.hero__info-title {
    margin: 0 0 0.75rem;
    font-family: var(--font-body);
    font-size: 1.2em;
    font-weight: 600;
    color: var(--color-gold-text);
}

.hero__info-text {
    margin: 0 0 0.4rem;
    font-weight: 400;
    line-height: 1.6;
    color: #FFF;
    max-width: 220px;
    margin: auto;
}

.hero__info-text:last-child {
    margin-bottom: 0;
}

.hero__info-text a {
    color: var(--color-text-on-dark-muted);
    transition: color var(--transition);
	text-decoration:underline
}

.hero__info-text a:hover {
    color: var(--color-gold);
}

/* --------------------------------------------------------------------------
   5. Zona Chi siamo + notice (sfondo condiviso)
   -------------------------------------------------------------------------- */
.about-zone {
    position: relative;
    z-index: 1;
    margin-top: -6rem;
    padding-top: 8.5rem;
    background-color: var(--color-white);
    background-image: url('../images/chi-siamo-bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

/* --------------------------------------------------------------------------
   6. Notice bar (sopra lo sfondo Chi siamo)
   -------------------------------------------------------------------------- */
.notice {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding: 0 0 1.75rem;
    background-color: transparent;
}

.notice__container {
    display: flex;
    justify-content: center;
}

.notice__box {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    width: 100%;
    max-width: 764px;
    margin: 0 auto;
    padding: 1rem 1.375rem;
    background-color: var(--color-cream);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(10, 26, 47, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
}

.notice__box:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(10, 26, 47, 0.12);
}

.notice__icon {
    flex-shrink: 0;
    margin-top: 0.125rem;
    font-size: 2rem;
    color: var(--color-gold);
}

.notice__text {
    margin: 0;
    font-size: var(--fs-small);
    font-weight: 600;
    line-height: 1.65;
    color: var(--color-text-body);
}

/* --------------------------------------------------------------------------
   7. Chi siamo (continua lo sfondo di .about-zone)
   -------------------------------------------------------------------------- */
.about {
    position: relative;
    z-index: 1;
    background: transparent;
}

.about__body {
    text-align: center;
}

.about__body p {
    margin: 0 0 1.375rem;
    font-size: 1.1em;
    font-weight: 500;
    line-height: 1.85;
    color: var(--color-text-body);
}

.about__body p:last-child {
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   7. Features — sfondo export senza overlay aggiuntivi
   -------------------------------------------------------------------------- */
.features {
    background-color: var(--color-navy);
    background-image: url('../images/features-bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 36rem;
    padding-bottom: calc(var(--section-padding-y) + 5rem);
}

.features__grid {
    width: 100%;
    justify-content: flex-start;
}

.feature-card {
    display: flex;
    gap: 1.125rem;
    align-items: flex-start;
    height: 100%;
    padding: 0.25rem;
    border-radius: 8px;
    transition: transform var(--transition), background-color var(--transition);
}

.feature-card:hover {
    transform: translateX(4px);
    background-color: rgba(255, 255, 255, 0.04);
}

.feature-card__icon {
    flex-shrink: 0;
    margin-top: 0.15rem;
    font-size: 2.5rem;
    color: #ccc;
    transition: transform var(--transition), color var(--transition);
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.08);
}

.feature-card__title {
    margin: 0 0 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.35;
    color: var(--color-gold-text);
}

.feature-card__text {
    margin: 0;
    font-weight: 400;
    line-height: 1.7;
    color: #FFF;
}

/* --------------------------------------------------------------------------
   8. Credito d'imposta — card con immagine export
   -------------------------------------------------------------------------- */
.tax-credit.section-padding {
    padding-top: 0;
}

.tax-credit {
    position: relative;
    z-index: 3;
    margin-top: -5rem;
    background-color: transparent;
}

.tax-credit__card {
    width: 100%;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(10, 26, 47, 0.12);
    transition: transform var(--transition), box-shadow var(--transition);
    background-color: var(--color-cream);
    background-image: url('../images/credito-imposta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tax-credit__card-inner {
    padding: 3.5rem 2.5rem;
}

.tax-credit__body {
    text-align: center;
}

.tax-credit__body p {
    margin: 0 0 1.375rem;
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.85;
    color: var(--color-text-body);
}

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

.tax-credit .section-title {
	margin:auto;
    margin-bottom: 2.25rem;
	max-width:840px;
}

.site-footer__main {
    background-color: var(--color-navy-footer);
    color: var(--color-text-on-dark);
	border-radius:24px;
	padding-left:0;
	padding-right:0;
}

.site-footer__row{
	margin:0;
	padding: 24px 0
}

.footer-heading {
    margin: 0 0 1.375rem;
    font-family: var(--font-body);
    font-size: 1.2em;
    font-weight: 600;
    color: var(--color-gold-text);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links--spaced {
    padding-top: 2.15rem;
}

@media (min-width: 576px) {
    .footer-links--spaced {
        padding-top: 2.4rem;
    }
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.site-footer strong{
	color:#FFF
}

.footer-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-small);
    font-weight: 600;
    color: #fff;
    transition: color var(--transition), transform var(--transition);
}

.footer-links a:hover {
    color: var(--color-gold);
    transform: translateX(3px);
}

.footer-links a:hover .footer-links__external {
    color: var(--color-gold-hover);
}

.footer-links__external {
    flex-shrink: 0;
    font-size: 0.75rem;
    color: var(--color-gold);
    transition: color var(--transition), transform var(--transition);
}

.footer-links a:hover .footer-links__external {
    transform: translate(2px, -2px);
}

.footer-links__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.footer-links a .fa-square {
    font-size: 0.4rem;
    color: var(--color-gold);
}

.footer-contacts p {
    margin: 0 0 0.55rem;
    font-size: var(--fs-small);
    font-weight: 400;
    line-height: 1.65;
    color: var(--color-text-on-dark-muted);
}

.footer-contacts__name {
    font-weight: 600;
    color: var(--color-white) !important;
    margin-bottom: 0.875rem !important;
}

.footer-brand__logo {
    margin-bottom: 1.625rem;
    max-width: 160px;
}

.footer-brand__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-brand__list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.4rem;
    font-size: var(--fs-small);
}

.footer-brand__list i {
    width: 1.125rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-gold);
}

.footer-brand__list a {
    font-weight: 600;
    color: #fff;
    transition: color var(--transition), transform var(--transition);
}

.footer-brand__list a:hover {
    color: var(--color-gold);
    transform: translateX(3px);
}

.footer-brand__list i {
    transition: transform var(--transition);
}

.footer-brand__list a:hover i {
    transform: scale(1.1);
}

.site-footer__legal {
    background-color: var(--color-navy-legal);
    padding: 1.125rem 0;
	border-radius:0 0 24px 24px
}

.site-footer__legal p {
    margin: 0 auto;
    max-width: var(--content-max);
    padding-left: var(--content-gutter);
    padding-right: var(--content-gutter);
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    color: var(--color-text-on-dark-muted);
}

.site-footer__bottom {
    padding: 1rem 0;
    background-color: var(--color-white);
}

.footer-bottom-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.4rem 0.6rem;
    font-size: 0.8em;
    font-weight: 500;
}

.footer-bottom-nav a {
    color: var(--color-text-body);
    transition: color var(--transition);
	text-decoration:underline
}

.footer-bottom-nav a:hover {
    color: var(--color-gold);
}

.footer-bottom-nav__sep {
    color: rgba(10, 26, 47, 0.35);
}

.footer-bottom-nav__credit {
    color: var(--color-text-body);
}

/* --------------------------------------------------------------------------
   10. Scroll reveal & micro-interazioni
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(1.25rem);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.tax-credit__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(10, 26, 47, 0.16);
}

.hero__logo img {
    transition: transform var(--transition-slow);
}

.hero__logo:hover img {
    transform: scale(1.02);
}

/* --------------------------------------------------------------------------
   11. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
    :root {
        --hero-bg-height: 620px;
    }

    .hero {
        padding-bottom: 4rem;
    }

    .about-zone {
        margin-top: -4rem;
        padding-top: 7rem;
    }

    .notice {
        padding-bottom: 1.25rem;
    }

    .tax-credit {
        margin-top: -3rem;
    }

    .features {
        padding-bottom: calc(var(--section-padding-y) + 3rem);
    }

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

    .hero__cta .btn {
        width: 100%;
    }

    .footer-links--spaced {
        padding-top: 0;
    }
}

@media (max-width: 575.98px) {
    :root {
        --section-padding-y: 3.75rem;
        --content-gutter: 1.25rem;
    }

    .tax-credit__card-inner {
        padding: 2.5rem 1.5rem;
    }

    .hero__info-col {
        padding: 1.5rem 1.25rem;
    }
}

/* --------------------------------------------------------------------------
   12. Pagine interne (Responsabile, Trasparenza OdM)
   -------------------------------------------------------------------------- */
.page-inner {
    background-color: var(--color-white);
}

.page-top {
    position: relative;
}

.page-header {
    position: relative;
    z-index: 1;
    background-color: var(--color-cream);
    background-image: url('../images/hero-bg.jpg');
    background-position: center -140px;
    background-repeat: no-repeat;
    border-bottom: 1px solid rgba(10, 26, 47, 0.06);
    padding: 1.25rem 0;
}

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

.page-header__logo img {
    width: min(160px, 42vw);
}

.page-header__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-small);
    font-weight: 600;
    color: var(--color-navy);
    transition: color var(--transition);
}

.page-header__link:hover {
    color: var(--color-gold);
}

.page-main .section-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.page-hero {
    position: relative;
    z-index: 1;
    background: transparent;
    padding-bottom: 2.5rem;
}

.page-hero .section-title {
    margin-bottom: 0;
}

.page-intro {
    max-width: 52rem;
    margin: 1.5rem auto 0;
    text-align: center;
    font-size: var(--fs-body);
    font-weight: 500;
    line-height: 1.75;
    color: var(--color-text-body);
}

.page-content {
    padding-top: 0;
}

.profile-card {
    max-width: 52rem;
    margin: 0 auto;
    padding: 2.5rem;
    background-color: var(--color-cream);
    border-radius: var(--radius-card);
    box-shadow: 0 8px 32px rgba(10, 26, 47, 0.08);
}

.profile-card__header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(10, 26, 47, 0.1);
}

.profile-card__name {
    margin: 0 0 0.5rem;
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--color-navy);
}

.profile-card__role {
    margin: 0 0 1.5rem;
    font-size: var(--fs-body);
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.profile-card__cv {
    margin-top: 0.5rem;
}

.page-content .profile-card__cv.btn--primary,
.page-content .profile-card__cv.btn--primary:hover {
    color: var(--color-white);
}

.page-content .profile-card__cv.btn--primary .link-external__icon {
    color: var(--color-gold);
}

.page-content .profile-card__cv.btn--primary:hover .link-external__icon {
    color: var(--color-gold-hover);
}

.profile-card__body p {
    margin: 0 0 1.25rem;
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.85;
    color: var(--color-text-body);
}

.profile-card__body p:last-child {
    margin-bottom: 0;
}

.transparency-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
}

.transparency-list__item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(10, 26, 47, 0.1);
}

.transparency-list__item:first-child {
    padding-top: 0;
}

.transparency-list__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.transparency-list__label {
    flex-shrink: 0;
    width: 2rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1.4;
}

.transparency-list__title {
    margin: 0 0 0.75rem;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-navy);
}

.transparency-list__content p {
    margin: 0 0 0.75rem;
    font-size: var(--fs-body);
    font-weight: 400;
    line-height: 1.75;
    color: var(--color-text-body);
}

.transparency-list__content p:last-child {
    margin-bottom: 0;
}

.transparency-list__link,
.page-content .link-external {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    font-weight: 600;
    color: var(--color-navy);
    transition: color var(--transition);
}

.transparency-list__link:hover,
.page-content .link-external:hover {
    color: var(--color-gold);
}

.link-external__icon {
    flex-shrink: 0;
    font-size: 0.85em;
    color: var(--color-gold);
    transition: transform var(--transition), color var(--transition);
}

.page-content .link-external:hover .link-external__icon {
    transform: translate(2px, -2px);
    color: var(--color-gold-hover);
}

.link-external__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.transparency-list__docs {
    list-style: none;
    margin: 0;
    padding: 0;
}

.transparency-list__docs li {
    margin-bottom: 0.5rem;
}

.transparency-list__placeholder {
    font-style: italic;
    color: var(--color-text-muted);
}

@media (max-width: 575.98px) {
    .transparency-list__item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .profile-card {
        padding: 1.75rem 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .btn,
    .btn:hover,
    .btn:active,
    .feature-card,
    .feature-card:hover,
    .notice__box,
    .notice__box:hover,
    .tax-credit__card,
    .tax-credit__card:hover,
    .hero__logo img,
    .hero__logo:hover img,
    .footer-links a,
    .footer-links a:hover,
    .footer-brand__list a,
    .footer-brand__list a:hover,
    .footer-bottom-nav a,
    .hero__info-text a {
        transition: none;
        transform: none;
        box-shadow: none;
    }
}
