body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    overflow-x: hidden;
}

.site-footer-light {
    background:
        radial-gradient(circle at 88% 78%, rgba(45, 212, 191, 0.42), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #ffffff 58%, #f0fdfa 100%);
}

.footer-link-heading {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #020617;
    font-size: 1.1rem;
    font-weight: 800;
}

.footer-disclosure {
    min-width: 0;
}

.footer-disclosure summary {
    min-height: 44px;
    cursor: pointer;
    list-style: none;
}

.footer-disclosure summary::-webkit-details-marker {
    display: none;
}

.footer-disclosure:not([open]) .footer-link-heading::after {
    transform: rotate(-45deg) translateY(2px);
}

.footer-disclosure summary:focus-visible {
    outline: 3px solid rgba(20, 184, 166, 0.55);
    outline-offset: 4px;
}

.footer-link-heading::after {
    content: "";
    height: 0.55rem;
    width: 0.55rem;
    border-bottom: 3px solid #14b8a6;
    border-right: 3px solid #14b8a6;
    transform: rotate(45deg) translateY(-2px);
}

.footer-link {
    color: inherit;
    text-decoration: none;
    transition: color 160ms ease, transform 160ms ease;
}

.footer-link:hover,
.footer-link:focus-visible {
    color: #0f766e;
    outline: none;
}

.site-footer-light .social-link {
    border-color: rgba(15, 23, 42, 0.18);
    color: #020617;
    background: rgba(255, 255, 255, 0.72);
}

.site-footer-light .social-link:hover,
.site-footer-light .social-link:focus-visible {
    border-color: #0f766e;
    background: #0f766e;
    color: #ffffff;
}

#services,
#portfolio,
#about,
#insights,
#reviews,
#contact,
#book-strategy-call {
    scroll-margin-top: 6rem;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.career-submit-spinner {
    display: none;
    width: 1rem;
    height: 1rem;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 999px;
    animation: career-submit-spin 0.7s linear infinite;
}

.career-submit-spinner.is-visible {
    display: inline-block;
}

@keyframes career-submit-spin {
    to { transform: rotate(360deg); }
}

.tab-button {
    position: relative;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.video-unavailable {
    opacity: 0;
}

.hero-video-section {
    isolation: isolate;
}

.hero-process-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    background:
        radial-gradient(circle at 12% 0%, rgba(20, 184, 166, 0.22), transparent 30%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.52));
    padding: 1.25rem;
    box-shadow: 0 24px 80px rgba(2, 6, 23, 0.24);
    backdrop-filter: blur(18px);
}

.hero-process-grid {
    position: relative;
    display: grid;
    gap: 0.85rem;
    margin-top: 1.1rem;
}

.hero-process-grid::before {
    display: none;
}

.hero-process-card {
    position: relative;
    min-height: 128px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.075);
    padding: 1rem 1rem 1rem 4.3rem;
    color: #ffffff;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.hero-process-card:hover {
    transform: translateY(-2px);
    border-color: rgba(94, 234, 212, 0.38);
    background: rgba(255, 255, 255, 0.12);
}

.hero-process-number {
    display: block;
    color: #99f6e4;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.hero-process-icon {
    position: absolute;
    left: 1rem;
    top: 1rem;
    display: inline-flex;
    height: 2.75rem;
    width: 2.75rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(20, 184, 166, 0.18);
    color: #99f6e4;
    box-shadow: inset 0 0 0 1px rgba(153, 246, 228, 0.2);
}

.hero-process-icon svg {
    height: 1.25rem;
    width: 1.25rem;
}

.hero-process-card h3 {
    margin-top: 0.45rem;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1.1;
}

.hero-process-card p {
    margin-top: 0.55rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    line-height: 1.55;
    text-wrap: pretty;
}

.tick-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.tick-content li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.tick-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: #0d9488;
}

.social-link {
    display: inline-flex;
    min-width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid #334155;
    color: #cbd5e1;
    font-size: 0.75rem;
    font-weight: 800;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
    background: #0f766e;
    border-color: #0f766e;
    color: #ffffff;
    outline: none;
}

.brand-marquee {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    contain: paint;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.brand-marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 3rem;
    animation: brand-marquee 28s linear infinite;
}

.brand-marquee:hover .brand-marquee-track {
    animation-play-state: paused;
}

.service-lane-card {
    isolation: isolate;
}

@keyframes brand-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .brand-marquee-track {
        animation: none;
        flex-wrap: wrap;
        width: auto;
    }
}

.hero-insight-card {
    position: absolute;
    z-index: 20;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(10px);
    font-variant-numeric: tabular-nums;
    pointer-events: none;
}

.featured-insights-section {
    background:
        linear-gradient(90deg, #ffffff 0%, #ffffff 72%, rgba(20, 184, 166, 0.18) 72%, rgba(45, 212, 191, 0.72) 100%);
}

.featured-insights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.insight-card {
    position: relative;
    display: block;
    min-height: 280px;
    overflow: hidden;
    border-radius: 8px;
    background: #020617;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
    isolation: isolate;
}

.insight-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
    transform: scale(1.01);
    transition: transform 500ms ease, opacity 250ms ease;
}

.insight-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.78));
    z-index: 1;
}

.insight-card:hover .insight-card-image {
    opacity: 0.58;
    transform: scale(1.06);
}

.insight-card-label {
    position: relative;
    z-index: 2;
    margin: 1.25rem;
    display: inline-flex;
    min-height: 2rem;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    padding: 0.35rem 0.9rem;
    color: #0f766e;
    font-size: 0.75rem;
    font-weight: 800;
}

.insight-card-copy {
    position: absolute;
    inset-inline: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
    color: #ffffff;
}

.insight-card-copy h3 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 800;
    line-height: 1.14;
    text-wrap: balance;
}

.insight-card-copy p {
    display: -webkit-box;
    margin-top: 0.7rem;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
    line-height: 1.6;
}

.service-image-tile {
    position: relative;
    display: block;
    min-height: 220px;
    overflow: hidden;
    border-radius: 8px;
    background: #020617;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    isolation: isolate;
    outline: 1px solid rgba(15, 23, 42, 0.06);
    outline-offset: -1px;
}

.service-image-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.58;
    transform: scale(1.01);
    transition: transform 450ms ease, opacity 220ms ease;
}

.service-image-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.64));
}

.service-image-tile span {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 88%;
    padding: 2rem 1.6rem;
    color: #ffffff;
    font-size: clamp(1.45rem, 2.1vw, 2rem);
    font-weight: 800;
    line-height: 1.18;
    text-wrap: balance;
}

.service-image-tile:hover img,
.service-image-tile:focus-visible img {
    opacity: 0.72;
    transform: scale(1.06);
}

.service-image-tile:focus-visible {
    outline: 3px solid rgba(20, 184, 166, 0.85);
    outline-offset: 3px;
}

.service-image-tile-sm {
    min-height: 205px;
}

.service-more-panel {
    animation: panel-reveal 220ms ease-out;
}

@keyframes panel-reveal {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.careers-motion-section {
    --careers-progress: 0;
    --careers-video-top: 0vh;
    --careers-video-width: 100vw;
    --careers-video-height: 100vh;
    --careers-video-scale: 1.04;
    --careers-copy-opacity: 0;
    --careers-copy-x: 80px;
    min-height: 210vh;
    background: #ffffff;
}

.careers-motion-sticky {
    position: sticky;
    top: 0;
    min-height: 100vh;
    overflow: hidden;
    background: #ffffff;
}

.careers-motion-stage {
    position: relative;
    min-height: 100vh;
}

.careers-motion-video {
    position: absolute;
    top: var(--careers-video-top);
    left: 0;
    width: var(--careers-video-width);
    height: var(--careers-video-height);
    overflow: hidden;
    background: #020617;
    transform-origin: left center;
    transition: border-radius 120ms linear;
}

.careers-motion-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(var(--careers-video-scale));
}

.careers-motion-copy {
    position: absolute;
    top: 50%;
    right: 7vw;
    width: min(34rem, 38vw);
    transform: translateY(-42%) translateX(var(--careers-copy-x));
    opacity: var(--careers-copy-opacity);
    pointer-events: none;
}

.careers-motion-copy p {
    color: #14b8a6;
    font-size: clamp(1rem, 1.7vw, 1.45rem);
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.careers-motion-copy h2 {
    margin-top: 1.4rem;
    color: #020617;
    font-size: clamp(3rem, 5vw, 5.4rem);
    font-weight: 800;
    line-height: 1.08;
    text-wrap: balance;
}

.careers-motion-copy span {
    display: block;
    margin-top: 1.6rem;
    max-width: 28rem;
    color: #111827;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.45;
}

.careers-motion-copy a {
    margin-top: 2rem;
    display: inline-flex;
    min-height: 3.4rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #14b8a6;
    padding: 0 2rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    pointer-events: auto;
    transition: background-color 180ms ease, transform 180ms ease;
}

.careers-motion-copy a:hover,
.careers-motion-copy a:focus-visible {
    background: #0f766e;
    transform: translateY(-1px);
}

.about-video-motion-section {
    --about-video-progress: 0;
    --about-video-width: 100vw;
    --about-video-height: 100vh;
    --about-video-top: 0vh;
    --about-video-scale: 1.04;
    --about-copy-opacity: 0;
    --about-copy-x: 72px;
    min-height: 190vh;
    background: #ffffff;
}

.about-video-motion-sticky {
    position: sticky;
    top: 0;
    min-height: 100vh;
    overflow: hidden;
    background: #ffffff;
}

.about-video-motion-stage {
    position: relative;
    min-height: 100vh;
}

.about-video-motion-media {
    position: absolute;
    left: 0;
    top: var(--about-video-top);
    width: var(--about-video-width);
    height: var(--about-video-height);
    overflow: hidden;
    background: #020617;
    border-radius: 0 8px 8px 0;
}

.about-video-motion-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(var(--about-video-scale));
}

.about-video-motion-copy {
    position: absolute;
    top: 50%;
    right: 6vw;
    width: min(39rem, 40vw);
    transform: translateY(-50%) translateX(var(--about-copy-x));
    opacity: var(--about-copy-opacity);
}

.about-video-motion-copy p {
    color: #14b8a6;
    font-size: clamp(1rem, 1.5vw, 1.45rem);
    font-weight: 500;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.about-video-motion-copy h2 {
    margin-top: 2rem;
    color: #171717;
    font-size: clamp(2.7rem, 4vw, 4.9rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0;
}

.about-video-motion-copy span {
    display: block;
    margin-top: 1.8rem;
    max-width: 34rem;
    color: #334155;
    font-size: clamp(1.25rem, 1.6vw, 1.7rem);
    line-height: 1.45;
}

.about-video-motion-copy button {
    margin-top: 2rem;
    display: inline-flex;
    min-height: 3.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #14b8a6;
    padding: 0 2rem;
    color: #020617;
    font-size: 1rem;
    font-weight: 800;
    transition: background-color 180ms ease, transform 180ms ease;
}

.about-video-motion-copy button:hover,
.about-video-motion-copy button:focus-visible {
    background: #2dd4bf;
    transform: translateY(-1px);
}

.leadership-track {
    display: flex;
    gap: clamp(1.25rem, 2.2vw, 2.5rem);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1px;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.leadership-track::-webkit-scrollbar {
    display: none;
}

.leadership-card {
    flex: 0 0 min(78vw, 360px);
    scroll-snap-align: start;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
    transition: transform 220ms ease;
}

.leadership-card:hover {
    transform: translateY(-3px);
}

.leadership-photo {
    position: relative;
    display: flex;
    height: clamp(270px, 30vw, 390px);
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.leadership-photo::after {
    content: none;
}

.leadership-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    filter: drop-shadow(0 24px 30px rgba(15, 23, 42, 0.16));
    transition: transform 260ms ease, filter 260ms ease;
}

.leadership-card:hover .leadership-photo img {
    transform: scale(1.018);
    filter: saturate(1.04) drop-shadow(0 30px 36px rgba(15, 23, 42, 0.2));
}

.leadership-meta {
    padding: 1rem 0 0.2rem;
}

.leadership-meta h3 {
    color: #020617;
    font-size: clamp(1.75rem, 2.45vw, 3rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: 0;
}

.leadership-meta h3 span {
    color: #0f8f86;
}

.leadership-meta p {
    margin-top: 0.75rem;
    color: #334155;
    font-size: clamp(1rem, 1.05vw, 1.18rem);
    line-height: 1.4;
}

.leadership-meta a {
    margin-top: 0.8rem;
    display: inline-flex;
    min-height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: flex-start;
    color: #020617;
    transition: color 180ms ease, transform 180ms ease;
}

.leadership-meta a:hover,
.leadership-meta a:focus-visible {
    color: #0f8f86;
    transform: translateY(-1px);
}

.leadership-meta svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: currentColor;
}

.leadership-nav {
    display: inline-flex;
    min-width: 3.1rem;
    height: 3.1rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(20, 184, 166, 0.42);
    border-radius: 999px;
    color: #0f8f86;
    background: #ffffff;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.leadership-nav:hover,
.leadership-nav:focus-visible {
    background: #0f8f86;
    border-color: #0f8f86;
    color: #ffffff;
    transform: translateY(-1px);
}

.leadership-nav.is-disabled {
    opacity: 0.38;
    pointer-events: none;
}

.code-conduct-section {
    overflow: hidden;
}

.code-conduct-image {
    overflow: hidden;
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    background: #f8fffe;
    box-shadow: 0 24px 70px rgba(15, 118, 110, 0.08);
}

.code-conduct-image img {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: block;
    object-fit: cover;
    object-position: center;
}

.code-conduct-image-left img {
    object-position: center center;
}

.code-conduct-image-right {
    background: #f3f7f7;
}

.code-conduct-image-right img {
    object-fit: cover;
    object-position: center;
}

.code-conduct-copy {
    display: flex;
    min-height: 430px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 0;
}

.code-conduct-copy p {
    color: #14b8a6;
    font-size: clamp(1rem, 1.45vw, 1.4rem);
    font-weight: 500;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.code-conduct-copy h2 {
    margin-top: 1.5rem;
    max-width: 46rem;
    color: #020617;
    font-size: clamp(2.75rem, 4.6vw, 5.1rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}

.code-conduct-copy span {
    display: block;
    margin-top: 1.5rem;
    max-width: 44rem;
    color: #171717;
    font-size: clamp(1.35rem, 2vw, 2.15rem);
    line-height: 1.42;
}

.code-conduct-copy a {
    margin-top: 2rem;
    display: inline-flex;
    min-height: 3.75rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #14b8a6;
    padding: 0 2.1rem;
    color: #020617;
    font-size: 1rem;
    font-weight: 900;
    opacity: 0.92;
}

.code-conduct-copy a:hover {
    background: #0f8f86;
    color: #ffffff;
    transform: translateY(-1px);
}

@media (min-width: 768px) {
    .leadership-card {
        flex-basis: min(38vw, 360px);
    }
}

@media (min-width: 1280px) {
    .leadership-card {
        flex-basis: min(23vw, 335px);
    }

    .code-conduct-image-right {
        margin-top: 7.5rem;
    }
}

@media (max-width: 1023px) {
    .code-conduct-copy {
        min-height: auto;
        padding: 2rem 0;
        order: 1;
    }

    .code-conduct-image-left {
        order: 0;
        aspect-ratio: 1 / 1;
    }

    .code-conduct-image-right {
        display: none;
    }
}

@media (max-width: 640px) {
    .code-conduct-copy h2 {
        font-size: clamp(2.35rem, 13vw, 3.3rem);
    }

    .code-conduct-copy span {
        font-size: 1.2rem;
    }

    .code-conduct-copy a {
        width: 100%;
        padding: 0 1.25rem;
    }
}

@media (min-width: 768px) {
    .hero-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .featured-insights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .hero-process-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .featured-insights-grid {
        grid-auto-flow: dense;
        grid-auto-rows: 162px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .insight-card {
        min-height: auto;
        grid-row: span 2;
    }

    .insight-card-large {
        grid-row: span 2;
        grid-column: span 1;
    }

    .insight-card-tall {
        grid-row: span 3;
    }
}

@media (max-width: 1023px) {
    .featured-insights-section {
        background: #ffffff;
    }

    .insight-card {
        min-height: 300px;
    }

    .service-image-tile {
        min-height: 210px;
    }

    .careers-motion-section {
        min-height: auto;
        padding: 3rem 1rem;
    }

    .careers-motion-sticky {
        position: relative;
        min-height: auto;
        overflow: visible;
    }

    .careers-motion-stage {
        display: grid;
        gap: 2rem;
        min-height: auto;
    }

    .careers-motion-video,
    .careers-motion-copy {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        transform: none;
        opacity: 1;
    }

    .careers-motion-video {
        aspect-ratio: 16 / 10;
        border-radius: 8px;
    }

    .careers-motion-copy {
        pointer-events: auto;
    }

    .careers-motion-copy h2 {
        font-size: 2.6rem;
    }

    .careers-motion-copy span {
        font-size: 1.2rem;
    }

    .about-video-motion-section {
        min-height: auto;
        padding: 3.5rem 0;
    }

    .about-video-motion-sticky {
        position: relative;
        min-height: auto;
        overflow: visible;
    }

    .about-video-motion-stage {
        display: grid;
        gap: 2rem;
        min-height: auto;
    }

    .about-video-motion-media,
    .about-video-motion-copy {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        transform: none;
        opacity: 1;
    }

    .about-video-motion-media {
        aspect-ratio: 16 / 10;
        border-radius: 0 8px 8px 0;
    }

    .about-video-motion-copy {
        padding: 0 1.25rem;
    }

    .about-video-motion-copy h2 {
        font-size: clamp(2.35rem, 9vw, 3.5rem);
    }

    .about-video-motion-copy span {
        font-size: 1.15rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .careers-motion-section {
        min-height: auto;
        padding: 4rem 1rem;
    }

    .careers-motion-sticky {
        position: relative;
        min-height: auto;
    }

    .careers-motion-stage {
        display: grid;
        gap: 2rem;
        min-height: auto;
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
    }

    .careers-motion-video,
    .careers-motion-copy {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        transform: none;
        opacity: 1;
    }

    .careers-motion-video {
        aspect-ratio: 16 / 10;
    }

    .about-video-motion-section {
        min-height: auto;
        padding: 4rem 1rem;
    }

    .about-video-motion-sticky {
        position: relative;
        min-height: auto;
    }

    .about-video-motion-stage {
        display: grid;
        gap: 2rem;
        min-height: auto;
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
    }

    .about-video-motion-media,
    .about-video-motion-copy {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        transform: none;
        opacity: 1;
    }

    .about-video-motion-media {
        aspect-ratio: 16 / 10;
    }

    .service-more-panel {
        animation: none;
    }
}

.hero-insight-card-top {
    top: 16px;
    right: -16px;
    width: 150px;
    padding: 14px;
}

.hero-insight-card-bottom {
    left: -18px;
    bottom: 30px;
    width: 210px;
    padding: 14px;
}

@media (min-width: 1280px) {
    .hero-insight-card-bottom {
        bottom: 22px;
        left: -22px;
    }
}

@media (max-width: 1279px) {
    .hero-insight-card-top {
        right: 12px;
    }

    .hero-insight-card-bottom {
        display: none;
    }
}

@media (max-width: 1023px) {
    .hero-process-panel {
        border-radius: 22px;
        padding: 1rem;
    }

    .hero-process-panel h2 {
        font-size: 1.35rem;
        line-height: 1.2;
    }

    .hero-process-panel > div:first-child p:last-child {
        display: none;
    }

    .hero-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem;
    }

    .hero-process-card {
        min-height: auto;
        padding: 0.85rem 0.85rem 0.85rem 3.65rem;
    }

    .hero-process-card p {
        display: none;
    }

    .hero-process-icon {
        height: 2.35rem;
        width: 2.35rem;
    }

    .hero-process-card h3 {
        font-size: 1.05rem;
    }
}

@media (max-width: 640px) {
    .hero-process-grid {
        grid-template-columns: 1fr;
    }

    .hero-process-card {
        min-height: 0;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .hero-insight-card-top {
        top: 12px;
        right: 12px;
        width: 108px;
        padding: 9px;
        border-radius: 14px;
    }

    .hero-insight-card-top p:nth-child(2) {
        font-size: 1.15rem;
        line-height: 1.35rem;
    }
}
