/* ===== ORDER PAGE ===== */

/* Hero */
.order-hero {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 24px 50px;
    text-align: center;
}

.order-hero-content {
    max-width: 600px;
}

.order-hero-content .section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(57, 236, 254, 0.08);
    border: 1px solid rgba(57, 236, 254, 0.2);
    border-radius: 9999px;
    color: var(--accent-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.order-hero-content h1 {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
}

.order-hero-content .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.order-hero-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== ORDER FORM ===== */
.order-form-section {
    position: relative;
    z-index: 1;
    padding: 0 24px 80px;
    max-width: 780px;
    margin: 0 auto;
}

.order-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

/* Step Indicator */
.order-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.order-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 70px;
}

.step-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    transition: all 0.4s ease;
}

.order-step.active .step-number,
.order-step.completed .step-number {
    background: var(--accent-gradient);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 16px rgba(57, 236, 254, 0.3);
}

.order-step.completed .step-number {
    font-size: 0;
}

.order-step.completed .step-number::after {
    content: '✓';
    font-size: 14px;
}

.order-step span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-step.active span {
    color: var(--accent-primary);
}

.step-line {
    flex: 1;
    max-width: 80px;
    height: 2px;
    background: var(--border-color);
    margin: 0 12px;
    margin-bottom: 22px;
    border-radius: 1px;
    transition: background 0.4s ease;
}

.step-line.completed {
    background: var(--accent-gradient);
}

/* Panels */
.order-panel {
    display: none;
}

.order-panel.active {
    display: block;
    animation: panelFadeIn 0.4s ease;
}

@keyframes panelFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.order-panel h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.selected-service-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(57, 236, 254, 0.06);
    border: 1px solid rgba(57, 236, 254, 0.15);
    border-radius: 12px;
    margin-bottom: 24px;
}

.selected-service-badge .badge-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.selected-service-badge .badge-value {
    font-weight: 700;
    color: var(--accent-primary);
    font-size: 0.95rem;
}

.selected-service-badge .badge-change {
    margin-left: auto;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-secondary);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.selected-service-badge .badge-change:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* Service Selection Grid */
.order-service-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-service-option input {
    display: none;
}

.option-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.25s ease;
}

.option-card:hover {
    border-color: rgba(57, 236, 254, 0.25);
    background: var(--bg-elevated);
}

.order-service-option input:checked+.option-card {
    border-color: var(--accent-primary);
    background: rgba(57, 236, 254, 0.06);
    box-shadow: 0 0 20px rgba(57, 236, 254, 0.08);
}

.option-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(57, 236, 254, 0.08);
    border: 1px solid rgba(57, 236, 254, 0.15);
    border-radius: var(--radius-md);
    transition: all 0.25s ease;
}

.option-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent-primary);
}

.order-service-option input:checked+.option-card .option-icon {
    background: rgba(57, 236, 254, 0.15);
    box-shadow: 0 0 12px rgba(57, 236, 254, 0.15);
}

.option-info {
    flex: 1;
}

.option-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.option-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.option-check {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    color: transparent;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.order-service-option input:checked+.option-card .option-check {
    background: var(--accent-gradient);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 10px rgba(57, 236, 254, 0.3);
}

/* Form Fields */
.order-field {
    margin-bottom: 20px;
}

.order-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.order-field input,
.order-field textarea,
.order-field select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.25s ease;
    outline: none;
}

.order-field input:focus,
.order-field textarea:focus,
.order-field select:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(57, 236, 254, 0.1);
}

.order-field textarea {
    resize: vertical;
    min-height: 80px;
}

.order-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.order-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Extras */
.order-extras {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.order-extra {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.order-extra::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(57, 236, 254, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.order-extra:hover {
    border-color: rgba(57, 236, 254, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.order-extra:hover::before {
    opacity: 1;
}

.order-extra input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* Custom checkmark circle */
.extra-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    background: transparent;
    position: relative;
    z-index: 1;
}

.extra-check svg {
    width: 12px;
    height: 12px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #0b0f14;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Feature icon */
.extra-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(57, 236, 254, 0.08);
    border: 1px solid rgba(57, 236, 254, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.extra-icon svg {
    width: 18px;
    height: 18px;
    color: var(--accent-primary);
    filter: drop-shadow(0 0 4px rgba(57, 236, 254, 0.2));
}

/* Text content */
.extra-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 1;
}

.extra-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.extra-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* ===== Checked state ===== */
.order-extra input:checked~.extra-check {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    box-shadow: 0 0 12px rgba(57, 236, 254, 0.4);
}

.order-extra input:checked~.extra-check svg {
    opacity: 1;
    transform: scale(1);
}

.order-extra input:checked~.extra-icon {
    background: rgba(57, 236, 254, 0.15);
    border-color: rgba(57, 236, 254, 0.3);
    box-shadow: 0 0 8px rgba(57, 236, 254, 0.15);
}

.order-extra input:checked~.extra-content .extra-title {
    color: var(--accent-primary);
}

.order-extra:has(input:checked) {
    border-color: rgba(57, 236, 254, 0.4);
    background: linear-gradient(135deg, rgba(57, 236, 254, 0.04) 0%, var(--bg-secondary) 100%);
    box-shadow: 0 0 20px rgba(57, 236, 254, 0.08);
}

/* Contact Method Radio Cards */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.contact-method {
    cursor: pointer;
}

.contact-method input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.contact-method-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 10px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.contact-method-inner:hover {
    border-color: rgba(57, 236, 254, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.contact-method-icon {
    width: 36px;
    height: 36px;
    background: rgba(57, 236, 254, 0.06);
    border: 1px solid rgba(57, 236, 254, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-method-icon svg {
    width: 18px;
    height: 18px;
    color: var(--accent-primary);
    filter: drop-shadow(0 0 3px rgba(57, 236, 254, 0.15));
}

/* Selected state */
.contact-method input:checked~.contact-method-inner {
    border-color: var(--accent-primary);
    background: linear-gradient(135deg, rgba(57, 236, 254, 0.06) 0%, var(--bg-secondary) 100%);
    box-shadow: 0 0 16px rgba(57, 236, 254, 0.12);
    color: var(--accent-primary);
    font-weight: 600;
}

.contact-method input:checked~.contact-method-inner .contact-method-icon {
    background: rgba(57, 236, 254, 0.15);
    border-color: rgba(57, 236, 254, 0.35);
    box-shadow: 0 0 10px rgba(57, 236, 254, 0.2);
}

/* Phone field slide-in */
.phone-field-wrapper {
    overflow: hidden;
    margin-top: 12px;
}

.phone-field-animated {
    animation: phoneSlideIn 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.phone-field-animated input {
    border-color: rgba(57, 236, 254, 0.25);
}

.phone-field-animated input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 12px rgba(57, 236, 254, 0.15);
}

@keyframes phoneSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Summary */
.order-summary {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
}

.order-summary h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row span:first-child {
    color: var(--text-muted);
}

.summary-row span:last-child {
    color: var(--text-primary);
    font-weight: 600;
}

/* Navigation Buttons */
.order-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.order-next,
.order-submit {
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ===== ANIMATED PROGRESS BAR ===== */
.order-progress-bar {
    width: 100%;
    height: 4px;
    background: var(--bg-secondary);
    border-radius: 2px;
    margin-bottom: 32px;
    overflow: hidden;
}

.order-progress-fill {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(57, 236, 254, 0.4);
}

/* ===== REAL-TIME VALIDATION ===== */
.order-field.valid input,
.order-field.valid textarea {
    border-color: #22c55e;
}

.order-field.valid::after {
    content: '✓';
    position: absolute;
    right: 12px;
    top: 50%;
    color: #22c55e;
    font-size: 16px;
    font-weight: 700;
}

.order-field.invalid input,
.order-field.invalid textarea {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.order-field .field-error {
    display: none;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 4px;
}

.order-field.invalid .field-error {
    display: block;
    animation: shakeIn 0.3s ease;
}

.order-field {
    position: relative;
}

@keyframes shakeIn {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-4px);
    }

    75% {
        transform: translateX(4px);
    }
}

/* ===== FILE UPLOAD ===== */
.file-upload-zone {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-secondary);
}

.file-upload-zone:hover,
.file-upload-zone.drag-over {
    border-color: var(--accent-primary);
    background: rgba(57, 236, 254, 0.04);
}

.file-upload-zone.drag-over {
    transform: scale(1.01);
    box-shadow: 0 0 20px rgba(57, 236, 254, 0.15);
}

.upload-icon {
    margin: 0 auto 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(57, 236, 254, 0.08);
    border-radius: 50%;
}

.upload-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
}

.upload-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.upload-text span {
    color: var(--accent-primary);
    text-decoration: underline;
    cursor: pointer;
}

.upload-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.file-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm, 8px);
    font-size: 0.82rem;
}

.file-item-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.file-item-info svg {
    width: 16px;
    height: 16px;
    color: var(--accent-primary);
}

.file-item-size {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.file-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 2px;
    font-size: 16px;
    line-height: 1;
    transition: color 0.2s;
}

.file-item-remove:hover {
    color: #ef4444;
}

/* ===== PRICE ESTIMATE ===== */
.price-estimate {
    background: rgba(57, 236, 254, 0.04);
    border: 1px solid rgba(57, 236, 254, 0.15);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 8px;
}

.estimate-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.estimate-header svg {
    color: var(--accent-primary);
}

.estimate-range {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.estimate-note {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ===== TRUST BADGES ===== */
.submit-area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.trust-badges {
    display: flex;
    gap: 14px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.trust-badge svg {
    color: #22c55e;
    flex-shrink: 0;
}

/* ===== EMAIL CONFIRMATION PREVIEW ===== */
.email-preview {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 24px auto;
    max-width: 420px;
    text-align: left;
    animation: emailSlideIn 0.6s ease 0.4s both;
}

@keyframes emailSlideIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.email-preview-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.email-preview-header svg {
    color: var(--accent-primary);
}

.email-preview-address {
    font-weight: 700;
    color: var(--accent-primary);
    font-size: 0.95rem;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

.email-preview-body {
    padding: 0;
}

.email-subject {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.email-body-text {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Success State */
.order-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: var(--accent-gradient);
    border-radius: 50%;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 0 30px rgba(57, 236, 254, 0.3);
    animation: successPulse 2s ease infinite;
}

@keyframes successPulse {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(57, 236, 254, 0.3);
    }

    50% {
        box-shadow: 0 0 50px rgba(57, 236, 254, 0.5);
    }
}

.order-success h2 {
    font-size: 1.6rem;
    text-align: center;
}

.order-success p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* ===== FAQ ACCORDION ===== */
.order-faq-section {
    position: relative;
    z-index: 1;
    padding: 0 24px 80px;
    max-width: 780px;
    margin: 0 auto;
}

.order-faq-container h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-align: center;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.open {
    border-color: rgba(57, 236, 254, 0.25);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-question svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
    color: var(--accent-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 20px 18px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .order-hero {
        padding: 130px 20px 30px;
    }

    .order-container {
        padding: 24px;
    }

    .order-field-row {
        grid-template-columns: 1fr;
    }

    .order-extras {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }

    .order-steps {
        gap: 0;
    }

    .step-line {
        max-width: 40px;
        margin: 0 6px;
        margin-bottom: 22px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 4px;
    }

    .submit-area {
        align-items: stretch;
    }

    .email-preview {
        max-width: 100%;
    }

    .selected-service-badge {
        flex-wrap: wrap;
    }
}

/* ===== CONSENT CHECKBOXES ===== */
.order-consent {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.consent-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
}

.consent-check input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.consent-box {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    background: transparent;
}

.consent-box::after {
    content: '✓';
    font-size: 12px;
    font-weight: 700;
    color: #0b0f14;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.consent-check input:checked~.consent-box {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    box-shadow: 0 0 10px rgba(57, 236, 254, 0.3);
}

.consent-check input:checked~.consent-box::after {
    opacity: 1;
    transform: scale(1);
}

.consent-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.consent-label a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.consent-label a:hover {
    opacity: 0.8;
}

/* Error shake */
.consent-check.consent-error .consent-box {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
    animation: consentShake 0.4s ease;
}

@keyframes consentShake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-3px);
    }

    40% {
        transform: translateX(3px);
    }

    60% {
        transform: translateX(-2px);
    }

    80% {
        transform: translateX(2px);
    }
}