.consignment-hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    color: #ffffff;
    background: #050505;
}

.consignment-hero-background,
.consignment-hero-overlay {
    position: absolute;
    inset: 0;
}

.consignment-hero-background {
    background-image:
            url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=2200&q=92");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: scale(1.01);
}

.consignment-hero-overlay {
    background:
            linear-gradient(
                    90deg,
                    rgba(0, 0, 0, 0.94) 0%,
                    rgba(0, 0, 0, 0.82) 42%,
                    rgba(0, 0, 0, 0.42) 72%,
                    rgba(0, 0, 0, 0.2) 100%
            ),
            linear-gradient(
                    180deg,
                    rgba(0, 0, 0, 0.08),
                    rgba(0, 0, 0, 0.65)
            );
}

.consignment-hero-container {
    position: relative;
    z-index: 2;
    min-height: 560px;
    padding-top: 58px;
    padding-bottom: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.consignment-hero-content {
    width: min(760px, 66%);
}

.consignment-breadcrumb {
    margin-bottom: 41px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.consignment-breadcrumb a {
    transition: color 0.3s ease;
}

.consignment-breadcrumb a:hover {
    color: #ffffff;
}

.consignment-breadcrumb svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.consignment-breadcrumb span {
    color: #ffffff;
}

.consignment-hero-eyebrow,
.consignment-section-eyebrow,
.consignment-dark-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.consignment-hero-eyebrow {
    color: rgba(255, 255, 255, 0.66);
}

.consignment-hero-eyebrow::before,
.consignment-section-eyebrow::before,
.consignment-dark-eyebrow::before {
    content: "";
    width: 35px;
    height: 1px;
}

.consignment-hero-eyebrow::before {
    background: rgba(255, 255, 255, 0.72);
}

.consignment-hero h1 {
    max-width: 730px;
    margin-top: 17px;
    color: #ffffff;
    font-size: clamp(46px, 5vw, 72px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.058em;
}

.consignment-hero h1 span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
}

.consignment-hero-content > p {
    max-width: 680px;
    margin-top: 23px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.75;
}

.consignment-hero-actions {
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.consignment-primary-button,
.consignment-secondary-button {
    min-height: 52px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition:
            color 0.3s ease,
            border-color 0.3s ease,
            background-color 0.3s ease;
}

.consignment-primary-button {
    border: 1px solid #ffffff;
    color: #111111;
    background: #ffffff;
}

.consignment-primary-button:hover {
    color: #ffffff;
    background: transparent;
}

.consignment-secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #ffffff;
    background: rgba(0, 0, 0, 0.15);
}

.consignment-secondary-button:hover {
    border-color: #ffffff;
}

.consignment-primary-button svg,
.consignment-secondary-button svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.consignment-hero-summary {
    width: 255px;
    flex: 0 0 255px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.consignment-summary-item {
    min-height: 89px;
    padding: 18px 4px;
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.consignment-summary-item strong {
    color: rgba(255, 255, 255, 0.36);
    font-size: 12px;
    font-weight: 700;
}

.consignment-summary-item span {
    color: rgba(255, 255, 255, 0.83);
    font-size: 14px;
    font-weight: 600;
}

.consignment-intro {
    padding: 76px 0;
    color: #171717;
    background: #ffffff;
}

.consignment-intro-grid {
    display: grid;
    grid-template-columns:
        minmax(460px, 0.92fr)
        minmax(0, 1.08fr);
    align-items: center;
    gap: 65px;
}

.consignment-intro-visual {
    position: relative;
    height: 580px;
    overflow: hidden;
    background: #111111;
}

.consignment-intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.consignment-intro-visual:hover img {
    transform: scale(1.035);
}

.consignment-intro-image-overlay {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    180deg,
                    rgba(0, 0, 0, 0.02) 40%,
                    rgba(0, 0, 0, 0.74)
            );
}

.consignment-intro-image-label {
    position: absolute;
    right: 28px;
    bottom: 27px;
    left: 28px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 25px;
}

.consignment-intro-image-label span {
    color: rgba(255, 255, 255, 0.57);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.consignment-intro-image-label strong {
    max-width: 280px;
    color: #ffffff;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.35;
    text-align: right;
}

.consignment-section-eyebrow {
    color: #6e6e6e;
}

.consignment-section-eyebrow::before {
    background: #171717;
}

.consignment-intro-content h2,
.consignment-section-heading h2,
.consignment-application-heading h2 {
    color: #171717;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.048em;
}

.consignment-intro-content h2 {
    max-width: 650px;
    margin-top: 14px;
    font-size: clamp(38px, 3.5vw, 52px);
}

.consignment-intro-content > p {
    max-width: 670px;
    margin-top: 19px;
    color: #646464;
    font-size: 15px;
    line-height: 1.8;
}

.consignment-intro-content > p + p {
    margin-top: 13px;
}

.consignment-intro-features {
    margin-top: 33px;
    border-top: 1px solid #dfdfdf;
}

.consignment-intro-feature {
    min-height: 115px;
    padding: 20px 0;
    display: grid;
    grid-template-columns: 43px 1fr;
    align-items: start;
    gap: 18px;
    border-bottom: 1px solid #dfdfdf;
}

.consignment-intro-feature > span {
    color: #a1a1a1;
    font-size: 12px;
    font-weight: 700;
}

.consignment-intro-feature strong {
    color: #1e1e1e;
    font-size: 17px;
    font-weight: 650;
}

.consignment-intro-feature p {
    max-width: 570px;
    margin-top: 7px;
    color: #707070;
    font-size: 13px;
    line-height: 1.65;
}

.consignment-benefits {
    padding: 72px 0 78px;
    color: #171717;
    background:
            linear-gradient(
                    180deg,
                    #f4f4f3,
                    #fafafa
            );
}

.consignment-section-heading {
    margin-bottom: 31px;
    padding-bottom: 25px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 450px;
    align-items: end;
    gap: 45px;
    border-bottom: 1px solid #dadada;
}

.consignment-section-heading h2 {
    margin-top: 11px;
    font-size: clamp(36px, 3.2vw, 48px);
}

.consignment-section-heading > p {
    color: #666666;
    font-size: 14px;
    line-height: 1.75;
}

.consignment-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 17px;
}

.consignment-benefit-card {
    position: relative;
    min-height: 300px;
    padding: 27px;
    overflow: hidden;
    border: 1px solid #dddddd;
    background: #ffffff;
    transition:
            border-color 0.3s ease,
            box-shadow 0.3s ease,
            transform 0.3s ease;
}

.consignment-benefit-card:hover {
    border-color: #bcbcbc;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.07);
    transform: translateY(-4px);
}

.consignment-benefit-number {
    position: absolute;
    top: 22px;
    right: 23px;
    color: #c4c4c4;
    font-size: 11px;
    font-weight: 700;
}

.consignment-benefit-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8d8d8;
    color: #171717;
}

.consignment-benefit-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
}

.consignment-benefit-card h3 {
    margin-top: 32px;
    color: #1d1d1d;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.3;
}

.consignment-benefit-card p {
    margin-top: 13px;
    color: #686868;
    font-size: 13px;
    line-height: 1.75;
}

.consignment-process {
    padding: 76px 0 82px;
    overflow: hidden;
    color: #ffffff;
    background:
            radial-gradient(
                    circle at 78% 15%,
                    rgba(255, 255, 255, 0.055),
                    transparent 31%
            ),
            linear-gradient(
                    135deg,
                    #060606,
                    #111111
            );
}

.consignment-process-heading {
    max-width: 750px;
}

.consignment-dark-eyebrow {
    color: rgba(255, 255, 255, 0.56);
}

.consignment-dark-eyebrow::before {
    background: rgba(255, 255, 255, 0.62);
}

.consignment-process-heading h2 {
    margin-top: 13px;
    color: #ffffff;
    font-size: clamp(39px, 3.8vw, 54px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.consignment-process-heading p {
    max-width: 650px;
    margin-top: 17px;
    color: rgba(255, 255, 255, 0.61);
    font-size: 14px;
    line-height: 1.75;
}

.consignment-process-grid {
    margin-top: 46px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.consignment-process-item {
    min-height: 265px;
    padding: 25px 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.11);
    transition: background-color 0.3s ease;
}

.consignment-process-item:last-child {
    border-right: 0;
}

.consignment-process-item:hover {
    background: rgba(255, 255, 255, 0.035);
}

.consignment-process-number {
    color: rgba(255, 255, 255, 0.34);
    font-size: 12px;
    font-weight: 700;
}

.consignment-process-item h3 {
    margin-top: 51px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.consignment-process-item p {
    margin-top: 13px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    line-height: 1.7;
}

.consignment-application {
    padding: 80px 0 88px;
    color: #171717;
    background:
            linear-gradient(
                    180deg,
                    #f5f5f4,
                    #ffffff 320px
            );
}

.consignment-application-heading {
    max-width: 790px;
    margin-bottom: 40px;
}

.consignment-application-heading h2 {
    margin-top: 12px;
    font-size: clamp(39px, 3.8vw, 54px);
}

.consignment-application-heading > p {
    max-width: 700px;
    margin-top: 17px;
    color: #666666;
    font-size: 15px;
    line-height: 1.75;
}

.consignment-application-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        365px;
    align-items: start;
    gap: 28px;
}

.consignment-form-wrapper {
    min-width: 0;
}

.consignment-form {
    border: 1px solid #dddddd;
    background: #ffffff;
    box-shadow: 0 22px 65px rgba(0, 0, 0, 0.055);
}

.consignment-form-section {
    padding: 34px;
    border-bottom: 1px solid #dfdfdf;
}

.consignment-form-section-heading {
    margin-bottom: 29px;
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: start;
    gap: 17px;
}

.consignment-form-section-heading > span {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #111111;
    font-size: 11px;
    font-weight: 700;
}

.consignment-form-section-heading h3 {
    color: #1c1c1c;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.3;
}

.consignment-form-section-heading p {
    margin-top: 6px;
    color: #777777;
    font-size: 12px;
    line-height: 1.6;
}

.consignment-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 17px;
}

.consignment-form-group {
    position: relative;
    min-width: 0;
}

.consignment-full-column {
    grid-column: 1 / -1;
}

.consignment-form-group > label {
    margin-bottom: 9px;
    display: block;
    color: #494949;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.consignment-form-group > label span {
    color: #b30000;
}

.consignment-form-group input,
.consignment-form-group select,
.consignment-form-group textarea {
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 0;
    outline: none;
    color: #222222;
    background: #ffffff;
    font-family: inherit;
    font-size: 13px;
    transition:
            border-color 0.3s ease,
            box-shadow 0.3s ease;
}

.consignment-form-group input,
.consignment-form-group select {
    height: 50px;
}

.consignment-form-group input {
    padding: 0 14px;
}

.consignment-form-group select {
    padding: 0 41px 0 14px;
    appearance: none;
    cursor: pointer;
}

.consignment-form-group textarea {
    min-height: 150px;
    padding: 14px;
    resize: vertical;
    line-height: 1.65;
}

.consignment-form-group input::placeholder,
.consignment-form-group textarea::placeholder {
    color: #a0a0a0;
}

.consignment-form-group input:focus,
.consignment-form-group select:focus,
.consignment-form-group textarea:focus {
    border-color: #151515;
    box-shadow: 0 0 0 1px #151515;
}

.consignment-form-group.has-error input,
.consignment-form-group.has-error select,
.consignment-form-group.has-error textarea {
    border-color: #bd2020;
}

.consignment-select {
    position: relative;
}

.consignment-select svg {
    position: absolute;
    top: 50%;
    right: 14px;
    width: 15px;
    height: 15px;
    transform: translateY(-50%);
    fill: none;
    stroke: #696969;
    stroke-width: 1.8;
    pointer-events: none;
}

.consignment-price-input {
    position: relative;
}

.consignment-price-input input {
    padding-right: 45px;
}

.consignment-price-input span {
    position: absolute;
    top: 50%;
    right: 15px;
    color: #555555;
    font-size: 14px;
    font-weight: 700;
    transform: translateY(-50%);
}

.consignment-field-error {
    min-height: 17px;
    margin-top: 5px;
    display: block;
    color: #ad1d1d;
    font-size: 10px;
    line-height: 1.4;
}

.consignment-character-count {
    position: absolute;
    right: 13px;
    bottom: 11px;
    color: #999999;
    background: #ffffff;
    font-size: 10px;
}

.consignment-character-count strong {
    color: #555555;
}

.consignment-upload-area {
    position: relative;
    min-height: 310px;
    padding: 41px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px dashed #a8a8a8;
    outline: none;
    text-align: center;
    background:
            linear-gradient(
                    135deg,
                    #fafafa,
                    #f3f3f3
            );
    cursor: pointer;
    transition:
            border-color 0.3s ease,
            background-color 0.3s ease,
            transform 0.3s ease;
}

.consignment-upload-area:hover,
.consignment-upload-area:focus,
.consignment-upload-area.drag-active {
    border-color: #111111;
    background: #eeeeee;
}

.consignment-upload-area.drag-active {
    transform: scale(0.995);
}

.consignment-upload-icon {
    width: 65px;
    height: 65px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cacaca;
    color: #222222;
    background: #ffffff;
}

.consignment-upload-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
}

.consignment-upload-area h4 {
    margin-top: 21px;
    color: #202020;
    font-size: 20px;
    font-weight: 600;
}

.consignment-upload-area > p {
    max-width: 560px;
    margin-top: 9px;
    color: #777777;
    font-size: 13px;
    line-height: 1.65;
}

.consignment-upload-button {
    min-height: 45px;
    margin-top: 20px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: #ffffff;
    background: #111111;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
            color 0.3s ease,
            background-color 0.3s ease;
}

.consignment-upload-button:hover {
    color: #111111;
    background: #dddddd;
}

.consignment-upload-button svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.consignment-upload-rules {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
}

.consignment-upload-rules span {
    min-height: 26px;
    padding: 0 9px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #d3d3d3;
    color: #777777;
    background: #ffffff;
    font-size: 9px;
    font-weight: 700;
}

.consignment-upload-status {
    min-height: 47px;
    margin-top: 16px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid #dddddd;
    background: #fafafa;
}

.consignment-upload-status[hidden] {
    display: none;
}

.consignment-upload-status > span {
    color: #666666;
    font-size: 11px;
    font-weight: 600;
}

.consignment-upload-status strong {
    color: #171717;
}

.consignment-upload-status button {
    color: #555555;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-transform: uppercase;
}

.consignment-image-preview {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 11px;
}

.consignment-preview-item {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid #d7d7d7;
    background: #eeeeee;
}

.consignment-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.consignment-preview-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    180deg,
                    rgba(0, 0, 0, 0.02) 48%,
                    rgba(0, 0, 0, 0.53)
            );
    pointer-events: none;
}

.consignment-preview-index {
    position: absolute;
    bottom: 9px;
    left: 10px;
    z-index: 2;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
}

.consignment-preview-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3;
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
    transition:
            color 0.3s ease,
            background-color 0.3s ease;
}

.consignment-preview-remove:hover {
    color: #111111;
    background: #ffffff;
}

.consignment-preview-remove svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.consignment-upload-error,
.consignment-approval-error {
    margin-top: 13px;
    color: #aa1c1c;
    font-size: 11px;
    font-weight: 600;
}

.consignment-upload-error[hidden],
.consignment-approval-error[hidden] {
    display: none;
}

.consignment-approval-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.consignment-checkbox {
    position: relative;
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: start;
    gap: 12px;
    cursor: pointer;
}

.consignment-checkbox input {
    position: absolute;
    visibility: hidden;
    opacity: 0;
}

.consignment-checkbox-box {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #bfbfbf;
    background: #ffffff;
    transition:
            border-color 0.3s ease,
            background-color 0.3s ease;
}

.consignment-checkbox-box svg {
    width: 15px;
    height: 15px;
    opacity: 0;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2.2;
    transition: opacity 0.2s ease;
}

.consignment-checkbox input:checked + .consignment-checkbox-box {
    border-color: #111111;
    background: #111111;
}

.consignment-checkbox input:checked + .consignment-checkbox-box svg {
    opacity: 1;
}

.consignment-checkbox-text {
    padding-top: 2px;
    color: #5e5e5e;
    font-size: 12px;
    line-height: 1.65;
}

.consignment-checkbox-text strong {
    color: #a80000;
}

.consignment-form-submit {
    min-height: 130px;
    padding: 28px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    background:
            linear-gradient(
                    135deg,
                    #0a0a0a,
                    #171717
            );
}

.consignment-form-submit > div {
    max-width: 520px;
}

.consignment-form-submit > div > span {
    color: #ffffff;
    font-size: 15px;
    font-weight: 650;
}

.consignment-form-submit > div > p {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    line-height: 1.6;
}

.consignment-form-submit > button {
    min-width: 280px;
    min-height: 55px;
    padding: 0 19px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 17px;
    color: #111111;
    background: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition:
            color 0.3s ease,
            background-color 0.3s ease;
}

.consignment-form-submit > button:hover {
    color: #ffffff;
    background: #333333;
}

.consignment-form-submit > button:disabled {
    cursor: wait;
    opacity: 0.72;
}

.consignment-form-submit > button > svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
}

.consignment-submit-loading {
    display: none;
    align-items: center;
    gap: 10px;
}

.consignment-submit-loading > span {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 0, 0, 0.25);
    border-top-color: #111111;
    border-radius: 50%;
    animation: consignmentButtonLoading 0.7s linear infinite;
}

.consignment-form-submit > button.is-loading .consignment-submit-text,
.consignment-form-submit > button.is-loading > svg {
    display: none;
}

.consignment-form-submit > button.is-loading .consignment-submit-loading {
    display: inline-flex;
}

@keyframes consignmentButtonLoading {
    to {
        transform: rotate(360deg);
    }
}

.consignment-contact-panel {
    position: sticky;
    top: 148px;
}

.consignment-contact-main {
    position: relative;
    overflow: hidden;
    padding: 29px;
    color: #ffffff;
    background:
            radial-gradient(
                    circle at 100% 0,
                    rgba(255, 255, 255, 0.08),
                    transparent 34%
            ),
            linear-gradient(
                    145deg,
                    #090909,
                    #181818
            );
}

.consignment-contact-main::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: #ffffff;
}

.consignment-contact-eyebrow {
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.consignment-contact-main h3 {
    margin-top: 11px;
    color: #ffffff;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.consignment-contact-main > p {
    margin-top: 13px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    line-height: 1.7;
}

.consignment-contact-button {
    min-height: 67px;
    margin-top: 11px;
    padding: 9px 13px;
    display: grid;
    grid-template-columns: 43px 1fr;
    align-items: center;
    gap: 13px;
    transition:
            box-shadow 0.3s ease,
            transform 0.3s ease;
}

.consignment-contact-button:hover {
    box-shadow: 0 13px 28px rgba(0, 0, 0, 0.24);
    transform: translateY(-2px);
}

.consignment-contact-button > span {
    width: 43px;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.consignment-contact-button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
}

.consignment-contact-button > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.consignment-contact-button small {
    font-size: 10px;
}

.consignment-contact-button strong {
    font-size: 14px;
    font-weight: 700;
}

.consignment-phone-button {
    margin-top: 24px;
    color: #111111;
    background: #ffffff;
}

.consignment-phone-button > span {
    border: 1px solid #d4d4d4;
}

.consignment-phone-button small {
    color: #777777;
}

.consignment-whatsapp-button {
    color: #ffffff;
    background:
            linear-gradient(
                    135deg,
                    #1eb95a,
                    #159649
            );
}

.consignment-whatsapp-button > span {
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.consignment-whatsapp-button svg {
    fill: currentColor;
    stroke: none;
}

.consignment-whatsapp-button small {
    color: rgba(255, 255, 255, 0.72);
}

.consignment-contact-features {
    border-right: 1px solid #dddddd;
    border-left: 1px solid #dddddd;
    background: #ffffff;
}

.consignment-contact-features > div {
    min-height: 91px;
    padding: 18px 21px;
    display: grid;
    grid-template-columns: 43px 1fr;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid #dddddd;
}

.consignment-contact-features > div > span {
    width: 43px;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8d8d8;
    color: #222222;
}

.consignment-contact-features svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

.consignment-contact-features strong {
    color: #222222;
    font-size: 14px;
    font-weight: 650;
}

.consignment-contact-features p {
    margin-top: 4px;
    color: #777777;
    font-size: 10px;
    line-height: 1.45;
}

.consignment-location-card {
    margin-top: 16px;
    padding: 25px;
    border: 1px solid #dddddd;
    background: #ffffff;
}

.consignment-location-card > span {
    color: #777777;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.consignment-location-card > strong {
    margin-top: 10px;
    display: block;
    color: #222222;
    font-size: 17px;
    font-weight: 650;
}

.consignment-location-card > p {
    margin-top: 7px;
    color: #696969;
    font-size: 12px;
    line-height: 1.65;
}

.consignment-location-card > a {
    min-height: 44px;
    margin-top: 17px;
    padding: 0 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #d7d7d7;
    color: #222222;
    background: #fafafa;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition:
            color 0.3s ease,
            border-color 0.3s ease,
            background-color 0.3s ease;
}

.consignment-location-card > a:hover {
    border-color: #111111;
    color: #ffffff;
    background: #111111;
}

.consignment-location-card svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
}

.consignment-success {
    min-height: 650px;
    padding: 70px 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid #dddddd;
    text-align: center;
    background: #ffffff;
}

.consignment-success[hidden] {
    display: none;
}

.consignment-success-icon {
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #111111;
}

.consignment-success-icon svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
}

.consignment-success-eyebrow {
    margin-top: 27px;
    color: #737373;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.consignment-success h3 {
    margin-top: 11px;
    color: #181818;
    font-size: 38px;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.consignment-success > p {
    max-width: 610px;
    margin-top: 15px;
    color: #666666;
    font-size: 14px;
    line-height: 1.75;
}

.consignment-success-actions {
    margin-top: 27px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.consignment-success-actions button,
.consignment-success-actions a {
    min-height: 47px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.consignment-success-actions button {
    color: #ffffff;
    background: #111111;
}

.consignment-success-actions a {
    border: 1px solid #d5d5d5;
    color: #222222;
    background: #ffffff;
}

@media (max-width: 1200px) {
    .consignment-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .consignment-process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .consignment-process-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    }

    .consignment-application-layout {
        grid-template-columns:
            minmax(0, 1fr)
            330px;
    }
}

@media (max-width: 1024px) {
    .consignment-hero-content {
        width: 100%;
    }

    .consignment-hero-summary {
        display: none;
    }

    .consignment-intro-grid {
        grid-template-columns: 1fr;
    }

    .consignment-intro-visual {
        height: 500px;
    }

    .consignment-section-heading {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 17px;
    }

    .consignment-application-layout {
        grid-template-columns: 1fr;
    }

    .consignment-contact-panel {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 17px;
    }

    .consignment-contact-main {
        grid-row: span 2;
    }

    .consignment-location-card {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .consignment-hero {
        min-height: 540px;
    }

    .consignment-hero-container {
        min-height: 540px;
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .consignment-breadcrumb {
        margin-bottom: 31px;
        font-size: 10px;
    }

    .consignment-hero h1 {
        font-size: 46px;
    }

    .consignment-hero-content > p {
        font-size: 14px;
    }

    .consignment-intro,
    .consignment-benefits,
    .consignment-process,
    .consignment-application {
        padding-top: 54px;
        padding-bottom: 58px;
    }

    .consignment-intro-grid {
        gap: 39px;
    }

    .consignment-intro-visual {
        height: 390px;
    }

    .consignment-intro-content h2,
    .consignment-section-heading h2,
    .consignment-process-heading h2,
    .consignment-application-heading h2 {
        font-size: 37px;
    }

    .consignment-benefits-grid {
        grid-template-columns: 1fr;
    }

    .consignment-benefit-card {
        min-height: 265px;
    }

    .consignment-process-grid {
        grid-template-columns: 1fr;
    }

    .consignment-process-item {
        min-height: auto;
        padding: 23px 0;
        border-right: 0;
    }

    .consignment-process-item h3 {
        margin-top: 24px;
    }

    .consignment-form-section {
        padding: 24px;
    }

    .consignment-form-grid {
        grid-template-columns: 1fr;
    }

    .consignment-full-column {
        grid-column: auto;
    }

    .consignment-image-preview {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .consignment-form-submit {
        padding: 27px 24px;
        align-items: stretch;
        flex-direction: column;
    }

    .consignment-form-submit > button {
        width: 100%;
        min-width: 0;
    }

    .consignment-contact-panel {
        grid-template-columns: 1fr;
    }

    .consignment-contact-main {
        grid-row: auto;
    }
}

@media (max-width: 480px) {
    .consignment-hero {
        min-height: 520px;
    }

    .consignment-hero-container {
        min-height: 520px;
        padding-top: 32px;
        padding-bottom: 34px;
    }

    .consignment-hero h1 {
        font-size: 39px;
    }

    .consignment-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .consignment-primary-button,
    .consignment-secondary-button {
        width: 100%;
    }

    .consignment-intro-visual {
        height: 310px;
    }

    .consignment-intro-image-label {
        right: 18px;
        bottom: 18px;
        left: 18px;
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .consignment-intro-image-label strong {
        font-size: 17px;
        text-align: left;
    }

    .consignment-intro-content h2,
    .consignment-section-heading h2,
    .consignment-process-heading h2,
    .consignment-application-heading h2 {
        font-size: 32px;
    }

    .consignment-form-section {
        padding: 19px;
    }

    .consignment-form-section-heading {
        grid-template-columns: 39px 1fr;
        gap: 13px;
    }

    .consignment-form-section-heading > span {
        width: 39px;
        height: 39px;
    }

    .consignment-form-section-heading h3 {
        font-size: 20px;
    }

    .consignment-upload-area {
        min-height: 290px;
        padding: 33px 17px;
    }

    .consignment-upload-area h4 {
        font-size: 18px;
    }

    .consignment-image-preview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .consignment-upload-status {
        padding: 11px;
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .consignment-success {
        min-height: 560px;
        padding: 50px 20px;
    }

    .consignment-success h3 {
        font-size: 32px;
    }
}
.consignment-application-heading{
    width:100%;
    max-width:none;
    margin-left:0;
    margin-right:0;
}

.consignment-application-heading h2{
    max-width:980px;
    font-size:clamp(34px,3.2vw,50px);
    line-height:1.12;
    letter-spacing:0;
}

.consignment-application-heading > p{
    max-width:900px;
    font-size:16px;
    line-height:1.75;
}

.consignment-hero-content h1{
    font-size:clamp(42px,4.2vw,72px);
    line-height:1.03;
    letter-spacing:0;
}

.consignment-hero-content > p{
    max-width:760px;
    font-size:17px;
    line-height:1.75;
}

@media(max-width:768px){
    .consignment-application-heading h2{
        font-size:34px;
    }

    .consignment-application-heading > p{
        font-size:15px;
    }

    .consignment-hero-content h1{
        font-size:40px;
    }

    .consignment-hero-content > p{
        font-size:15.5px;
    }
}
