<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Calculator-specific styles */
.calculator-container {
    background: rgba(138, 123, 244, 0.1);
    border: 1px solid rgba(138, 123, 244, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.calculator-intro {
    text-align: center;
    max-width: 800px;
    margin: 2rem auto;
}

.calculator-loading {
    text-align: center;
    padding: 3rem;
    color: rgba(255, 255, 255, 0.7);
}

.consultation-offer {
    text-align: center;
    margin: 4rem 0;
    padding: 2rem;
    background: rgba(138, 123, 244, 0.1);
    border: 1px solid rgba(138, 123, 244, 0.3);
    border-radius: 12px;
}

/* Core Component Styles */
.calculator-form {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Song Number Slider Base Styles */
.song-slider {
    width: 100%;
    padding: 1rem 0;
}

/* Mixdown Type Selection Styles */
.mixdown-selector {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Service Checkbox Groups */
.service-group {
    border: 1px solid rgba(138, 123, 244, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.service-group h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

/* Price Display */
.price-display {
    background: rgba(138, 123, 244, 0.2);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.total-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .calculator-form {
        gap: 1.5rem;
    }
    
    .service-group {
        padding: 1rem;
    }
}

/* Will add more specific calculator component styles in Phase 3 */

/* Stem Preparation Checklist */
.stem-prep-checklist {
    background: rgba(138, 123, 244, 0.05);
    border: 1px solid rgba(138, 123, 244, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.prep-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(138, 123, 244, 0.1);
}

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

.prep-item label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.info-icon {
    color: #8a7bf4;
    cursor: help;
    font-size: 0.9rem;
}

.guide-link {
    color: #8a7bf4;
    font-size: 0.9rem;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.guide-link:hover {
    opacity: 1;
}

.stem-org-fee {
    padding: 1rem;
    background: rgba(138, 123, 244, 0.1);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.stem-org-fee.waived {
    background: rgba(39, 174, 96, 0.1);
}

.stem-org-fee .status {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Tooltip styles */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    white-space: normal;
    max-width: 300px;
    z-index: 1000;
    text-align: center;
}

/* Error Handling Styles */
.calculator-errors {
    margin-bottom: 1rem;
}

.error-message {
    position: sticky;
    top: 0;
    z-index: 101;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(231, 76, 60, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    margin: -1rem -1rem 1rem -1rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.error-message .error-icon {
    font-size: 1.2rem;
}

.error-message .error-text {
    flex: 1;
    color: white;
    font-weight: 500;
}

.error-message .error-dismiss {
    background: none;
    border: none;
    color: white;
    opacity: 0.7;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.2rem;
    transition: opacity 0.2s ease;
}

.error-message .error-dismiss:hover {
    opacity: 1;
}

.input-error {
    border-color: rgba(231, 76, 60, 0.5) !important;
    background: rgba(231, 76, 60, 0.05) !important;
}

/* Add focus styles for accessibility */
.input-error:focus {
    outline-color: rgba(231, 76, 60, 0.8);
}

/* Song Number Slider Styles */
.slider-container {
    position: relative;
    padding: 3.5rem 1.5rem 1.5rem;
    margin: 0;
    background: #222222;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Base range input styling */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: transparent;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

/* Track styling */
input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    background: rgba(138, 123, 244, 0.1);
    border-radius: 3px;
    border: none;
}

/* Thumb (handle) styling */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-color);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-top: -9px; /* Centers the thumb on the track */
    position: relative;
    z-index: 3;
    transition: all 0.2s ease;
}

/* Hover and active states for thumb */
input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(138, 123, 244, 0.4);
}

input[type="range"]::-webkit-slider-thumb:active {
    transform: scale(1.15);
    box-shadow: 0 4px 10px rgba(138, 123, 244, 0.5);
}

/* Progress track */
.slider-progress {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    height: 6px;
    background: var(--accent-color);
    border-radius: 3px;
    transform: translateY(-50%);
    pointer-events: none;
    transition: width 0.1s ease;
    z-index: 1;
}

/* Tick marks container */
.slider-ticks {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    pointer-events: none;
}

/* Individual tick marks */
.slider-tick {
    position: absolute;
    width: 2px;
    height: 8px;
    background: rgba(138, 123, 244, 0.2);
    transform: translateX(-50%);
    top: -10px;
    transition: all 0.2s ease;
}

/* Special tick marks for discount thresholds */
.slider-tick.discount {
    height: 12px;
    width: 3px;
    background: #2ecc71;
    top: -12px;
}

/* Tick labels with discount info */
.slider-tick-label {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    pointer-events: none;
}

/* Discount badge in tick label */
.discount-indicator {
    font-size: 0.75rem;
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
    white-space: nowrap;
}

/* Remove the now redundant bulk discount notice */
.bulk-discount-notice {
    display: none;
}

/* Enhanced Mixdown Type Selection */
.mixdown-options {
    display: grid;
    gap: 1.5rem;
}

.mixdown-option {
    display: block;
    border: 1px solid rgba(138, 123, 244, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
}

.mixdown-option:hover {
    background: rgba(138, 123, 244, 0.05);
    transform: translateY(-2px);
}

.mixdown-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.mixdown-option input[type="radio"]:checked + .option-content {
    background: rgba(138, 123, 244, 0.1);
}

.option-content {
    display: block;
    padding: 1.5rem;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.0;
}

.option-header strong {
    font-size: 1.2rem;
    margin-bottom: 0.0;
    color: var(--accent-color);
}

.base-price {
    font-weight: bold;
    color: var(--accent-color);
    background: rgba(138, 123, 244, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.description {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.price-details {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    padding: 1rem;
}

.price-details ul {
    list-style: none;
    padding: 0;
    margin: 0.05rem 0;
}

.price-details li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}

.price-details li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.price-details li:last-child {
    margin-bottom: 0;
    color: var(--accent-color);
}

/* Service Groups */
.service-groups {
    display: grid;
    gap: 2rem;
}

.service-option {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 1px solid rgba(138, 123, 244, 0.2);
    border-radius: 6px;
    margin: 0.5rem 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-option:hover {
    background: rgba(138, 123, 244, 0.05);
}

.service-option .price {
    margin-left: auto;
    font-size: 0.9rem;
    color: var(--accent-color);
}

/* Price Display Enhancements */
.price-breakdown {
    font-size: 1.1rem;
    line-height: 1.5;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(138, 123, 244, 0.1);
}

/* Base Price and Additional Tracks */
.breakdown-item.base,
.extra-tracks-fee {
    background: rgba(138, 123, 244, 0.05);
}

/* Selected Features Section */
.breakdown-item.features {
    background: rgba(0, 0, 0, 0.2);
}

.feature-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.feature-expand-btn {
    background: none;
    border: none;
    color: var(--accent-color);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.feature-expand-btn[aria-expanded="true"] {
    transform: rotate(180deg);
}

/* Feature Details Section */
.feature-details-breakdown {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-details-breakdown.expanded {
    max-height: 500px;
    opacity: 1;
    padding: 0.5rem 0;
}

.feature-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 2rem;
    background: rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(138, 123, 244, 0.1);
}

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

.feature-detail-left {
    flex: 1;
}

.detail-calc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

.feature-detail-item .amount {
    color: var(--accent-color);
    font-weight: 500;
    margin-left: 1rem;
}

/* Subtotal Section */
.breakdown-item.subtotal {
    background: rgba(138, 123, 244, 0.1);
    font-weight: 500;
}

/* Discounts Section */
.breakdown-item.discounts-section {
    color: #2ecc71;
    font-weight: 600;
    background: rgba(46, 204, 113, 0.05);
    border-top: 1px solid rgba(46, 204, 113, 0.1);
}

/* Nested discount items */
.breakdown-item.nested {
    padding-left: 3rem;
    background: rgba(0, 0, 0, 0.1);
    font-weight: normal;
}

/* All savings amounts */
.amount.savings {
    color: #2ecc71;
    font-weight: 600;
}

/* Separator before discounts */
.breakdown-item.subtotal {
    border-bottom: 2px solid rgba(138, 123, 244, 0.2);
    margin-bottom: 0.5rem;
}

/* Final Total */
.breakdown-separator {
    height: 2px;
    background: rgba(138, 123, 244, 0.2);
    margin: 0;
}

.breakdown-item.total {
    background: rgba(138, 123, 244, 0.15);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.25rem 2rem;
    border-bottom: none;
}

/* Enhancement Option within 2-track mixdown */
.enhancement-option {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: rgba(138, 123, 244, 0.1);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.enhancement-option:hover {
    background: rgba(138, 123, 244, 0.15);
}

.enhancement-option input[type="checkbox"] {
    margin-right: 0.75rem;
}

.enhancement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: var(--accent-color);
    font-weight: 500;
}

.enhancement-price {
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    background: rgba(138, 123, 244, 0.2);
    border-radius: 4px;
}

/* Hide enhancement option for other mixdown types */
.mixdown-option:not([value="twoTrack"]) .enhancement-option {
    display: none;
}

/* Price Display */
.price-display-container {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-color);
    border: 1px solid rgba(138, 123, 244, 0.2);
    border-radius: 12px;
    margin: 0;
    overflow: hidden;
}

.price-display {
    background: #1a1a1a; /* Solid dark background */
    padding: 0.75rem 2rem 0.75rem;
    text-align: center;
    margin: 0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin: 0.25rem 0;
}

/* Song Count Slider */
.song-count-control {
    padding: 0;
    margin: 0;
    border: none;
    opacity: 1;
    max-height: 60px;
    overflow: visible;
    transition: all 0.3s ease;
}

.song-count-control.active {
    max-height: 120px;
    padding: 0.75rem 1.5rem;
}

/* Remove dropdown arrow styles */
.song-count-control .toggle-icon {
    display: none;
}

/* Hide the song count control header since we don't need it */
.song-count-control h3 {
    display: none;
}

.slider-container {
    position: relative;
    padding: 0.5rem 1.5rem;
    margin: 0;
    background: rgba(34, 34, 34, 0.6);
    border-radius: 8px;
}

input[type="range"] {
    width: 100%;
    height: 6px;
    background: rgba(138, 123, 244, 0.2);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.slider-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-color);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    z-index: 1;
    pointer-events: none;
}

.bulk-discount-notice {
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(138, 123, 244, 0.1);
}

.discount-badge {
    background: rgba(39, 174, 96, 0.2);
    color: #2ecc71;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin: 0 0.25rem;
}

/* Service Panels Layout */
.service-panels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-panel {
    position: relative;
    background: rgba(34, 34, 34, 0.6);
    border: 1px solid rgba(138, 123, 244, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.service-panel:not(.standalone) {
    cursor: pointer;
}

.service-panel:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    background: rgba(138, 123, 244, 0.1);
}

.service-panel .btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    text-decoration: none;
}

.service-panel .btn.primary {
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.service-panel .btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(138, 123, 244, 0.2);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.panel-main {
    flex: 1;
}

.panel-main h3 {
    margin: 0;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.panel-main span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.panel-tags {
    display: flex;
    gap: 0.5rem;
}

.panel-tag {
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    background: rgba(138, 123, 244, 0.15);
    color: var(--accent-color);
}

.panel-tag.selected-tag {
    display: none;
    background: #2ecc71;
    color: white;
}

.service-panel.selected .panel-tag.selected-tag {
    display: inline-flex;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-panels {
        grid-template-columns: 1fr;
    }

    .price-display-container {
        padding: 1.5rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }
}

/* Mobile-friendly tooltips */
@media (max-width: 768px) {
    [data-tooltip]::after {
        width: 200px;
        white-space: normal;
        text-align: center;
        font-size: 0.85rem;
        padding: 0.75rem;
    }
}

/* Price Breakdown Styles */
.price-breakdown {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    background: rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(138, 123, 244, 0.2);
    visibility: hidden;
    margin: 0;
    padding: 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.price-breakdown.expanded {
    max-height: 2000px;
    opacity: 1;
    visibility: visible;
    padding: 0.5rem 0;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    border-bottom: 1px solid rgba(138, 123, 244, 0.1);
}

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

.waived-notice {
    color: #2ecc71;
    font-size: 0.9rem;
    margin-left: 1rem;
}

/* Stem Organization Options */
.stem-org-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.option-card {
    background: rgba(138, 123, 244, 0.1);
    border: 1px solid rgba(138, 123, 244, 0.3);
    border-radius: 12px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.option-card:hover {
    transform: translateY(-2px);
    background: rgba(138, 123, 244, 0.15);
}

.stem-option {
    display: block;
    cursor: pointer;
}

.stem-option input[type="radio"] {
    display: none;
}

.stem-option input[type="radio"]:checked + .option-content {
    background: rgba(138, 123, 244, 0.2);
}

.option-content {
    padding: 2rem;
    height: 100%;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.save-badge {
    background: rgba(39, 174, 96, 0.2);
    color: #2ecc71;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.price-badge {
    background: rgba(138, 123, 244, 0.2);
    color: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.requirements-list, .service-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.requirements-list li, .service-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.requirements-list li::before, .service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.guide-link {
    color: var(--accent-color);
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s ease;
}

.guide-link:hover {
    opacity: 0.8;
}

.recommendation {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

@media (max-width: 768px) {
    .stem-org-options {
        grid-template-columns: 1fr;
    }
}

.feature-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.feature-option.disabled input {
    cursor: not-allowed;
}

.feature-option.disabled .option-content {
    color: rgba(255, 255, 255, 0.5);
}

/* Flow Steps and Progress */
.flow-progress {
    padding: 0.5rem;
    background: #222222;
    border-top: 1px solid rgba(138, 123, 244, 0.2);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

/* Progress steps container */
.progress-steps {
    display: flex;
    gap: 1rem;
    position: relative;
    padding: 0.25rem 0;
    transition: all 0.3s ease;
}

.progress-step {
    position: relative;
    z-index: 1;
    padding: 0.25rem 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    background: #1a1a1a;
}

.progress-step.active {
    color: var(--accent-color);
}

.progress-step.completed {
    color: var(--accent-color);
}

/* Progress line */
.progress-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(138, 123, 244, 0.2);
    z-index: 0;
}

.progress-steps::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    height: 2px;
    background: var(--accent-color);
    transform: translateY(-50%);
    z-index: 0;
    transition: width 0.3s ease;
    width: var(--progress-width, 0%);
}

/* Navigation buttons */
.nav-btn {
    padding: 0.5rem;
    width: 28px;
    height: 28px;
    background: var(--accent-color);
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-btn:hover:not(:disabled) {
    background: #7667e0;
}

/* Flow Container */
.flow-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem;
}

.flow-step {
    min-height: auto;
    padding: 0 0;
    margin-bottom: 1rem;
}

.flow-step h3 {
    margin-bottom: 1rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .flow-container {
        padding: 0;
    }
    
    .feature-option {
        grid-template-columns: auto 1fr;
    }
    
    .feature-price {
        grid-column: 2;
        justify-self: start;
    }
}

/* Back Button */
.back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.back-btn:hover {
    color: var(--accent-color);
}

.back-btn .icon {
    font-size: 1.2rem;
}

/* Feature Options */
.processing-options {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin: 0;
    max-width: 800px;
}

.feature-box {
    position: relative;
    background: rgba(34, 34, 34, 0.6);
    border: 1px solid rgba(138, 123, 244, 0.2);
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-box.selected {
    border-color: var(--accent-color);
    background: rgba(138, 123, 244, 0.1);
}

/* Selected tag */
.feature-tag.selected-tag {
    display: none;
    background: #2ecc71;
    color: white;
}

.feature-box.selected .feature-tag.selected-tag {
    display: inline-flex;
}

/* Feature details expansion */
.feature-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 1px solid transparent;
    margin-top: 0;
    padding-top: 0;
}

.feature-box.selected.expanded .feature-details {
    max-height: none;
    opacity: 1;
    border-top-color: rgba(138, 123, 244, 0.2);
    margin-top: 0.75rem;
    padding-top: 0.75rem;
}

/* Track counter styles */
.feature-track-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.counter-btn {
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 4px;
    background: var(--accent-color);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.counter-btn:hover {
    background: rgba(138, 123, 244, 0.8);
}

.feature-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-details li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.feature-details li::before {
    content: "";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.limit-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.feature-box.included {
    background: rgba(39, 174, 96, 0.08);
    border-color: rgba(39, 174, 96, 0.2);
    cursor: default;
}

.feature-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.feature-main h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--accent-color);
}

.feature-main span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.feature-tag {
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: rgba(138, 123, 244, 0.15);
    color: var(--accent-color);
    white-space: nowrap;
}

.feature-box.included .feature-tag {
    background: rgba(39, 174, 96, 0.15);
    color: #2ecc71;
}

/* Rush Order styling */
.feature-box.rush {
    background: rgba(231, 76, 60, 0.08);
    border-color: rgba(231, 76, 60, 0.2);
}

.feature-box.rush:hover {
    background: rgba(231, 76, 60, 0.12);
}

.feature-box.rush.selected {
    background: rgba(231, 76, 60, 0.15);
    border-color: rgba(231, 76, 60, 0.4);
}

.feature-box.rush .feature-tag {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

.feature-box.rush .selected-tag {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

/* Flow Navigation */
.flow-navigation {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(138, 123, 244, 0.2);
}

.nav-btn {
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-btn:hover:not(:disabled) {
    background: #7667e0;
    transform: translateY(-1px);
}

.included-feature {
    background: rgba(39, 174, 96, 0.05);
    border: 1px solid rgba(39, 174, 96, 0.2);
    border-radius: 8px;
    padding: 0.35rem 0.75rem;
    margin-bottom: 0.35rem;
    max-width: 800px;
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.included-badge {
    background: rgba(39, 174, 96, 0.1);
    color: #2ecc71;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
}

.selected-badge {
    background: rgba(39, 174, 96, 0.1);
    color: #2ecc71;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
}

.feature-option.selected .selected-badge {
    display: inline-block;
}

.track-counter {
    background: rgba(138, 123, 244, 0.08);
    border: 1px solid rgba(138, 123, 244, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.track-counter label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
    font-weight: 500;
}

.counter-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.counter-control button {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(138, 123, 244, 0.3);
    background: none;
    color: var(--accent-color);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.counter-control button:hover {
    background: rgba(138, 123, 244, 0.1);
}

.counter-control input {
    width: 50px;
    text-align: center;
    background: rgba(138, 123, 244, 0.1);
    border: 1px solid rgba(138, 123, 244, 0.3);
    border-radius: 4px;
    color: white;
    padding: 0.35rem;
    font-size: 1rem;
}

.track-notice {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Vocal Track Counter Styling */
.track-counter {
    background: rgba(138, 123, 244, 0.08);
    border: 1px solid rgba(138, 123, 244, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.track-counter label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
    font-weight: 500;
}

.counter-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.counter-control button {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(138, 123, 244, 0.3);
    background: none;
    color: var(--accent-color);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.counter-control button:hover {
    background: rgba(138, 123, 244, 0.1);
}

.counter-control input {
    width: 50px;
    text-align: center;
    background: rgba(138, 123, 244, 0.1);
    border: 1px solid rgba(138, 123, 244, 0.3);
    border-radius: 4px;
    color: white;
    padding: 0.35rem;
    font-size: 1rem;
}

.track-notice {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Combined sticky container for price display and controls */
.price-and-controls {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #1a1a1a;
    border: 1px solid rgba(138, 123, 244, 0.2);
    border-radius: 12px;
    margin: 1rem 0;
    overflow: visible;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Price Display */
.price-display {
    background: #1a1a1a;
    padding: 0.75rem 2rem 0.75rem;
    text-align: center;
    margin: 0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin: 0.25rem 0;
}

/* Calculator Controls */
.calculator-controls {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    padding: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

/* Song Count Slider */
.song-count-control {
    padding: 0;
    margin: 0;
    border: none;
    opacity: 1;
    max-height: 60px;
    overflow: visible;
    transition: all 0.3s ease;
}

.song-count-control.active {
    max-height: 120px;
    padding: 0.75rem 1.5rem;
}

/* Slider container */
.slider-container {
    position: relative;
    padding: 0.5rem 1.5rem;
    margin: 0;
    background: rgba(34, 34, 34, 0.6);
    border-radius: 8px;
}

/* Slider value display */
.slider-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-color);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 1;
}

/* Hide unnecessary elements */
.slider-toggle,
.song-count-control h3 {
    display: none;
}

/* Tick marks and labels only show in expanded state */
.song-count-control:not(.active) .slider-tick-label,
.song-count-control:not(.active) .discount-indicator {
    opacity: 0;
    visibility: hidden;
    height: 0;
}

/* Feature detail items */
.feature-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 2rem;
    background: rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
}

.feature-detail-item .detail-right {
    text-align: right;
}

.feature-detail-item .detail-calc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.feature-detail-item .amount {
    color: var(--accent-color);
    font-weight: 500;
}

/* Feature header with price alignment */
.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.feature-tags {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Feature breakdown section */
.feature-details-breakdown {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-details-breakdown.expanded {
    max-height: none;
    opacity: 1;
}

/* Feature expand button */
.feature-expand-btn {
    background: none;
    border: none;
    color: var(--accent-color);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

/* Rotate arrow when expanded */
.feature-expand-btn[aria-expanded="true"] {
    transform: rotate(180deg);
}

/* Replace the text triangle with a nicer chevron */
.feature-expand-btn .toggle-icon {
    font-family: system-ui;
    font-size: 1.2rem;
    line-height: 1;
    display: block;
    transform-origin: center;
}

/* Breakdown Toggle Button */
.breakdown-toggle {
    background: none;
    border: none;
    color: var(--accent-color);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.breakdown-toggle:hover {
    opacity: 0.8;
}

.breakdown-toggle .toggle-icon {
    font-family: system-ui;  /* Use system font for chevron */
    font-size: 1.2rem;
    line-height: 1;
    display: block;
    transform-origin: center;
    transition: transform 0.3s ease;
}

.breakdown-toggle[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

/* Quote Summary Styles */
.quote-summary {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(138, 123, 244, 0.05);
    border: 1px solid rgba(138, 123, 244, 0.2);
    border-radius: 12px;
}

.quote-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(138, 123, 244, 0.2);
}

.quote-header h2 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.quote-total {
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
    margin-top: 1rem;
}

/* Service Details */
.service-details {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.service-type h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-type p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.song-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(138, 123, 244, 0.2);
}

/* Included Features */
.included-features {
    margin-top: 2rem;
}

.included-features h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.included-features li {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
    position: relative;
}

.included-features li strong {
    color: white;
    display: block;
    margin-bottom: 0.3rem;
}

.included-features li .feature-explanation {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.included-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Selected Enhancements */
.enhancement-item {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.enhancement-item h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.enhancement-desc {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.enhancement-benefit {
    color: #2ecc71;
    font-style: italic;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid #2ecc71;
}

.enhancement-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(138, 123, 244, 0.2);
}

.enhancement-price {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Track Preparation */
.prep-details {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.prep-details h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.prep-details p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.prep-benefits {
    margin: 1.5rem 0;
}

.prep-benefits ul {
    list-style: none;
    padding-left: 1.5rem;
}

.prep-benefits li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    position: relative;
}

.prep-benefits li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: -1.5rem;
    font-weight: bold;
}

.prep-savings {
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(138, 123, 244, 0.2);
}

.prep-cost {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(138, 123, 244, 0.2);
}

.prep-guide-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    margin-top: 1rem;
    font-size: 0.9rem;
    transition: opacity 0.2s ease;
}

.prep-guide-link:hover {
    opacity: 0.8;
}

/* Discount Item */
.discount-item {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.discount-item h4 {
    color: #2ecc71;
    margin-bottom: 0.8rem;
}

.discount-item p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.discount-amount {
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.1rem;
    text-align: right;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(138, 123, 244, 0.2);
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn.primary {
    background: var(--accent-color);
    color: white;
    border: none;
}

.btn.secondary {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(138, 123, 244, 0.2);
}

/* Print Styles */
@media print {
    .quote-summary {
        background: white;
        color: black;
        border: none;
    }
    
    .cta-buttons {
        display: none;
    }
}

.calculator-intro,
.calculator-disclaimer,
.quote-message {
    background: rgba(138, 123, 244, 0.05);
    border: 1px solid rgba(138, 123, 244, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.calculator-intro h2,
.calculator-disclaimer h3,
.quote-message h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.calculator-intro ul,
.quote-message ul {
    list-style: none;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.calculator-intro li,
.quote-message li {
    position: relative;
    margin-bottom: 0.8rem;
}

.calculator-intro li::before,
.quote-message li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: -1.5rem;
}

.quote-message li strong {
    color: var(--accent-color);
}

.pre-quote-message {
    background: rgba(138, 123, 244, 0.05);
    border: 1px solid rgba(138, 123, 244, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    animation: slideDown 0.3s ease-out;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pre-quote-message.hiding {
    animation: slideUp 0.3s ease-out forwards;
}

.pre-quote-message h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pre-quote-message p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.pre-quote-message ul {
    list-style: none;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.pre-quote-message li {
    position: relative;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.pre-quote-message li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: -1.5rem;
}

.pre-quote-message .close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.pre-quote-message .close-btn:hover {
    background: rgba(138, 123, 244, 0.1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Add animation keyframes */
@keyframes pulseFinish {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Update styles for pulsing finish step */
.progress-step[data-step="3"].pulse {
    animation: pulseFinish 2s ease-in-out infinite;
    color: var(--accent-color);
    font-weight: bold;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(138, 123, 244, 0.1);
    border: 1px solid var(--accent-color);
    transition: all 0.2s ease;
}

.progress-step[data-step="3"].pulse:hover {
    background: rgba(138, 123, 244, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(138, 123, 244, 0.2);
}

/* Add a hint message */
.progress-step[data-step="3"].pulse::after {
    content: "Click to see your quote!";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--accent-color);
    white-space: nowrap;
    opacity: 0.8;
}

/* Update breadcrumb styles */
.breadcrumb {
    background: rgba(138, 123, 244, 0.1);
    border: 1px solid rgba(138, 123, 244, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 1rem;
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

/* Center and style the main title */
h1 {
    text-align: center;
    color: var(--accent-color);
    font-size: 2.5rem;
    margin: 1rem 0;
    font-weight: bold;
    line-height: 1.2;
}

/* Add responsive adjustments */
@media (max-width: 768px) {
    .breadcrumb {
        margin: 1rem 0;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    h1 {
        font-size: 2rem;
        margin: 1.5rem 0 2rem;
    }
}

.service-panel.clickable {
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-panel.clickable:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    background: rgba(138, 123, 244, 0.1);
    box-shadow: 0 4px 12px rgba(138, 123, 244, 0.2);
}

/* Remove the button styles for these panels */
.service-panel.clickable .btn {
    display: none;
}

</pre></body></html>