/* Bud for OEMs Page Styles */
/* Version: 1.0 - Created: 2026-03-17 */

/* 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
   ======================================== */
.oem_hero {
    margin-top: 6.5vw;
    padding: 0 2.8vw;
}

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

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

.oem_blob.blob1 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.7) 0%, rgba(234, 88, 12, 0.4) 40%, transparent 70%);
    top: 10%;
    left: 15%;
    animation: oemBlob1 12s ease-in-out infinite;
}

.oem_blob.blob2 {
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.7) 0%, rgba(37, 99, 235, 0.4) 40%, transparent 70%);
    top: 5%;
    right: 20%;
    animation: oemBlob2 14s ease-in-out infinite;
}

.oem_blob.blob3 {
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.7) 0%, rgba(109, 40, 217, 0.4) 40%, transparent 70%);
    bottom: 10%;
    left: 30%;
    animation: oemBlob3 10s ease-in-out infinite;
}

@keyframes oemBlob1 {
    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 oemBlob2 {
    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 oemBlob3 {
    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 */
.oem_hero_content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 60vw;
}

.oem_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;
}

.oem_hero_content h1 {
    color: #ffffff;
    font-size: 3.2vw;
    font-weight: 400;
    margin: 0;
    line-height: 1.25;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
}

.oem_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;
}

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

.oem_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;
}

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

.oem_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;
}

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

/* ========================================
   Section Badge (reused across sections)
   ======================================== */
.oem_section_badge {
    display: inline-block;
    padding: 0.4vw 1.2vw;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 2vw;
    color: #f97316;
    font-size: 0.8vw;
    font-weight: 500;
    margin-bottom: 1vw;
}

.oem_section_badge.red {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.oem_section_badge.green {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.oem_section_badge.blue {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.oem_section_badge.purple {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: #8b5cf6;
}

.oem_section_badge.orange {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
    color: #f97316;
}

.oem_section_badge.teal {
    background: rgba(20, 184, 166, 0.1);
    border-color: rgba(20, 184, 166, 0.3);
    color: #14b8a6;
}

/* ========================================
   Stats Section
   ======================================== */
.oem_stats_section {
    padding: 6vw 11.3vw;
    background: #ffffff;
}

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

.oem_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;
}

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

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

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

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

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

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

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

/* ========================================
   AI in a Box Section
   ======================================== */
.oem_aibox_section {
    padding: 6vw 11.3vw;
    background: #f9f8f4;
}

.oem_aibox_content {
    display: flex;
    gap: 4vw;
    align-items: flex-start;
}

.oem_aibox_left {
    flex: 1;
}

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

.oem_aibox_left p {
    font-size: 1vw;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.2vw;
}

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

.oem_aibox_card {
    background: #ffffff;
    border-radius: 1vw;
    padding: 1.8vw;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.oem_aibox_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.4);
}

.aibox_icon {
    width: 2.5vw;
    height: 2.5vw;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 0.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1vw;
}

.aibox_icon svg {
    width: 1.3vw;
    height: 1.3vw;
    color: #3b82f6;
}

.oem_aibox_card h4 {
    font-size: 1vw;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5vw;
}

.oem_aibox_card p {
    font-size: 0.85vw;
    color: #666;
    line-height: 1.5;
}

/* ========================================
   Problem Section
   ======================================== */
.oem_problem_section {
    padding: 6vw 11.3vw;
    background: #ffffff;
}

.oem_problem_content {
    display: flex;
    gap: 4vw;
    align-items: flex-start;
}

.oem_problem_left {
    flex: 1;
}

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

.oem_problem_left p {
    font-size: 1vw;
    color: #666;
    line-height: 1.7;
}

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

.oem_risk_card {
    background: #f9f8f4;
    border-radius: 1vw;
    padding: 1.8vw;
    border: 1px solid rgba(239, 68, 68, 0.2);
    transition: all 0.3s ease;
}

.oem_risk_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.4);
}

.risk_icon {
    width: 2.5vw;
    height: 2.5vw;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 0.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1vw;
}

.risk_icon svg {
    width: 1.3vw;
    height: 1.3vw;
    color: #ef4444;
}

.oem_risk_card h4 {
    font-size: 1vw;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5vw;
}

.oem_risk_card p {
    font-size: 0.85vw;
    color: #666;
    line-height: 1.5;
}

/* ========================================
   Customer Demands Section
   ======================================== */
.oem_demands_section {
    padding: 6vw 11.3vw;
    background: #f9f8f4;
}

.oem_demands_header {
    text-align: center;
    margin-bottom: 3vw;
}

.oem_demands_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;
}

.oem_demands_header p {
    font-size: 1.1vw;
    color: #666;
    font-style: italic;
}

.oem_demands_intro {
    text-align: center;
    max-width: 55vw;
    margin: 0 auto 4vw auto;
}

.oem_demands_intro p {
    font-size: 1vw;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1vw;
}

.oem_demands_intro p:first-child {
    font-size: 1.2vw;
    font-weight: 500;
    color: #1a1a1a;
}

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

.oem_demands_grid .oem_demand_card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
}

.oem_demand_card {
    background: #ffffff;
    border-radius: 1vw;
    padding: 2.5vw;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 4px solid #8b5cf6;
}

.oem_demand_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.1);
    border-left-color: #7c3aed;
}

.demand_quote {
    font-size: 1.1vw;
    font-weight: 600;
    color: #1a1a1a;
    font-style: italic;
    margin-bottom: 1vw;
    line-height: 1.4;
}

.oem_demand_card > p {
    font-size: 0.9vw;
    color: #666;
    line-height: 1.7;
}

/* ========================================
   Opportunity Section
   ======================================== */
.oem_opportunity_section {
    padding: 6vw 11.3vw;
    background: #0a0a0a;
}

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

.oem_opportunity_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;
}

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

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

.oem_opp_card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1vw;
    padding: 2vw;
    transition: all 0.3s ease;
}

.oem_opp_card:hover {
    border-color: rgba(34, 197, 94, 0.4);
    background: rgba(34, 197, 94, 0.05);
    transform: translateY(-3px);
}

.opp_number {
    font-size: 2vw;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 1vw;
    line-height: 1;
}

.oem_opp_card h4 {
    font-size: 1.1vw;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.7vw;
}

.oem_opp_card p {
    font-size: 0.9vw;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* ========================================
   Solution Section
   ======================================== */
.oem_solution_section {
    padding: 6vw 11.3vw;
    background: #ffffff;
}

.oem_solution_header {
    text-align: center;
    margin-bottom: 3vw;
}

.oem_solution_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;
}

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

.oem_foundry_intro {
    text-align: center;
    max-width: 55vw;
    margin: 0 auto 4vw auto;
    padding: 2vw;
    background: #f9f8f4;
    border-radius: 1vw;
}

.oem_foundry_intro h3 {
    font-size: 1.3vw;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1vw;
}

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

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

.oem_component_card {
    background: #f9f8f4;
    border-radius: 1vw;
    padding: 2vw;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.oem_component_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.component_header {
    display: flex;
    align-items: center;
    gap: 1vw;
    margin-bottom: 1vw;
}

.component_icon {
    width: 2.5vw;
    height: 2.5vw;
    border-radius: 0.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.component_icon svg {
    width: 1.3vw;
    height: 1.3vw;
    color: #ffffff;
}

.component_icon.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.component_icon.green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.component_icon.red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.component_icon.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.component_icon.orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.component_icon.teal {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.component_header h4 {
    font-size: 1.1vw;
    font-weight: 600;
    color: #1a1a1a;
}

.oem_component_card > p {
    font-size: 0.9vw;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5vw;
}

.component_features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5vw;
}

.component_features li {
    font-size: 0.75vw;
    padding: 0.4vw 0.8vw;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 0.3vw;
    color: #555;
}

/* ========================================
   Business Impact Comparison Section
   ======================================== */
.oem_comparison_section {
    padding: 6vw 11.3vw;
    background: #0a0a0a;
}

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

.oem_comparison_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;
}

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

.oem_comparison_table_wrapper {
    overflow-x: auto;
    margin-bottom: 4vw;
}

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

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

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

.oem_comparison_table th.metric_col {
    width: 25%;
}

.oem_comparison_table th.bare_col,
.oem_comparison_table th.ai_col {
    width: 37.5%;
    text-align: center;
}

.col_label {
    display: block;
    font-size: 1.1vw;
    font-weight: 600;
    margin-bottom: 0.3vw;
}

.col_sublabel {
    display: block;
    font-size: 0.8vw;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.oem_comparison_table th.ai_col .col_label {
    color: #4ade80;
}

.oem_comparison_table td {
    padding: 1.8vw 2vw;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: top;
}

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

.metric_name {
    display: flex;
    flex-direction: column;
    gap: 0.3vw;
}

.metric_title {
    font-size: 1vw;
    font-weight: 500;
    color: #ffffff;
}

.metric_desc {
    font-size: 0.8vw;
    color: rgba(255, 255, 255, 0.5);
}

.bare_cell,
.ai_cell {
    text-align: center;
}

.bare_cell {
    background: rgba(239, 68, 68, 0.03);
}

.ai_cell {
    background: rgba(34, 197, 94, 0.05);
}

.value_old {
    display: block;
    font-size: 1.2vw;
    font-weight: 600;
    color: #f87171;
    margin-bottom: 0.3vw;
}

.value_new {
    display: block;
    font-size: 1.2vw;
    font-weight: 600;
    color: #4ade80;
    margin-bottom: 0.3vw;
}

.value_note {
    display: block;
    font-size: 0.8vw;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5vw;
}

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

.oem_comparison_summary {
    display: flex;
    justify-content: center;
    gap: 3vw;
}

.summary_card {
    display: flex;
    align-items: center;
    gap: 1.5vw;
    padding: 2vw 3vw;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 1vw;
}

.summary_icon {
    width: 3vw;
    height: 3vw;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.summary_icon svg {
    width: 1.5vw;
    height: 1.5vw;
    color: #ffffff;
}

.summary_content {
    display: flex;
    flex-direction: column;
}

.summary_value {
    font-size: 2vw;
    font-weight: 600;
    color: #4ade80;
    line-height: 1;
}

.summary_label {
    font-size: 0.85vw;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.3vw;
}

/* ========================================
   Ship and Evolve Section
   ======================================== */
.oem_evolve_section {
    padding: 6vw 11.3vw;
    background: #f9f8f4;
}

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

.oem_evolve_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;
}

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

.oem_evolve_grid {
    display: flex;
    align-items: stretch;
    gap: 2vw;
    justify-content: center;
}

.oem_evolve_card {
    flex: 1;
    max-width: 35%;
    background: #ffffff;
    border-radius: 1vw;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.oem_evolve_card.old {
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.oem_evolve_card.old .evolve_header {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.oem_evolve_card.new {
    border: 2px solid rgba(34, 197, 94, 0.3);
}

.oem_evolve_card.new .evolve_header {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.evolve_header {
    padding: 1.5vw 2vw;
    color: #ffffff;
}

.evolve_label {
    font-size: 0.75vw;
    opacity: 0.8;
    display: block;
    margin-bottom: 0.3vw;
}

.evolve_header h4 {
    font-size: 1.3vw;
    font-weight: 600;
    margin: 0;
}

.evolve_list {
    list-style: none;
    padding: 2vw;
    margin: 0;
}

.evolve_list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8vw;
    padding: 0.8vw 0;
    font-size: 0.9vw;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.evolve_icon {
    flex-shrink: 0;
    margin-top: 0.1vw;
}

.evolve_icon.negative svg {
    color: #ef4444;
}

.evolve_icon.positive svg {
    color: #22c55e;
}

.evolve_icon svg {
    width: 1vw;
    height: 1vw;
}

.oem_evolve_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14b8a6;
}

.oem_evolve_arrow svg {
    width: 2.5vw;
    height: 2.5vw;
}

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

.oem_security_content {
    display: flex;
    gap: 4vw;
    align-items: flex-start;
}

.oem_security_left {
    flex: 1;
}

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

.oem_security_left p {
    font-size: 1vw;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2vw;
}

.security_highlight {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 1vw;
    padding: 2vw;
    text-align: center;
}

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

.highlight_label {
    font-size: 0.9vw;
    color: rgba(255, 255, 255, 0.6);
}

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

.oem_security_feature {
    display: flex;
    align-items: flex-start;
    gap: 1.2vw;
    padding: 1.5vw;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.8vw;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.oem_security_feature:hover {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
}

.security_icon {
    width: 2.5vw;
    height: 2.5vw;
    background: rgba(239, 68, 68, 0.2);
    border-radius: 0.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.security_icon svg {
    width: 1.2vw;
    height: 1.2vw;
    color: #ef4444;
}

.security_text h4 {
    font-size: 1vw;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3vw;
}

.security_text p {
    font-size: 0.85vw;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* ========================================
   Timeline Section
   ======================================== */
.oem_timeline_section {
    padding: 6vw 11.3vw;
    background: #ffffff;
}

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

.oem_timeline_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;
}

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

.oem_timeline_grid {
    display: flex;
    align-items: stretch;
    gap: 1vw;
    margin-bottom: 4vw;
}

.oem_timeline_phase {
    flex: 1;
    background: #f9f8f4;
    border-radius: 1vw;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.oem_timeline_phase:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.oem_timeline_phase.featured {
    border: 2px solid #14b8a6;
}

.oem_timeline_phase.featured .phase_header {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.phase_header {
    background: #1a1a1a;
    padding: 1.5vw 2vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phase_number {
    font-size: 1.5vw;
    font-weight: 600;
    color: #ffffff;
}

.phase_duration {
    font-size: 0.85vw;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.3vw 0.8vw;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.3vw;
}

.phase_content {
    padding: 2vw;
}

.phase_content h4 {
    font-size: 1.3vw;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5vw;
}

.phase_tagline {
    font-size: 0.9vw;
    color: #666;
    margin-bottom: 1.5vw;
}

.phase_tasks {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5vw 0;
}

.phase_tasks li {
    display: flex;
    align-items: flex-start;
    gap: 0.8vw;
    padding: 0.6vw 0;
    font-size: 0.85vw;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.task_icon {
    flex-shrink: 0;
    color: #22c55e;
    margin-top: 0.1vw;
}

.task_icon svg {
    width: 0.9vw;
    height: 0.9vw;
}

.phase_outcome {
    background: #ffffff;
    padding: 1vw 1.2vw;
    border-radius: 0.5vw;
    font-size: 0.85vw;
}

.outcome_label {
    font-weight: 600;
    color: #14b8a6;
    margin-right: 0.5vw;
}

.phase_outcome span:last-child {
    color: #555;
}

.timeline_connector {
    display: flex;
    align-items: center;
    color: #14b8a6;
    flex-shrink: 0;
}

.timeline_connector svg {
    width: 1.5vw;
    height: 1.5vw;
}

.oem_timeline_guarantee {
    display: flex;
    align-items: flex-start;
    gap: 2vw;
    padding: 2.5vw;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    border-radius: 1vw;
}

.guarantee_icon {
    width: 4vw;
    height: 4vw;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee_icon svg {
    width: 2vw;
    height: 2vw;
    color: #ffffff;
}

.guarantee_content h4 {
    font-size: 1.2vw;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5vw;
}

.guarantee_content p {
    font-size: 0.95vw;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* ========================================
   Endgame Section
   ======================================== */
.oem_endgame_section {
    padding: 6vw 11.3vw;
    background: #f9f8f4;
}

.oem_endgame_header {
    text-align: center;
    margin-bottom: 3vw;
}

.oem_endgame_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;
}

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

.oem_endgame_content {
    max-width: 70vw;
    margin: 0 auto;
}

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

.oem_endgame_intro p {
    font-size: 1.1vw;
    color: #555;
    line-height: 1.7;
}

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

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

.oem_endgame_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
}

.endgame_icon {
    width: 4vw;
    height: 4vw;
    margin: 0 auto 1.5vw auto;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.endgame_icon svg {
    width: 1.8vw;
    height: 1.8vw;
    color: #f97316;
}

.oem_endgame_card h4 {
    font-size: 1.1vw;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.7vw;
}

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

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

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

.oem_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;
}

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

.oem_cta_buttons {
    display: flex;
    gap: 1vw;
    justify-content: center;
}

.oem_cta_section .oem_btn_primary {
    background: #f97316;
    color: #ffffff;
}

.oem_cta_section .oem_btn_primary:hover {
    background: #ea580c;
}

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

    .oem_hero_box {
        min-height: auto;
        border-radius: 4vw;
        padding: 8vw 4vw;
    }

    .oem_hero_content {
        max-width: 100%;
    }

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

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

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

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

    .oem_btn_primary,
    .oem_btn_secondary {
        padding: 3vw 6vw;
        font-size: 3.5vw;
    }

    /* Section Badge Mobile */
    .oem_section_badge {
        font-size: 2.8vw;
        padding: 1.2vw 3vw;
    }

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

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

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

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

    .oem_stat_card {
        padding: 6vw;
    }

    .oem_stat_card .stat_value {
        font-size: 10vw;
    }

    .oem_stat_card .stat_label {
        font-size: 4vw;
    }

    .oem_stat_card .stat_desc {
        font-size: 3.2vw;
    }

    /* AI in a Box Section Mobile */
    .oem_aibox_section {
        padding: 12vw 4vw;
    }

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

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

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

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

    .oem_aibox_card {
        padding: 5vw;
    }

    .aibox_icon {
        width: 10vw;
        height: 10vw;
    }

    .aibox_icon svg {
        width: 5vw;
        height: 5vw;
    }

    .oem_aibox_card h4 {
        font-size: 4vw;
    }

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

    /* Problem Section Mobile */
    .oem_problem_section {
        padding: 12vw 4vw;
    }

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

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

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

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

    .oem_risk_card {
        padding: 5vw;
    }

    .risk_icon {
        width: 10vw;
        height: 10vw;
    }

    .risk_icon svg {
        width: 5vw;
        height: 5vw;
    }

    .oem_risk_card h4 {
        font-size: 4vw;
    }

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

    /* Customer Demands Section Mobile */
    .oem_demands_section {
        padding: 12vw 4vw;
    }

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

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

    .oem_demands_intro {
        max-width: 100%;
    }

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

    .oem_demands_intro p:first-child {
        font-size: 4vw;
    }

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

    .oem_demands_grid .oem_demand_card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .oem_demand_card {
        padding: 5vw;
        border-left-width: 3px;
    }

    .demand_quote {
        font-size: 4vw;
    }

    .oem_demand_card > p {
        font-size: 3.2vw;
    }

    /* Opportunity Section Mobile */
    .oem_opportunity_section {
        padding: 12vw 4vw;
    }

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

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

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

    .oem_opp_card {
        padding: 5vw;
    }

    .opp_number {
        font-size: 8vw;
    }

    .oem_opp_card h4 {
        font-size: 4.5vw;
    }

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

    /* Solution Section Mobile */
    .oem_solution_section {
        padding: 12vw 4vw;
    }

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

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

    .oem_foundry_intro {
        max-width: 100%;
        padding: 5vw;
    }

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

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

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

    .oem_component_card {
        padding: 5vw;
    }

    .component_icon {
        width: 10vw;
        height: 10vw;
    }

    .component_icon svg {
        width: 5vw;
        height: 5vw;
    }

    .component_header h4 {
        font-size: 4.5vw;
    }

    .oem_component_card > p {
        font-size: 3.2vw;
    }

    .component_features {
        gap: 2vw;
    }

    .component_features li {
        font-size: 2.8vw;
        padding: 1.5vw 3vw;
    }

    /* Business Impact Comparison Section Mobile */
    .oem_comparison_section {
        padding: 12vw 4vw;
    }

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

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

    .oem_comparison_table {
        min-width: 200vw;
    }

    .oem_comparison_table th,
    .oem_comparison_table td {
        padding: 4vw;
    }

    .col_label {
        font-size: 4vw;
    }

    .col_sublabel {
        font-size: 3vw;
    }

    .metric_title {
        font-size: 3.5vw;
    }

    .metric_desc {
        font-size: 3vw;
    }

    .value_old,
    .value_new {
        font-size: 4.5vw;
    }

    .value_note {
        font-size: 3vw;
    }

    .value_uplift {
        font-size: 2.8vw;
        padding: 1vw 2vw;
    }

    .oem_comparison_summary {
        flex-direction: column;
        gap: 4vw;
    }

    .summary_card {
        padding: 5vw;
        gap: 4vw;
    }

    .summary_icon {
        width: 12vw;
        height: 12vw;
    }

    .summary_icon svg {
        width: 6vw;
        height: 6vw;
    }

    .summary_value {
        font-size: 8vw;
    }

    .summary_label {
        font-size: 3.2vw;
    }

    /* Evolve Section Mobile */
    .oem_evolve_section {
        padding: 12vw 4vw;
    }

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

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

    .oem_evolve_grid {
        flex-direction: column;
        gap: 4vw;
    }

    .oem_evolve_card {
        max-width: 100%;
    }

    .oem_evolve_arrow {
        transform: rotate(90deg);
    }

    .evolve_header {
        padding: 4vw 5vw;
    }

    .evolve_label {
        font-size: 3vw;
    }

    .evolve_header h4 {
        font-size: 5vw;
    }

    .evolve_list {
        padding: 5vw;
    }

    .evolve_list li {
        font-size: 3.2vw;
        gap: 3vw;
    }

    .evolve_icon svg {
        width: 4vw;
        height: 4vw;
    }

    /* Security Section Mobile */
    .oem_security_section {
        padding: 12vw 4vw;
    }

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

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

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

    .security_highlight {
        padding: 5vw;
    }

    .highlight_value {
        font-size: 10vw;
    }

    .highlight_label {
        font-size: 3.5vw;
    }

    .oem_security_feature {
        padding: 4vw;
        gap: 4vw;
    }

    .security_icon {
        width: 10vw;
        height: 10vw;
    }

    .security_icon svg {
        width: 5vw;
        height: 5vw;
    }

    .security_text h4 {
        font-size: 4vw;
    }

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

    /* Timeline Section Mobile */
    .oem_timeline_section {
        padding: 12vw 4vw;
    }

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

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

    .oem_timeline_grid {
        flex-direction: column;
        gap: 4vw;
    }

    .timeline_connector {
        display: none;
    }

    .oem_timeline_phase {
        border-radius: 3vw;
    }

    .phase_header {
        padding: 4vw 5vw;
    }

    .phase_number {
        font-size: 6vw;
    }

    .phase_duration {
        font-size: 3vw;
        padding: 1vw 2.5vw;
    }

    .phase_content {
        padding: 5vw;
    }

    .phase_content h4 {
        font-size: 5vw;
    }

    .phase_tagline {
        font-size: 3.5vw;
    }

    .phase_tasks li {
        font-size: 3.2vw;
        padding: 2vw 0;
        gap: 3vw;
    }

    .task_icon svg {
        width: 3.5vw;
        height: 3.5vw;
    }

    .phase_outcome {
        padding: 4vw;
        font-size: 3.2vw;
    }

    .oem_timeline_guarantee {
        flex-direction: column;
        text-align: center;
        padding: 6vw;
        gap: 4vw;
    }

    .guarantee_icon {
        width: 16vw;
        height: 16vw;
        margin: 0 auto;
    }

    .guarantee_icon svg {
        width: 8vw;
        height: 8vw;
    }

    .guarantee_content h4 {
        font-size: 5vw;
    }

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

    /* Endgame Section Mobile */
    .oem_endgame_section {
        padding: 12vw 4vw;
    }

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

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

    .oem_endgame_content {
        max-width: 100%;
    }

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

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

    .oem_endgame_card {
        padding: 5vw;
    }

    .endgame_icon {
        width: 14vw;
        height: 14vw;
    }

    .endgame_icon svg {
        width: 6vw;
        height: 6vw;
    }

    .oem_endgame_card h4 {
        font-size: 4.5vw;
    }

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

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

    .oem_cta_content {
        max-width: 100%;
    }

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

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

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

@media (max-width: 480px) {
    .oem_hero {
        margin-top: 75px;
    }

    .oem_hero_content h1 {
        font-size: 8vw;
    }

    .oem_problem_right {
        grid-template-columns: 1fr;
    }

    .oem_opportunity_grid {
        grid-template-columns: 1fr;
    }

    .oem_components_grid {
        grid-template-columns: 1fr;
    }

    .oem_endgame_grid {
        grid-template-columns: 1fr;
    }
}
