.content-layout {
    display: flex;
    gap: 2rem;
    padding: 2rem;
}

.onboarding-container {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    min-height: 450px;
}

.selection-panel {
    width: 300px;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
}

.selection-panel h2 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.selection-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.selection-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    color: #475569;
    border-bottom: 1px solid #e5e7eb;
}

.selection-item:last-child {
    border-bottom: none;
}

.selection-total {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1e293b;
    font-size: 1.2rem;
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.device-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.device-card:hover:not(.disabled) {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.device-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f3f4f6;
}

.device-card-header {
    margin-bottom: 1.5rem;
}

.device-card-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: #1e293b;
}

.device-card-header h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin: 0;
}

.device-card p {
    color: #475569;
    margin: 0;
}

.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.btn-back, .btn-next {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 1rem;
}

.btn-back {
    background: #f3f4f6;
    color: #4b5563;
}

.btn-next {
    background: #2563eb;
    color: white;
}

.btn-back:disabled, .btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.step-indicator {
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    padding: 1rem 2rem;
    border-radius: 0 0 0 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 100;
    color: #1e293b;
    font-weight: 600;
    font-size: 1.1rem;
}

.price-indicator {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
}

.steps-container {
    position: relative;
    min-height: 450px;
}

.step {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    min-height: 450px;
}

.step.active {
    display: block;
    opacity: 1;
}

.step h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.step h3 {
    color: #334155;
}

.config-options {
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.config-group {
    margin-bottom: 1.5rem;
}

.config-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.option-pills {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.option-pill {
    padding: 0.5rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #475569;
}

.option-pill:hover {
    background: #f3f4f6;
}

.option-pill.selected {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.value-summary {
    text-align: center;
    padding: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.value-item i {
    color: #22c55e;
    font-size: 1.5rem;
}

.value-item span {
    color: #475569;
}

.plan-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.plan-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.plan-card.selected {
    border-color: #2563eb;
    background: #f0f7ff;
}

.plan-card h3 {
    color: #1e293b;
    font-size: 2rem;
    margin: 1rem 0;
}

.plan-card ul li {
    color: #475569;
}

.plan-price {
    font-size: 2rem;
    font-weight: bold;
    color: #2563eb;
    margin: 1rem 0;
}

.email-addon {
    background: #f8fafc;
    border-radius: 12px;
    padding: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.email-input-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.email-input {
    flex: 1;
    padding: 0.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
}

.email-header h3 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.email-header p {
    color: #475569;
}

.email-toggle label {
    color: #475569;
}

.order-summary {
    background: #f8fafc;
    border-radius: 12px;
    padding: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.summary-item span {
    color: #475569;
}

.summary-total {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #e5e7eb;
    color: #1e293b;
}

.progress-container {
    text-align: center;
    padding: 4rem 2rem;
}

.progress-spinner {
    border: 4px solid #f3f4f6;
    border-top: 4px solid #2563eb;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.progress-message {
    margin-top: 2rem;
    font-size: 1.2rem;
    color: #4b5563;
}

.price-panel {
    width: 350px;
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    position: sticky;
    top: 2rem;
    height: fit-content;
    margin-top: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.price-panel h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    color: #475569;
}

.price-item .item-name {
    font-weight: 500;
}

.price-item .item-price {
    font-family: monospace;
    font-size: 1.1rem;
}

.price-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1e293b;
    font-size: 1.2rem;
}

.price-total .total-amount {
    font-family: monospace;
    font-size: 1.3rem;
    color: #2563eb;
} 