/* Results Page Specific Styles */
/* Color Palette: #4E1F00 (Dark Brown), #74512D (Medium Brown), #FEBA17 (Gold), #F8F4E1 (Cream) */

/* Results Hero Section */
.results-hero {
    background: linear-gradient(135deg, #4E1F00 0%, #74512D 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.results-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(254, 186, 23, 0.1) 50%, transparent 70%);
    animation: heroShine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.results-hero-content {
    position: relative;
    z-index: 2;
}

.results-hero h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.results-hero .highlight {
    color: #FEBA17;
}

.results-hero p {
    color: #F8F4E1;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Results Overview Stats */
.results-overview-stats {
    padding: 4rem 0;
    background: #F8F4E1;
}

.results-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.results-stat-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(78, 31, 0, 0.1);
    border-top: 4px solid #FEBA17;
    transition: transform 0.3s ease;
}

.results-stat-card:hover {
    transform: translateY(-5px);
}

.results-stat-icon {
    background: linear-gradient(135deg, #FEBA17, #74512D);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.results-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FEBA17;
    margin-bottom: 0.5rem;
    display: block;
}

.results-stat-label {
    color: #74512D;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.results-stat-description {
    color: #74512D;
    font-size: 0.9rem;
    margin: 0;
}

/* Featured Results */
.results-featured {
    padding: 6rem 0;
    background: white;
}

.results-featured h2 {
    text-align: center;
    color: #4E1F00;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.results-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.results-featured-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(78, 31, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #F8F4E1;
}

.results-featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(78, 31, 0, 0.15);
}

.results-card-header {
    background: linear-gradient(135deg, #FEBA17, #74512D);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.results-card-amount {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.results-card-type {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
    margin: 0;
}

.results-card-body {
    padding: 2rem;
}

.results-case-details {
    margin-bottom: 1.5rem;
}

.results-case-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #F8F4E1;
}

.results-case-detail:last-child {
    border-bottom: none;
}

.results-detail-label {
    color: #74512D;
    font-weight: 600;
    font-size: 0.9rem;
}

.results-detail-value {
    color: #4E1F00;
    font-weight: 500;
}

.results-case-description {
    background: #F8F4E1;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #FEBA17;
    margin-top: 1.5rem;
}

.results-case-description h4 {
    color: #4E1F00;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.results-case-description p {
    color: #74512D;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Case Categories */
.results-categories {
    padding: 6rem 0;
    background: #F8F4E1;
}

.results-categories h2 {
    text-align: center;
    color: #4E1F00;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.results-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.results-category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(78, 31, 0, 0.1);
    text-align: center;
    border-top: 5px solid #FEBA17;
    transition: transform 0.3s ease;
}

.results-category-card:hover {
    transform: translateY(-5px);
}

.results-category-icon {
    background: linear-gradient(135deg, #FEBA17, #74512D);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.results-category-card h3 {
    color: #4E1F00;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.results-category-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #FEBA17;
    margin-bottom: 0.5rem;
    display: block;
}

.results-category-label {
    color: #74512D;
    font-weight: 600;
    margin-bottom: 1rem;
}

.results-category-cases {
    color: #74512D;
    font-size: 0.9rem;
    margin: 0;
}

/* Results Process */
.results-process {
    padding: 6rem 0;
    background: white;
}

.results-process h2 {
    text-align: center;
    color: #4E1F00;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.results-process-subtitle {
    text-align: center;
    color: #74512D;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.results-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.results-process-step {
    text-align: center;
    padding: 2rem;
    background: #F8F4E1;
    border-radius: 15px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.results-process-step:hover {
    border-color: #FEBA17;
    transform: translateY(-5px);
}

.results-process-number {
    background: #FEBA17;
    color: #4E1F00;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(254, 186, 23, 0.3);
}

.results-process-step h4 {
    color: #4E1F00;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.results-process-step p {
    color: #74512D;
    margin: 0;
    line-height: 1.6;
}

/* Results CTA */
.results-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #4E1F00 0%, #74512D 100%);
    color: white;
    text-align: center;
}

.results-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.results-cta p {
    color: #F8F4E1;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.results-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.results-cta .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.results-cta .btn-primary {
    background: #FEBA17;
    color: #4E1F00;
}

.results-cta .btn-primary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 186, 23, 0.4);
}

.results-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.results-cta .btn-secondary:hover {
    background: white;
    color: #4E1F00;
}

/* Results by Type Section */
.results-by-type {
    padding: 6rem 0;
    background: #F8F4E1;
}

.results-by-type .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.results-by-type .section-header h2 {
    color: #4E1F00;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.results-by-type .section-header p {
    color: #74512D;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.results-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    background: white;
    color: #4E1F00;
    border: 2px solid #FEBA17;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.tab-button:hover {
    background: #FEBA17;
    color: white;
    transform: translateY(-2px);
}

.tab-button.active {
    background: #FEBA17;
    color: white;
    box-shadow: 0 4px 15px rgba(254, 186, 23, 0.3);
}

.tab-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(78, 31, 0, 0.1);
    overflow: hidden;
}

.tab-pane {
    display: none;
    padding: 2rem;
}

.tab-pane.active {
    display: block;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: #F8F4E1;
    border-radius: 10px;
    border-left: 4px solid #FEBA17;
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: 0 5px 15px rgba(78, 31, 0, 0.1);
}

.result-item .amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4E1F00;
    min-width: 120px;
}

.result-item .description {
    flex: 1;
    color: #74512D;
    font-weight: 500;
    margin: 0 1rem;
}

.result-item .year {
    color: #FEBA17;
    font-weight: 600;
    background: #4E1F00;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Success Factors Section */
.success-factors {
    padding: 6rem 0;
    background: white;
}

.success-factors .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.success-factors .section-header h2 {
    color: #4E1F00;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.success-factors .section-header p {
    color: #74512D;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.factor-card {
    background: #F8F4E1;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.factor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FEBA17, #74512D);
    transition: left 0.3s ease;
}

.factor-card:hover::before {
    left: 0;
}

.factor-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 40px rgba(78, 31, 0, 0.1);
    border-color: #FEBA17;
}

.factor-icon {
    background: linear-gradient(135deg, #FEBA17, #74512D);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(254, 186, 23, 0.3);
}

.factor-card h3 {
    color: #4E1F00;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.factor-card p {
    color: #74512D;
    line-height: 1.6;
    margin: 0;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 4rem 0;
    background: #F8F4E1;
    border-top: 4px solid #FEBA17;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-content h3 {
    color: #4E1F00;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.disclaimer-content h3::before {
    content: "⚖️";
    font-size: 1.5rem;
}

.disclaimer-content p {
    color: #74512D;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.disclaimer-content p:last-child {
    margin-bottom: 0;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #4E1F00 0%, #74512D 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(254,186,23,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content p {
    color: #F8F4E1;
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn {
    padding: 1.3rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.cta-section .btn-primary {
    background: #FEBA17;
    color: #4E1F00;
    border: 2px solid #FEBA17;
}

.cta-section .btn-primary:hover {
    background: white;
    color: #4E1F00;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(254, 186, 23, 0.4);
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: #4E1F00;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Additional Settlement Results */
.additional-settlements {
    padding: 6rem 0;
    background: white;
}

.additional-settlements h2 {
    text-align: center;
    color: #4E1F00;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.settlements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.settlement-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(78, 31, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #F8F4E1;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.settlement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(78, 31, 0, 0.15);
    border-color: rgba(254, 186, 23, 0.3);
}

.settlement-amount {
    background: linear-gradient(135deg, #4E1F00 0%, #74512D 100%);
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    flex-shrink: 0;
}

.settlement-amount::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(254, 186, 23, 0.1) 70%);
    pointer-events: none;
}

.settlement-type {
    background: #FEBA17;
    color: #4E1F00;
    padding: 1rem 2rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    flex-shrink: 0;
}

.settlement-details {
    padding: 2rem;
    background: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.settlement-details p {
    color: #4E1F00;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.case-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.case-highlights li {
    position: relative;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    background: #F8F4E1;
    border-radius: 8px;
    color: #74512D;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.case-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: #FEBA17;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.case-highlights li:hover {
    background: #FEBA17;
    color: white;
}

.case-highlights li:hover::before {
    background: white;
    color: #4E1F00;
}

.case-year {
    background: #4E1F00;
    color: #FEBA17;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    flex-shrink: 0;
    margin-top: auto;
}

.settlement-details p {
    color: #4E1F00;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.case-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.case-highlights li {
    position: relative;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    background: #F8F4E1;
    border-radius: 8px;
    color: #74512D;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.case-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: #FEBA17;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.case-highlights li:hover {
    background: #FEBA17;
    color: white;
}

.case-highlights li:hover::before {
    background: white;
    color: #4E1F00;
}

.case-year {
    background: #4E1F00;
    color: #FEBA17;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .results-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .results-featured-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .results-hero h1 {
        font-size: 2.2rem;
    }
    
    .results-stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .results-category-grid {
        grid-template-columns: 1fr;
    }
    
    .results-process-steps {
        grid-template-columns: 1fr;
    }
    
    .results-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .results-cta .btn {
        width: 280px;
        justify-content: center;
    }
    
    .settlements-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: 2rem;
    }
    
    .factors-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .tab-button {
        width: 200px;
    }
    
    .result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .result-item .amount {
        min-width: auto;
        font-size: 1.3rem;
    }
    
    .result-item .description {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .results-hero h1 {
        font-size: 1.8rem;
    }
    
    .results-card-amount {
        font-size: 2.2rem;
    }
    
    .results-featured-card,
    .results-category-card {
        margin-bottom: 1.5rem;
    }
    
    .results-card-header,
    .results-card-body {
        padding: 1.5rem;
    }
    
    .settlement-card {
        margin-bottom: 1.5rem;
        border-radius: 15px;
    }
    
    .settlement-amount {
        font-size: 2.2rem;
        padding: 1.5rem;
    }
    
    .settlement-type {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .settlement-details {
        padding: 2rem 1.5rem;
    }
    
    .settlement-details p {
        font-size: 1rem;
    }
    
    .case-highlights li {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .factor-card {
        padding: 2rem 1.5rem;
    }
    
    .factor-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .disclaimer-content h3 {
        font-size: 1.5rem;
    }
    
    .tab-button {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .additional-settlements h2 {
        font-size: 2.3rem;
    }
    
    .settlements-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
}
