@font-face {
    font-family: "Space Grotesk";
    src: url("./fonts/space-grotesk-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
}

:root {
    --orange: #ff7426;
    --orange-text: #bd4800;
    --orange-action: #bd4800;
    --ink: #222429;
    --text: #696969;
    --surface: #f6f5fa;
    --container: 1320px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: #fff;
    font: 400 16px/1.5 "Space Grotesk", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color .3s ease;
}

button,
input {
    font: inherit;
}

button {
    color: inherit;
}

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

h1,
h2,
h3 {
    color: var(--ink);
    font-weight: 700;
    line-height: 1.2;
}

[id] {
    scroll-margin-top: 120px;
}

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

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

.skip-link:focus {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    width: auto;
    height: auto;
    padding: 10px 16px;
    clip: auto;
    color: #fff;
    background: var(--orange);
}

:focus-visible {
    outline: 3px solid var(--orange-text);
    outline-offset: 3px;
}

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: 100px;
    transition: background-color .3s ease, box-shadow .3s ease;
}

.site-header.is-sticky,
.site-header.menu-active {
    background: var(--ink);
    box-shadow: 0 3px 18px rgba(2, 21, 78, .09);
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.brand {
    flex: 0 0 auto;
    margin-right: auto;
}

.brand img {
    width: 146px;
}

.site-nav > ul,
.site-nav .submenu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav > ul {
    display: flex;
    align-items: center;
}

.site-nav li {
    position: relative;
}

.site-nav > ul > li > a,
.language-current {
    display: flex;
    align-items: center;
    min-height: 100px;
    padding: 0 13px;
    color: #fff;
    border: 0;
    background: transparent;
    font-weight: 600;
    cursor: pointer;
}

.site-nav > ul > li > a:hover,
.site-nav > ul > li > a.active,
.language-current:hover {
    color: var(--orange);
}

.site-nav .has-submenu {
    display: flex;
    align-items: center;
    padding-right: 12px;
}

.submenu-toggle {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.site-nav .has-submenu > .submenu-toggle:not(.language-current) {
    position: absolute;
    z-index: 2;
    right: 5px;
    width: 26px;
    height: 42px;
    padding: 8px;
    color: rgba(255, 255, 255, .72);
}

.submenu-toggle svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.site-nav .submenu {
    position: absolute;
    top: 130%;
    left: 0;
    width: 270px;
    padding: 8px 0;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .15);
    transition: top .35s ease, opacity .35s ease, visibility .35s;
}

.site-nav .submenu li {
    transition: padding-left .2s ease;
}

.site-nav .submenu li::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 15px;
    height: 1px;
    content: "";
    opacity: 0;
    background: var(--orange);
    transition: opacity .2s;
}

.site-nav .submenu a,
.site-nav .submenu button {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
    color: #616161;
    border: 0;
    background: transparent;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.site-nav .submenu li:hover {
    padding-left: 15px;
}

.site-nav .submenu li:hover::before {
    opacity: 1;
}

.site-nav .submenu a:hover,
.site-nav .submenu button:hover {
    color: var(--orange);
}

.site-nav .has-submenu:hover > .submenu,
.site-nav .has-submenu:focus-within > .submenu,
.site-nav .has-submenu.submenu-open > .submenu {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

.language-menu {
    padding-right: 0 !important;
}

.language-current {
    gap: 7px;
    padding-right: 0;
}

.language-current svg {
    width: 14px;
    height: 14px;
}

.language-menu .submenu {
    right: 0;
    left: auto;
    width: 170px;
}

.search-toggle,
.menu-toggle {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    color: #fff;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.search-toggle svg,
.menu-toggle svg,
.site-search svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.menu-toggle {
    display: none;
}

.menu-toggle .close-icon {
    display: none;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
    display: none;
}

.menu-toggle[aria-expanded="true"] .close-icon {
    display: block;
}

.site-search {
    position: absolute;
    top: 81px;
    right: 0;
    width: min(403px, calc(100vw - 40px));
    padding: 20px;
    border-top: 3px solid var(--orange);
    background: #fff;
}

.site-search::before {
    position: absolute;
    top: -11px;
    right: 13px;
    content: "";
    border-right: 10px solid transparent;
    border-bottom: 8px solid var(--orange);
    border-left: 10px solid transparent;
}

.site-search input {
    width: 100%;
    height: 55px;
    padding: 0 70px 0 25px;
    color: #555;
    border: 0;
    border-radius: 30px;
    outline-offset: -2px;
    background: #f4f6f9;
    font-size: 13px;
}

.site-search button {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: grid;
    place-items: center;
    width: 58px;
    height: 55px;
    padding: 0;
    color: #fff;
    border: 0;
    border-radius: 0 30px 30px 0;
    background: var(--orange);
    cursor: pointer;
}

.hero {
    position: relative;
    display: grid;
    min-height: 990px;
    place-items: center;
    overflow: hidden;
    background: #24272c url("./images/hero-bg.avif") center / cover no-repeat;
    text-align: center;
}

.particles {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(50%, 930px);
    padding: 70px 20px 150px;
}

.eyebrow {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    color: var(--orange-text);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.eyebrow::after,
.eyebrow.ruled::before {
    position: absolute;
    top: 50%;
    width: 45px;
    height: 2px;
    content: "";
    background: var(--orange);
}

.eyebrow::after {
    right: -55px;
}

.eyebrow.ruled::before {
    left: -55px;
}

.hero .eyebrow {
    z-index: 1;
    margin-bottom: 6px;
    color: var(--orange);
}

.hero h1 {
    margin-bottom: 18px;
    color: #fff;
    font-size: clamp(54px, 4.45vw, 85px);
}

.hero h1 span {
    color: var(--orange);
}

.hero-content > p:not(.eyebrow) {
    margin-bottom: 53px;
    color: rgba(255, 255, 255, .8);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.button {
    position: relative;
    z-index: 1;
    display: inline-block;
    min-width: 130px;
    padding: 12px 32px;
    overflow: hidden;
    border: 1px solid var(--orange);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.button::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background: var(--orange-action);
    transition: transform .45s ease;
    transform: scaleX(1);
}

.button-filled {
    color: #fff;
}

.button-filled:hover {
    color: var(--ink);
}

.button-filled:hover::before {
    transform: scaleX(0);
}

.button-outline {
    color: #fff;
}

.button-outline::before {
    transform: scaleX(0);
}

.button-outline:hover {
    color: #fff;
}

.button-outline:hover::before {
    transform: scaleX(1);
}

.section {
    padding: 82px 0;
}

.section-heading h2 {
    margin-bottom: 20px;
    font-size: 50px;
}

.section-heading > p:last-child {
    margin-bottom: 0;
}

.section-heading.centered {
    width: min(100%, 670px);
    margin: 0 auto 45px;
    text-align: center;
}

.services {
    padding: 80px 0;
    background: #f9f9fb url("./images/service-bg.jpg") center / cover no-repeat;
}

.services .section-heading {
    width: min(50%, 670px);
    margin-bottom: 45px;
}

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

.service-card {
    display: flex;
    min-height: 280px;
    padding: 38px 40px 40px;
    background: #fff radial-gradient(circle at 76% 0, #fff2ea 0 8%, transparent 30%);
    box-shadow: 0 20px 40px rgba(145, 139, 187, .05);
}

.service-icon {
    position: relative;
    flex: 0 0 auto;
    width: 48px;
    height: 55px;
    margin-right: 25px;
}

.service-icon::after {
    position: absolute;
    z-index: 0;
    inset: 4px -7px auto -15px;
    width: 70px;
    height: 50px;
    content: "";
    border-radius: 58% 42% 48% 52%;
    background: #fff1e9;
    transform: rotate(-8deg);
}

.service-icon svg {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    fill: none;
    stroke: var(--orange);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.service-card p {
    margin-bottom: 27px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    font-weight: 600;
}

.text-link:hover {
    color: var(--orange);
}

.text-link svg {
    width: 20px;
    height: 20px;
    margin-left: 9px;
    fill: none;
    stroke: var(--orange);
    stroke-width: 1.8;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.about {
    padding: 71px 0 90px;
}

.about-image {
    text-align: center;
}

.about-image img {
    margin-inline: auto;
}

.about-content {
    padding-left: 10px;
}

.about blockquote {
    margin: 25px 0 50px;
    padding-left: 20px;
    border-left: 3px solid var(--orange);
}

.about blockquote p {
    margin-bottom: 6px;
    color: var(--ink);
    font-size: 18px;
    font-weight: 700;
}

.about blockquote footer {
    color: var(--text);
}

.about blockquote strong {
    margin-right: 7px;
    color: var(--ink);
}

.portfolio {
    padding: 83px 0 65px;
    background: var(--surface);
}

.portfolio-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 27px;
}

.portfolio-head h2 {
    margin-bottom: 0;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px 40px;
    padding-bottom: 10px;
}

.filters button {
    padding: 3px 0;
    border: 0;
    background: transparent;
    font-weight: 500;
    cursor: pointer;
    transition: color .3s;
}

.filters button:hover,
.filters button.active {
    color: var(--orange-text);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 20px;
}

.project-card {
    position: relative;
    height: 330px;
    overflow: hidden;
}

.project-card[hidden] {
    display: none;
}

.project-card::after {
    position: absolute;
    inset: 100% 0 0;
    content: "";
    background: rgba(34, 36, 41, .75);
    clip-path: polygon(0 55%, 0 100%, 100% 100%);
    transition: inset .7s ease;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    z-index: 2;
    right: 40px;
    bottom: -100%;
    left: 40px;
    transition: bottom .7s ease;
}

.project-card:hover::after,
.project-card:focus-within::after {
    inset: 0;
}

.project-card:hover .project-overlay,
.project-card:focus-within .project-overlay {
    bottom: 35px;
}

.project-overlay h3 {
    margin: 0;
    font-size: 16px;
}

.project-overlay h3 a {
    color: #fff;
}

.project-overlay p {
    margin: 5px 0 0;
    color: var(--orange);
}

.testimonials {
    padding: 83px 0 90px;
}

.carousel-shell {
    position: relative;
}

.testimonial-track {
    display: grid;
    grid-auto-columns: calc((100% - 20px) / 2);
    grid-auto-flow: column;
    gap: 20px;
    overflow: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

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

.testimonial-card {
    padding: 40px 40px 36px;
    border: 1px solid rgba(0, 0, 0, .1);
    scroll-snap-align: start;
    transition: border-color .3s;
}

.testimonial-card:hover {
    border-color: var(--orange);
}

.client {
    display: flex;
    align-items: center;
    margin-bottom: 33px;
}

.client img {
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    margin-right: 30px;
    object-fit: contain;
}

.client h3 {
    margin-bottom: 4px;
    font-size: 20px;
}

.client p {
    margin-bottom: 9px;
    font-weight: 600;
}

.testimonial-card > p {
    margin-bottom: 0;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars svg {
    width: 14px;
    height: 14px;
    fill: #cacaca;
    stroke: none;
}

.stars svg.active {
    fill: var(--orange);
}

.carousel-nav {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 9px;
    border: 1px solid rgba(0, 0, 0, .1);
    background: #fff;
    cursor: pointer;
    transform: translateY(-50%);
    transition: color .3s, background .3s;
}

.carousel-nav:hover {
    color: #fff;
    background: var(--orange);
}

.carousel-nav svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.carousel-nav.previous {
    left: -20px;
}

.carousel-nav.previous svg {
    transform: rotate(180deg);
}

.carousel-nav.next {
    right: -20px;
}

.brands {
    padding: 70px 0;
    background: #f8f8fa url("./images/brand-bg.jpg") center / cover no-repeat;
}

.brand-track {
    display: grid;
    grid-auto-columns: calc((100% - 240px) / 3);
    grid-auto-flow: column;
    align-items: center;
    gap: 120px;
    overflow-x: auto;
    scrollbar-width: none;
}

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

.brand-track img {
    width: 100%;
    max-height: 66px;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter .4s;
}

.brand-track img:hover {
    filter: grayscale(0);
}

.blog {
    padding: 82px 0 60px;
}

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

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

.blog-card > a {
    display: block;
    overflow: hidden;
}

.blog-card img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-card:hover img {
    transform: scale(1.03);
}

.blog-content {
    padding: 37px 40px 35px;
    box-shadow: 0 5px 30px rgba(34, 36, 41, .05);
}

.blog-meta {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
}

.blog-meta a {
    color: var(--orange-text);
}

.blog-meta > span:first-of-type {
    width: 5px;
    height: 2px;
    margin: 0 10px;
    background: var(--orange);
}

.blog-content h3 {
    margin: 20px 0 18px;
    font-size: 20px;
}

.blog-content h3 a:hover {
    color: var(--orange);
}

.blog-content .text-link {
    color: var(--orange-text);
}

.site-footer {
    color: rgba(255, 255, 255, .68);
    background: var(--ink) url("./images/footer-bg.jpg") center top / cover no-repeat;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr .8fr 1.15fr 1.1fr;
    gap: 45px;
    padding-top: 80px;
    padding-bottom: 46px;
}

.footer-grid h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 24px;
}

.footer-intro {
    padding-right: 20px;
}

.footer-intro > img {
    margin-bottom: 14px;
}

.footer-intro p {
    margin: 15px 0 12px;
}

.socials {
    display: flex;
    gap: 5px;
}

.socials a {
    display: grid;
    place-items: center;
    width: 39px;
    height: 39px;
    color: #fff;
    border-radius: 50%;
    background: rgba(105, 105, 105, .15);
    transition: background .3s;
}

.socials a:hover {
    background: var(--orange);
}

.socials svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.socials svg .fill {
    fill: currentColor;
}

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

.footer-list li {
    margin-bottom: 16px;
}

.footer-list li::before,
.legal a::before {
    margin-right: 7px;
    content: "+";
    color: var(--orange);
    font-weight: 700;
}

.footer-list a:hover,
address a:hover {
    color: #fff;
}

address {
    font-style: normal;
}

address a {
    display: flex;
    gap: 9px;
    margin-bottom: 16px;
}

address svg {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    margin-top: 3px;
    fill: none;
    stroke: var(--orange);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-brands {
    padding: 25px 0 16px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
    text-align: center;
}

.footer-brands p {
    margin-bottom: 10px;
}

.footer-brands dl {
    display: table;
    margin: 0 auto;
    text-align: left;
}

.footer-brands dl > div {
    display: table-row;
}

.footer-brands dt,
.footer-brands dd {
    display: table-cell;
    margin: 0;
}

.footer-brands dt {
    padding-right: 8px;
    text-align: right;
}

.footer-brands dd a {
    color: var(--orange);
}

.legal {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 15px;
    color: rgba(255, 255, 255, .68);
}

.legal a:hover {
    color: #fff;
}

.copyright {
    margin: 0;
    padding: 25px 20px 16px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
    text-align: center;
}

@media (min-width: 1800px) {
    .testimonial-track {
        grid-auto-columns: calc((100% - 40px) / 3);
    }

    .brand-track {
        grid-auto-columns: calc((100% - 360px) / 4);
    }
}

@media (max-width: 1199px) {
    :root {
        --container: 960px;
    }

    .site-nav > ul > li > a,
    .language-current {
        padding-inline: 8px;
        font-size: 14px;
    }

    .hero-content {
        width: 73%;
    }

    .services .section-heading {
        width: 60%;
    }

    .section-heading h2 {
        font-size: 36px;
    }

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

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

    .filters {
        gap: 10px 22px;
    }

    .blog-content {
        padding-inline: 28px;
    }
}

@media (max-width: 991px) {
    :root {
        --container: 720px;
    }

    .menu-toggle {
        display: grid;
    }

    .search-toggle {
        display: none;
    }

    .site-nav {
        position: absolute;
        top: 100px;
        left: 50%;
        display: none;
        width: 100vw;
        height: calc(100vh - 100px);
        overflow-y: auto;
        background: #fff;
        transform: translateX(-50%);
    }

    .site-nav.open {
        display: block;
    }

    .site-nav > ul {
        display: block;
    }

    .site-nav > ul > li,
    .site-nav .has-submenu {
        display: block;
        padding-right: 0;
        border-top: 1px solid #ddd;
    }

    .site-nav > ul > li > a,
    .language-current {
        width: 100%;
        min-height: 50px;
        padding: 1em 5%;
        color: var(--ink);
        font-size: 14px;
        font-weight: 400;
    }

    .site-nav .has-submenu > .submenu-toggle:not(.language-current) {
        top: 0;
        right: 0;
        width: 50px;
        height: 50px;
        padding: 17px;
        color: var(--orange);
    }

    .site-nav .submenu {
        position: static;
        display: none;
        width: 100%;
        padding: 0;
        visibility: visible;
        opacity: 1;
        box-shadow: none;
        transition: none;
    }

    .site-nav .submenu li {
        border-top: 1px solid #eee;
    }

    .site-nav .submenu li:hover {
        padding-left: 0;
    }

    .site-nav .submenu li::before {
        display: none;
    }

    .site-nav .submenu a,
    .site-nav .submenu button {
        padding: 1em 10%;
        font-size: 14px;
    }

    .site-nav .submenu-open > .submenu {
        display: block;
    }

    .language-menu .submenu {
        width: 100%;
    }

    .language-current {
        justify-content: flex-start;
    }

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

    .about-content {
        padding-left: 0;
    }

    .portfolio-head {
        display: block;
    }

    .filters {
        justify-content: flex-start;
        margin-top: 15px;
    }

    .carousel-nav {
        display: none;
    }

    .blog-grid {
        grid-auto-columns: calc((100% - 20px) / 2);
        grid-auto-flow: column;
        grid-template-columns: none;
        gap: 20px;
        overflow: hidden;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .blog-grid::-webkit-scrollbar {
        display: none;
    }

    .blog-card {
        scroll-snap-align: start;
    }

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

@media (max-width: 767px) {
    :root {
        --container: 540px;
    }

    .container {
        width: min(100% - 30px, var(--container));
    }

    .site-header {
        height: 86px;
    }

    .site-nav {
        top: 86px;
        height: calc(100vh - 86px);
    }

    .hero {
        min-height: 760px;
    }

    .hero-content {
        width: 100%;
        padding-bottom: 70px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero-content > p:not(.eyebrow) {
        margin-bottom: 36px;
    }

    .section {
        padding: 70px 0;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .services .section-heading {
        width: 100%;
    }

    .service-grid,
    .portfolio-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-auto-columns: 100%;
        overflow-x: auto;
    }

    .service-card {
        min-height: 0;
        padding: 32px 28px;
    }

    .about {
        padding-top: 60px;
    }

    .project-card {
        height: 300px;
    }

    .testimonial-track {
        grid-auto-columns: 100%;
        overflow-x: auto;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .brand-track {
        grid-auto-columns: calc((100% - 40px) / 2);
        gap: 40px;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-intro {
        padding-right: 0;
    }

    .footer-brands dl,
    .footer-brands dl > div,
    .footer-brands dt,
    .footer-brands dd {
        display: block;
    }

    .footer-brands dl {
        text-align: center;
    }

    .footer-brands dt {
        margin-top: 7px;
        padding-right: 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 700px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-actions {
        flex-wrap: wrap;
    }

    .service-card {
        display: block;
    }

    .service-icon {
        margin: 0 0 20px 10px;
    }

    .client {
        align-items: flex-start;
    }

    .client img {
        width: 80px;
        height: 80px;
        margin-right: 18px;
    }

    .client h3 {
        font-size: 18px;
    }

    .blog-content {
        padding: 30px 25px;
    }

    .legal {
        flex-direction: column;
        gap: 6px;
    }
}

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

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

    .particles {
        display: none;
    }
}
