/* ClearML vs Bud Comparison Page Styles */

/* Page background */
body {
    background: #f9f8f4;
    overflow-x: hidden;
}
html {
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
html::-webkit-scrollbar {
    display: none;
}
.footer {
    background: #000000 !important;
}

/* ========================================
   Hero Section
   ======================================== */
.compare_hero {
    margin-top: 6.5vw;
    padding: 0 2.8vw;
}

.compare_hero_box {
    background: #0a0a0a;
    min-height: 32vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 1.5vw;
    padding: 5vw 2vw;
}

/* Animated gradient blobs */
.compare_blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.85;
    transition: transform 0.15s ease-out;
}

.compare_blob.blob1 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.7) 0%, rgba(37, 99, 235, 0.4) 40%, transparent 70%);
    top: 10%;
    left: 15%;
    animation: compareBlob1 12s ease-in-out infinite;
}

.compare_blob.blob2 {
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.7) 0%, rgba(139, 69, 203, 0.4) 40%, transparent 70%);
    top: 5%;
    right: 20%;
    animation: compareBlob2 14s ease-in-out infinite;
}

.compare_blob.blob3 {
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.7) 0%, rgba(22, 163, 74, 0.4) 40%, transparent 70%);
    bottom: 10%;
    left: 30%;
    animation: compareBlob3 10s ease-in-out infinite;
}

@keyframes compareBlob1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(5%, 10%) scale(1.05); }
    50% { transform: translate(-5%, 5%) scale(0.95); }
    75% { transform: translate(3%, -5%) scale(1.02); }
}
@keyframes compareBlob2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-8%, -5%) scale(1.08); }
    50% { transform: translate(5%, 8%) scale(0.92); }
    75% { transform: translate(-3%, 3%) scale(1.05); }
}
@keyframes compareBlob3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(6%, -8%) scale(0.95); }
    50% { transform: translate(-4%, -4%) scale(1.1); }
    75% { transform: translate(-6%, 6%) scale(0.98); }
}

/* Hero Content */
.compare_hero_content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 60vw;
}

.compare_hero_badge {
    display: inline-block;
    padding: 0.5vw 1.5vw;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2vw;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85vw;
    margin-bottom: 1.5vw;
}

.compare_hero_content h1 {
    color: #ffffff;
    font-size: 3.2vw;
    font-weight: 400;
    margin: 0;
    line-height: 1.25;
}

.compare_hero_content h1 em {
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
}

.compare_hero_content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05vw;
    margin-top: 1.5vw;
    line-height: 1.6;
    max-width: 45vw;
    margin-left: auto;
    margin-right: auto;
}

.compare_hero_cta {
    display: flex;
    gap: 1vw;
    justify-content: center;
    margin-top: 2.5vw;
}

.compare_btn_primary {
    display: inline-block;
    padding: 0.9vw 2vw;
    background: #ffffff;
    color: #0a0a0a;
    text-decoration: none;
    font-size: 0.95vw;
    font-weight: 500;
    border-radius: 0.5vw;
    transition: all 0.3s ease;
}

.compare_btn_primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.compare_btn_secondary {
    display: inline-block;
    padding: 0.9vw 2vw;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95vw;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5vw;
    transition: all 0.3s ease;
}

.compare_btn_secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   Executive Summary Section
   ======================================== */
.compare_executive_section {
    padding: 6vw 11.3vw;
    background: #ffffff;
}

.executive_content {
    max-width: 100%;
}

.executive_content h2 {
    font-size: 2.5vw;
    font-weight: 400;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
    color: #1a1a1a;
    margin-bottom: 1.5vw;
    text-align: center;
}

.executive_intro {
    font-size: 1.1vw;
    color: #555;
    line-height: 1.7;
    text-align: center;
    max-width: 55vw;
    margin: 0 auto 4vw auto;
}

.executive_findings {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2vw;
}

.finding_card {
    display: flex;
    gap: 1.5vw;
    padding: 2vw;
    background: #f9f8f4;
    border-radius: 1vw;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.finding_number {
    width: 2.5vw;
    height: 2.5vw;
    background: #16a34a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2vw;
    font-weight: 600;
    flex-shrink: 0;
}

.finding_content h3 {
    font-size: 1.1vw;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5vw;
}

.finding_content p {
    font-size: 0.9vw;
    color: #666;
    line-height: 1.6;
}

.finding_content strong {
    color: #16a34a;
}

/* ========================================
   Key Stats Section
   ======================================== */
.compare_stats_section {
    padding: 6vw 11.3vw;
    background: #f9f8f4;
}

.compare_stats_header {
    text-align: center;
    margin-bottom: 4vw;
}

.compare_stats_header h2 {
    font-size: 2.5vw;
    font-weight: 400;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
    color: #1a1a1a;
    margin-bottom: 0.8vw;
}

.compare_stats_header p {
    font-size: 1vw;
    color: #666;
}

.compare_stats_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2vw;
}

.compare_stat_card {
    background: #ffffff;
    border-radius: 1vw;
    padding: 2.5vw;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.compare_stat_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.stat_value {
    font-size: 3vw;
    font-weight: 600;
    color: #3b82f6;
    line-height: 1;
    margin-bottom: 0.5vw;
}

.stat_label {
    font-size: 1vw;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.8vw;
}

.stat_desc {
    font-size: 0.8vw;
    color: #666;
    line-height: 1.5;
}

/* ========================================
   Performance/Assembly Section
   ======================================== */
.compare_assembly_section {
    padding: 6vw 11.3vw;
    background: #0a0a0a;
}

.assembly_content {
    display: flex;
    gap: 4vw;
}

.assembly_left {
    flex: 1;
}

.assembly_left h2 {
    font-size: 2.2vw;
    font-weight: 400;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
    color: #ffffff;
    margin-bottom: 0.5vw;
}

.assembly_subtitle {
    font-size: 1vw;
    color: #60a5fa;
    margin-bottom: 1.5vw;
}

.assembly_left > p {
    font-size: 0.95vw;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2vw;
}

/* ========================================
   Performance Grid Section
   ======================================== */
.performance_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5vw;
    margin-top: 2vw;
}

.perf_card {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 0.8vw;
    padding: 1.8vw;
    text-align: center;
    transition: all 0.3s ease;
}

.perf_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
}

.perf_metric {
    font-size: 2.5vw;
    font-weight: 600;
    color: #4ade80;
    line-height: 1;
    margin-bottom: 0.4vw;
}

.perf_label {
    font-size: 0.9vw;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.3vw;
}

.perf_desc {
    font-size: 0.75vw;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

.assembly_right {
    flex: 1;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 1vw;
    padding: 2vw;
}

.assembly_right h3 {
    font-size: 1.3vw;
    font-weight: 400;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
    color: #4ade80;
    margin-bottom: 1.5vw;
}

.bud_capabilities {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.capability_row {
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
    padding-bottom: 1vw;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.capability_row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.capability_clearml {
    display: flex;
    gap: 0.5vw;
    font-size: 0.75vw;
}

.cap_label {
    color: rgba(255, 255, 255, 0.4);
}

.capability_clearml .cap_value {
    color: rgba(255, 255, 255, 0.6);
}

.capability_bud {
    display: flex;
    gap: 0.5vw;
    font-size: 0.85vw;
}

.cap_check {
    color: #4ade80;
    font-weight: bold;
}

.capability_bud .cap_value {
    color: #4ade80;
    font-weight: 500;
}

/* ========================================
   Feature Comparison Section
   ======================================== */
.compare_feature_section {
    padding: 6vw 11.3vw;
    background: #0a0a0a;
}

.compare_security_section {
    padding: 0 11.3vw 6vw 11.3vw;
    background: #0a0a0a;
}

.compare_feature_header {
    text-align: center;
    margin-bottom: 4vw;
}

.compare_feature_header.light h2 {
    color: #1a1a1a;
}

.compare_feature_header.light p {
    color: #666;
}

.compare_feature_header h2 {
    font-size: 2.5vw;
    font-weight: 400;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
    color: #ffffff;
    margin-bottom: 0.8vw;
}

.compare_feature_header p {
    font-size: 1vw;
    color: rgba(255, 255, 255, 0.6);
}

.compare_table_wrapper {
    overflow-x: auto;
}

.compare_table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1vw;
    overflow: hidden;
}

.compare_table thead tr {
    background: rgba(255, 255, 255, 0.05);
}

.compare_table th {
    padding: 1.5vw 2vw;
    text-align: left;
    font-size: 1vw;
    font-weight: 500;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.compare_table th.clearml_col,
.compare_table th.bud_col {
    text-align: center;
}

.compare_table th .compare_logo {
    height: 2vw;
    width: auto;
    margin-bottom: 0.5vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.compare_table th .compare_logo.bud_logo_invert {
    filter: invert(1);
}

.compare_table th span {
    display: block;
    font-size: 0.9vw;
}

.compare_table td {
    padding: 1.8vw 2vw;
    font-size: 0.9vw;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: top;
}

.compare_table tr:last-child td {
    border-bottom: none;
}

.compare_table .feature_name {
    font-weight: 500;
    color: #ffffff;
    width: 18%;
}

.compare_table .clearml_cell,
.compare_table .bud_cell {
    text-align: center;
    width: 41%;
}

.compare_table .clearml_cell p,
.compare_table .bud_cell p {
    margin: 0.5vw 0 0 0;
    font-size: 0.8vw;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
}

.feature_full {
    display: inline-block;
    padding: 0.3vw 0.8vw;
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border-radius: 0.3vw;
    font-size: 0.85vw;
    font-weight: 500;
}

.feature_partial {
    display: inline-block;
    padding: 0.3vw 0.8vw;
    background: rgba(234, 179, 8, 0.15);
    color: #fbbf24;
    border-radius: 0.3vw;
    font-size: 0.85vw;
    font-weight: 500;
}

.feature_limited {
    display: inline-block;
    padding: 0.3vw 0.8vw;
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border-radius: 0.3vw;
    font-size: 0.85vw;
    font-weight: 500;
}

.feature_none {
    display: inline-block;
    padding: 0.3vw 0.8vw;
    background: rgba(100, 100, 100, 0.15);
    color: #9ca3af;
    border-radius: 0.3vw;
    font-size: 0.85vw;
    font-weight: 500;
}

/* ========================================
   CTA Section
   ======================================== */
.compare_cta_section {
    padding: 6vw 11.3vw;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    text-align: center;
}

.compare_cta_content {
    max-width: 50vw;
    margin: 0 auto;
}

.compare_cta_content h2 {
    font-size: 2.5vw;
    font-weight: 400;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
    color: #ffffff;
    margin-bottom: 1vw;
}

.compare_cta_content > p {
    font-size: 1.05vw;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2.5vw;
}

.compare_cta_buttons {
    display: flex;
    gap: 1vw;
    justify-content: center;
    margin-bottom: 2vw;
}

.compare_cta_primary {
    display: inline-block;
    padding: 1vw 2.5vw;
    background: #22c55e;
    color: #ffffff;
    text-decoration: none;
    font-size: 1vw;
    font-weight: 500;
    border-radius: 0.5vw;
    transition: all 0.3s ease;
}

.compare_cta_primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.compare_cta_secondary {
    display: inline-block;
    padding: 1vw 2.5vw;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 1vw;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5vw;
    transition: all 0.3s ease;
}

.compare_cta_secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
}

.cta_note {
    font-size: 0.9vw;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* ========================================
   Mobile Responsiveness
   ======================================== */
@media (max-width: 768px) {
    .compare_hero {
        margin-top: 80px;
        padding: 0 4vw;
    }

    .compare_hero_box {
        min-height: auto;
        border-radius: 4vw;
        padding: 10vw 4vw;
    }

    .compare_hero_content {
        max-width: 100%;
    }

    .compare_hero_badge {
        font-size: 2.8vw;
        padding: 1.5vw 4vw;
    }

    .compare_hero_content h1 {
        font-size: 7vw;
    }

    .compare_hero_content p {
        font-size: 3.5vw;
        max-width: 100%;
    }

    .compare_hero_cta {
        flex-direction: column;
        gap: 3vw;
    }

    .compare_btn_primary,
    .compare_btn_secondary {
        padding: 3vw 6vw;
        font-size: 3.5vw;
    }

    /* Executive Section Mobile */
    .compare_executive_section {
        padding: 12vw 4vw;
    }

    .executive_content h2 {
        font-size: 6vw;
    }

    .executive_intro {
        font-size: 3.5vw;
        max-width: 100%;
    }

    .executive_findings {
        grid-template-columns: 1fr;
        gap: 4vw;
    }

    .finding_card {
        padding: 4vw;
    }

    .finding_number {
        width: 8vw;
        height: 8vw;
        font-size: 4vw;
    }

    .finding_content h3 {
        font-size: 4vw;
    }

    .finding_content p {
        font-size: 3.2vw;
    }

    /* Stats Section Mobile */
    .compare_stats_section {
        padding: 12vw 4vw;
    }

    .compare_stats_header h2 {
        font-size: 6vw;
    }

    .compare_stats_header p {
        font-size: 3.5vw;
    }

    .compare_stats_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4vw;
    }

    .compare_stat_card {
        padding: 5vw;
    }

    .stat_value {
        font-size: 8vw;
    }

    .stat_label {
        font-size: 3.2vw;
    }

    .stat_desc {
        font-size: 2.8vw;
    }

    /* Assembly Section Mobile */
    .compare_assembly_section {
        padding: 12vw 4vw;
    }

    .assembly_content {
        flex-direction: column;
        gap: 6vw;
    }

    .assembly_left h2 {
        font-size: 6vw;
    }

    .assembly_subtitle {
        font-size: 3.5vw;
    }

    .assembly_left > p {
        font-size: 3.5vw;
    }

    /* Performance Grid Mobile */
    .performance_grid {
        grid-template-columns: 1fr;
        gap: 4vw;
        margin-top: 6vw;
    }

    .perf_card {
        border-radius: 3vw;
        padding: 6vw;
    }

    .perf_metric {
        font-size: 10vw;
    }

    .perf_label {
        font-size: 3.5vw;
    }

    .perf_desc {
        font-size: 3vw;
    }

    .assembly_right {
        padding: 4vw;
    }

    .assembly_right h3 {
        font-size: 4.5vw;
    }

    .capability_clearml {
        font-size: 2.8vw;
    }

    .capability_bud {
        font-size: 3.2vw;
    }

    /* Feature Section Mobile */
    .compare_feature_section,
    .compare_security_section {
        padding: 12vw 4vw;
    }

    .compare_feature_header h2 {
        font-size: 6vw;
    }

    .compare_feature_header p {
        font-size: 3.5vw;
    }

    .compare_table {
        min-width: 200vw;
    }

    .compare_table th,
    .compare_table td {
        padding: 4vw;
        font-size: 3vw;
    }

    /* CTA Section Mobile */
    .compare_cta_section {
        padding: 12vw 4vw;
    }

    .compare_cta_content {
        max-width: 100%;
    }

    .compare_cta_content h2 {
        font-size: 6vw;
    }

    .compare_cta_content > p {
        font-size: 3.5vw;
    }

    .compare_cta_buttons {
        flex-direction: column;
        gap: 3vw;
    }

    .compare_cta_primary,
    .compare_cta_secondary {
        padding: 4vw 6vw;
        font-size: 3.8vw;
    }

    .cta_note {
        font-size: 3vw;
    }
}

@media (max-width: 500px) {
    .compare_stats_grid {
        grid-template-columns: 1fr;
    }
}
