.white-delivery-page {
    --wd-bg: #222635;
    --wd-surface: rgba(43, 47, 64, 0.92);
    --wd-surface-strong: rgba(28, 34, 49, 0.96);
    --wd-panel: #13161f;
    --wd-border: rgba(255, 255, 255, 0.12);
    --wd-accent: #ff8e29;
    --wd-accent-hover: #ef8423;
    --wd-success: #8acd52;
    --wd-success-hover: #77d444;
    color: #e6e6e6;
    font-size: 16px;
    line-height: 1.5;
}
.white-delivery-page * {
    box-sizing: border-box;
}
.white-delivery-hero,
.white-delivery-card,
.white-delivery-process,
.white-delivery-docs,
.white-delivery-calc,
.white-delivery-form {
    padding: 30px;
    border-radius: 18px;
    background: var(--wd-surface);
    border: 1px solid var(--wd-border);
}
.white-delivery-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 30px;
}
.white-delivery-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--wd-accent);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}
.white-delivery-hero h1,
.white-delivery-calc h2,
.white-delivery-card h2,
.white-delivery-process h2,
.white-delivery-docs h2 {
    margin: 0 0 16px;
    color: #fff;
    line-height: 1.18;
    letter-spacing: 0;
    text-transform: none;
}
.white-delivery-hero h1 {
    max-width: 720px;
    padding-bottom: 0;
    font-size: 36px;
}
.white-delivery-hero p,
.white-delivery-card p,
.white-delivery-docs p,
.white-delivery-calc__info p {
    margin: 0;
    color: #e6e6e6;
    font-size: 17px;
    line-height: 1.55;
}
.white-delivery-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    margin-top: 26px;
    border: 0;
    border-radius: 999px;
    background: var(--wd-accent);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.white-delivery-button:hover {
    background: var(--wd-accent-hover);
    color: #fff;
    transform: translateY(-1px);
}
.white-delivery-hero__summary {
    display: grid;
    gap: 12px;
}
.white-delivery-hero__summary div {
    padding: 18px;
    border-radius: 18px;
    background: var(--wd-surface-strong);
    border: 1px solid var(--wd-border);
}
.white-delivery-hero__summary span {
    display: block;
    color: var(--wd-success);
    font-size: 24px;
    font-weight: 700;
}
.white-delivery-hero__summary p {
    margin: 6px 0 0;
    color: #cccccc;
    font-size: 14px;
    line-height: 1.35;
}
.white-delivery-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 28px;
    margin-top: 36px;
}
.white-delivery-card ul,
.white-delivery-docs ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}
.white-delivery-card li,
.white-delivery-docs li {
    position: relative;
    margin-top: 12px;
    padding-left: 24px;
    color: #e6e6e6;
    font-size: 16px;
    line-height: 1.45;
}
.white-delivery-card li:before,
.white-delivery-docs li:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--wd-accent);
}
.white-delivery-process {
    margin-top: 34px;
}
.white-delivery-process ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: white-delivery-step;
}
.white-delivery-process li {
    position: relative;
    min-height: 78px;
    padding: 16px 16px 16px 58px;
    border-radius: 18px;
    background: var(--wd-surface-strong);
    color: #e6e6e6;
    font-size: 15px;
    line-height: 1.45;
    counter-increment: white-delivery-step;
}
.white-delivery-process li:before {
    content: counter(white-delivery-step);
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--wd-accent);
    color: #fff;
    font-weight: 700;
}
.white-delivery-docs {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    margin-top: 34px;
}
.white-delivery-docs ul {
    margin-top: 0;
}
.white-delivery-calc {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 34px;
    margin-top: 38px;
    background: var(--wd-panel);
}
.white-delivery-calc__info {
    padding: 0;
}
.white-delivery-calc__note {
    margin-top: 20px;
    padding: 16px;
    border-radius: 18px;
    border-left: 4px solid #ff8e29;
    background: var(--wd-bg);
    color: #e6e6e6;
    line-height: 1.45;
}
.white-delivery-form {
    background: var(--wd-surface);
}
.white-delivery-form .form__steps {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.white-delivery-form .form__steps_item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--wd-surface-strong);
    border: 1px solid var(--wd-border);
    color: #cccccc;
    cursor: default;
    font-weight: 700;
}
.white-delivery-form .form__steps_item.active {
    background: var(--wd-accent);
    border-color: var(--wd-accent);
    color: #fff;
}
.white-delivery-form .calculate__form_field,
.white-delivery-form .calculate__thanks,
.white-delivery-form .calculate__error {
    display: none;
}
.white-delivery-form .calculate__form_field.current {
    display: block;
}
.white-delivery-form .calculate__form_field-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.white-delivery-form .calculate__form_label {
    display: block;
}
.white-delivery-form .calculate__form_label-title {
    display: block;
    margin-bottom: 7px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}
.white-delivery-form .calculate__form_input,
.white-delivery-form .calculate__form_textarea {
    width: 100%;
    min-height: 46px;
    padding: 0 13px;
    border: 1px solid var(--wd-border);
    border-radius: 8px;
    background: var(--wd-panel);
    color: #fff;
    font: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.white-delivery-form input[type="number"] {
    appearance: textfield;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
}
.white-delivery-form input[type="number"]::-webkit-outer-spin-button,
.white-delivery-form input[type="number"]::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}
.white-delivery-form .calculate__form_input::placeholder,
.white-delivery-form .calculate__form_textarea::placeholder {
    color: #989ba6;
}
.white-delivery-form .calculate__form_textarea {
    min-height: 118px;
    padding-top: 12px;
    resize: vertical;
}
.white-delivery-form .calculate__form_input:focus,
.white-delivery-form .calculate__form_textarea:focus {
    border-color: var(--wd-accent);
    box-shadow: 0 0 0 2px rgba(255, 142, 41, 0.25);
}
.white-delivery-form .calculate__form_input.error,
.white-delivery-form .calculate__form_textarea.error {
    border-color: #de4040;
}
.white-delivery-form .tnved-code-label.is-disabled .calculate__form_input {
    opacity: 0.75;
    cursor: not-allowed;
}
.white-delivery-form .calculate__form_textarea-label,
.white-delivery-form .tnved-code-label,
.white-delivery-form .calculate__volume-panel,
.white-delivery-form .calculate__form_checkboxes-inner,
.white-delivery-form .white-delivery-policy {
    grid-column: 1 / -1;
}
.white-delivery-form .calculate__form_checkboxes-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
}
.white-delivery-form .white-delivery-check {
    display: flex;
    align-items: center;
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}
.white-delivery-form .white-delivery-check label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    color: #e6e6e6;
    cursor: pointer;
}
.white-delivery-form .white-delivery-check .custom-checkbox + label::before {
    width: 20px;
    height: 20px;
    border-width: 2px;
    border-radius: 4px;
    margin-right: 9px;
}
.white-delivery-form .white-delivery-check label p {
    margin: 0;
    color: #e6e6e6;
    font-size: 15px;
    line-height: 1.25;
    text-align: left;
}
.white-delivery-form .white-delivery-policy {
    margin: 0;
}
.white-delivery-form .white-delivery-policy label {
    align-items: flex-start;
}
.white-delivery-form .white-delivery-policy .custom-checkbox + label::before {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border-width: 2px;
    border-radius: 4px;
    margin: 1px 10px 0 0;
}
.white-delivery-form .white-delivery-policy label p {
    margin: 0;
    color: #cccccc;
    font-size: 14px;
    line-height: 1.45;
}
.white-delivery-form .white-delivery-policy a {
    color: var(--wd-success);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.white-delivery-form .white-delivery-policy a:hover {
    color: var(--wd-success-hover);
    text-decoration: none;
}
.white-delivery-form .calculate__form_volume-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 118px;
    gap: 8px;
}
.white-delivery-form .calculate__form_volume-calc-btn,
.white-delivery-form #calc-volume-btn,
.white-delivery-form .white-delivery-repeat {
    min-height: 46px;
    border: 1px solid rgba(138, 205, 82, 0.5);
    border-radius: 999px;
    background: var(--wd-success);
    color: #13161f;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.white-delivery-form #calc-volume-btn {
    display: flex;
    align-items: center;
    align-self: end;
    justify-content: center;
    height: 40px;
    min-height: 40px;
}
.white-delivery-form .calculate__form_volume-calc-btn:hover,
.white-delivery-form #calc-volume-btn:hover,
.white-delivery-form .white-delivery-repeat:hover {
    border-color: var(--wd-success-hover);
    background: var(--wd-success-hover);
    transform: translateY(-1px);
}
.white-delivery-form .calculate__volume-panel {
    display: none;
    grid-template-columns: repeat(5, minmax(0, 1fr)) 120px;
    align-items: end;
    gap: 10px;
    margin-top: 0;
    padding: 16px;
    border-radius: 18px;
    background: var(--wd-surface-strong);
    border: 1px solid var(--wd-border);
}
.white-delivery-form .calculate__volume-panel.is-open {
    display: grid;
}
.white-delivery-form .calculate__volume-panel span {
    display: block;
    margin-bottom: 6px;
    color: #cccccc;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}
.white-delivery-form .calculate__volume-panel input,
.white-delivery-form .calculate__volume-panel select {
    width: 100%;
    min-height: 40px;
    padding: 0 10px;
    border: 1px solid var(--wd-border);
    border-radius: 8px;
    background: var(--wd-bg);
    color: #fff;
    font: inherit;
}
.white-delivery-form .calculate__form_error-message {
    min-height: 20px;
    margin: 14px 0 0;
    color: #de4040;
    font-size: 14px;
}
.white-delivery-form .calculate__form_button-inner {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
}
.white-delivery-form .calculate__form_prev {
    display: none;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid var(--wd-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #e6e6e6;
    font-weight: 700;
    cursor: pointer;
}
.white-delivery-form .calculate__form_prev:hover {
    border-color: var(--wd-accent);
    color: #fff;
}
.white-delivery-form .calculate__form_next {
    margin-top: 0;
    margin-left: auto;
}
.white-delivery-form .calculate__form_next:disabled {
    cursor: default;
    opacity: 0.7;
}
.white-delivery-form .calculate__thanks,
.white-delivery-form .calculate__error {
    padding: 32px 20px;
    text-align: center;
    background: var(--wd-surface-strong);
    border-radius: 18px;
}
.white-delivery-form .calculate__thanks h3,
.white-delivery-form .calculate__error h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 24px;
}
.white-delivery-form .calculate__thanks h3 {
    color: var(--wd-success);
}
.white-delivery-form .calculate__thanks p,
.white-delivery-form .calculate__error p {
    margin: 0;
    color: #e6e6e6;
    line-height: 1.45;
}
.white-delivery-form .white-delivery-repeat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 0 22px;
}
.white-delivery-form.is-success .calculate__thanks,
.white-delivery-form.is-error .calculate__error {
    display: block;
}
.white-delivery-form.is-success .form__steps,
.white-delivery-form.is-success .calculate__form_field,
.white-delivery-form.is-success .calculate__form_button-inner,
.white-delivery-form.is-error .calculate__form_field,
.white-delivery-form.is-error .calculate__form_button-inner,
.white-delivery-form.is-success .calculate__form_error-message,
.white-delivery-form.is-error .calculate__form_error-message {
    display: none;
}
@media (max-width: 980px) {
    .white-delivery-hero,
    .white-delivery-grid,
    .white-delivery-docs,
    .white-delivery-calc {
        grid-template-columns: 1fr;
    }
    .white-delivery-process ol,
    .white-delivery-form .calculate__volume-panel {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 680px) {
    .white-delivery-hero,
    .white-delivery-card,
    .white-delivery-process,
    .white-delivery-docs,
    .white-delivery-calc,
    .white-delivery-form {
        padding: 18px;
    }
    .white-delivery-hero h1 {
        font-size: 30px;
    }
    .white-delivery-form .calculate__form_field-content,
    .white-delivery-form .calculate__form_checkboxes-inner,
    .white-delivery-process ol,
    .white-delivery-form .calculate__volume-panel {
        grid-template-columns: 1fr;
    }
    .white-delivery-form .calculate__form_button-inner {
        flex-direction: column;
    }
    .white-delivery-form .calculate__form_volume-row {
        grid-template-columns: 1fr;
    }
    .white-delivery-form .calculate__form_prev,
    .white-delivery-form .calculate__form_next,
    .white-delivery-form .calculate__form_volume-calc-btn {
        width: 100%;
        margin-left: 0;
    }
}
