:root {
    --ud-blue: #0978ff;
    --ud-blue-dark: #005ee6;
    --ud-blue-soft: #e8f2ff;
    --ud-navy: #001d49;
    --ud-navy-2: #06142c;
    --ud-ink: #111827;
    --ud-muted: #667085;
    --ud-border: #d6dce8;
    --ud-surface: #f6f8fb;
    --ud-white: #ffffff;
    --ud-shadow: 0 22px 60px rgba(0, 29, 73, 0.14);
    --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --motion-fast: 180ms;
    --motion-medium: 620ms;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ud-ink);
    background:
        linear-gradient(90deg, rgba(9, 120, 255, 0.04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(0, 29, 73, 0.035) 1px, transparent 1px),
        var(--ud-white);
    background-size: 44px 44px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
    overflow-x: hidden;
}

a {
    color: inherit;
}

a,
button,
.btn,
.form-control,
.form-select {
    transition:
        color var(--motion-fast) ease,
        background-color var(--motion-fast) ease,
        border-color var(--motion-fast) ease,
        box-shadow var(--motion-fast) ease,
        transform var(--motion-fast) ease;
}

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

:where(.js) .reveal {
    opacity: 0;
    transform: translateY(2rem);
    transition:
        opacity var(--motion-medium) ease,
        transform var(--motion-medium) var(--motion-ease);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

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

.site-nav {
    min-height: 88px;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(214, 220, 232, 0.86);
    backdrop-filter: blur(16px);
    animation: navDrop 560ms var(--motion-ease) both;
}

.brand-logo {
    width: min(250px, 56vw);
    height: auto;
    display: block;
}

.navbar-nav .nav-link {
    color: var(--ud-ink);
    font-weight: 600;
    font-size: 0.96rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--ud-blue);
}

.navbar-toggler {
    border-color: var(--ud-border);
    border-radius: 8px;
}

.btn {
    border-radius: 8px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    white-space: normal;
}

.btn-primary-blue {
    color: var(--ud-white);
    background: var(--ud-blue);
    border-color: var(--ud-blue);
    box-shadow: 0 12px 24px rgba(9, 120, 255, 0.22);
}

.btn-primary-blue:hover,
.btn-primary-blue:focus {
    color: var(--ud-white);
    background: var(--ud-blue-dark);
    border-color: var(--ud-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(9, 120, 255, 0.28);
}

.btn-outline-navy {
    color: var(--ud-navy);
    background: var(--ud-white);
    border: 1px solid var(--ud-navy);
}

.btn-outline-navy:hover,
.btn-outline-navy:focus {
    color: var(--ud-white);
    background: var(--ud-navy);
    border-color: var(--ud-navy);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 29, 73, 0.16);
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 7.5rem) 0 3rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(232, 242, 255, 0.86)),
        var(--ud-white);
}

.hero-mark {
    position: absolute;
    right: -8vw;
    top: 5rem;
    width: min(700px, 62vw);
    opacity: 0.1;
    pointer-events: none;
    user-select: none;
    animation: watermarkDrift 11s ease-in-out infinite alternate;
}

.eyebrow {
    margin: 0 0 1rem;
    color: var(--ud-blue);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-section h1 {
    max-width: 840px;
    margin: 0;
    color: var(--ud-navy);
    font-size: clamp(3rem, 7vw, 6.7rem);
    line-height: 0.95;
    font-weight: 900;
}

.hero-section h1 span {
    display: block;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .hero-lead,
.hero-copy .hero-actions,
.hero-visual,
.capability-strip {
    animation: fadeLift 760ms var(--motion-ease) both;
}

.hero-copy h1 {
    animation-delay: 110ms;
}

.hero-copy .hero-lead {
    animation-delay: 220ms;
}

.hero-copy .hero-actions {
    animation-delay: 330ms;
}

.hero-visual {
    animation-delay: 280ms;
}

.capability-strip {
    animation-delay: 460ms;
}

.hero-lead {
    max-width: 690px;
    margin: 1.6rem 0 0;
    color: #28364b;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.growth-console {
    position: relative;
    z-index: 1;
    border: 2px solid var(--ud-navy);
    border-radius: 8px;
    background: var(--ud-navy-2);
    color: var(--ud-white);
    box-shadow: var(--ud-shadow);
    padding: clamp(1.25rem, 3vw, 1.75rem);
    overflow: hidden;
}

.growth-console::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.1) 45%, transparent 70%);
    transform: translateX(-120%);
    animation: consoleSweep 3.8s ease-in-out 1.2s infinite;
    pointer-events: none;
}

.console-top {
    display: flex;
    gap: 0.45rem;
    margin-bottom: 1.4rem;
}

.console-top span {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 50%;
    background: var(--ud-blue);
}

.console-top span:nth-child(2) {
    background: #66b4ff;
}

.console-top span:nth-child(3) {
    background: var(--ud-white);
}

.console-title {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: baseline;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.console-title strong {
    font-size: 1.25rem;
}

.console-title span,
.metric-label {
    color: #abc9ef;
    font-size: 0.88rem;
}

.metric-row {
    padding: 1.05rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-row div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.55rem;
}

.metric-row strong {
    color: var(--ud-white);
    font-size: 1.35rem;
}

.metric-bar {
    height: 0.7rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.metric-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--ud-blue), #7cc5ff);
    transform: scaleX(0);
    transform-origin: left center;
    animation: barGrow 980ms var(--motion-ease) forwards;
}

.metric-row:nth-of-type(3) .metric-bar span {
    animation-delay: 190ms;
}

.metric-row:nth-of-type(4) .metric-bar span {
    animation-delay: 340ms;
}

.metric-row:nth-of-type(5) .metric-bar span {
    animation-delay: 490ms;
}

.console-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
    margin-top: 1.1rem;
    color: #dcecff;
    font-weight: 700;
}

.console-footer i {
    color: var(--ud-blue);
}

.capability-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    overflow: hidden;
    margin-top: clamp(3rem, 6vw, 5rem);
    border: 1px solid var(--ud-border);
    border-radius: 8px;
    background: var(--ud-border);
    box-shadow: 0 16px 40px rgba(0, 29, 73, 0.08);
}

.capability-strip span {
    padding: 1.1rem 0.85rem;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ud-navy);
    font-weight: 800;
    text-align: center;
    transition:
        color var(--motion-fast) ease,
        background-color var(--motion-fast) ease,
        transform var(--motion-fast) ease;
}

.capability-strip span:hover {
    color: var(--ud-white);
    background: var(--ud-blue);
    transform: translateY(-1px);
}

.section-block {
    padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.2rem;
}

.section-heading h2 {
    margin: 0;
    color: var(--ud-navy);
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 900;
}

.section-heading h2 span {
    display: inline-block;
    padding: 0.1rem 0.55rem 0.22rem;
    border-radius: 8px;
    background: var(--ud-blue-soft);
    box-shadow: inset 0 -0.45em 0 rgba(9, 120, 255, 0.22);
}

.section-heading p {
    max-width: 650px;
    margin: 0;
    color: var(--ud-muted);
    font-size: 1.04rem;
    line-height: 1.6;
}

.service-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    min-height: 280px;
    height: 100%;
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 2px solid var(--ud-navy);
    border-radius: 8px;
    box-shadow: 0 8px 0 var(--ud-navy);
    transition:
        box-shadow var(--motion-fast) ease,
        transform var(--motion-fast) ease,
        border-color var(--motion-fast) ease;
}

.service-card:hover,
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 13px 0 var(--ud-navy), 0 18px 38px rgba(0, 29, 73, 0.13);
}

.service-light {
    background: var(--ud-white);
}

.service-blue {
    color: var(--ud-white);
    background: linear-gradient(135deg, var(--ud-blue), var(--ud-blue-dark));
}

.service-navy {
    color: var(--ud-white);
    background: var(--ud-navy-2);
}

.service-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.service-label {
    width: fit-content;
    margin: 0 0 0.8rem;
    padding: 0.2rem 0.48rem;
    border-radius: 6px;
    background: var(--ud-blue-soft);
    color: var(--ud-navy);
    font-weight: 800;
    line-height: 1.15;
}

.service-blue .service-label,
.service-navy .service-label {
    background: var(--ud-white);
    color: var(--ud-navy);
}

.service-card h3 {
    max-width: 18rem;
    margin: 0 0 0.9rem;
    color: inherit;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    font-weight: 900;
    line-height: 1.08;
}

.service-card p:not(.service-label) {
    color: inherit;
    opacity: 0.82;
    line-height: 1.55;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: auto;
    color: inherit;
    font-weight: 800;
    text-decoration: none;
}

.service-link span {
    display: inline-grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border-radius: 50%;
    color: var(--ud-white);
    background: var(--ud-navy);
    transition:
        transform var(--motion-fast) ease,
        background-color var(--motion-fast) ease,
        color var(--motion-fast) ease;
}

.service-link:hover span,
.case-item a:hover i,
.contact-email:hover i {
    transform: translate(2px, -2px);
}

.service-blue .service-link span,
.service-navy .service-link span {
    color: var(--ud-navy);
    background: var(--ud-white);
}

.service-icon {
    display: grid;
    width: clamp(4.2rem, 10vw, 6.5rem);
    height: clamp(4.2rem, 10vw, 6.5rem);
    place-items: center;
    align-self: center;
    border: 1px solid currentColor;
    border-radius: 8px;
    color: var(--ud-blue);
    background: rgba(255, 255, 255, 0.86);
    font-size: clamp(2rem, 5vw, 3.4rem);
}

.service-blue .service-icon,
.service-navy .service-icon {
    color: var(--ud-white);
    background: rgba(255, 255, 255, 0.12);
}

.case-panel,
.testimonial-panel {
    overflow: hidden;
    border-radius: 8px;
    background: var(--ud-navy-2);
    color: var(--ud-white);
    box-shadow: var(--ud-shadow);
    transition:
        box-shadow var(--motion-fast) ease,
        transform var(--motion-fast) ease;
}

.case-panel:hover,
.testimonial-panel:hover,
.contact-panel:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 70px rgba(0, 29, 73, 0.18);
}

.case-item {
    min-height: 260px;
    padding: clamp(1.5rem, 3vw, 2.2rem);
    transition: background-color var(--motion-fast) ease;
}

.case-item:hover {
    background: rgba(9, 120, 255, 0.08);
}

.case-border {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.case-item h3 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
    font-weight: 900;
}

.case-item p {
    color: #d5e6ff;
    line-height: 1.6;
}

.case-item a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #69b3ff;
    font-weight: 800;
    text-decoration: none;
}

.process-section {
    background: rgba(232, 242, 255, 0.48);
}

.ud-accordion {
    display: grid;
    gap: 1rem;
}

.ud-accordion .accordion-item {
    overflow: hidden;
    border: 2px solid var(--ud-navy);
    border-radius: 8px;
    box-shadow: 0 7px 0 var(--ud-navy);
    transition:
        box-shadow var(--motion-fast) ease,
        transform var(--motion-fast) ease;
}

.ud-accordion .accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 0 var(--ud-navy), 0 16px 30px rgba(0, 29, 73, 0.12);
}

.ud-accordion .accordion-button {
    gap: 1.2rem;
    padding: 1.25rem clamp(1rem, 3vw, 2rem);
    color: var(--ud-navy);
    background: var(--ud-white);
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    font-weight: 900;
    box-shadow: none;
}

.ud-accordion .accordion-button:not(.collapsed) {
    background: var(--ud-blue-soft);
}

.ud-accordion .accordion-button span {
    color: var(--ud-blue);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.ud-accordion .accordion-body {
    padding: 0 2rem 1.6rem 5.7rem;
    color: #354052;
    background: var(--ud-blue-soft);
    font-size: 1.05rem;
    line-height: 1.7;
}

.team-card {
    height: 100%;
    padding: 1.5rem;
    border: 2px solid var(--ud-navy);
    border-radius: 8px;
    background: var(--ud-white);
    box-shadow: 0 7px 0 var(--ud-navy);
    transition:
        box-shadow var(--motion-fast) ease,
        transform var(--motion-fast) ease;
}

.team-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.1rem;
}

.team-avatar {
    display: grid;
    width: 4.5rem;
    height: 4.5rem;
    place-items: center;
    border-radius: 8px;
    color: var(--ud-white);
    background: linear-gradient(135deg, var(--ud-blue), var(--ud-navy));
    font-weight: 900;
}

.team-top i {
    color: var(--ud-blue);
    font-size: 1.4rem;
}

.team-card h3 {
    margin: 0;
    color: var(--ud-navy);
    font-weight: 900;
}

.team-role {
    color: var(--ud-blue);
    font-weight: 800;
}

.team-card p:last-child {
    color: var(--ud-muted);
    line-height: 1.6;
}

.testimonial-panel {
    padding: clamp(1.5rem, 4vw, 2.6rem);
}

.testimonial-panel blockquote {
    min-height: 10rem;
    margin: 0;
    padding: 1.5rem;
    border: 1px solid rgba(9, 120, 255, 0.5);
    border-radius: 8px;
    color: #eef6ff;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.6;
}

.testimonial-panel p {
    margin: 1rem 0 0;
    color: #69b3ff;
    font-weight: 900;
}

.contact-section {
    padding-top: 2rem;
}

.contact-panel {
    padding: clamp(1.5rem, 5vw, 3rem);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(232, 242, 255, 0.95), rgba(255, 255, 255, 0.96)),
        var(--ud-white);
    box-shadow: var(--ud-shadow);
}

.contact-panel h2 {
    color: var(--ud-navy);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 1;
}

.contact-panel p {
    color: #405069;
    line-height: 1.65;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--ud-navy);
    font-weight: 900;
    text-decoration: none;
}

.contact-email i {
    transition: transform var(--motion-fast) ease;
}

.proposal-form {
    padding: clamp(1rem, 3vw, 1.6rem);
    border: 2px solid var(--ud-navy);
    border-radius: 8px;
    background: var(--ud-white);
    transition:
        box-shadow var(--motion-fast) ease,
        transform var(--motion-fast) ease;
}

.proposal-form:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 29, 73, 0.1);
}

.form-label {
    color: var(--ud-navy);
    font-weight: 800;
}

.form-control,
.form-select {
    min-height: 3.25rem;
    border-color: var(--ud-border);
    border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--ud-blue);
    box-shadow: 0 0 0 0.22rem rgba(9, 120, 255, 0.14);
}

.site-footer {
    padding: 2rem 0;
    background: var(--ud-navy-2);
    color: var(--ud-white);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.footer-logo {
    width: min(220px, 55vw);
    height: auto;
    padding: 0.45rem;
    border-radius: 8px;
    background: var(--ud-white);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    color: #dcecff;
    font-weight: 700;
    text-decoration: none;
}

.footer-inner p {
    margin: 0;
    color: #abc9ef;
}

.soon-wrap {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 1.5rem;
    background:
        linear-gradient(90deg, rgba(9, 120, 255, 0.045) 1px, transparent 1px),
        linear-gradient(0deg, rgba(0, 29, 73, 0.04) 1px, transparent 1px),
        linear-gradient(135deg, rgba(232, 242, 255, 0.94), rgba(255, 255, 255, 0.97)),
        var(--ud-white);
    background-size: 44px 44px, 44px 44px, 100% 100%;
    animation: subtleGrid 16s linear infinite;
}

.soon-card {
    position: relative;
    overflow: hidden;
    width: min(880px, 100%);
    padding: clamp(1.5rem, 6vw, 4rem);
    border: 2px solid var(--ud-navy);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 9px 0 var(--ud-navy), var(--ud-shadow);
    text-align: center;
    animation: soonEntrance 760ms var(--motion-ease) both;
}

.soon-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.42rem;
    background: linear-gradient(90deg, var(--ud-blue), #7cc5ff, var(--ud-navy));
    transform: scaleX(0);
    transform-origin: left center;
    animation: barGrow 900ms var(--motion-ease) 220ms forwards;
}

.soon-logo {
    width: min(460px, 90%);
    height: auto;
    margin-bottom: 2rem;
    animation: fadeLift 700ms var(--motion-ease) 120ms both;
}

.soon-card h1 {
    margin: 0;
    color: var(--ud-navy);
    font-size: clamp(2.4rem, 7vw, 5.2rem);
    font-weight: 900;
    line-height: 0.98;
    animation: fadeLift 760ms var(--motion-ease) 220ms both;
}

.soon-card > p:not(.eyebrow) {
    max-width: 620px;
    margin: 1.4rem auto 0;
    color: #405069;
    font-size: 1.15rem;
    line-height: 1.6;
    animation: fadeLift 760ms var(--motion-ease) 320ms both;
}

.soon-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    animation: fadeLift 760ms var(--motion-ease) 420ms both;
}

.soon-status {
    margin-top: 2rem;
    color: var(--ud-navy);
    font-weight: 800;
    animation: fadeLift 760ms var(--motion-ease) 520ms both;
}

.soon-status span {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: var(--ud-blue-soft);
}

.soon-card .eyebrow {
    animation: fadeLift 700ms var(--motion-ease) 180ms both;
}

@keyframes navDrop {
    from {
        opacity: 0;
        transform: translateY(-0.8rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLift {
    from {
        opacity: 0;
        transform: translateY(1.4rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes soonEntrance {
    from {
        opacity: 0;
        transform: translateY(1.4rem) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes watermarkDrift {
    from {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    to {
        transform: translate3d(-1.1rem, 0.8rem, 0) rotate(-1.5deg);
    }
}

@keyframes consoleSweep {
    0%,
    42% {
        transform: translateX(-120%);
    }

    78%,
    100% {
        transform: translateX(120%);
    }
}

@keyframes barGrow {
    to {
        transform: scaleX(1);
    }
}

@keyframes subtleGrid {
    from {
        background-position: 0 0, 0 0, 0 0;
    }

    to {
        background-position: 44px 0, 0 44px, 0 0;
    }
}

@media (max-width: 991.98px) {
    .site-nav {
        min-height: 76px;
    }

    .navbar-collapse {
        padding: 1rem 0;
    }

    .hero-mark {
        right: -20vw;
        width: 85vw;
    }

    .growth-console {
        margin-top: 1rem;
    }

    .capability-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-heading {
        display: block;
    }

    .section-heading p {
        margin-top: 1rem;
    }

    .case-border {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }
}

@media (max-width: 575.98px) {
    .brand-logo {
        width: 205px;
    }

    .hero-section {
        padding-top: 3.25rem;
    }

    .hero-section .container {
        padding-right: 2rem;
    }

    .hero-section .row {
        margin-right: 0;
        margin-left: 0;
    }

    .hero-section .row > [class*="col-"] {
        padding-right: 0;
        padding-left: 0;
    }

    .hero-lead,
    .hero-actions,
    .growth-console,
    .capability-strip {
        width: 22rem !important;
        max-width: calc(100% - 1rem) !important;
    }

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

    .growth-console {
        padding: 1.1rem;
    }

    .console-title,
    .metric-row div:first-child {
        display: block;
    }

    .console-title span,
    .metric-row strong {
        display: block;
        margin-top: 0.25rem;
    }

    .capability-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .service-icon {
        justify-self: start;
    }

    .ud-accordion .accordion-button {
        align-items: flex-start;
    }

    .ud-accordion .accordion-body {
        padding: 0 1.25rem 1.4rem;
    }

    .footer-inner,
    .footer-links {
        display: grid;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    :where(.js) .reveal {
        opacity: 1;
        transform: none;
    }

    .metric-bar span {
        transform: none;
    }
}
