:root {
    --brand-dark: #153154;
    --brand-red: #e8312b;
    --brand-gradient: linear-gradient(135deg, #2e6193, #0e2746);
    --bg-light: #f4f7fa;
    --card-bg: rgba(255, 255, 255, 0.95);
}

/* ---------------------introduction section--------------------------      */
.span-color {
    color: #e8312b;
}

.red {
    color: var(--brand-red);
}

/* Content Wrapper */
.j-new-mig-benchmark-section-1-wrapper {
    padding: 50px 0 30px 0;
    position: relative;
    z-index: 10;
    width: 95%;
    max-width: 1700px;
    margin: 0 auto;
    text-align: center;
}

/* Badge Styling */
.j-new-mig-benchmark-section-1-badge {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    margin-bottom: 20px;
    margin-top: 20px;
    border-radius: 9999px;
    background-color: #eff6ff;
    border: 1px solid #dbeafe;
    color: #0e2746;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Heading Styling */
.j-new-mig-benchmark-section-1-heading {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    margin-top: 0;
}

@media (min-width: 768px) {
    .j-new-mig-benchmark-section-1-heading {
        font-size: 30px;
        /* 5xl */
    }
}

@media (min-width: 1024px) {
    .j-new-mig-benchmark-section-1-heading {
        font-size: 30px;
        /* 6xl */
    }
}

/* Gradient Text */
.j-new-mig-benchmark-section-1-gradient-text {
    color: #e8312b;

}

/* Paragraph Content */
.j-new-mig-benchmark-section-1-content {
    font-size: 16px;
    font-weight: 500;
}

.j-new-mig-benchmark-section-1-highlight-green {
    color: #e8312b;
    font-weight: 600;
    background-color: #fdecec;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
}

.j-new-link {
    color: #e8312b;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.j-new-link:hover {
    color: #990500;
}

.j-new-mig-benchmark-section-1-link-color {
    color: #0f172a;
    font-weight: 500;
}

/* Features Grid */
.j-new-mig-benchmark-section-1-features {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .j-new-mig-benchmark-section-1-features {
        gap: 1.5rem;
    }
}

/* Feature Item */
.j-new-mig-benchmark-section-1-feature-item {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: border-color 0.2s;
}

.j-new-mig-benchmark-section-1-feature-item:hover {
    border-color: #bfdbfe;
    /* Blue 200 */
}

.j-new-mig-benchmark-section-1-feature-text {
    color: #334155;
    font-weight: 500;
    font-size: 0.875rem;
}

/* Icons SVG styling */
.j-new-mig-benchmark-section-1-icon {
    cursor: pointer;
    display: block;
    width: 18px;
    height: 18px;
    color: #e8312b;
}


/* -------------hall of flame section--------------------------------- */

.j-new-mig-hall-of-flame-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.j-new-mig-hall-of-flame-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.j-new-mig-hall-of-flame-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.j-new-mig-hall-of-flame-main-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 64px;
    margin: 0;
    line-height: 1;
    color: var(--brand-dark);
}

.j-new-mig-hall-of-flame-main-title span {
    color: var(--brand-red);
    position: relative;
}

.j-new-mig-hall-of-flame-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    perspective: 1000px;
}

.j-new-mig-hall-of-flame-card {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 50px 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.j-new-mig-hall-of-flame-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.j-new-mig-hall-of-flame-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--brand-red);
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}


.j-new-mig-hall-of-flame-card:hover .j-new-mig-hall-of-flame-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--brand-red);
    color: white;
}

.j-new-mig-hall-of-flame-category {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    color: #2e6193;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 14px;
}

.j-new-mig-hall-of-flame-model {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 30px 0;
    letter-spacing: -1px;
    line-height: 1.1;
}


.j-new-mig-hall-of-flame-stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 15px;
}

.j-new-mig-hall-of-flame-progress-bg {
    height: 8px;
    background: #edf2f7;
    border-radius: 10px;
    margin-bottom: 25px;
    position: relative;
}

.j-new-mig-hall-of-flame-progress-fill {
    height: 100%;
    background: var(--brand-red);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.1, 0, 0.2, 1);
}

.j-new-mig-hall-of-flame-description {
    background: rgba(46, 97, 147, 0.05);
    padding: 20px;
    border-radius: 15px;
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
    border-left: 4px solid var(--brand-red);
}

.j-new-mig-hall-of-flame-btn {
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 15px;
    background: var(--brand-dark);
    color: white;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    margin-top: auto;
}

.j-new-mig-hall-of-flame-btn:hover {
    background: var(--brand-red);
    box-shadow: 0 10px 20px rgba(232, 49, 43, 0.3);
    transform: scale(1.02);
}

.j-new-mig-hall-of-flame-score-counter {
    font-size: 20px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: var(--brand-dark);
}

@media (max-width: 1024px) {
    .j-new-mig-hall-of-flame-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .j-new-mig-hall-of-flame-featured {
        transform: none;
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .j-new-mig-hall-of-flame-container {
        grid-template-columns: 1fr;
    }

    .j-new-mig-hall-of-flame-featured {
        grid-column: span 1;
    }

    .j-new-mig-hall-of-flame-main-title {
        font-size: 40px;
    }
}

.j-new-mig-clr-bg {
    background: var(--bg-light);
}

.j-new-mig-hall-of-flame-card-head {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.j-new-mig-hall-of-flame-card-head div {
    text-align: start !important;
}

/* -----------benchmark 7 points--------------------------- */
.j-new-mig-intel-section {
    padding: 80px 0;
    background-color: #ffffff;
    width: 100%;
}

.j-new-mig-intel-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Header Section --- */

.j-new-mig-intel-header-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f3f4f6;
    flex-wrap: wrap;
    gap: 20px;
}

.j-new-mig-intel-header-content {
    max-width: 650px;
}

.j-new-mig-intel-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    background-color: #eff6ff;
    color: #1d4ed8;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.j-new-mig-intel-badge-dot {
    width: 8px;
    height: 8px;
    background-color: #2e6193;
    border-radius: 50%;
}

.j-new-mig-intel-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    color: #111827;
}

.j-new-mig-intel-highlight {
    color: #2e6193;
}

.j-new-mig-intel-subtitle {
    margin-top: 16px;
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
}

.j-new-mig-intel-cta-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: #111827;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.j-new-mig-intel-cta-button:hover {
    background-color: #374151;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.j-new-mig-intel-icon-arrow {
    width: 16px;
    height: 16px;
    margin-left: 8px;
}

/* --- Card Stack --- */

.j-new-mig-intel-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.j-new-mig-intel-card {
    position: relative;
    background-color: #111827;
    color: #ffffff;
    border-radius: 24px;
    padding: 32px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.j-new-mig-intel-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

/* Glow Effect Background */
.j-new-mig-intel-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.j-new-mig-intel-card:hover .j-new-mig-intel-glow {
    opacity: 0.35;
}

/* Card Content Layout */
.j-new-mig-intel-card-inner {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-direction: column;
    /* Default to stack on mobile */
}

@media (min-width: 768px) {
    .j-new-mig-intel-card-inner {
        flex-direction: row;
        padding: 10px;
    }

    .j-new-mig-intel-header-container {
        flex-wrap: nowrap;
    }

    .j-new-mig-intel-text-box {
        text-align: left !important;
    }
}

.j-new-mig-intel-number-box {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.j-new-mig-intel-number {
    font-size: 24px;
    font-weight: 700;
    color: #e8312b;
}

.j-new-mig-intel-text-box {
    flex: 1;
    text-align: center;
    /* Center on mobile */
}

.j-new-mig-intel-card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #ffffff;
}

.j-new-mig-intel-card-desc {
    font-size: 16px;
    color: #9ca3af;
    margin: 0;
    line-height: 1.5;

}

.j-new-mig-intel-tag-box {
    flex-shrink: 0;
}

.j-new-mig-intel-tag {
    display: inline-block;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* --------------------CTA------------------------------- */
.j-new-mig-cta-wrapper {
    background: linear-gradient(145deg, #0f172a, #1e293b);
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    max-width: 1000px;
    width: 100%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    margin: 50px auto;

}

/* Optional: Subtle background glow effect */
.j-new-mig-cta-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% -20%, rgba(56, 189, 248, 0.15), transparent 60%);
    pointer-events: none;
}

/* Headline */
.j-new-mig-cta-headline {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 16px 0;
    line-height: 1.2;
    letter-spacing: -0.025em;
    background: linear-gradient(to right, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

/* Sub-text */
.j-new-mig-cta-subtext {
    font-size: 1.125rem;
    color: #94a3b8;
    margin: 0 auto 40px auto;
    max-width: 600px;
    line-height: 1.6;
    position: relative;
}

/* Button Container */
.j-new-mig-cta-action-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
}

/* The Button */
.j-new-mig-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: e8312b;
    /* Fallback */
    background: linear-gradient(135deg, #e8312b 50%, #000000 100%);
    ;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

/* Button Hover Effects */
.j-new-mig-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(235, 37, 37, 0.4), 0 4px 6px -2px rgba(235, 37, 37, 0.2);
    background: black;
}

/* Button Active/Click Effect */
.j-new-mig-cta-button:active {
    transform: translateY(0);
}

/* Trust Badge */
.j-new-mig-cta-trust-badge {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Checkmark icon purely via CSS (optional detail) */
.j-new-mig-cta-trust-badge::before {
    content: '✓';
    color: #10b981;
    /* Green */
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .j-new-mig-cta-wrapper {
        padding: 40px 20px;
    }

    .j-new-mig-cta-headline {
        font-size: 1.8rem;
    }

    .j-new-mig-cta-button {
        width: 100%;
        box-sizing: border-box;
        font-size: 1rem;
        padding: 16px 24px;
    }
}

/* ------------------benchmark table--------------------------- */

/* --- Radio Inputs for CSS-Only Filtering (Hidden) --- */
input[type="radio"] {
    display: none;
}


/* --- Header Section --- */
.j-new-mig-benchmark-table-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.j-new-mig-benchmark-table-title {
    text-align: start;
}

.j-new-mig-benchmark-table-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
}

.j-new-mig-benchmark-table-title p {
    color: #6b7280;
    margin-top: 5px;
}


/* --- Filter Buttons (Labels) --- */
.j-new-mig-benchmark-table-filters {
    background: #fff;
    padding: 5px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    display: flex;
    gap: 5px;
    margin-top: 15px;
}

.j-new-mig-benchmark-table-filter-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: #4b5563;
    transition: all 0.2s;
}

.j-new-mig-benchmark-table-filter-btn:hover {
    background-color: #f9fafb;
}

/* --- CSS Logic for Active Filter Button --- */
#filter-all:checked~.j-new-mig-benchmark-table-container .j-new-mig-benchmark-table-filters label[for="filter-all"],
#filter-intel:checked~.j-new-mig-benchmark-table-container .j-new-mig-benchmark-table-filters label[for="filter-intel"],
#filter-amd:checked~.j-new-mig-benchmark-table-container .j-new-mig-benchmark-table-filters label[for="filter-amd"] {
    background: linear-gradient(135deg, #e8312b 25%, #000000 100%);
    color: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* --- Table Styling --- */
.j-new-mig-benchmark-table-wrapper {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e5e7eb;
    max-width: 1300px;
    margin: 0 auto;
}

/* Header Row (Desktop) */
.j-new-mig-benchmark-table-head {
    display: none;
    /* Mobile first hidden */
    background-color: #f9fafb;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.05em;
    background: linear-gradient(145deg, #0f172a, #1e293b);
}

/* Data Rows */
.j-new-mig-benchmark-table-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid #f3f4f6;
    align-items: center;
    transition: background-color 0.2s;
}

.j-new-mig-benchmark-table-row:last-child {
    border-bottom: none;
}

.j-new-mig-benchmark-table-cell {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.j-new-mig-benchmark-table-mobile-label {
    font-size: 13px;
    font-weight: 500;
    color: #9ca3af;
    text-transform: uppercase;
}

.cpu-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cpu-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.cpu-icon img {
    width: 100%;
    border-radius: 50%;
}

.intel-style .cpu-icon {
    background-color: #dbeafe;
    color: #2e6193;
}

.amd-style .cpu-icon {
    background-color: #fee2e2;
    color: #dc2626;
}

.intel-style:hover {
    background-color: #eff6ff;
}

.amd-style:hover {
    background-color: #fef2f2;
}

.cpu-name h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
}

.cpu-badge {
    font-size: 12px;
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 4px;
    color: #6b7280;
}

.data-text {
    font-weight: 600;
    color: #374151;
}

.clock-text {
    font-family: monospace;
    color: #000000;
    background: #e8ffe8;
    padding: 3px 8px;
    font-weight: 600;
    border-radius: 6px;
}

.action-btn {
    width: 100%;
    padding: 10px;
    background-color: white;
    border: 1px solid #d1d5db;
    color: #374151;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.action-btn:hover {
    border-color: #9ca3af;
    background-color: #f9fafb;
}

.j-new-mig-benchmark-table-row .action-btn {
    background: linear-gradient(135deg, #2e6193, #0e2746);
    color: white;
    border: none;
    text-decoration: none;
}

.j-new-mig-benchmark-table-row .action-btn:hover {
    background-color: #1d4ed8;
}

#filter-intel:checked~.j-new-mig-benchmark-table-container .j-new-mig-benchmark-table-row[data-brand="amd"] {
    display: none;
}

#filter-amd:checked~.j-new-mig-benchmark-table-container .j-new-mig-benchmark-table-row[data-brand="intel"] {
    display: none;
}

@media (min-width: 768px) {
    .j-new-mig-benchmark-table-header {
        flex-direction: row;
    }

    .j-new-mig-benchmark-table-filters {
        margin-top: 0;
    }

    .j-new-mig-benchmark-table-head {
        display: grid;
        grid-template-columns: 4fr 2fr 2fr 2fr 2fr;
        gap: 20px;
    }

    .j-new-mig-benchmark-table-row {
        grid-template-columns: 4fr 2fr 2fr 2fr 2fr;
        gap: 20px;
        padding: 15px;
    }

    .j-new-mig-benchmark-table-mobile-label {
        display: none;
    }

    .j-new-mig-benchmark-table-cell {
        justify-content: center;
    }

    .j-new-mig-benchmark-table-cell:first-child {
        justify-content: flex-start;

    }

    .j-new-mig-benchmark-table-cell:last-child {
        justify-content: flex-end;

    }

    .action-btn {
        width: auto;
        padding: 8px 16px;
    }
}

/* ---------------faq-------------- */
/* --- Main Container --- */
.j-new-mig-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px 10px;
}

/* --- Header Section --- */
.j-new-mig-header {
    text-align: center;
    margin-bottom: 50px;
}

.j-new-mig-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: black;

}

.j-new-mig-header p {
    color: #64748b;
    font-size: 18px;
}

/* ================= MODERN FAQ STYLES ================= */

.j-new-mig-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* Gap between cards */
}

.j-new-mig-faq-item {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* Hover Effect for the whole card */
.j-new-mig-faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

/* Active/Open State Styling */
.j-new-mig-faq-item[open] {
    border-color: #0a2340;
    /* Blue border when open */
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.15);
    /* Soft blue glow */
    background-color: #fff;
}

/* The Clickable Header */
.j-new-mig-faq-summary {
    list-style: none;
    /* Hide default arrow */
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Remove default arrow in Chrome/Safari */
.j-new-mig-faq-summary::-webkit-details-marker {
    display: none;
}

.j-new-mig-faq-question-text {
    font-weight: 600;
    font-size: 17px;
    color: #1e293b;
    transition: color 0.3s;
}

.j-new-mig-faq-item[open] .j-new-mig-faq-question-text {
    color: #e8312b;
    /* Blue text when open */
}

/* Modern Icon Wrapper (Circle) */
.j-new-mig-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: 15px;
}

/* Icon Rotation Logic */
.j-new-mig-faq-item[open] .j-new-mig-icon-wrapper {
    background-color: #0a2340;
    color: white;
    transform: rotate(45deg);
    /* Plus becomes 'X' */
}

/* The Answer Content */
.j-new-mig-faq-answer {
    padding: 0 24px 24px 24px;
    color: #475569;
    line-height: 1.7;
    font-size: 16px;
    opacity: 0;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -----------------CPU------------------------- */

:root {
    --j-cpu-intel-blue: #e8312b;
    --j-cpu-intel-light: #2e6193;
    --j-cpu-intel-dark: #0e2746;
    --j-cpu-bg-white: #ffffff;
    --j-cpu-bg-gray: #f8fafc;
    --j-cpu-text-dark: #111827;
    --j-cpu-text-gray: #64748b;
    --j-cpu-border: #e2e8f0;
}

.j-new-mig-benchmarks-cpu-wrapper {
    max-width: 1700px;
    margin: 0 auto;
    padding: 50px 0;
}

/* Card Container */
.j-new-mig-benchmarks-cpu-card {
    background-color: var(--j-cpu-bg-white);
    border-radius: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--j-cpu-border);
    display: flex;
    flex-direction: row;
    overflow: hidden;
    min-height: 600px;
}

/* LEFT COLUMN: Image Area */
.j-new-mig-benchmarks-cpu-left-col {
    width: 35%;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
    overflow: hidden;
}
.j-new-mig-benchmarks-cpu-left-col.amd {
    background: linear-gradient(135deg, #fcf8f8 0%, #ffefef 100%) !important;
}

/* Decorative Grid Background */
.j-new-mig-benchmarks-cpu-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: radial-gradient(var(--j-cpu-intel-blue) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Glow Effect */
.j-new-mig-benchmarks-cpu-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: var(--j-cpu-intel-light);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    transition: opacity 0.5s ease;
}

.j-new-mig-benchmarks-cpu-left-col:hover .j-new-mig-benchmarks-cpu-glow {
    opacity: 0.25;
}

/* Product Image */
.j-new-mig-benchmarks-cpu-image-container {
    position: relative;
    z-index: 10;
    transition: transform 0.5s ease;
    width: 100%;
    display: flex;
    justify-content: center;
}


.j-new-mig-benchmarks-cpu-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

/* Flagship Badge */
.j-new-mig-benchmarks-cpu-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--j-cpu-intel-blue);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;

}

.j-new-mig-benchmarks-cpu-badge.intel {
    box-shadow: 0 4px 10px rgba(0, 104, 181, 0.3);
    background-color: #cbe5ff;
    color: rgb(0, 0, 0);
}

/* RIGHT COLUMN: Details Area */
.j-new-mig-benchmarks-cpu-right-col {
    width: 65%;
    padding: 20px 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Typography */
.j-new-mig-benchmarks-cpu-eyebrow {
    color: var(--j-cpu-intel-blue);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.j-new-mig-benchmarks-cpu-title {
    font-size: 35px;
    font-weight: 700;
    color: var(--j-cpu-text-dark);
    margin: 0 0 10px 0;
    line-height: 1.1;
}


/* Stats Grid */
.j-new-mig-benchmarks-cpu-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.j-new-mig-benchmarks-cpu-stat-card {
    background: rgba(248, 250, 252, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 5px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.j-new-mig-benchmarks-cpu-stat-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    background: #fff;
}

.j-new-mig-benchmarks-cpu-stat-label {
    font-size: 11px;
    color: var(--brand-red);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

.j-new-mig-benchmarks-cpu-stat-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--j-cpu-text-dark);
    margin: 0;
}

.j-new-mig-benchmarks-cpu-unit {
    font-size: 14px;
    color: var(--j-cpu-intel-blue);
}

/* Benchmark Section */
.j-new-mig-benchmarks-cpu-bench-section {
    background-color: var(--j-cpu-bg-gray);
    border-radius: 16px;
    padding: 10px 15px;
    margin-bottom: 30px;
    border: 1px solid var(--j-cpu-border);
}

.j-new-mig-benchmarks-cpu-bench-header {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--j-cpu-text-dark);
    font-size: 18px;
    margin-bottom: 20px;
}

.j-new-mig-benchmarks-cpu-icon-box {
    background: white;
    padding: 6px;
    border-radius: 8px;
    margin-right: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--j-cpu-intel-blue);
}

.j-new-mig-benchmarks-cpu-bar-row {
    margin-bottom: 20px;
}

.j-new-mig-benchmarks-cpu-bar-row:last-child {
    margin-bottom: 0;
}

.j-new-mig-benchmarks-cpu-bar-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 8px;
}

.j-new-mig-benchmarks-cpu-bar-label {
    color: var(--j-cpu-text-gray);
    font-weight: 500;
    font-size: 15px;
}

.j-new-mig-benchmarks-cpu-bar-score {
    font-size: 16px;
    font-weight: 700;
    color: var(--j-cpu-intel-dark);
}

.j-new-mig-benchmarks-cpu-progress-bg {
    width: 100%;
    height: 6px;
    background-color: #e2e8f0;
    border-radius: 99px;
    overflow: hidden;
}

.j-new-mig-benchmarks-cpu-progress-fill {
    height: 100%;
    border-radius: 99px;
    width: 0;
    /* Animated later */
    animation: j-new-mig-benchmarks-cpu-grow 1.5s ease-out forwards;
}

.j-new-mig-benchmarks-cpu-fill-blue {
    background-color: var(--j-cpu-intel-blue);
}


.j-new-mig-benchmarks-cpu-fill-gradient {
    background-color: var(--j-cpu-intel-blue);
}

@keyframes j-new-mig-benchmarks-cpu-grow {
    from {
        width: 0;
    }
}

/* Specs Grid */
.j-new-mig-benchmarks-cpu-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.j-new-mig-benchmarks-cpu-spec-item {
    display: flex;
    align-items: flex-start;
}

.j-new-mig-benchmarks-cpu-spec-icon {
    background-color: #eff6ff;
    padding: 8px;
    border-radius: 8px;
    color: var(--j-cpu-intel-blue);
    margin-right: 12px;
    border: 1px solid #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
}

.j-new-mig-benchmarks-cpu-spec-icon.green {
    background-color: #f0fdf4;
    color: #16a34a;
    border-color: #dcfce7;
}

.j-new-mig-benchmarks-cpu-spec-title {
    font-weight: 700;
    color: var(--j-cpu-text-dark);
    margin: 0;
    font-size: 15px;
}

.j-new-mig-benchmarks-cpu-spec-text {
    color: black;
    font-size: 16px;
    margin: 2px 0;
}

.j-new-mig-benchmarks-cpu-spec-highlight {
    font-weight: 600;
    font-size: 13px;
}

.j-new-mig-benchmarks-cpu-text-blue {
    color: var(--j-cpu-intel-blue);
}

.j-new-mig-benchmarks-cpu-text-green {
    color: #16a34a;
}

/* Memory Section */
.j-new-mig-benchmarks-cpu-memory-row {
    grid-column: span 2;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--j-cpu-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.j-new-mig-benchmarks-cpu-mem-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background-color: #f1f5f9;
    color: var(--j-cpu-text-gray);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .j-new-mig-benchmarks-cpu-card {
        flex-direction: column;
    }

    .j-new-mig-benchmarks-cpu-left-col {
        width: 100%;
        padding: 30px;
        min-height: 300px;
    }

    .j-new-mig-benchmarks-cpu-right-col {
        width: 100%;
        padding: 30px;
    }

    .j-new-mig-benchmarks-cpu-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .j-new-mig-benchmarks-cpu-title {
        font-size: 32px;
    }

    .j-new-mig-benchmarks-cpu-specs-grid {
        grid-template-columns: 1fr;
    }

    .j-new-mig-benchmarks-cpu-memory-row {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* -----------------cpu page------------------------- */
:root {
    --brand-dark: #153154;
    --brand-red: #e8312b;
    --brand-gradient: linear-gradient(135deg, #2e6193, #0e2746);
    --card-bg: #ffffff;
    --text: #0b1220;
    --muted: rgba(11, 18, 32, .72);
    --shadow: 0 14px 40px rgba(14, 39, 70, .18);
    --shadow-soft: 0 10px 24px rgba(14, 39, 70, .14);
    --radius: 18px;
}

.j-new-mig-cpu-section {
    padding: clamp(28px, 4vw, 56px) 16px;
}

.j-new-mig-cpu-section__wrap {
    max-width: 1700px;
    margin: 0 auto;
}

.j-new-mig-cpu-section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.j-new-mig-cpu-section__title {
    margin: 0;
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--brand-dark);
}

.j-new-mig-cpu-section__title i {
    font-style: normal;
    /* use <i> as accent label, not italic */
    display: inline-block;
    padding: .22em .55em;
    margin-left: .35em;
    border-radius: 999px;
    background: rgba(232, 49, 43, .10);
    color: var(--brand-red);
    border: 1px solid rgba(232, 49, 43, .22);
}

.j-new-mig-cpu-section__subtitle {
    margin: 10px 0 0;
    max-width: 68ch;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.55;
}

.j-new-mig-cpu-section__pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(21, 49, 84, .06);
    border: 1px solid rgba(21, 49, 84, .14);
    color: rgba(21, 49, 84, .92);
    font-size: 13px;
    white-space: nowrap;
    user-select: none;
}

.j-new-mig-cpu-section__pill i {
    font-style: normal;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--brand-gradient);
    box-shadow: 0 0 0 3px rgba(46, 97, 147, .12);
    flex: 0 0 auto;
}

.j-new-mig-cpu-section__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* =========================
       Card
       Class name required: j-new-mig-cpu-section-card-
       ========================= */
.j-new-mig-cpu-section-card- {
    grid-column: span 6;
    position: relative;
    border-radius: var(--radius);
    background: var(--card-bg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(14, 39, 70, .10);
    overflow: hidden;
    transform: translateZ(0);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.j-new-mig-cpu-section-card-:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(46, 97, 147, .26);
}

/* top accent */
.j-new-mig-cpu-section-card-::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 7px;
    background: var(--brand-gradient);
}

/* subtle corner glow */
.j-new-mig-cpu-section-card-::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -120px;
    top: -120px;
    background: radial-gradient(circle at 30% 30%, rgba(232, 49, 43, .18), transparent 60%);
    pointer-events: none;
}

.j-new-mig-cpu-section-card-__inner {
    padding: 30px;
}

.j-new-mig-cpu-section-card-__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.j-new-mig-cpu-section-card-__badge {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}


.j-new-mig-cpu-section-card-__badge i {
    font-style: normal;
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--brand-gradient);
    box-shadow: 0 10px 20px rgba(14, 39, 70, .18);
    flex: 0 0 auto;
}

.j-new-mig-cpu-section-card-__title {
    font-size: 22px;
    color: var(--brand-red);
    font-weight: 600;
    margin: 0;
}

.j-new-mig-cpu-section-card-__desc {
    margin: 10px 0 0;
    font-size: 16px;
}

.j-new-mig-cpu-section-card-__rule {
    margin-top: 14px;
    padding: 12px 12px;
    border-radius: 14px;
    background: rgb(0 0 0 / 5%);
    border: 1px solid rgba(21, 49, 84, .12);
}

.j-new-mig-cpu-section-card-__rule-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 18px;

}

.j-new-mig-cpu-section-card-__rule-title i {
    font-style: normal;
    width: 22px;
    height: 22px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: rgba(232, 49, 43, .12);
    border: 1px solid rgba(232, 49, 43, .24);
    color: var(--brand-red);
}

.j-new-mig-cpu-section-card-__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 20px;
}

.j-new-mig-cpu-section-card-__list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 16px;
    font-weight: 500;
}

.j-new-mig-cpu-section-card-__list li i {
    border-radius: 999px;
    flex: 0 0 auto;
    border: 1px solid rgba(46, 97, 147, .22);
    position: relative;
    font-size: 20px;
    color: var(--brand-red);
}



/* emphasized callouts (using <i>) */
.j-new-mig-cpu-section-card-__desc i,
.j-new-mig-cpu-section-card-__list li b i {
    font-style: normal;
    color: var(--brand-red);
    background: rgba(232, 49, 43, .10);
    border: 1px solid rgba(232, 49, 43, .18);
    padding: .05em .45em;
    border-radius: 999px;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 980px) {
    .j-new-mig-cpu-section-card- {
        grid-column: span 12;
    }

    .j-new-mig-cpu-section__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .j-new-mig-cpu-section__pill {
        width: fit-content;
    }
}

@media (max-width: 520px) {
    .j-new-mig-cpu-section-card-__inner {
        padding: 16px;
    }

    .j-new-mig-cpu-section-card-__title {
        font-size: 17px;
    }

    .j-new-mig-cpu-section__subtitle {
        font-size: 14.5px;
    }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .j-new-mig-cpu-section-card- {
        transition: none;
    }

    .j-new-mig-cpu-section-card-:hover {
        transform: none;
    }
}


.j-new-mig-cpu-brand-section-card {
    display: flex;
    align-items: stretch;
    background: #111827;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    text-align: left;
    margin-bottom: 40px;
}

/* ----- INTEL SPECIFIC STYLING (Blue glow & gradient) ----- */
.j-new-mig-cpu-brand-section-intel {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.05);
}

.j-new-mig-cpu-brand-section-intel:hover {
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.j-new-mig-cpu-brand-section-intel .j-new-mig-cpu-brand-section-title {
    color: #3b82f6;


}

.j-new-mig-cpu-brand-section-intel .j-new-mig-cpu-brand-section-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* ----- AMD SPECIFIC STYLING (Red glow & gradient, Reverse Layout) ----- */
.j-new-mig-cpu-brand-section-amd {
    flex-direction: row-reverse;
    /* Image Left, Text Right */
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.05);
}

.j-new-mig-cpu-brand-section-amd:hover {
    box-shadow: 0 0 50px rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
}

.j-new-mig-cpu-brand-section-amd .j-new-mig-cpu-brand-section-title {
    color: #ef4444;
}

.j-new-mig-cpu-brand-section-amd .j-new-mig-cpu-brand-section-btn {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

/* Content Area (Title, Para, Button) */
.j-new-mig-cpu-brand-section-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 2;
}

.j-new-mig-cpu-brand-section-title {
    font-size: 36px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 24px;
    line-height: 1.2;
}

.j-new-mig-cpu-brand-section-para {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #cbd5e1;
}

/* Premium Button */
.j-new-mig-cpu-brand-section-btn {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 50px;
    /* Pill shaped button */
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.j-new-mig-cpu-brand-section-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.15);
}

/* Edge-to-Edge Image Area */
.j-new-mig-cpu-brand-section-img-box {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.j-new-mig-cpu-brand-section-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}


/* Fade gradients to blend the image seamlessly into the card background */
.j-new-mig-cpu-brand-section-intel .j-new-mig-cpu-brand-section-img-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 40%;
    background: linear-gradient(to right, #111827, transparent);
    z-index: 1;
}

.j-new-mig-cpu-brand-section-amd .j-new-mig-cpu-brand-section-img-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 40%;
    background: linear-gradient(to left, #111827, transparent);
    z-index: 1;
}

/* Mobile Responsive Design */
@media (max-width: 960px) {

    .j-new-mig-cpu-brand-section-card,
    .j-new-mig-cpu-brand-section-amd {
        flex-direction: column;
        /* Stack vertically on mobile */
    }

    .j-new-mig-cpu-brand-section-img-box {
        min-height: 250px;
        order: -1;
        /* Image always on top for mobile */
    }

    /* Adjust fade gradients for vertical stack */
    .j-new-mig-cpu-brand-section-intel .j-new-mig-cpu-brand-section-img-box::before,
    .j-new-mig-cpu-brand-section-amd .j-new-mig-cpu-brand-section-img-box::before {
        width: 100%;
        height: 40%;
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        background: linear-gradient(to top, #111827, transparent);
    }

    .j-new-mig-cpu-brand-section-content {
        padding: 40px 30px;
    }

    .j-new-mig-cpu-brand-section-title {
        font-size: 28px;
    }
}

.j-new-mig-cpu-compare-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.j-new-mig-cpu-compare-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    /* Dark text for light theme */
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.j-new-mig-cpu-compare-section-title span {
    background: linear-gradient(to right, #2563eb, #7c3aed);
    /* Darker gradient for readability */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.j-new-mig-cpu-compare-section-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin: 0;
}

/* Table Container for clean modern look */
.j-new-mig-cpu-compare-section-table-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    overflow-x: auto;
    margin: 40px 0;

}

/* The Table */
.j-new-mig-cpu-compare-section-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 1000px;
    /* Ensures table doesn't squish too much on mobile */
}

/* Table Headers */
.j-new-mig-cpu-compare-section-th {
    background: #f8fafc;
    padding: 24px;
    font-weight: 600;
    font-size: 15px;
    color: #334155;
    border-bottom: 2px solid #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Specific Header Colors for Intel & AMD */
.j-new-mig-cpu-compare-section-th-intel {
    color: #1d4ed8;
    border-bottom: 2px solid #bfdbfe;
}

.j-new-mig-cpu-compare-section-th-amd {
    color: #b91c1c;
    border-bottom: 2px solid #fecaca;
}

/* Table Cells */
.j-new-mig-cpu-compare-section-td {
    padding: 24px;
    font-size: 16px;
    line-height: 1.6;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: top;
}

/* Emphasize the first column (Decision Factor) */
.j-new-mig-cpu-compare-section-td-factor {
    font-weight: 600;
    color: #0f172a;
    width: 20%;
}

.j-new-mig-cpu-compare-section-td-metric {
    color: black;
    font-size: 16px;
    width: 20%;
}

.j-new-mig-cpu-compare-section-td-intel,
.j-new-mig-cpu-compare-section-td-amd {
    width: 30%;
    color: #334155;
}

/* Row Hover Effect */
.j-new-mig-cpu-compare-section-row:hover {
    background: #f8fafc;
}

/* Remove border on last row */
.j-new-mig-cpu-compare-section-row:last-child .j-new-mig-cpu-compare-section-td {
    border-bottom: none;
}

/* Custom Scrollbar for the table container */
.j-new-mig-cpu-compare-section-table-box::-webkit-scrollbar {
    height: 8px;
}

.j-new-mig-cpu-compare-section-table-box::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 0 0 20px 20px;
}

.j-new-mig-cpu-compare-section-table-box::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.j-new-mig-cpu-compare-section-table-box::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .j-new-mig-cpu-compare-section-wrapper {
        padding: 20px 0;
    }

    .j-new-mig-cpu-compare-section-title {
        font-size: 28px;
    }

    .j-new-mig-cpu-compare-section-table-box {
        border-radius: 12px;
    }
}

/* -------------Left adn Right Section------------------------ */
.j-new-mig-left-right-section- {
    max-width: 1700px;
    margin: 0 auto;

}

/* Grid Layout: 2 columns for desktop */
.j-new-mig-left-right-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* --- Left Side Styling --- */
.j-new-mig-left-right-section-left h2 {
    font-size: 30px;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}


.j-new-mig-left-right-section-left p {
    font-size: 16px;
    color: #222222;
    line-height: 1.7;
    margin-bottom: 20px;
}

.j-new-mig-left-right-section-left p:last-child {
    margin-bottom: 0;
}

/* --- Right Side Styling --- */
.j-new-mig-left-right-section-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.j-new-mig-left-right-section-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.j-new-mig-left-right-section-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background-color: rgba(232, 49, 43, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.j-new-mig-left-right-section-icon i {
    font-size: 24px;
    color: #e8312b;
}

.j-new-mig-left-right-section-content h4 {
    font-size: 19px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.j-new-mig-left-right-section-content p {
    font-size: 15px;
    color: #222222;
    line-height: 1.5;
}

/* --- Responsive Design --- */

/* Tablet: Stack columns and reduce padding */
@media (max-width: 992px) {
    .j-new-mig-left-right-section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .j-new-mig-left-right-section- {
        padding: 40px 30px;
    }

    .j-new-mig-left-right-section-left h2 {
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .j-new-mig-left-right-section- {
        padding: 30px 20px;
    }

    .j-new-mig-left-right-section-item {
        flex-direction: column;
        gap: 12px;
    }
}

/* --------------DDoS Cpmapre----------------- */
.j-new-mig-ddos-campare-section- {
    max-width: 1500px;
    margin: 0 auto;
    padding: 30px;
}

/* Header Styling */
.j-new-mig-ddos-campare-section-header {
    text-align: center;
    margin-bottom: 25px;
}

.j-new-mig-ddos-campare-section-header h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
}

/* Table Wrapper for Responsiveness */
.j-new-mig-ddos-campare-section-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

/* Table Styling */
.j-new-mig-ddos-campare-section-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    /* Ensures scrolling on small devices */
}

.j-new-mig-ddos-campare-section-table th,
.j-new-mig-ddos-campare-section-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
}

/* Table Header */
.j-new-mig-ddos-campare-section-table th {
    background-color: #000000;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    white-space: nowrap;
}

/* Column Widths */
.j-new-mig-ddos-campare-section-table th:nth-child(1) {
    width: 25%;
}

.j-new-mig-ddos-campare-section-table th:nth-child(2) {
    width: 37.5%;
}

.j-new-mig-ddos-campare-section-table th:nth-child(3) {
    width: 37.5%;
}

/* Table Body Typography */
.j-new-mig-ddos-campare-section-table td:first-child {
    font-weight: 600;
    color: #1a1a1a;
    background-color: #fafbfc;
}

.j-new-mig-ddos-campare-section-table td:nth-child(2) {
    color: #555555;
}

/* MIG Servers Column Highlight */
.j-new-mig-ddos-campare-section-table th:nth-child(3) {
    background-color: #0e2746;
    color: #ffffff;
    border: 2px solid #0e2746;
    border-bottom: none;
}

.j-new-mig-ddos-campare-section-table td:nth-child(3) {
    color: #0e2746;
    background-color: #f4fdf8;
    border-left: 2px solid #0e2746;
    border-right: 2px solid #0e2746;
    font-weight: 500;
}

.j-new-mig-ddos-campare-section-table tbody tr:last-child td:nth-child(3) {
    border-bottom: 2px solid #0e2746;
}

/* Icon Styles */
.j-new-mig-td-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.j-new-mig-icon-red {
    color: #e8312b;
    font-size: 18px;
    margin-top: 2px;
}

.j-new-mig-icon-green {
    color: #10b981;
    font-size: 18px;
    margin-top: 2px;
}

/* Bold items as per your text */
.j-new-mig-ddos-campare-section-bold {
    font-weight: 700;
    color: #0e2746;
}



/* Remove last border */
.j-new-mig-ddos-campare-section-table tbody tr:last-child td {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .j-new-mig-ddos-campare-section- {
        padding: 40px 20px;
    }

    .j-new-mig-ddos-campare-section-header h2 {
        font-size: 26px;
    }
}

/* ------------------Feature Point----------------------- */
.j-new-mig-feature-point-section- {
    max-width: 1700px;
    margin: 0 auto;
    padding: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 20px;
}

.j-new-mig-feature-point-section-::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: repeating-radial-gradient(circle,
            transparent,
            transparent 50px,
            rgba(232, 49, 43, 0.05) 50px,
            rgba(232, 49, 43, 0.05) 52px);
    z-index: -1;
    pointer-events: none;
}

/* Grid Layout: 4 columns for desktop */
.j-new-mig-feature-point-section-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

/* Card Design - White Theme & Small Size */
.j-new-mig-feature-point-section-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #f0f0f0;
}

/* Icon Styling */
.j-new-mig-feature-point-section-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(232, 49, 43, 0.1);
    /* Light red background */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.j-new-mig-feature-point-section-icon i {
    font-size: 24px;
    color: #e8312b;
    /* The exact red color requested */
}

/* Typography */
.j-new-mig-feature-point-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
}

.j-new-mig-feature-point-section-desc {
    font-size: 15px;
    color: #2e2e2e;
    line-height: 1.5;
}

/* Responsive Design */

/* Tablet: 2 Columns */
@media (max-width: 992px) {
    .j-new-mig-feature-point-section-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 Column */
@media (max-width: 576px) {
    .j-new-mig-feature-point-section-grid {
        grid-template-columns: 1fr;
    }
}

/* ------cpu use case--------------- */
.j-new-mig-cpu-use-case-section {
    background: linear-gradient(145deg, #0f172a, #1e293b);
    padding: 50px 0;
    color: #ffffff;
    box-sizing: border-box;
}

.j-new-mig-cpu-use-case-container {
    max-width: 1700px;
    margin: 0 auto;
    box-sizing: border-box;
}

.j-new-mig-cpu-use-case-header {
    text-align: center;
    margin-bottom: 60px;
}

.j-new-mig-cpu-use-case-title {
    font-size: 35px;
    font-weight: 700;
    color: #f8fafc;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 48px;
}

.j-new-mig-cpu-use-case-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #38bdf8;
    margin-top: 0;
    margin-bottom: 24px;
}

.j-new-mig-cpu-use-case-intro {
    font-size: 16px;
    line-height: 28px;
    color: white;
}

.j-new-mig-cpu-use-case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 32px;
}

.j-new-mig-cpu-use-case-card {
    background-color: #1e293b;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #334155;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.j-new-mig-cpu-use-case-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: #38bdf8;
}

.j-new-mig-cpu-use-case-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.j-new-mig-cpu-use-case-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.j-new-mig-cpu-use-case-card:hover .j-new-mig-cpu-use-case-image {
    transform: scale(1.08);
}

.j-new-mig-cpu-use-case-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.j-new-mig-cpu-use-case-number {
    display: inline-block;
    background-color: #38bdf8;
    color: #0b1120;
    font-size: 14px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 16px;
    width: fit-content;
}

.j-new-mig-cpu-use-case-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #e2e8f0;
    margin-top: 0;
    margin-bottom: 16px;
    line-height: 30px;
}

.j-new-mig-cpu-use-case-card-desc {
    font-size: 16px;
    line-height: 26px;
    color: #dbdbdb;
    margin: 0;
}

@media (max-width: 992px) {
    .j-new-mig-cpu-use-case-grid {
        grid-template-columns: 1fr;
    }

    .j-new-mig-cpu-use-case-title {
        font-size: 3.px;
        line-height: 42px;
    }

    .j-new-mig-cpu-use-case-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .j-new-mig-cpu-use-case-section {
        padding: 50px 15px;
    }

    .j-new-mig-cpu-use-case-title {
        font-size: 27px;
        line-height: 38px;
    }

    .j-new-mig-cpu-use-case-image-wrapper {
        height: 200px;
    }

    .j-new-mig-cpu-use-case-content {
        padding: 24px;
    }
}

/* ------value section--------------- */
.j-new-mig-cpu-value-section {
    padding: 50px 0;
    box-sizing: border-box;
}

.j-new-mig-cpu-value-container {
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    box-sizing: border-box;
    align-items: flex-start;
}

.j-new-mig-cpu-value-left {
    flex: 1;
    position: sticky;
    top: 40px;
}

.j-new-mig-cpu-value-right {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.j-new-mig-cpu-value-title {
    font-size: 35px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 24px;
    line-height: 52px;
}

.j-new-mig-cpu-value-title-highlight {
    color: var(--brand-red);
}

.j-new-mig-cpu-value-intro {
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 30px;
    font-weight: 500;
}

.j-new-mig-cpu-value-impact {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    border-left: 3px solid var(--brand-red);
    padding-left: 16px;
    margin-top: 0;
}

.j-new-mig-cpu-value-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    opacity: 0.3;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Active State on Scroll */
.j-new-mig-cpu-value-card.j-new-mig-cpu-value-visible {
    opacity: 1;
    transform: scale(1);
}

.j-new-mig-cpu-value-card.j-new-mig-cpu-value-visible:hover {
    transform: scale(1) translateX(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-red);
}

.j-new-mig-cpu-value-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-red);
    margin-top: 0;
    margin-bottom: 16px;
    line-height: 32px;
}

.j-new-mig-cpu-value-card-desc {
    font-size: 16px;
    line-height: 28px;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 992px) {
    .j-new-mig-cpu-value-container {
        flex-direction: column;
        gap: 40px;
    }

    .j-new-mig-cpu-value-left {
        position: relative;
        top: 0;
    }

    .j-new-mig-cpu-value-title {
        font-size: 36px;
        line-height: 46px;
    }

    .j-new-mig-cpu-value-card.j-new-mig-cpu-value-visible:hover {
        transform: scale(1) translateY(-8px);
    }
}

@media (max-width: 576px) {
    .j-new-mig-cpu-value-section {
        padding: 60px 15px;
    }

    .j-new-mig-cpu-value-title {
        font-size: 30px;
        line-height: 40px;
    }

    .j-new-mig-cpu-value-card {
        padding: 30px 20px;
    }
}

/* ---cta------ */
.j-new-mig-cpu-cta-section {
    padding: 50px 0;
    background: linear-gradient(145deg, #0f172a, #1e293b);
    color: #ffffff;
    box-sizing: border-box;
}

.j-new-mig-cpu-cta-container {
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    box-sizing: border-box;
}

.j-new-mig-cpu-cta-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.j-new-mig-cpu-cta-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.j-new-mig-cpu-cta-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


.j-new-mig-cpu-cta-title {
    font-size: 40px;
    font-weight: 800;
    color: #f8fafc;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 50px;
    letter-spacing: -1px;
}

.j-new-mig-cpu-cta-desc {
    font-size: 17px;
    line-height: 30px;
    color: #94a3b8;
    margin-top: 0;
    margin-bottom: 36px;
}

.j-new-mig-cpu-cta-subtitle {
    font-size: 30px;
    font-weight: 600;
    color: var(--brand-red);
    margin-top: 0;
    margin-bottom: 24px;
}

.j-new-mig-cpu-cta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.j-new-mig-cpu-cta-list-item {
    font-size: 16px;
    line-height: 28px;
    color: #cbd5e1;
    position: relative;
    padding-left: 36px;
}

.j-new-mig-cpu-cta-list-item::before {
    content: "\2714";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--brand-red);
    font-size: 18px;
    font-weight: bold;
    background-color: rgba(56, 189, 248, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.j-new-mig-cpu-cta-highlight {
    color: #f8fafc;
    font-weight: 700;
}

.j-new-mig-cpu-cta-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.j-new-mig-cpu-cta-btn {
    display: inline-block;
    background-color: #8b0400;
    color: white;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(248, 56, 56, 0.39);
}

.j-new-mig-cpu-cta-btn:hover {
    background-color: #4d0606;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 56, 56, 0.4);
}

.j-new-mig-cpu-cta-note {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 992px) {
    .j-new-mig-cpu-cta-container {
        flex-direction: column;
        gap: 48px;
    }

    .j-new-mig-cpu-cta-content {
        order: 2;
    }

    .j-new-mig-cpu-cta-image-wrapper {
        order: 1;
        width: 100%;
    }

    .j-new-mig-cpu-cta-title {
        font-size: 34px;
        line-height: 44px;
    }
}

@media (max-width: 576px) {
    .j-new-mig-cpu-cta-section {
        padding: 60px 15px;
    }

    .j-new-mig-cpu-cta-title {
        font-size: 28px;
        line-height: 38px;
    }

    .j-new-mig-cpu-cta-btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        padding: 16px 20px;
    }
}

/* --cpmparision table-------------- */
.j-new-mig-cpu-comparision-tbl-section {
    padding: 50px 0;
    background-color: #f8fafc;
    box-sizing: border-box;
}

.j-new-mig-cpu-comparision-tbl-container {
    max-width: 1700px;
    margin: 0 auto;
    box-sizing: border-box;
}

.j-new-mig-cpu-comparision-tbl-title {
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    margin-top: 0;
    margin-bottom: 24px;
    line-height: 48px;
}

.j-new-mig-cpu-comparision-tbl-desc {
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

.j-new-mig-cpu-comparision-tbl-wrapper {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow-x: auto;
}

.j-new-mig-cpu-comparision-tbl-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 800px;
}
/* @media (max-width: 899px) {
    .j-new-mig-cpu-comparision-tbl-table thead{
        display: none;
    }
    .j-new-mig-cpu-comparision-tbl-row {
        display: flex;
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
        border: 2px solid #cbd5e1;
    }
    .j-new-mig-cpu-comparision-tbl-td {
        border: none !important;
    }
} */

.j-new-mig-cpu-comparision-tbl-th {
    padding: 24px 20px;
    background-color: #f1f5f9;
    color: #1e293b;
    font-size: 16px;
    font-weight: 700;
}

.j-new-mig-cpu-comparision-tbl-td {
    padding: 20px;
    font-size: 16px;
    border-bottom: 1px solid #e2e8f0;
    line-height: 24px;
    transition: background-color 0.3s ease;
}

.j-new-mig-cpu-comparision-tbl-row:last-child .j-new-mig-cpu-comparision-tbl-td {
    border-bottom: none;
}

.j-new-mig-cpu-comparision-tbl-row:hover .j-new-mig-cpu-comparision-tbl-td {
    background-color: #f8fafc;
}

.j-new-mig-cpu-comparision-tbl-highlight-th {
        background-color: rgb(199 2 2 / 8%);
    color: var(--brand-red);
    border-top: 4px solid ;
    border-left: 1px solid rgba(2, 132, 199, 0.15);
    border-right: 1px solid rgba(2, 132, 199, 0.15);
    font-weight: 700;
}

.j-new-mig-cpu-comparision-tbl-highlight-td {
        background-color: rgb(199 2 2 / 4%);
    color: #0f172a;
    font-weight: 600;
    border-left: 1px solid rgba(2, 132, 199, 0.15);
    border-right: 1px solid rgba(2, 132, 199, 0.15);
}

.j-new-mig-cpu-comparision-tbl-row:hover .j-new-mig-cpu-comparision-tbl-highlight-td {
    background-color: rgb(199 2 2 / 2%);
}

/* Hosa tick icon style */
.j-new-mig-cpu-comparision-tbl-icon {
    color: var(--brand-red);
    font-size: 14px;
    font-weight: bold;
    background-color: rgba(2, 132, 199, 0.1);
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .j-new-mig-cpu-comparision-tbl-section {
        padding: 60px 15px;
    }

    .j-new-mig-cpu-comparision-tbl-title {
        font-size: 30px;
        line-height: 40px;
    }

    .j-new-mig-cpu-comparision-tbl-wrapper {
        border-radius: 8px;
    }
}

/* -------------------------- */
.j-new-product-tbl-row {
        margin-top: 15px;
        border-top-right-radius: 15px;
        border-bottom-right-radius: 15px;
    }

    .g-new-product-pricing-table-container {
        margin: 0 !important;
    }

    .g-new-product-pricing-table-wrapper-title {
        padding-bottom: 20px;
    }

    .j-new-product-tbl-info h3 {
        text-align: left;
    }

/* -----------------------------------     */