* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent-border: #2F1B36;
}

body {
    background: #0a0a0f;
    min-height: 100vh;
    padding: 20px;
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.currency-note {    
    font-size: 0.9em;    
    color: #ccb8da;    
    margin: 8px 0;    
    font-weight: 500;    
    opacity: 0.95;    
    letter-spacing: 0.5px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: #1a1a24;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.header {
    background: linear-gradient(135deg, #000000 0%, #2F1B36 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.content {
    padding: 30px;
}

.step {
    margin-bottom: 30px;
}

.step-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #ad8ec3;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.7);
}

.service-choice {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.service-option {
    background-color: #2a2a38;
    border: 3px solid #3a3a4a;
    border-radius: 15px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    color: #e0e0e0;
}

.service-option:hover {
    border-color: #7a5a98;
    transform: translateY(-2px);
}

.service-option.selected {
    border-color: #7a5a98;
    background: #2f1f3f;
}

.service-option input[type="radio"] {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 20px;
    height: 15px;
    cursor: pointer;
}

.service-name {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.service-price {
    color: #8a6b9e;
}

.service-forms {
    display: none;
}

.service-forms.visible {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
}

.service-form-selection {
    border: 3px solid #3a3a4a;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
}

.service-form-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #ad8ec3;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.7);
}

.question {
    background: #2a2a38;
    border-radius: 10px;
    padding: 20px 20px 25px 20px;
    margin-bottom: 20px;
}

.question-title {
    font-size: 1.1em;
    font-weight: bold;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.reference-image-container {
    margin: 15px 0 20px 0;
    padding-bottom: 20px;
    text-align: center;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reference-image {
    max-width: 100%;
    width: auto;
    max-height: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid #3a3a4a;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px auto; 
}

.options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.option {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #1f1f2e;
    border: 2px solid #3a3a4a;
    border-radius: 10px;
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option:hover {
    border-color: #7a5a98;
}

.option.selected {
    border-color: #7a5a98;
    background: #2f1f3f;
}

.option span {
    margin-left: 8px;
}

.char-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.counter-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #7a5a98;
    background: #1f1f2e;
    color: #e0e0e0;
    font-size: 1.8em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-btn:hover {
    background: #2f1f3f;
    border-color: #ad8ec3;
    transform: scale(1.05);
}

.counter-btn:active {
    transform: scale(0.95);
}

.counter-input {
    width: 80px;
    height: 60px;
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    background: transparent;
    border: none;
    color: #e0e0e0;
    pointer-events: none;
}

.char-pricing-info {
    margin-top: 15px;
    padding: 15px;
    background: #1f1f2e;
    border-radius: 8px;
    border-left: 3px solid #7a5a98;
}

.pricing-line {
    font-size: 1em;
    color: #c0c0c0;
    margin: 5px 0;
    line-height: 1.6;
}

.price-display {
    background: linear-gradient(135deg, #000000 0%, #2F1B36 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 30px;
    position: sticky;
    top: 20px;
}

.price-display h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.total {
    font-size: 3em;
    font-weight: bold;
    margin: 20px;
}

.breakdown-service {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.breakdown-service-title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.breakdown-item {
    font-size: 0.9em;
    opacity: 0.9;
    margin: 5px 0;
}

.char-warning {
    margin-top: 8px;
    font-size: 1rem;
    color: #c70d00;
    background: #ffcdcd;
    padding: 6px 10px;
    border-radius: 6px;
}

.commission-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 14px 26px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.action-btn.start {
    background: linear-gradient(135deg, #22c55e, #108a3c);
}

.action-btn.start:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(34,197,94,0.45);
}

.action-btn.carrd {
    background: #2F1B36 100%
}

.action-btn.carrd:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(168,85,247,0.45);
}

/* Mobile tweak */
@media (max-width: 480px) {
    .action-btn {
        width: 100%;
        justify-content: center;
    }
}


@media (max-width: 768px) {
    body {
        padding: 0;
    }
    
    .container {
        margin: 0;
        border-radius: 0;
        min-height: 100vh;
    }
    
    .header {
        padding: 25px 20px;
        border-radius: 0;
    }
    
    .header h1 {
        font-size: 1.5em;
    }
    
    .content {
        padding: 20px 15px;
    }
    
    .service-choice {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .service-option {
        padding: 20px;
    }
    
    .service-form-selection {
        padding: 20px 15px;
    }
    
    .question {
        padding: 15px;
    }
    
    .options {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .option {
        padding: 12px;
    }
    
    .reference-image {
        border-radius: 8px;
        max-height: 250px;
    }
    
    .total {
        font-size: 2.2em;
        margin: 15px;
    }
    
    .price-display {
        padding: 25px 20px;
        margin-top: 20px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 20px 15px;
    }
    
    .content {
        padding: 15px 12px;
    }
    
    .service-form-selection {
        padding: 15px 12px;
    }
    
    .question {
        padding: 12px;
    }
    
    .service-form-title {
        font-size: 1.3em;
    }
    
    .question-title {
        font-size: 1em;
    }
    
    .option {
        padding: 10px;
        font-size: 0.95em;
    }
    
    .total {
        font-size: 2em;
    }
    
    .price-display {
        padding: 20px 15px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1100px;
    }
    
    .reference-image {
        max-height: 400px;
    }
}