.status-toggle {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.status-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--grey-300);
    background: var(--brand-white);
    color: var(--brand-black);
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.status-chip:hover,
.status-chip:focus-visible {
    border-color: var(--brand-red);
    color: var(--brand-red);
    outline: none;
}

.status-chip.active {
    background: rgba(68, 68, 68, 0.1);
    border-color: var(--brand-red);
    color: var(--brand-red);
    box-shadow: inset 0 0 0 1px rgba(68, 68, 68, 0.2);
}

.chip-check {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--grey-300);
    background: transparent;
    font-size: 0.7rem;
    line-height: 1;
    color: var(--brand-white);
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.status-chip.active .chip-check {
    background: var(--brand-red);
    border-color: var(--brand-red);
}

.status-chip.active .chip-check::after {
    content: "\2713";
}
/* Global Styles */
:root {
    /* Monochrome palette */
    --brand-red: #444444; /* repurposed as primary accent grey */
    --brand-black: #111111;
    --brand-white: #ffffff;
    --grey-050: #f7f7f7;
    --grey-100: #eeeeee;
    --grey-200: #dcdcdc;
    --grey-300: #c0c0c0;
    --grey-400: #9b9b9b;
    --grey-500: #767676;
    --grey-700: #434343;
    --container-width: min(1200px, 92vw);
    --shadow-soft: 0 20px 45px rgba(0, 0, 0, 0.12);
    --shadow-elevated: 0 10px 30px rgba(0, 0, 0, 0.18);
    --radius-md: 16px;
    --radius-lg: 24px;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--brand-white);
    color: var(--brand-black);
    line-height: 1.6;
}

small {
    color: var(--grey-500);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    width: var(--container-width);
    margin: 0 auto;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0.75rem;
    background: var(--brand-red);
    color: var(--brand-white);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    z-index: 1000;
}
.skip-link:focus { top: 0.75rem; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--grey-200);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--brand-black); font-weight: 700; }
.brand-mark { width: 28px; height: 28px; border-radius: 6px; background: linear-gradient(135deg, var(--brand-red), #222222); box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); }
.brand-text { letter-spacing: 0.2px; }

.site-nav { display: flex; align-items: center; gap: 1rem; }
.site-nav a { color: var(--brand-black); padding: 0.4rem 0.6rem; border-radius: 8px; }
.site-nav a:hover, .site-nav a:focus-visible { background: var(--grey-100); outline: none; }
.btn-sm { padding: 0.6rem 1rem; font-size: 0.95rem; }
.header-cta { margin-left: 0.25rem; }

.nav-toggle { display: none; background: transparent; border: 0; font-size: 1.5rem; line-height: 1; padding: 0.25rem 0.5rem; }

/* Brand badge (not used in new header, kept for compatibility) */
.brand-logo { height: 40px; width: auto; }

/* Hero Section */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    color: var(--brand-white);
    background: radial-gradient(640px 280px at 20% 0%, rgba(120, 120, 120, 0.35), #00000021 60%), linear-gradient(180deg, #1d2126 0%, #18191b 60%, #101010 100%);
}

.hero .container.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
    padding: 5rem 0 4rem;
}
/* Ensure correct column placement on desktop */
.hero .container.hero-grid .hero-copy { grid-column: 1; }
.hero .container.hero-grid .trade-in-card { grid-column: 2; align-self: start; }

.hero-copy {
    grid-column: span 6;
}

.hero-copy h1 {
    font-size: clamp(2.25rem, 3.6vw, 3.25rem);
    line-height: 1.15;
    margin-bottom: 1rem;
    margin-left: 0;
    margin-right: 0;
}

.hero-copy p {
    font-size: 1.05rem;
    max-width: 58ch;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.88);
    margin-left: 0;
    margin-right: 0;
}

.eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; color: rgba(255,255,255,.75); margin-bottom: 0.5rem; font-size: .85rem; }

/* Hero logo */
.hero-logo { 
    display: block; 
    width: 55%; 
    height: auto; 
    margin-bottom: 1rem;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,.25)); 
}

/* Inline logo with headline */
.hero-title { display: none; }
@media (max-width: 520px) { 
    .hero-title { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 0.5rem; 
    } 
}

.hero-copy .cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.65rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0px 0px 9px 0px rgb(0 0 0 / 9%);
}

.btn-outline {
    border: 2px solid var(--brand-white);
    background: transparent;
    color: var(--brand-white);
}

.btn-white {
    background-color: var(--brand-white);
    color: var(--brand-black);
    border: 2px solid transparent;
}

.btn-white:hover,
.btn-white:focus {
    color: var(--brand-red);
}

.btn:hover,
.btn:focus {
    transform: translateY(-2px);
    /*box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);*/
    box-shadow: 0px 0px 9px 0px rgb(0 0 0 / 9%);
}

.hero-highlights {
    margin-top: 2rem;
    display: grid;
    gap: 0.75rem;
    padding-left: 1.25rem;
    border-left: 3px solid rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.85);
}

.hero-highlights li {
    position: relative;
    padding-left: 1.2rem;
}

.hero-highlights li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #c4c4c4;
}

/* Trade-In Form */
.trade-in-card {
    background-color: rgba(255, 255, 255, 0.98);
    color: var(--brand-black);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elevated);
}

.trade-in-card h2 {
    font-size: 1.85rem;
    margin-bottom: 0.35rem;
}

.trade-in-card p {
    color: var(--grey-500);
    margin-bottom: 1rem;
}

.form-steps-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-step-status {
    font-weight: 600;
    color: var(--brand-black);
}

.form-step-dots {
    display: inline-flex;
    gap: 0.5rem;
}

.form-step-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--grey-300);
    transition: background-color 0.2s ease;
}

.form-step-dots span.active {
    background-color: var(--brand-red);
}

.form-step {
    display: none;
}

.form-step.current {
    display: block;
}

.step-heading {
    font-size: 1.2rem;
    margin-bottom: 1.1rem;
    color: var(--brand-black);
}

#step-vehicle-heading {
    font-size: 1.2rem;
    margin-bottom: 1.1rem;
    color: var(--brand-black);
}

.form-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-optional details {
    background: var(--grey-100);
    border: 1px solid var(--grey-300);
    border-radius: 12px;
    padding: 0.75rem 1rem;
}

.form-optional summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 1.25rem;
}

.form-optional summary::after {
    content: "\25BC";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-180deg);
    font-size: 0.75rem;
    color: var(--brand-red);
    transition: transform 0.2s ease;
}

.form-optional details[open] summary::after {
    transform: translateY(-50%);
}

.form-optional summary::-webkit-details-marker {
    display: none;
}

.optional-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.dropzone {
    min-height: 0 !important;
    border: 2px dashed var(--grey-300) !important;
    border-radius: 16px;
    padding: 1.25rem;
    background-color: var(--grey-050);
    color: var(--grey-500);
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 0.75rem;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.dropzone:hover,
.dropzone.dz-drag-hover {
    color: var(--brand-black);
    border: 2px dashed #d2d2d2;
}

.dropzone .dz-message {
    width: 100%;
    text-align: center;
    margin: 0;
    font-weight: 600;
    color: inherit;
}

.dropzone .dz-preview {
    margin: 0;
    width: 110px;
}

.dropzone .dz-image {
    border-radius: 12px;
    overflow: hidden;
}

.dropzone .dz-remove {
    font-size: 0.75rem;
    color: var(--brand-red);
}

.dropzone .dz-error-message {
    background: var(--brand-red);
}

.form-grid .full {
    grid-column: span 2;
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--brand-black);
}

.input-hint {
    display: none;
    margin-top: 0.35rem;
    font-size: 0.85rem;
    color: var(--brand-red);
}

.input-hint.is-visible {
    display: block;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--grey-300);
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--brand-red);
    outline: none;
    box-shadow: 0 0 0 4px rgba(68, 68, 68, 0.12);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

input[type="file"] {
    padding: 0.55rem 0.9rem;
}

input[type="file"]::file-selector-button {
    padding: 0.55rem 0.9rem;
    background-color: var(--brand-black);
    color: var(--brand-white);
    border: none;
    border-radius: 8px;
    margin-right: 1rem;
    cursor: pointer;
}

.checkbox-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.checkbox-grid > div {
    display: flex;
    align-items: center;
}

.checkbox-control {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--brand-black);
}

.checkbox-control input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.form-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
}

.form-navigation .btn-outline {
    border-color: var(--brand-black);
    color: var(--brand-black);
}

.form-navigation .btn-outline:hover,
.form-navigation .btn-outline:focus {
    border-color: var(--brand-red);
    color: var(--brand-red);
}

.file-feedback {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--grey-500);
}

.privacy {
    display: block;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--grey-500);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header span {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--brand-red);
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.section-header h2 {
    font-size: clamp(1.9rem, 2.6vw, 2.5rem);
    margin-top: 0.75rem;
    line-height: normal;
}

.section-header p {
    color: var(--grey-500);
    max-width: 50ch;
    margin: 1rem auto 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.feature-card {
    padding: 1.75rem;
    border-radius: 18px;
    border: 1px solid var(--grey-200);
    background: var(--brand-white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.feature-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--grey-500);
    font-size: 0.98rem;
}

.testimonials {
    background-color: var(--grey-100);
}

.testimonial-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial-card {
    background-color: var(--brand-white);
    border-radius: 18px;
    padding: 2rem;
    border: 1px solid var(--grey-300);
    position: relative;
}

.testimonial-card::before {
    content: "\201C";
    font-size: 3rem;
    position: absolute;
    top: -1.2rem;
    left: 1rem;
    color: var(--brand-red);
}

.testimonial-card strong {
    display: block;
    margin-top: 1.5rem;
}

.process-section { position: relative; }

.process-header {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1.15rem;
    border-radius: 999px;
    background: rgba(120, 120, 120, 0.12);
    color: var(--brand-red);
    font-weight: 700;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.process-header h2 {
    margin-top: 1.25rem;
    font-size: clamp(2rem, 3vw, 2.75rem);
}

.process-header p {
    margin-top: 1rem;
    color: var(--grey-500);
    font-size: 1.05rem;
}

.process-grid {
    display: grid;
    gap: clamp(1.9rem, 3vw, 3rem);
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    justify-content: center;
}

.process-step {
    position: relative;
    padding: clamp(2rem, 3.5vw, 2.75rem);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 240, 240, 0.98) 100%);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    min-height: 100%;
    isolation: isolate;
}

.process-step::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--brand-red), #222222);
    border-radius: 26px 26px 0 0;
}

.process-step:hover,
.process-step:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
    border-color: rgba(68, 68, 68, 0.25);
}

.process-step-content {
    position: relative;
    display: grid;
    gap: clamp(1rem, 2vw, 1.35rem);
}

.process-step-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    row-gap: 0.75rem;
    border-bottom: 1px solid rgba(155, 155, 155, 0.2);
    padding-bottom: 1rem;
}

.process-step-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.process-step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--brand-red), #222222);
    color: var(--brand-white);
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0px 7px 0px rgb(214 214 214);
}

.process-step-meta {
    display: grid;
    gap: 0.2rem;
}

.process-step-phase {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--grey-400);
}

.process-step h3 {
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    margin: 0;
    line-height: normal;
}

.process-step-duration {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--grey-500);
    background: rgba(155, 155, 155, 0.14);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    line-height: 1.2;
    backdrop-filter: blur(6px);
    white-space: normal;
    text-align: center;
    margin-left: auto;
}

.process-step-subtitle {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--brand-red);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.process-step-description,
.process-step p {
    color: var(--grey-500);
    font-size: 1rem;
    margin: 0;
}

.process-list {
    display: grid;
    gap: 0.4rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--grey-500);
    font-size: 0.95rem;
}

.process-list li::before {
    content: "";
    position: absolute;
    left: 0.35rem;
    top: 0.58rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-red), #222222);
    box-shadow: 0 0 0 6px rgba(68, 68, 68, 0.12);
}

.process-footer {
    margin-top: clamp(2.5rem, 5vw, 4rem);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 24px;
    background: radial-gradient(640px 280px at 20% 0%, rgba(120, 120, 120, 0.35), #00000021 60%), linear-gradient(180deg, #1d2126 0%, #18191b 60%, #101010 100%);
    color: var(--brand-white);
    text-align: center;
    display: grid;
    gap: 1rem;
    justify-items: center;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18);
}

.process-footer p {
    font-size: 1.1rem;
    margin: 0;
}

.process-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.process-footer h3 {
    font-size: clamp(1.6rem, 2.4vw, 2rem);
    margin: 0;
}

.cta-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 2rem;
    align-items: stretch;
}

.contact-card {
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #f1f1f1;
    background-color: var(--brand-white);
    box-shadow: var(--shadow-soft);
}

.contact-card h3 {
    margin-bottom: 1rem;
}

.contact-card ul li + li {
    margin-top: 0.75rem;
}

.contact-card a {
    color: var(--brand-red);
    font-weight: 600;
}

.map-placeholder {
    border-radius: 20px;
    overflow: hidden;
    min-height: 320px;
    filter: grayscale(15%);
}

.contact-map {
    grid-column: auto;
}

@media (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
    }
}

footer {
    background-color: var(--brand-black);
    color: rgba(255, 255, 255, 0.75);
    padding: 2rem 0;
}

footer .container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

footer p {
    font-size: 0.9rem;
}

footer a {
    color: var(--brand-white);
    font-weight: 500;
}

.footer-links {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.55);
}

.legal-section {
    background: var(--grey-100);
}

.legal-content {
    max-width: 72ch;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.legal-header h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.legal-header p {
    color: var(--grey-500);
}

.legal-content article {
    display: grid;
    gap: 0.75rem;
}

.legal-content ul {
    display: grid;
    gap: 0.35rem;
}

.legal-content a {
    color: var(--brand-red);
    font-weight: 600;
}

.legal-return {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--brand-red);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container.hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero .container.hero-grid .hero-copy,
    .hero .container.hero-grid .trade-in-card { grid-column: 1 !important; }
    .trade-in-card { margin-top: 8px; }
    .process-step { padding: 2.25rem 2rem; }
    .hero-logo {
        width: 70%;
        margin-left: 25px;
    }

    .hero-copy h1 {
        padding-left: 25px;
    }

    .hero-copy p {
        padding-left: 25px;
    }
}

@media (max-width: 768px) {
    .nav-toggle { display: inline-block; }
    .site-nav { position: fixed; inset: 64px 0 0 0; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); display: grid; align-content: start; gap: 0.5rem; padding: 1rem 1.25rem; transform: translateY(-10px); opacity: 0; pointer-events: none; transition: opacity .2s ease; }
    .site-nav.open { opacity: 1; pointer-events: auto; }
    .site-nav a { font-size: 1.05rem; }
    .hero { padding-top: 1rem; }

    .hero-copy .cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .trade-in-card {
        padding: 1.75rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-grid .full {
        grid-column: auto;
    }

    .optional-grid {
        grid-template-columns: 1fr;
    }

    .form-steps-header {
        align-items: flex-start;
        flex-direction: column;
    }

    section {
        padding: 4rem 0;
    }
    
    .process-step {
        padding: 2rem 1.75rem;
    }

    .process-step-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-step-duration {
        margin-top: 0.4rem;
    }
}

@media (max-width: 520px) {
    .process-step {
        padding: 1.75rem 1.5rem;
    }

    .process-footer {
        padding: 1.75rem;
    }
}
