/* ============================================
   TRUST INDICATORS PANEL STYLES
   ============================================ */
.trust-indicators-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.trust-badge-main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.trust-badge-main:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.trust-icon {
    font-size: 2.5rem;
    color: #fff;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.trust-badge-main:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.trust-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.trust-content {
    flex: 1;
}

.trust-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.25rem;
}

.trust-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.trust-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .trust-indicators-panel {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .trust-badge-main {
        gap: 1rem;
        padding: 1rem;
    }

    .trust-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .trust-title {
        font-size: 1rem;
    }

    .trust-subtitle {
        font-size: 0.9rem;
    }

    .trust-description {
        font-size: 0.85rem;
    }
}

/* ============================================
   PRICING VISUALIZER STYLES
   ============================================ */
:root {
    --pricing-primary-blue: #2563eb;
    --pricing-primary-purple: #7c3aed;
    --pricing-accent-teal: #14b8a6;
    --pricing-bg-light: #f8fafc;
    --pricing-bg-white: #ffffff;
    --pricing-text-dark: #1e293b;
    --pricing-text-muted: #64748b;
    --pricing-border-light: #e2e8f0;
    --pricing-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --pricing-shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-visualizer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.configurator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

/* Left side - Controls */
.controls-panel {
    background: var(--pricing-bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--pricing-shadow-lg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--pricing-border-light);
}

.control-group {
    margin-bottom: 2.5rem;
}

.control-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pricing-text-dark);
    margin-bottom: 1rem;
    display: block;
}

/* Styled dropdowns */
.controls-panel select, .controls-panel input[type="range"] {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--pricing-border-light);
    border-radius: 10px;
    font-size: 1rem;
    background: var(--pricing-bg-white);
    color: var(--pricing-text-dark);
    transition: all 0.3s ease;
    cursor: pointer;
}

.controls-panel select:hover, .controls-panel select:focus {
    border-color: var(--pricing-primary-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Styled range sliders */
.controls-panel input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    background: var(--pricing-border-light);
    border-radius: 5px;
    cursor: pointer;
    padding: 0;
}

.controls-panel input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--pricing-primary-blue);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
    transition: transform 0.2s;
}

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

.controls-panel input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--pricing-primary-blue);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
}

.range-value {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--pricing-primary-blue);
    margin-top: 0.5rem;
}

/* Toggle buttons for hosting type */
.toggle-group {
    display: flex;
    gap: 1rem;
}

.toggle-button {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--pricing-border-light);
    border-radius: 10px;
    background: var(--pricing-bg-white);
    color: var(--pricing-text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.toggle-button:hover {
    border-color: var(--pricing-primary-blue);
    background: rgba(37, 99, 235, 0.05);
}

.toggle-button.active {
    background: var(--pricing-primary-blue);
    color: white;
    border-color: var(--pricing-primary-blue);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Right side - Price Display */
.price-display-panel {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.price-card {
    background: linear-gradient(135deg, var(--pricing-primary-blue), var(--pricing-primary-purple));
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--pricing-shadow-xl);
    color: white;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate-glow 10s linear infinite;
}

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

.price-card-content {
    position: relative;
    z-index: 1;
}

.price-label {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price-amount {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.price-amount.updating {
    transform: scale(1.1);
}

.price-currency {
    font-size: 2rem;
    opacity: 0.8;
    vertical-align: top;
}

.price-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 1.5rem;
    line-height: 1.6;
}

/* Complexity indicators */
.complexity-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.complexity-gear {
    font-size: 1.5rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.complexity-gear.active {
    opacity: 1;
    transform: rotate(180deg);
}

/* Responsive Design */
@media (max-width: 968px) {
    .configurator-container {
        grid-template-columns: 1fr;
    }

    .price-display-panel {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .price-amount {
        font-size: 3rem;
    }

    .toggle-group {
        flex-direction: column;
    }
}

