﻿:root {
    --bg-main: #050505;
    --bg-surface: #0B0B0B;
    --bg-surface-2: #101010;
    --text-main: #F5F5F5;
    --text-muted: #A1A1A1;
    --border: rgba(255, 255, 255, 0.08);
    --separator: rgba(255, 255, 255, 0.06);
    --accent: #e6e6e6;
    --accent-muted: #cfcfcf;
    --container: min(1160px, 92vw);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --header-height: 74px;
    --fast: 0.2s ease;
    --normal: 0.38s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100%;
    background: var(--bg-main);
    color: var(--text-main);
    font-family: "Manrope", sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
}

body::before {
    background:
        radial-gradient(70rem 40rem at 90% -10%, rgba(255, 255, 255, 0.08), transparent 65%),
        radial-gradient(50rem 30rem at -8% 20%, rgba(255, 255, 255, 0.06), transparent 70%),
        linear-gradient(180deg, #080808 0%, #050505 45%, #050505 100%);
}

body::after {
    z-index: -1;
    opacity: 0.3;
    background-image:
        repeating-linear-gradient(0deg, transparent 0 58px, rgba(255, 255, 255, 0.03) 58px 59px),
        repeating-linear-gradient(90deg, transparent 0 58px, rgba(255, 255, 255, 0.03) 58px 59px);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.26));
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: 2px;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

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

.section-label {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}

.section-head {
    display: grid;
    gap: 0.9rem;
    margin-bottom: clamp(1.8rem, 4vw, 2.8rem);
}

.section-head h2 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.55rem, 4vw, 3.2rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
    max-width: 20ch;
}

.section-head-split {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 1.2rem;
}

.section-note {
    margin: 0 0 1.6rem;
    color: var(--text-muted);
    max-width: 72ch;
}

.is-disabled-link {
    opacity: 0.45;
    pointer-events: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(10px);
    background: rgba(5, 5, 5, 0.74);
    border-bottom: 1px solid var(--separator);
}

.nav-shell {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    flex-shrink: 0;
    overflow: hidden;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    transform: scale(1.16);
    transform-origin: center;
}

.site-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: clamp(0.6rem, 1.5vw, 1.4rem);
}

.site-nav a {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    padding: 0.26rem 0.2rem;
    border-bottom: 1px solid transparent;
    transition: color var(--fast), border-color var(--fast);
}

.site-nav a:hover {
    color: var(--text-main);
    border-color: var(--text-main);
}

.nav-toggle {
    display: none;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    color: var(--text-main);
    padding: 0.5rem 0.75rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    padding: 0.72rem 1.08rem;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform var(--fast), background-color var(--fast), border-color var(--fast), color var(--fast);
}

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

.btn-primary {
    background: var(--text-main);
    color: var(--bg-main);
    border-color: var(--text-main);
}

.btn-primary:hover {
    background: #dcdcdc;
    border-color: #dcdcdc;
}

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

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.05);
}

.btn-header {
    white-space: nowrap;
}

.hero {
    padding-top: clamp(4.2rem, 9vw, 8.5rem);
}

.hero-layout {
    display: block;
    max-width: 980px;
}

.hero-copy h1 {
    margin: 0.8rem 0 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(2.15rem, 7vw, 5.8rem);
    line-height: 0.93;
    letter-spacing: -0.04em;
    max-width: 11ch;
}

.hero-copy h1 span {
    display: block;
    color: var(--text-muted);
}

.hero-subtext {
    margin: 1.5rem 0 0;
    color: var(--text-muted);
    max-width: 58ch;
    font-size: clamp(0.98rem, 2vw, 1.12rem);
}

.hero-actions {
    margin-top: 1.8rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.services-section {
    border-top: 1px solid var(--separator);
}

.service-rails {
    border-top: 1px solid var(--separator);
}

.service-rail {
    display: grid;
    grid-template-columns: 76px 1fr minmax(180px, 260px);
    gap: 1rem;
    align-items: center;
    padding: 1.3rem 0;
    border-bottom: 1px solid var(--separator);
    transition: background-color var(--fast), transform var(--fast);
}

.service-rail:hover {
    background: rgba(255, 255, 255, 0.02);
    transform: translateX(4px);
}

.rail-index {
    font-family: "Sora", sans-serif;
    color: rgba(255, 255, 255, 0.32);
    font-size: 1.45rem;
    letter-spacing: -0.02em;
}

.rail-copy h3 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    letter-spacing: -0.01em;
}

.rail-copy p {
    margin: 0.55rem 0 0;
    color: var(--text-muted);
    max-width: 68ch;
}

.rail-value {
    margin: 0;
    text-align: right;
    color: var(--accent-muted);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.works-section {
    border-top: 1px solid var(--separator);
}

.projects-stack {
    display: grid;
    gap: 1.1rem;
}

.projects-empty {
    margin: 0;
    border: 1px dashed var(--border);
    padding: 1rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
}

.projects-loading {
    margin: 0;
    border: 1px solid var(--border);
    padding: 1rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
}

.work-panel {
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.94), rgba(11, 11, 11, 0.94));
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    min-height: clamp(260px, 32vw, 420px);
    overflow: hidden;
    position: relative;
}

.work-panel.is-reverse {
    grid-template-columns: 0.92fr 1.08fr;
}

.work-panel.is-reverse .work-visual-wrap {
    order: 2;
}

.work-panel.is-reverse .work-content {
    order: 1;
}

.work-visual-wrap {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    border-right: 1px solid var(--separator);
}

.work-panel.is-reverse .work-visual-wrap {
    border-right: 0;
    border-left: 1px solid var(--separator);
}

.work-visual {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.03) saturate(1.02) brightness(0.95);
    transform: scale(1.01);
    transition: transform 0.55s ease;
}

.work-visual-fallback {
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: grid;
    place-content: center;
    gap: 0.4rem;
    background:
        radial-gradient(50rem 18rem at 50% -20%, rgba(255, 255, 255, 0.12), transparent 70%),
        linear-gradient(165deg, #141414, #0d0d0d);
    text-align: center;
}

.work-visual-fallback span {
    font-family: "Sora", sans-serif;
    font-size: clamp(2.1rem, 8vw, 4rem);
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.7);
}

.work-visual-fallback small {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.52);
}

.work-visual-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.34));
    transition: opacity 0.45s ease;
}

.work-panel:hover .work-visual {
    transform: scale(1.06);
}

.work-panel:hover .work-visual-wrap::after {
    opacity: 0.72;
}

.work-content {
    padding: clamp(1rem, 2.5vw, 1.7rem);
    display: grid;
    align-content: start;
    gap: 0.85rem;
}

.work-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.work-index {
    font-family: "Sora", sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.42);
}

.work-category {
    margin-left: auto;
    border: 1px solid var(--border);
    padding: 0.22rem 0.5rem;
    font-size: 0.67rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-muted);
}

.work-title {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.16rem, 2.4vw, 1.9rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
}

.work-description {
    margin: 0;
    color: var(--text-muted);
    max-width: 58ch;
}

.stack-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.stack-list li {
    border: 1px solid var(--border);
    color: var(--accent-muted);
    padding: 0.3rem 0.55rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.work-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.2rem;
}

.work-link {
    border: 1px solid var(--border);
    color: var(--text-main);
    background: transparent;
    padding: 0.56rem 0.82rem;
    font-size: 0.73rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    transition: border-color var(--fast), background-color var(--fast), color var(--fast);
}

.work-link:hover {
    border-color: rgba(255, 255, 255, 0.33);
    background: rgba(255, 255, 255, 0.08);
}

.work-link[aria-disabled="true"] {
    opacity: 0.4;
    pointer-events: none;
}

.work-source {
    margin: 0.2rem 0 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.process-section {
    border-top: 1px solid var(--separator);
}

.process-timeline {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.88rem;
}

.process-item {
    position: relative;
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 0.9rem;
    align-items: start;
}

.process-item::before {
    content: "";
    position: absolute;
    left: 34px;
    top: 2.2rem;
    bottom: -0.9rem;
    border-left: 1px solid var(--separator);
}

.process-item:last-child::before {
    display: none;
}

.step-id {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid var(--border);
    color: rgba(255, 255, 255, 0.68);
    font-family: "Sora", sans-serif;
    font-size: 0.86rem;
}

.step-card {
    border: 1px solid var(--border);
    background: var(--bg-surface);
    padding: 1rem 1rem 1.05rem;
}

.process-item:nth-child(even) .step-card {
    margin-left: 9%;
}

.step-card h3 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: 1rem;
}

.step-card p {
    margin: 0.5rem 0 0;
    color: var(--text-muted);
}

.trust-section {
    border-top: 1px solid var(--separator);
}

.trust-shell {
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(16, 16, 16, 0.88), rgba(11, 11, 11, 0.9));
    padding: clamp(1.1rem, 2.8vw, 1.9rem);
    display: grid;
    gap: 1rem;
}

.trust-head h2 {
    margin: 0.72rem 0 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.35rem, 3.4vw, 2.5rem);
    line-height: 1.1;
    max-width: 18ch;
}

.trust-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1.2rem;
}

.trust-list li {
    padding: 0.9rem 0;
    border-top: 1px solid var(--separator);
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.62rem;
}

.trust-list li::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    margin-top: 0.4rem;
    flex-shrink: 0;
    background: var(--accent-muted);
}

.quote-section {
    border-top: 1px solid var(--separator);
}

.quote-shell {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 1.2rem;
    align-items: start;
}

.quote-copy h2 {
    margin: 0.72rem 0 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.45rem, 3.8vw, 2.9rem);
    line-height: 1.08;
    max-width: 18ch;
}

.quote-copy p {
    margin: 1rem 0 0;
    color: var(--text-muted);
    max-width: 58ch;
}

.quote-points {
    margin: 1.1rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.quote-points li {
    color: var(--accent-muted);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.quote-form {
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(16, 16, 16, 0.94), rgba(11, 11, 11, 0.94));
    padding: clamp(1.1rem, 2.6vw, 1.6rem);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.field-group {
    display: grid;
    gap: 0.34rem;
}

.field-group label {
    color: #d1d1d1;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.field-group input,
.field-group select,
.field-group textarea {
    min-height: 2.65rem;
    border: 1px solid var(--border);
    background: var(--bg-surface-2);
    color: var(--text-main);
    padding: 0.58rem 0.65rem;
    border-radius: var(--radius-sm);
    transition: border-color var(--fast), background-color var(--fast);
}

.field-group textarea {
    min-height: 8rem;
    resize: vertical;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
    color: #8b8b8b;
}

.field-group input:hover,
.field-group select:hover,
.field-group textarea:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
    border-color: rgba(255, 255, 255, 0.52);
    background: #121212;
    outline: none;
}

.field-full {
    grid-column: 1 / -1;
}

.field-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 0.62rem;
}

.checkbox-field input {
    width: 1rem;
    height: 1rem;
    min-height: auto;
    margin-top: 0.2rem;
    accent-color: #d4d4d4;
}

.checkbox-field label {
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
}

.form-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.72rem;
}

.form-feedback {
    margin: 0;
    color: var(--accent-muted);
    font-size: 0.88rem;
    min-height: 1.2rem;
}

.faq-section {
    border-top: 1px solid var(--separator);
}

.faq-list {
    border-top: 1px solid var(--separator);
}

.faq-item {
    border-bottom: 1px solid var(--separator);
    background: transparent;
    padding: 0;
    transition: background-color var(--fast);
}

.faq-item[open] {
    background: rgba(255, 255, 255, 0.02);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.02rem 2rem 1.02rem 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(0.98rem, 2.1vw, 1.2rem);
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-muted);
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    margin: 0;
    padding: 0 0 1rem;
    color: var(--text-muted);
    max-width: 72ch;
}

.site-footer {
    border-top: 1px solid var(--separator);
    padding: 2.4rem 0 1.1rem;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.7), rgba(5, 5, 5, 0.95));
}

.footer-shell {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 1rem;
}

.footer-col {
    display: grid;
    align-content: start;
    gap: 0.48rem;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--text-main);
}

.footer-brand {
    margin: 0;
    font-family: "Sora", sans-serif;
    letter-spacing: 0.18em;
    font-size: 0.9rem;
}

.footer-text {
    margin: 0.55rem 0 0;
    color: var(--text-muted);
    max-width: 42ch;
}

.footer-title {
    margin: 0;
    color: #d0d0d0;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.footer-legal {
    margin-top: 1.7rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--separator);
    color: #888;
    font-size: 0.8rem;
}

.service-detail-page .service-detail-main {
    padding-top: clamp(4rem, 9vw, 7rem);
}

.service-detail-layout {
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(16, 16, 16, 0.92), rgba(11, 11, 11, 0.94));
    padding: clamp(1.15rem, 2.8vw, 1.9rem);
}

.service-detail-layout h1 {
    margin: 0.8rem 0 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.5rem, 4.2vw, 3rem);
    line-height: 1;
    letter-spacing: -0.03em;
    max-width: 18ch;
}

.service-detail-layout p {
    margin: 1rem 0 0;
    color: var(--text-muted);
    max-width: 70ch;
}

.detail-columns {
    margin-top: 1.3rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.detail-card {
    border: 1px solid var(--border);
    background: var(--bg-surface);
    padding: 0.9rem;
}

.detail-card h2 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: 1rem;
}

.detail-card ul {
    margin: 0.7rem 0 0;
    padding-left: 1rem;
    color: var(--text-muted);
}

.detail-footer {
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@media (max-width: 1080px) {
    .quote-shell {
        grid-template-columns: 1fr;
    }

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

    .service-rail {
        grid-template-columns: 62px 1fr;
    }

    .rail-value {
        grid-column: 2;
        text-align: left;
        margin-top: 0.3rem;
    }

    .work-panel,
    .work-panel.is-reverse {
        grid-template-columns: 1fr;
    }

    .work-visual-wrap,
    .work-panel.is-reverse .work-visual-wrap {
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid var(--separator);
        min-height: 220px;
    }

    .process-item:nth-child(even) .step-card {
        margin-left: 0;
    }

    .trust-list {
        grid-template-columns: 1fr;
    }

    .footer-shell {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
    }

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

@media (max-width: 860px) {
    .nav-shell {
        grid-template-columns: auto auto auto;
    }

    .brand {
        width: 2rem;
        height: 2rem;
    }

    .brand-logo {
        width: 100%;
        height: 100%;
        transform: scale(1.18);
    }

    .nav-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .btn-header {
        display: none;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        justify-items: start;
        background: rgba(7, 7, 7, 0.98);
        border-bottom: 1px solid var(--separator);
        border-top: 1px solid var(--separator);
        transform: translateY(-6px);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--fast), opacity var(--fast);
    }

    .site-nav a {
        width: 100%;
        padding: 0.85rem 1rem;
        border-bottom: 1px solid var(--separator);
    }

    .site-nav a:last-child {
        border-bottom: 0;
    }

    body.nav-open .site-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}

@media (max-width: 760px) {
    .section {
        padding: 3.4rem 0;
    }

    .hero-copy h1 {
        font-size: clamp(2rem, 12vw, 3.8rem);
    }

    .quote-form {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-shell {
        grid-template-columns: 1fr;
    }

    .process-item {
        grid-template-columns: 56px 1fr;
    }

    .process-item::before {
        left: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
