/* ========================================
   CYBER UNIT - Light Theme Pricing Page
   Clean, Professional, High-Converting
   ======================================== */

/* Pricing Page Layout */
.pricing-main {
    padding-top: 80px;
    background: var(--bg-body);
    min-height: 100vh;
}

/* Header */
.pricing-header {
    text-align: center;
    padding: 60px 0 40px;
    background: linear-gradient(180deg, white 0%, var(--bg-body) 100%);
}

.pricing-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Builder Layout */
.pricing-builder {
    padding-bottom: 80px;
}

.builder-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
    max-width: 100%;
    overflow: visible;
}

/* Progress Steps */
.builder-progress {
    display: flex;
    align-items: center;
    padding: 24px 32px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.4;
    transition: var(--transition-base);
}

.progress-step.active {
    opacity: 1;
}

.progress-step.completed {
    opacity: 1;
}

.builder-progress .progress-step.completed .step-number {
    background: var(--success);
    color: white;
    border-color: var(--success);
}

.builder-progress .step-number {
    width: 36px;
    height: 36px !important;
    min-width: 36px;
    max-width: 36px;
    min-height: 36px !important;
    max-height: 36px !important;
    padding: 0 !important;
    margin: 0;
    flex: 0 0 36px;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: white;
    transition: var(--transition-base);
    line-height: 1;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
    grid-column: unset;
    grid-row: unset;
}

.builder-progress .progress-step.active .step-number {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary);
}

.step-info {
    display: flex;
    flex-direction: column;
}

.step-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

.step-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.progress-connector {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: 0 20px;
    position: relative;
}

.progress-step.completed + .progress-connector::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--success);
}

/* Builder Sections */
.builder-section {
    display: none;
    animation: slideIn 0.4s ease;
}

.builder-section.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.section-header-inline h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.section-header-inline p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-xs);
}

.toggle-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.toggle-label.active {
    color: var(--text);
    font-weight: 600;
}

.save-badge {
    padding: 2px 8px;
    background: var(--success);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.toggle-switch {
    position: relative;
    width: 48px;
    height: 26px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--bg-muted);
    border-radius: 26px;
    transition: var(--transition-base);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateY(-50%) translateX(22px);
}

/* Bundle Card - Compact */
.bundle-card-compact {
    position: relative;
    background: linear-gradient(135deg, var(--primary-subtle) 0%, white 100%);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}

.bundle-card-compact.selected,
.bundle-card-compact.has-value {
    box-shadow: 0 4px 20px rgba(8, 145, 178, 0.2);
}

.bundle-ribbon {
    position: absolute;
    top: -1px;
    right: 24px;
    padding: 6px 12px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.bundle-compact-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

.bundle-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.bundle-icon-sm {
    font-size: 1.5rem;
}

.bundle-title-row h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.bundle-features-col {
    min-width: 0;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 16px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text);
}

.feature-row span {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.feature-row.bonus {
    color: var(--success);
}

.feature-row .free {
    background: var(--success);
    color: white;
    padding: 2px 6px;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
}

.bundle-action-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    min-width: 200px;
}

.price-block {
    text-align: center;
}

.price-big {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-mono);
}

.price-detail {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.price-was {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 4px;
}

.qty-block {
    width: 100%;
}

.qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.85rem;
}

.qty-row .qty-control-modern {
    width: 110px;
}

.bundle-total-line {
    text-align: center;
    margin-top: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    font-family: var(--font-mono);
}

/* Legacy bundle-card support */
.bundle-card {
    position: relative;
    background: linear-gradient(135deg, var(--primary-subtle) 0%, white 50%, var(--accent-subtle) 100%);
    border: 2px solid var(--primary);
    border-radius: var(--radius-xl);
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.bundle-card.selected {
    box-shadow: 0 8px 40px rgba(8, 145, 178, 0.25);
}

.bundle-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 32px;
}

.bundle-header {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.bundle-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.bundle-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.bundle-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.bundle-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bundle-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: white;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.feature-check {
    color: var(--success);
    font-weight: 700;
}

.feature-price {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--bg-subtle);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

/* Free bonus styling */
.bundle-feature.free-bonus {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.feature-free {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 700;
    color: #16a34a;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.feature-free s {
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 4px;
}

.bundle-savings {
    margin-top: 16px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(8, 145, 178, 0.1) 100%);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text);
    text-align: center;
    border: 1px dashed var(--primary);
}

.bundle-savings strong {
    color: var(--accent);
}

.bundle-compare {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.bundle-compare s {
    color: var(--text-light);
}

.bundle-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    background: white;
    border-radius: var(--radius-lg);
    text-align: center;
}

.bundle-price-display {
    margin-bottom: 24px;
}

.bundle-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-mono);
    line-height: 1;
}

.bundle-period {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.bundle-qty-section {
    width: 100%;
}

.bundle-qty-section label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.bundle-total {
    margin-top: 16px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-mono);
}

/* Quantity Control Modern */
.qty-control-modern {
    display: flex;
    align-items: center;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-body);
}

.qty-control-modern .qty-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: none;
    font-size: 1.25rem;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition-fast);
}

.qty-control-modern .qty-btn:hover {
    background: var(--primary);
    color: white;
}

.qty-control-modern .qty-input {
    flex: 1;
    height: 44px;
    text-align: center;
    border: none;
    background: transparent;
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    min-width: 60px;
}

.qty-control-modern .qty-input:focus {
    outline: none;
    background: white;
}

/* Or Divider */
.or-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 32px 0;
}

.or-divider::before,
.or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.or-divider span {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.service-card-mini {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition-base);
}

.service-card-mini:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.service-card-mini.selected {
    border-color: var(--primary);
    background: var(--primary-subtle);
}

.card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.card-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.card-title {
    flex: 1;
}

.card-title h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pro-badge {
    font-size: 0.6rem;
    padding: 2px 6px;
    background: var(--accent);
    color: white;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    font-weight: 700;
}

.card-title p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.card-price {
    text-align: right;
}

.card-price .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-mono);
}

.card-price .unit {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.card-qty {
    display: flex;
    justify-content: flex-end;
}

.card-qty .qty-control-modern {
    width: 140px;
}

/* Expanded Services Grid */
.services-grid-expanded {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
    align-items: stretch;
}

.service-card-expanded {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: visible;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card-expanded:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.service-card-expanded.selected {
    border-color: var(--primary);
    background: var(--primary-subtle);
}

.service-card-expanded > .card-main {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-expanded .card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.service-card-expanded .card-title h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.service-card-expanded .card-title p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.service-card-expanded .card-qty {
    display: flex;
    justify-content: flex-end;
}

/* Details Toggle Button */
.details-toggle {
    width: 100%;
    padding: 10px 20px;
    background: var(--bg-subtle);
    border: none;
    border-top: 1px solid var(--border);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.details-toggle:hover {
    background: var(--border);
    color: var(--primary);
}

.details-toggle[aria-expanded="true"] {
    background: var(--primary-subtle);
    color: var(--primary);
    border-radius: 0;
    border-bottom: none;
    border-left: 1px solid var(--primary);
    border-right: 1px solid var(--primary);
    margin-left: -1px;
    margin-right: -1px;
    width: calc(100% + 2px);
}

.details-toggle .toggle-icon {
    transition: transform 0.2s ease;
}

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

/* Service Details List - Overlay below card */
.service-details {
    display: none;
    position: absolute;
    top: 100%;
    left: -1px;
    right: -1px;
    z-index: 20;
    padding: 16px 20px 20px;
    background: white;
    border: 1px solid var(--primary);
    border-top: 2px solid var(--primary);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    margin: 0;
    list-style: none;
    box-shadow: var(--shadow-lg);
    max-height: 350px;
    overflow-y: auto;
}

.service-details.expanded {
    display: block;
    animation: slideDown 0.2s ease-out;
}

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

.service-details li {
    position: relative;
    padding: 6px 0 6px 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.service-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
}

/* Add-ons Section */
.addons-section {
    margin-bottom: 48px;
    padding-bottom: 200px; /* Extra space for expanded overlays */
}

.addons-section h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;
}

.addon-card-expanded {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: visible;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    position: relative;
}

.addon-card-expanded:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.addon-card-expanded.has-value {
    border-color: var(--primary);
    background: var(--primary-subtle);
}

.addon-card-expanded .addon-main {
    padding: 16px;
    flex: 1;
}

.addon-card-expanded .addon-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.addon-card-expanded .addon-icon {
    font-size: 1.5rem;
}

.addon-card-expanded .addon-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.addon-card-expanded .addon-price {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

.addon-card-expanded .addon-qty {
    display: flex;
    justify-content: center;
}

/* Assessment Included Notice (when Scale is selected) */
.assessment-included-notice {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(8, 145, 178, 0.1) 100%);
    border-top: 1px solid rgba(16, 185, 129, 0.3);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.assessment-included-notice .included-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--success);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.assessment-included-notice .included-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
}

#assessment-addon.scale-included {
    border-color: var(--success);
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.05) 0%, white 100%);
}

#assessment-addon.scale-included .addon-price {
    text-decoration: line-through;
    color: var(--text-muted);
}

/* Clickable Addon Card (Security Assessment) */
.addon-clickable {
    cursor: pointer;
    position: relative;
}

.addon-clickable .addon-check {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.addon-clickable-label {
    display: block;
    cursor: pointer;
    width: 100%;
}

.addon-clickable:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.addon-clickable.selected,
.addon-clickable:has(.addon-check:checked) {
    border-color: var(--primary);
    background: var(--primary-subtle);
}

.addon-checkbox-visual {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: white;
    position: relative;
    transition: var(--transition-fast);
}

.addon-clickable:has(.addon-check:checked) .addon-checkbox-visual {
    background: var(--primary);
    border-color: var(--primary);
}

.addon-clickable:has(.addon-check:checked) .addon-checkbox-visual::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.addon-clickable .addon-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Toggle Switch for Addon */
.toggle-switch-addon {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    cursor: pointer;
}

.toggle-switch-addon input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider-addon {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border);
    transition: var(--transition-fast);
    border-radius: 28px;
}

.toggle-slider-addon::before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: var(--transition-fast);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.toggle-switch-addon input:checked + .toggle-slider-addon {
    background: var(--gradient-primary);
}

.toggle-switch-addon input:checked + .toggle-slider-addon::before {
    transform: translateX(24px);
}

.toggle-switch-addon input:focus + .toggle-slider-addon {
    box-shadow: 0 0 0 3px var(--primary-subtle);
}

.addon-card-expanded .details-toggle {
    border-top: 1px solid var(--border);
}

/* Add-ons Row */
.addons-row {
    margin-bottom: 32px;
}

.addons-row h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.addon-chips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.addon-chip-card {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.addon-chip-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.addon-chip-card.has-value {
    border-color: var(--primary);
    background: var(--primary-subtle);
}

.addon-chip-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.addon-chip-qty {
    display: flex;
    justify-content: center;
}

.addon-chip-qty .qty-control-modern {
    width: 120px;
}

.addon-onetime {
    border-style: dashed;
}

.addon-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.addon-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.chip-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.chip-info {
    flex: 1;
}

.chip-info strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.chip-price {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Legacy addon-chip support */
.addon-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
}

.addon-chip:hover {
    border-color: var(--primary);
}

.addon-chip:has(.addon-check:checked) {
    border-color: var(--primary);
    background: var(--primary-subtle);
}

.addon-check {
    display: none;
}

.chip-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chip-info-legacy strong {
    display: block;
    font-size: 0.9rem;
}

.chip-price {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.chip-qty {
    width: 50px;
    padding: 6px 8px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-align: center;
}

/* Section Nav */
.section-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.btn-arrow {
    transition: var(--transition-fast);
}

.next-step:hover .btn-arrow {
    transform: translateX(4px);
}

.prev-step:hover .btn-arrow {
    transform: translateX(-4px);
}

.next-step:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.plans-grid.plans-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.plan-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-base);
    position: relative;
    box-shadow: var(--shadow-card);
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.plan-card.selected {
    border-color: var(--primary);
    border-width: 2px;
}

.plan-card.popular {
    border-color: var(--primary);
    border-width: 2px;
    background: var(--primary-subtle);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 14px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    white-space: nowrap;
}

/* Plan Type Badge (Reactive/Proactive) */
.plan-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 6px;
    margin-bottom: 16px;
}

/* Core plan - add spacing to align with cards that have badges */
.plan-card[data-plan="core"] .plan-header {
    margin-top: 38px; /* Compensate for missing badge */
}

.plan-type-badge.proactive {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #047857;
    border: 1px solid #a7f3d0;
    box-shadow: 0 1px 2px rgba(16, 185, 129, 0.1);
}

.plan-type-badge.proactive::before {
    content: "✓";
    font-size: 0.65rem;
    font-weight: 800;
}

/* Hours Block Styling */
.hours-block {
    background: var(--bg-subtle);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 8px;
}

.hours-block .hours-title {
    font-weight: 700;
    color: var(--text);
    font-size: 0.95rem;
}

.hours-block .hours-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.hours-block .hours-tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.plan-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.plan-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.plan-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.plan-price .currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
}

.plan-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-mono);
    line-height: 1;
}

.plan-price .period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.plan-team {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.plan-hours {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1) 0%, rgba(8, 145, 178, 0.05) 100%);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    display: inline-block;
}

/* De-emphasized hours - subtle, secondary */
.plan-hours-subtle {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 8px;
    opacity: 0.8;
}

/* Scale Featured Card - Premium Styling */
.plan-card.scale-featured {
    background: linear-gradient(180deg, var(--primary-subtle) 0%, white 100%);
    border-width: 2px;
    box-shadow: 
        0 4px 20px rgba(8, 145, 178, 0.15),
        0 0 0 1px rgba(8, 145, 178, 0.1);
}

.plan-card.scale-featured:hover {
    box-shadow: 
        0 8px 32px rgba(8, 145, 178, 0.2),
        0 0 0 1px rgba(8, 145, 178, 0.15);
}

/* Assessment Bonus Callout */
.scale-assessment-bonus {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    margin-bottom: 8px;
}

.scale-assessment-bonus .bonus-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.scale-assessment-bonus .bonus-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.scale-assessment-bonus .bonus-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.scale-assessment-bonus .bonus-value {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.scale-assessment-bonus .bonus-badge {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.scale-commitment {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 16px;
    font-style: italic;
}

.plan-features {
    list-style: none;
    flex: 1;
    margin-bottom: 24px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-light);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features .included {
    color: var(--text-secondary);
}

.plan-features .included span {
    color: var(--success);
    font-weight: 700;
}

.plan-features .not-included {
    color: var(--text-muted);
    opacity: 0.6;
}

.plan-features .not-included span {
    color: var(--text-muted);
}

.plan-features .highlight {
    color: var(--primary);
    font-weight: 500;
}

.select-plan-btn {
    width: 100%;
}

.plan-card.selected .select-plan-btn {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

/* Review Panel */
.review-panel {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: var(--shadow-card);
}

.review-section {
    padding: 24px;
    border-bottom: 1px solid var(--border);
}

.review-section:last-of-type {
    border-bottom: none;
}

.review-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-icon {
    font-size: 1.25rem;
}

.review-section-header h3 {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
}

.review-billing-badge {
    padding: 4px 10px;
    background: var(--success);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.review-billing-badge.monthly {
    background: var(--primary);
}

.review-billing-badge.onetime {
    background: var(--success, #10b981);
}

.review-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 40px;
}

.empty-message {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

.review-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--bg-subtle);
    border-radius: var(--radius-sm);
}

.review-item-name {
    font-size: 0.9rem;
}

.review-item-price {
    font-weight: 600;
    color: var(--primary);
    font-family: var(--font-mono);
}

.review-subtotal {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    margin-top: 8px;
    border-top: 1px dashed var(--border);
    font-weight: 600;
}

.review-subtotal span:last-child {
    color: var(--primary);
    font-family: var(--font-mono);
}

.review-total-section {
    padding: 24px;
    background: var(--gradient-subtle);
}

.review-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.review-total-row:last-child {
    border-bottom: none;
}

.review-total-row.annual {
    padding-top: 16px;
}

.review-total-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-total-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

/* Standardized styling for all review total rows */
.review-total-row.annual .review-total-title,
.review-total-row.onetime .review-total-title {
    color: var(--text);
}

.review-total-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

.review-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    font-family: var(--font-mono);
}

.review-onetime-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--border);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.review-onetime-row span:last-child {
    font-weight: 600;
    color: var(--accent);
    font-family: var(--font-mono);
}

.review-total {
    font-size: 2rem;
    color: var(--primary);
    font-family: var(--font-mono);
}

/* Quote Card */
.quote-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
}

.quote-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.quote-card > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.quote-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.quote-form label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.quote-form input,
.quote-form textarea {
    padding: 12px 16px;
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text);
    transition: var(--transition-fast);
}

.quote-form input:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px var(--primary-subtle);
}

.quote-form textarea {
    resize: vertical;
    min-height: 80px;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Summary Panel */
.builder-summary {
    position: sticky;
    top: 100px;
}

.summary-panel {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.summary-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.reset-link {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.reset-link:hover {
    color: var(--danger);
}

/* Billing Toggle in Summary */
.summary-billing-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    padding: 6px 0;
}

.summary-billing-toggle .billing-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

.summary-billing-toggle .billing-btn {
    padding: 4px 8px;
    border: 1px solid var(--border);
    background: white;
    border-radius: var(--radius-sm);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.summary-billing-toggle .billing-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.summary-billing-toggle .billing-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.summary-billing-toggle .billing-btn .save-tag {
    color: var(--success);
    font-weight: 700;
}

.summary-billing-toggle .billing-btn.active .save-tag {
    color: #a7f3d0;
}

.summary-body {
    padding: 16px 20px;
}

.summary-group {
    margin-bottom: 20px;
}

.summary-group:last-child {
    margin-bottom: 0;
}

.summary-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.summary-price-with-period {
    display: flex;
    align-items: baseline;
    gap: 2px;
    color: var(--primary);
    font-family: var(--font-mono);
}

.summary-price-with-period .period-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

.summary-onetime {
    border-top: 1px dashed var(--border);
    padding-top: 12px;
    margin-top: 4px;
}

.summary-annual-breakdown {
    background: var(--bg-subtle);
    border-radius: var(--radius-sm);
    padding: 12px;
    margin-bottom: 16px;
    font-size: 0.8rem;
}

.annual-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    color: var(--text-secondary);
}

.annual-row.total {
    border-top: 1px solid var(--border);
    margin-top: 8px;
    padding-top: 8px;
    font-weight: 600;
    color: var(--text);
}

.annual-row.total span:last-child {
    color: var(--primary);
    font-family: var(--font-mono);
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 30px;
}

.summary-empty {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    background: var(--bg-subtle);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}

.summary-item-price {
    font-weight: 600;
    color: var(--primary);
    font-family: var(--font-mono);
}

.summary-item-hours {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* FREE badge for included items */
.free-badge {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    color: white;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.free-note {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 2px;
    text-align: right;
}

.summary-footer {
    padding: 20px;
    background: var(--gradient-subtle);
    border-top: 1px solid var(--border);
}

.summary-total-section {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-total-section:last-of-type {
    border-bottom: none;
}

.summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Standardized styling for all total rows */
.summary-total-row.monthly span:first-child,
.summary-total-row.annual span:first-child,
.summary-total-row.onetime span:first-child {
    font-weight: 600;
    color: var(--text);
}

/* Compact one-time footer - saves vertical space */
.summary-total-compact {
    padding: 12px 0 8px;
    margin-top: 0;
}

.summary-total-compact .total-value {
    font-size: 1.25rem;
}

.summary-total-detail {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Annual savings badge */
.annual-savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(5, 150, 105, 0.08) 100%);
    color: #059669;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 6px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    white-space: nowrap;
}

.summary-total-amount {
    text-align: right;
}

.total-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-mono);
    line-height: 1;
}

.total-period {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.summary-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.summary-trust {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.summary-trust span::before {
    color: var(--success);
    margin-right: 4px;
}

/* Nav Link Active State */
.nav-link.active {
    color: var(--primary);
    opacity: 1;
}

.nav-link.active::after {
    width: 100%;
}

/* Footer - uses shared styles from styles.css */

/* Responsive */
@media (max-width: 1280px) {
    .builder-layout {
        grid-template-columns: 1fr 300px;
        gap: 24px;
    }
    
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plans-grid.plans-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bundle-layout {
        grid-template-columns: 1fr;
    }
    
    .bundle-action {
        padding: 20px;
    }
}

@media (max-width: 1024px) {
    .builder-layout {
        grid-template-columns: 1fr;
    }
    
    /* Hide full summary sidebar on mobile - use floating pill instead */
    .builder-summary {
        display: none !important;
    }
    
    /* Floating price card - clean, modern summary */
    .mobile-price-pill {
        display: block !important;
        position: fixed;
        bottom: 16px;
        right: 16px;
        z-index: 100;
        background: white;
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 12px 16px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    }
    
    .mobile-price-pill .pill-totals {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    
    .mobile-price-pill .pill-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        white-space: nowrap;
    }
    
    .mobile-price-pill .pill-price {
        color: var(--primary);
        font-family: var(--font-mono);
        font-weight: 700;
        font-size: 1rem;
    }
    
    .mobile-price-pill .pill-label {
        font-size: 0.7rem;
        color: var(--text-muted);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }
    
    .mobile-price-pill .pill-row-annual .pill-price {
        color: var(--accent, #7c3aed);
    }
    
    .mobile-price-pill .pill-row-onetime .pill-price {
        color: var(--success, #10b981);
    }
    
    .mobile-price-pill .pill-header {
        font-size: 0.65rem;
        font-weight: 700;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: 8px;
        padding-bottom: 6px;
        border-bottom: 1px solid var(--border);
    }
    
    /* Mobile pill expanded state - full summary sheet */
    .mobile-summary-sheet {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1001;
        background: white;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.2);
        max-height: 70vh;
        overflow-y: auto;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }
    
    .mobile-summary-sheet.open {
        display: block;
        transform: translateY(0);
    }
    
    .mobile-summary-sheet .sheet-handle {
        width: 40px;
        height: 4px;
        background: var(--border);
        border-radius: 2px;
        margin: 12px auto;
    }
    
    .mobile-summary-sheet .sheet-content {
        padding: 0 20px 20px;
    }
    
    .mobile-summary-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1000;
    }
    
    .mobile-summary-backdrop.open {
        display: block;
    }
    
    /* Normal padding - no fixed bar to accommodate */
    .builder-config {
        padding-bottom: 24px;
    }
    
    .builder-progress {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .progress-connector {
        display: none;
    }
}

/* Hide mobile-only elements on desktop */
.mobile-price-pill {
    display: none;
}

.mobile-summary-sheet {
    display: none;
}

.mobile-summary-backdrop {
    display: none;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid-expanded {
        grid-template-columns: 1fr;
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-grid,
    .plans-grid.plans-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .scale-assessment-bonus {
        flex-wrap: wrap;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header-inline {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .billing-toggle {
        align-self: flex-start;
    }
    
    .section-nav {
        flex-direction: column;
        gap: 12px;
    }
    
    .section-nav .btn {
        width: 100%;
    }
    
    .addon-chips {
        flex-direction: column;
    }
    
    .bundle-header {
        flex-direction: column;
        text-align: center;
    }
    
    .bundle-icon {
        margin: 0 auto;
    }
    
    /* ========================================
       Mobile Bundle Card - Stack Layout
       ======================================== */
    .bundle-card-compact {
        padding: 16px;
    }
    
    .bundle-compact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .bundle-features-col {
        order: 1;
    }
    
    .bundle-action-col {
        order: 0;
        min-width: auto;
        width: 100%;
        padding: 16px;
    }
    
    .bundle-title-row {
        margin-bottom: 12px;
    }
    
    .bundle-title-row h3 {
        font-size: 1rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .feature-row {
        font-size: 0.85rem;
        padding: 6px 0;
        display: flex;
        justify-content: space-between;
    }
    
    .price-block {
        text-align: center;
    }
    
    .price-big {
        font-size: 2rem;
    }
    
    .bundle-ribbon {
        font-size: 0.7rem;
        padding: 4px 12px;
        right: -8px;
        top: -8px;
    }
    
    /* ========================================
       Mobile Service Cards - Better Layout
       ======================================== */
    .service-card-expanded {
        position: relative;
        z-index: 1;
    }
    
    .service-card-expanded .card-header {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .service-card-expanded .card-title {
        flex: 1;
        min-width: 120px;
    }
    
    .service-card-expanded .card-title h4 {
        font-size: 0.95rem;
    }
    
    .service-card-expanded .card-title p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .service-card-expanded .card-price {
        margin-left: auto;
    }
    
    .service-card-expanded .card-qty {
        margin-top: 8px;
    }
    
    /* ========================================
       Mobile Details Toggle - Fix Z-Index
       ======================================== */
    .service-card-expanded.details-open {
        z-index: 50;
    }
    
    .details-toggle {
        padding: 12px 16px;
        font-size: 0.85rem;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .service-details {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        z-index: 10;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        border: none;
        border-top: 1px solid var(--primary);
        box-shadow: none;
        margin: 0;
    }
    
    .service-details.expanded {
        display: block;
    }
    
    .service-details li {
        padding: 8px 0 8px 24px;
        font-size: 0.8rem;
    }
    
    /* ========================================
       Mobile Or Divider
       ======================================== */
    .or-divider {
        margin: 24px 0;
    }
    
    .or-divider span {
        font-size: 0.75rem;
        padding: 0 12px;
    }
    
    /* ========================================
       Mobile Add-ons Section
       ======================================== */
    .addon-card-compact {
        padding: 12px;
    }
    
    .addon-card-compact .addon-info h5 {
        font-size: 0.9rem;
    }
    
    .addon-card-compact .addon-info p {
        font-size: 0.75rem;
    }
    
    .addon-price {
        font-size: 0.9rem;
    }
}

