/* Partner ROI Calculator Styles */

.calculator-hero {
    background: linear-gradient(135deg, #0F1629 0%, #1a2332 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.calculator-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(200, 157, 92, 0.1), transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 157, 92, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: white;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-highlight {
    background: linear-gradient(135deg, #C89D5C, #E6C98F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.trust-badge i {
    width: 20px;
    height: 20px;
    color: var(--gold-primary);
}

/* Calculator Section */
.calculator-section {
    padding: 4rem 0 6rem;
    background: var(--background);
}

.calculator-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.calculator-panel {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
}

.panel-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.panel-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

/* Input Styles */
.input-group {
    margin-bottom: 1.5rem;
}

.input-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.help-icon {
    cursor: help;
    position: relative;
}

.help-icon i {
    width: 16px;
    height: 16px;
    color: var(--muted-foreground);
}

.calculator-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    background: var(--background);
    color: var(--foreground);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.calculator-input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(200, 157, 92, 0.1);
}

/* Partnership Model Selector */
.partnership-model-selector {
    margin: 2rem 0;
}

.model-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.model-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.model-option:hover {
    border-color: var(--gold-primary);
    background: rgba(200, 157, 92, 0.05);
}

.model-option input[type="radio"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--gold-primary);
}

.option-content {
    flex: 1;
}

.option-name {
    display: block;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.option-detail {
    display: block;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.model-option input[type="radio"]:checked ~ .option-content .option-name {
    color: var(--gold-primary);
}

/* Calculate Button */
.btn-calculate {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #C89D5C, #E6C98F);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(200, 157, 92, 0.3);
}

.btn-calculate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 157, 92, 0.5);
}

.btn-calculate i {
    width: 20px;
    height: 20px;
}

/* Results Panel */
.results-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.result-card {
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.result-card:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 4px 20px rgba(200, 157, 92, 0.1);
}

.result-card.primary-result {
    border-color: var(--gold-primary);
    background: linear-gradient(135deg, rgba(200, 157, 92, 0.05), var(--background));
}

.result-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(200, 157, 92, 0.1), rgba(200, 157, 92, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.result-icon.small {
    width: 40px;
    height: 40px;
}

.result-icon i {
    width: 28px;
    height: 28px;
    color: var(--gold-primary);
}

.result-icon.small i {
    width: 20px;
    height: 20px;
}

.result-content {
    flex: 1;
}

.result-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #C89D5C, #E6C98F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.result-value.medium {
    font-size: 2rem;
}

.result-note {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Result Breakdown */
.result-breakdown {
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.breakdown-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.breakdown-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

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

.breakdown-item.highlight {
    background: linear-gradient(135deg, rgba(200, 157, 92, 0.1), rgba(200, 157, 92, 0.05));
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.breakdown-label {
    font-size: 0.9375rem;
    color: var(--foreground);
}

.breakdown-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-primary);
}

/* Assumptions Note */
.assumptions-note {
    display: flex;
    gap: 1rem;
    background: var(--muted);
    border-radius: 12px;
    padding: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-top: 1rem;
}

.assumptions-note i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--gold-primary);
}

/* Next Steps Section */
.next-steps-section {
    padding: 6rem 0;
    background: var(--muted);
}

.next-steps-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--foreground);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-primary-cta,
.btn-secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-cta {
    background: linear-gradient(135deg, #C89D5C, #E6C98F);
    color: white;
    box-shadow: 0 4px 20px rgba(200, 157, 92, 0.4);
}

.btn-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 157, 92, 0.6);
}

.btn-secondary-cta {
    background: var(--card);
    border: 2px solid var(--border);
    color: var(--foreground);
}

.btn-secondary-cta:hover {
    border-color: var(--gold-primary);
    background: rgba(200, 157, 92, 0.05);
}

.social-proof {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.9375rem;
}

.proof-item i {
    width: 20px;
    height: 20px;
    color: var(--gold-primary);
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .calculator-panel {
        padding: 1.5rem;
    }
    
    .result-value {
        font-size: 2rem;
    }
    
    .result-value.medium {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary-cta,
    .btn-secondary-cta {
        width: 100%;
        justify-content: center;
    }
}
