:root {
    --navy: #0b1d3a;
    --navy-deep: #06142b;
    --navy-soft: #132a4d;
    --green: #00a86b;
    --green-dark: #007e51;
    --charcoal: #2f3742;
    --muted: #5d6673;
    --light: #f3f5f7;
    --line: #e3e7ec;
    --white: #ffffff;
    --heading: "Plus Jakarta Sans", "Aptos", Arial, sans-serif;
    --body: "Inter", "Aptos", Arial, sans-serif;
    --radius-card: 12px;
    --radius-button: 8px;
    --shadow-soft: 0 18px 50px rgba(11, 29, 58, 0.08);
    --shadow-card: 0 10px 28px rgba(11, 29, 58, 0.06);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    color: var(--charcoal);
    background: var(--white);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid rgba(0, 168, 107, 0.42);
    outline-offset: 4px;
}

.container {
    width: min(1160px, calc(100% - 48px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100;
    padding: 10px 14px;
    transform: translateY(-150%);
    border-radius: var(--radius-button);
    color: var(--white);
    background: var(--navy);
    font-weight: 600;
    text-decoration: none;
}

.skip-link:focus {
    transform: translateY(0);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--navy);
    font-family: var(--heading);
    line-height: 1.13;
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(2.8rem, 6vw, 5.25rem);
    font-weight: 700;
    letter-spacing: -0.055em;
}

h1 span {
    position: relative;
}

h1 span::after {
    position: absolute;
    right: 0;
    bottom: -14px;
    width: 38%;
    height: 5px;
    border-radius: 999px;
    background: var(--green);
    content: "";
}

h2 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.04em;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--green-dark);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 2px;
    background: currentColor;
    content: "";
}

.eyebrow-light {
    color: #4be0a8;
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius-button);
    font-family: var(--heading);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease,
        box-shadow 180ms ease, transform 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--white);
    background: var(--navy);
    box-shadow: 0 10px 24px rgba(11, 29, 58, 0.18);
}

.btn-primary:hover {
    background: var(--navy-soft);
    box-shadow: 0 12px 28px rgba(11, 29, 58, 0.24);
}

.btn-secondary {
    border-color: var(--navy);
    color: var(--navy);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--light);
}

.btn-accent {
    color: var(--navy);
    background: #25d697;
}

.btn-accent:hover {
    background: #5be5b3;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(227, 231, 236, 0.8);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    flex-shrink: 0;
}

.brand-logo-frame,
.footer-logo-frame {
    position: relative;
    display: block;
    overflow: hidden;
}

.brand-logo-frame {
    width: 230px;
    height: 34px;
    background: var(--white);
}

.brand-logo {
    position: absolute;
    top: -193%;
    left: -15%;
    width: 127%;
    max-width: none;
    height: auto;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.primary-nav > a:not(.btn) {
    position: relative;
    color: var(--charcoal);
    font-family: var(--heading);
    font-size: 0.86rem;
    font-weight: 500;
    text-decoration: none;
}

.primary-nav > a:not(.btn)::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    background: var(--green);
    content: "";
    transition: transform 180ms ease;
}

.primary-nav > a:not(.btn):hover::after,
.primary-nav > a:not(.btn):focus-visible::after {
    transform: scaleX(1);
}

.nav-cta {
    min-height: 42px;
    padding: 10px 17px;
}

.menu-toggle {
    display: none;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-button);
    color: var(--navy);
    background: var(--white);
    font: 600 0.85rem var(--heading);
    cursor: pointer;
}

.menu-toggle svg,
.hero-note svg,
.service-icon svg,
.outcome-icon svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 88px;
    background:
        radial-gradient(circle at 90% 20%, rgba(0, 168, 107, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
}

.hero::before {
    position: absolute;
    top: 0;
    right: -120px;
    width: 490px;
    height: 490px;
    border: 1px solid rgba(11, 29, 58, 0.05);
    border-radius: 50%;
    content: "";
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
    align-items: center;
    gap: 68px;
}

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

.hero-lead {
    max-width: 620px;
    margin-bottom: 30px;
    color: var(--charcoal);
    font-size: clamp(1.05rem, 1.8vw, 1.22rem);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.hero-note svg {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--green-dark);
    stroke-width: 2.2;
}

.executive-view {
    position: relative;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    color: var(--white);
    background: var(--navy);
    box-shadow: 0 30px 70px rgba(11, 29, 58, 0.22);
}

.executive-view::after {
    position: absolute;
    top: -54px;
    right: -48px;
    width: 190px;
    height: 190px;
    transform: rotate(20deg);
    border: 1px solid rgba(0, 168, 107, 0.26);
    content: "";
}

.view-topline {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.view-kicker {
    display: block;
    margin-bottom: 7px;
    color: #61e3b4;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.view-topline h2 {
    max-width: 340px;
    margin: 0;
    color: var(--white);
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    letter-spacing: -0.035em;
}

.status-pill {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: #dbe7f3;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.68rem;
}

.status-pill i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #36e09e;
    box-shadow: 0 0 0 4px rgba(54, 224, 158, 0.12);
}

.decision-path {
    position: relative;
    height: 190px;
    margin: 30px 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.decision-path > span {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.055);
}

.decision-path > span:nth-child(1) { left: 0; }
.decision-path > span:nth-child(2) { left: 25%; }
.decision-path > span:nth-child(3) { left: 50%; }
.decision-path > span:nth-child(4) { left: 75%; }
.decision-path > span:nth-child(5) { right: 0; }

.decision-path svg {
    position: absolute;
    inset: 25px 0 0;
    width: 100%;
    height: 145px;
    overflow: visible;
}

.chart-line {
    fill: none;
    stroke: #2fe19e;
    stroke-linecap: round;
    stroke-width: 4;
    vector-effect: non-scaling-stroke;
}

.chart-area {
    fill: var(--green);
    opacity: 0.12;
    stroke: none;
}

.view-outcomes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.view-outcomes article {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    padding: 11px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.05);
}

.outcome-icon {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 7px;
    color: #61e3b4;
    background: rgba(0, 168, 107, 0.12);
}

.outcome-icon svg {
    width: 17px;
    height: 17px;
}

.view-outcomes strong,
.view-outcomes span {
    display: block;
    white-space: nowrap;
}

.view-outcomes strong {
    color: var(--white);
    font: 600 0.75rem var(--heading);
}

.view-outcomes div > span {
    color: #aebbc9;
    font-size: 0.62rem;
}

.capability-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.capability-strip .container {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.capability-strip span {
    color: var(--navy);
    font-family: var(--heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.025em;
}

.capability-strip i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
}

.section {
    padding: 112px 0;
}

.split-intro {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: end;
    gap: 80px;
}

.section-heading h2 {
    max-width: 760px;
}

.section-heading > p:last-child {
    max-width: 660px;
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.section-heading.centered {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading.centered .eyebrow {
    justify-content: center;
}

.section-heading.centered > p:last-child {
    margin-inline: auto;
}

.intro-copy p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 1.1rem;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.outcome-card {
    position: relative;
    min-height: 250px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.outcome-card::after {
    position: absolute;
    right: -40px;
    bottom: -54px;
    width: 130px;
    height: 130px;
    transform: rotate(22deg);
    border: 1px solid rgba(0, 168, 107, 0.16);
    content: "";
}

.card-number {
    display: block;
    margin-bottom: 46px;
    color: var(--green-dark);
    font: 600 0.75rem var(--heading);
    letter-spacing: 0.08em;
}

.outcome-card h3 {
    margin-bottom: 10px;
}

.outcome-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.services {
    border-top: 1px solid var(--line);
    background: var(--light);
}

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

.service-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: var(--white);
    box-shadow: 0 4px 16px rgba(11, 29, 58, 0.03);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 168, 107, 0.32);
    box-shadow: var(--shadow-card);
}

.service-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 10px;
    color: var(--navy);
    background: rgba(0, 168, 107, 0.1);
}

.service-icon svg {
    width: 25px;
    height: 25px;
}

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

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

.methodology {
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.methodology::after {
    position: absolute;
    top: -220px;
    right: -190px;
    width: 520px;
    height: 520px;
    transform: rotate(22deg);
    border: 1px solid rgba(0, 168, 107, 0.17);
    content: "";
}

.methodology-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 100px;
}

.methodology-copy {
    position: sticky;
    top: 124px;
}

.methodology-copy h2 {
    color: var(--white);
}

.methodology-copy > p:not(.eyebrow) {
    max-width: 500px;
    color: #bec9d6;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: #54dda9;
    font-family: var(--heading);
    font-weight: 600;
    text-underline-offset: 5px;
}

.text-link span {
    transition: transform 180ms ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.steps {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.step:first-child {
    padding-top: 0;
}

.step > span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(84, 221, 169, 0.45);
    border-radius: 50%;
    color: #54dda9;
    font: 600 0.72rem var(--heading);
}

.step h3 {
    margin-bottom: 7px;
    color: var(--white);
}

.step p {
    margin: 0;
    color: #aebbc9;
    font-size: 0.94rem;
}

.fit-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 100px;
}

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

.fit-list li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.fit-list li:first-child {
    padding-top: 4px;
}

.fit-list span {
    color: var(--green-dark);
    font: 600 0.72rem var(--heading);
    letter-spacing: 0.08em;
}

.fit-list p {
    margin: 0;
    color: var(--charcoal);
    font-size: 1.02rem;
}

.contact {
    padding: 0 0 112px;
}

.contact-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 72px;
    padding: 58px;
    overflow: hidden;
    border-radius: 18px;
    color: var(--white);
    background: var(--navy);
    box-shadow: var(--shadow-soft);
}

.contact-panel::before {
    position: absolute;
    top: -90px;
    right: -100px;
    width: 300px;
    height: 300px;
    transform: rotate(25deg);
    border: 1px solid rgba(0, 168, 107, 0.25);
    content: "";
}

.contact-copy,
.contact-action {
    position: relative;
    z-index: 1;
}

.contact-copy h2 {
    max-width: 650px;
    color: var(--white);
}

.contact-copy > p:last-child {
    max-width: 620px;
    margin: 0;
    color: #c4cfda;
}

.contact-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 42px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-action > p {
    margin-bottom: 5px;
    color: #9fabb9;
    font-size: 0.78rem;
}

.email-link {
    margin-bottom: 24px;
    color: var(--white);
    font-family: var(--heading);
    font-size: clamp(1rem, 1.8vw, 1.24rem);
    font-weight: 600;
    text-decoration-color: rgba(84, 221, 169, 0.65);
    text-underline-offset: 5px;
}

.contact-action .btn {
    width: 100%;
}

.site-footer {
    color: #aebbc9;
    background: #021639;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    padding: 56px 0 36px;
}

.footer-logo-frame {
    width: 300px;
    height: 58px;
    margin: 0 0 28px;
    background: #021639;
}

.footer-logo {
    position: absolute;
    top: -145%;
    left: -6.25%;
    width: 112.5%;
    max-width: none;
    height: auto;
}

.footer-main p {
    max-width: 530px;
    margin: 0;
    font-size: 0.88rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    font-size: 0.82rem;
}

.footer-contact a {
    color: var(--white);
    text-underline-offset: 4px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.73rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: #d5dde6;
    text-decoration: none;
}

.error-layout {
    min-height: calc(100vh - 184px);
    display: flex;
    max-width: 760px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.error-brand {
    margin-bottom: 72px;
}

.error-layout h1 {
    margin-bottom: 20px;
}
/* El contenido permanece visible si JavaScript falla. */
.has-js.reveal-ready .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 560ms ease, transform 560ms ease;
}

.has-js.reveal-ready .reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1040px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 54px;
    }

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

    .executive-view {
        max-width: 760px;
    }

    .methodology-grid,
    .fit-grid {
        gap: 64px;
    }

    .contact-panel {
        gap: 48px;
        padding: 48px;
    }
}

@media (max-width: 860px) {
    .container {
        width: min(100% - 36px, 720px);
    }

    .has-js .menu-toggle {
        display: inline-flex;
    }

    .primary-nav {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 18px;
    }

    .has-js .primary-nav {
        position: fixed;
        top: 79px;
        right: 0;
        left: 0;
        display: flex;
        max-height: calc(100vh - 79px);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 18px;
        overflow-y: auto;
        transform: translateY(-12px);
        border-bottom: 1px solid var(--line);
        background: var(--white);
        box-shadow: 0 18px 28px rgba(11, 29, 58, 0.1);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .has-js .primary-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .has-js .primary-nav > a:not(.btn) {
        padding: 14px 8px;
        border-bottom: 1px solid var(--line);
        font-size: 1rem;
    }

    .has-js .primary-nav > a:not(.btn)::after {
        display: none;
    }

    .has-js .nav-cta {
        width: 100%;
        margin-top: 16px;
    }

    .split-intro,
    .methodology-grid,
    .fit-grid,
    .contact-panel {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .split-intro {
        align-items: start;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .outcome-card {
        min-height: auto;
    }

    .card-number {
        margin-bottom: 30px;
    }

    .methodology-copy {
        position: static;
    }

    .contact-action {
        padding: 32px 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        border-left: 0;
    }
}

@media (max-width: 680px) {
    h1 {
        font-size: clamp(2.75rem, 14vw, 4.25rem);
    }

    h2 {
        font-size: clamp(1.9rem, 9vw, 2.65rem);
    }

    .brand-logo-frame {
        width: 190px;
        height: 28px;
    }

    .footer-logo-frame {
        width: 260px;
        height: 50px;
    }

    .header-inner {
        min-height: 70px;
    }

    .has-js .primary-nav {
        top: 71px;
        max-height: calc(100vh - 71px);
    }

    .hero {
        padding: 66px 0 68px;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .executive-view {
        padding: 22px;
        border-radius: 14px;
    }

    .view-topline {
        display: block;
    }

    .status-pill {
        margin-top: 14px;
    }

    .decision-path {
        height: 150px;
        margin-top: 18px;
    }

    .decision-path svg {
        height: 112px;
    }

    .view-outcomes {
        grid-template-columns: 1fr;
    }

    .capability-strip .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 18px;
        padding: 18px 0;
    }

    .capability-strip i {
        display: none;
    }

    .section {
        padding: 82px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px;
    }

    .methodology-grid,
    .fit-grid {
        gap: 44px;
    }

    .step {
        grid-template-columns: 50px 1fr;
        gap: 16px;
    }

    .step > span {
        width: 42px;
        height: 42px;
    }

    .contact {
        padding: 0 0 82px;
    }

    .contact-panel {
        width: calc(100% - 24px);
        padding: 36px 24px;
        border-radius: 14px;
    }

    .email-link {
        overflow-wrap: anywhere;
    }

    .footer-main,
    .footer-bottom {
        grid-template-columns: 1fr;
    }

    .footer-main {
        display: grid;
        gap: 28px;
    }

    .footer-contact {
        align-items: flex-start;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .has-js.reveal-ready .reveal {
        opacity: 1;
        transform: none;
    }
}
