
/* ── Grey LABELS ── */
    .grey-label {
            font-size: 1.2rem; font-weight: 500; letter-spacing: 1.5px;
            text-transform: uppercase; color: #666; margin-bottom: 12px;
            display: block; text-align: center;
        }
    @media (max-width: 768px) {

    .grey-label {
        font-size: 0.95rem;
        letter-spacing: 0.8px;
        margin-bottom: 6px;
        opacity: 0.8;
    }

    }

/* MR */
    @media (max-width: 768px) {

        h2 {
            font-size: 1.4rem !important;
            line-height: 1.4;
        }

        h3 {
            font-size: 1rem !important;
        }

        p {
            font-size: 0.95rem;
            line-height: 1.6;
        }
        li {
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .header-title {
            font-size: 1.4rem !important;
            line-height: 1.4;
        }

        .header-para {
            font-size: 0.7rem;
            line-height: 1.6;
        }

    }

    @media (max-width: 768px) {

    /* Reduce container padding (theme override) */
    .auto-container {
        padding-left: 5px;
        padding-right: 5px;
    }

    /* Section spacing fix */
    .main-section {
        padding: 10px 0;
    }

    }


/*Main-Section*/
    .main-section {
    padding: 80px 20px;
    }

    /* Alternate backgrounds */
    .main-section:nth-of-type(odd) {
    background-color: #ffffff;
    }

    .main-section:nth-of-type(even) {
    background-color: #F4F7FB;
    }

    .bg-white {
        background-color: #ffffff !important;
    }

    .bg-light {
        background-color: #F4F7FB !important;
    }


/* Intro header */
    .intro h2 {
        font-size: 2rem;
        font-weight: 800;
        color: #1a3546;
        margin-bottom: 20px;
        line-height: 1.25;
    }
    .intro p {
        color: #444;
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 16px;
    }
    @media (max-width: 768px) {

        .intro h2 {
            font-size: 1.4rem !important;
            line-height: 1.4;
        }

        .intro p {
            font-size: 0.95rem;
            line-height: 1.6;
        }

    }
    .intro li {
        display: flex; align-items: flex-start; gap: 12px;
        font-size: 0.95rem; color: #1a3546; font-weight: 500;
        padding: 8px 0; border-bottom: 1px solid #dde4ef;
        line-height: 1.5;
    }
    .intro li:last-child { border-bottom: none; }
    .intro li::before {
        content: "✔";
        color: #0c2c4e; font-weight: 700; font-size: 0.85rem;
        flex-shrink: 0; margin-top: 1px;
    }

/* Trust Bar */
    .trust-bar {
        background: #028ef814;
        border-bottom: 1px solid var(--border);
        padding: 0.85rem 5%;
        display: flex; align-items: center; justify-content: center;
        gap: 2.5rem; flex-wrap: wrap;
    }
    .trust-item {
        display: flex; align-items: center; gap: 0.5rem;
        font-size: 0.82rem; font-weight: 500; color: #1a3546;
    }
    .trust-item .icon { font-size: 1rem; }

    @media (max-width: 768px) {
    .trust-bar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 1.5rem;
        text-align: center;
    }

    .trust-item {
        justify-content: center;
    }
}


/*Header*/
    .header-title {
        font-size: 2rem;
        font-weight: 800;
        color: #1a3546;
        text-align: center;
        margin-bottom: 18px;
    }
    .header-para {
        text-align: center;
        color: #000000;
        font-size: 1rem;
        margin: 16px;
        line-height: 1.7;
    }
    @media (max-width: 768px) {

        .header-title {
            font-size: 1.4rem !important;
            line-height: 1.4;
        }

        .header-para {
            font-size: 0.95rem;
            line-height: 1.6;
        }

    }
    .header-point{
        font-size: 1.05rem; 
        color: #000000;
        font-weight: 600;
    }
    .title-service-card{
        color: #666; 
        font-size: 0.8rem; 
        font-weight: 600; 
        letter-spacing: 0.5px; 
        margin-bottom: 8px;
    }

/* Brand We Support */
    .vendor-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    }

    /* logo card */
    .vendor-card{
    background:white;
    height:110px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:6px;
    box-shadow:0 3px 12px rgba(0,0,0,0.05);
    transition:0.3s;
    }

    /* hover */
    .vendor-card:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    }

    /* logo image */
    .vendor-card img{
    max-width:120px;
    max-height:120px;
    object-fit:contain;
    transition:0.3s;
    }

    @media (max-width: 768px){

    .vendor-grid{
    display:flex;
    overflow-x:auto;
    gap:20px;
    scroll-snap-type:x mandatory;
    padding-bottom:10px;
    }

    .vendor-card{
    min-width:200px;
    flex:0 0 auto;
    scroll-snap-align:center;
    }

    .vendor-grid::-webkit-scrollbar{
    display:none;
    }      
    }


/*2-COLUMNS GRID*/
    .problem-grid {
        display: grid; 
        grid-template-columns: 1fr 1fr;
        gap: 32px; 
        margin-top: 10px;
        margin-bottom: 50px;
    }
    .problem-card {
        background: #fff;
        border: 1px solid rgba(75, 75, 75, 0.062);
        border-radius: 12px; 
        padding: 28px 30px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    .problem-card:hover { 
        border: 3px solid #1a3546;
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }
    .problem-card .icon {
        width: 42px; 
        height: 42px; 
        border-radius: 10px;
        /* background: rgba(224,82,82,0.12);  */
        display: flex; 
        align-items: center; 
        justify-content: center;
        margin-bottom: 18px; 
        font-size: 1.3rem;
    }
    .problem-card h3 { 
        font-size: 1.05rem; 
        margin-bottom: 10px; 
        color: #1a3546;
        font-weight: 600;
    }
    .problem-card h4 { 
        font-size: 1.05rem; 
        margin-bottom: 10px; 
        color: #1a3546;
        font-weight: 600;
    }
    .problem-card p { 
        font-size: 0.9rem; 
        color: #555; 
        line-height: 1.65; 
    }
    .problem-card .highlight { 
        color: var(--danger); 
        font-weight: 600; 
    }
    .problem-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .problem-card li {
        margin-bottom: 12px;
        color: #555;
        font-size: 0.9rem;
    }

/*3-COLUMNS GRID*/

    .three-grid {
    row-gap: 30px;
    }

    /* CARD DESIGN */
    .three-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    }

    /* HOVER */
    .three-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border-color: #1a3546;
    }

    /* ICON */
    .three-icon {
    font-size: 1.8rem;
    margin-bottom: 15px;
    }

    /* TITLE */
    .three-card h3 {
    font-size: 1.1rem;
    color: #1a3546;
    margin-bottom: 10px;
    font-weight: 600;
    }

    /* TEXT */
    .three-card p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6;
    }
    @media (max-width: 768px) {

    .three-card {
        padding: 20px;
        text-align: left;
    }

    .three-card h3 {
        font-size: 1rem;
    }

    .three-card p {
        font-size: 0.85rem;
    }

}

/* highlight-box */
    .highlight-box {
        background: #ffffff ;
        border: 2px solid #1a3546;
        border-radius: 12px;
        padding: 20px;
        margin: 40px 0;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    .highlight-box:hover{
        border-color: #1a3546;
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }
    .highlight-box .value {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1a3546;
        margin-bottom: 10px;
    }
    .highlight-box .label {
        font-size: 1rem;
        color: #555;
    }
    @media (max-width: 768px) {
        .highlight-box .value { font-size: 1.8rem; }
    }
    

/*GRIDS-LEFT & IMG-RIGHT*/
    .service-flex-layout{
        display:flex; 
        gap:50px; 
        align-items:flex-start;
        flex: 1;
    }
    .service-flex-layout > div {
        flex: 1;
    }
    .service-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    } 
    .service-card {
        background: #fff;
        border: 1px solid rgba(255,255,255,0.07);
        border-radius: 12px; 
        padding: 28px 30px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    .service-card:hover {
        border-color: #1a3546;
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }
    .service-card .number {
        display: inline-block;
        background: linear-gradient(135deg, #2D7DD2, #1E5BA8);
        color: #fff;
        width: 48px;
        height: 48px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    .service-card h3 {
        font-size: 1.15rem;
        color: #1a3546 !important; 
        margin-bottom: 16px;
        font-weight: 600;
    }
    .service-card h4 { 
        font-size: 1.05rem; 
        margin-bottom: 10px; 
        color: #1a3546;
        font-weight: 600;
    }
    .service-card p {
        font-size: 0.9rem;
        color: #555;
        line-height: 1.7;
    }
    /* Image column */
    .service-img-col {
        text-align: center;
        flex:1
    }

    .service-img-col img {
        max-width: 100%;
        height: auto;
    }

    @media (max-width: 768px) {

    .service-flex-layout {
        flex-direction: column;
        gap: 20px;
    }

    .service-img-col img {
        width: 100%;
    }

    }


/* ══════════════════════════════════
COMPARISON TABLE
══════════════════════════════════ */
    .compare-table {
        width: 100%; border-collapse: collapse;
        border-radius: 14px; overflow: hidden;
        box-shadow: 0 4px 20px rgba(0,0,0,0.07);
        font-size: 0.93rem;
    }
    .compare-table thead tr {
        background: #0c2c4e; color: #fff;
    }
    .compare-table thead th {
        padding: 18px 22px; text-align: left; font-weight: 700;
        font-size: 0.9rem;
    }
    .compare-table thead th:not(:first-child) { text-align: center; }
    .compare-table tbody tr{ background: #fff; }
    .compare-table tbody tr:hover { background: #028ef814; }
    .compare-table tbody tr:nth-child(odd) { background: #fff; } 
    .compare-table tbody td {
        padding: 16px 22px; color: #333;
        border-bottom: 1px solid #e4eaf3;
        vertical-align: middle;
    }
    .compare-table tbody td:first-child { font-weight: 600; color: #0c2c4e; }
    .compare-table tbody td:not(:first-child) { text-align: center; }
    .compare-table tfoot td {
        padding: 10px 22px; font-size: 0.78rem; color: #999;
        background: #f4f7fb;
    }
    .tick { color: #0c2c4e; font-weight: 700; }
    .cross { color: #c0392b; font-weight: 700; }
    .warn { color: #d97706; }
    .green { color: #00b4a2; font-weight: 700; }
    @media (max-width: 768px) {
        .compare-table { font-size: 0.8rem; }
        .compare-table thead th,
        .compare-table tbody td { padding: 12px 14px; }
        
    }
    @media (max-width: 540px) {
        .compare-table-scroll { overflow-x: auto; }
        .compare-table { min-width: 560px; }
    }

/* Pill Layout */
    .custom-cat-grid{display:flex;flex-direction:column;gap:30px}
    .custom-cat-block{background: #fff;border: 2px solid rgba(255,255,255,0.07);;border-radius:10px;overflow:hidden;transition:border-color .2s}
    .custom-cat-block:hover{
        border-color: #1a3546;
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }
    .custom-cat-head{padding:12px 18px; font-weight: 600; color: #ffffff ;display:flex;align-items:center;gap:10px;background: #1a3546;border-bottom:1px solid var(--ln)}
    .custom-cat-dot{width:7px;height:7px;border-radius:50%;background:var(--blue);flex-shrink:0}
    .custom-cat-title{font-size:.82rem;font-weight:700;color:var(--w)}
    .custom-chip-row{padding:14px 18px;display:flex;flex-wrap:wrap;gap:8px }
    .custom-chip{display:inline-flex;align-items:center;gap:6px;background:rgba(45, 125, 210, 0.05);border:1px solid rgba(226, 17, 17, 0.09);padding:5px 12px;border-radius:100px;font-size:.76rem; color: #000000 ;transition:all .15s}
    .custom-chip::before{content:'';width:4px;height:4px;border-radius:50%;background:var(--blue);flex-shrink:0}
    .custom-chip:hover{border-color: #1a3546;color: #000}

    /* MOBILE FIX FOR CHIP LAYOUT */
        
    @media (max-width: 768px) {

        .custom-cat-head {
            font-size: 0.9rem;
            padding: 10px 14px;
        }

        .custom-chip-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding: 12px;
            justify-content: left; /* center alignment */
        }

        .custom-chip {
            font-size: 0.75rem;
            padding: 6px 10px;
            white-space: nowrap; /* prevent breaking */
        }

    }

/* Step Layout (Horizontal Card Timeline) */

    .lifecycle-timeline {
        position: relative;
    }
    .timeline-item {
        display: grid;
        grid-template-columns: 200px 1fr;
        gap: 40px;
        margin-bottom: 50px;
        position: relative;
    }
    @media (max-width: 768px) {
        .timeline-item {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    }
    .timeline-header {
        background: #1a3546;
        color: #fff;
        padding: 24px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 80px;
        text-align: center;
    }
    .timeline-content {
        background: rgb(255, 255, 255);
        border-left: 4px solid #1a3546;
        padding: 24px;
        border-radius: 8px;
    }
    .timeline-content h4 {
        color: #1a3546;
        font-size: 1.05rem;
        margin-bottom: 12px;
        font-weight: 600;
    }
    .timeline-content p {
        color: #000000;
        font-size: 0.9rem;
        line-height: 1.65;
    }

/* ══════════════════════════
    BRAND PLATFORM SECTION
    Full-width alternating layout
    ══════════════════════════ */
    .brands { background: #fff; padding: 80px 0; }
    .brands-inner { max-width: 1500px; margin: 0 auto; padding: 0 5%; }
    .brands-header { text-align: center; margin-bottom: 60px; }
    .brands-header h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: #0c2c4e; font-weight: 800; margin-bottom: 12px; }
    .brands-header p { color: #555; font-size: 0.97rem; max-width: 680px; margin: 0 auto; line-height: 1.7; }

    /* Brand platform rows */
    .brand-row {
        display: grid; grid-template-columns: 340px 1fr;
        gap: 0; border-radius: 16px; overflow: hidden;
        border: 1.5px solid #dde4ef;
        margin-bottom: 28px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        transition: box-shadow 0.3s;
    }
    .brand-row:hover { box-shadow: 0 10px 36px rgba(45,125,210,0.12); }
    .brand-row.reverse { grid-template-columns: 1fr 340px; }
    .brand-row.reverse .brand-sidebar { order: 2; }
    .brand-row.reverse .brand-body { order: 1; }

    .brand-sidebar {
        padding: 40px 32px;
        display: flex; flex-direction: column; justify-content: space-between;
        min-height: 300px;
        background: linear-gradient(160deg, #0c2c4e 0%, #0c2c4e 100%);
    }

    .brand-logo-text {
        font-size: 1.8rem; font-weight: 900; color: #fff;
        letter-spacing: 2px; line-height: 1;
        margin-bottom: 10px;
    }
    .brand-gen {
        display: inline-block;
        background: rgba(255,255,255,0.18);
        border-radius: 10px; padding: 4px 14px;
        font-size: 0.75rem; color: rgba(255,255,255,0.9); font-weight: 900;
        margin-bottom: 20px;
    }
    .brand-models-gen {
        display: inline-block;
        background: #0c2c4e;
        border-radius: 20px; padding: 4px 14px;
        font-size: 0.75rem; color: rgba(255,255,255,0.9); font-weight: 600;
        margin-bottom: 20px;
    }
    .brand-tagline {
        color: rgba(255,255,255,0.75); font-size: 0.88rem; line-height: 1.6; margin-bottom: 24px; flex: 1;
    }
    .brand-sidebar .theme-btn { margin-top: auto; align-self: flex-start; }

    .brand-body {
        background: #fff; padding: 36px 40px;
        display: flex; flex-direction: column; justify-content: space-between;
    }
    .brand-models {
        font-size: 0.82rem; color: #777;
        background: #f4f7fb; border-radius: 8px;
        padding: 12px 16px; margin-bottom: 28px;
        line-height: 1.6;
    }
    .brand-models strong { color: #0c2c4e; display: block; margin-bottom: 4px; font-size: 0.8rem; letter-spacing: 0.5px; text-transform: uppercase; }
    .brand-specs-grid {
        display: grid; grid-template-columns: repeat(3, 1fr);
        gap: 16px 24px; margin-bottom: 20px;
    }
    .brand-spec-label { font-size: 0.72rem; font-weight: 700; color: #2D7DD2; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
    .brand-spec-val { font-size: 0.88rem; color: #1a3546; font-weight: 600; }
    .brand-spec-tags {
            display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px;
        }
    .brand-spec-tag {
        background: #f0f5ff; border: 1px solid #c8d9f0;
        color: #0c2c4e; font-size: 0.78rem; font-weight: 600;
        padding: 5px 12px; border-radius: 20px; white-space: nowrap;
    }
    .brand-desc {
        font-size: 0.9rem; color: #555; line-height: 1.7;
        
    }
    .brand-body p {
        color: #333; font-size: 0.95rem; line-height: 1.78;
        margin-bottom: 16px;
    }
    .brand-body ul {
        margin: 0; padding-left: 18px; color: #333;
        font-size: 0.92rem; line-height: 1.8;
    }
    .brand-body ul li { margin-bottom: 6px; }
    .brand-num {
        font-size: 2.8rem; font-weight: 900;
        color: rgba(255,255,255,0.12); line-height: 1;
        margin-bottom: 10px;
    }
    @media (max-width: 900px) {
        .brand-row, .brand-row.reverse { grid-template-columns: 1fr; }
        .brand-row.reverse .brand-sidebar { order: 1; }
        .brand-row.reverse .brand-body { order: 2; }
        .brand-sidebar { min-height: auto; padding: 28px 24px; }
        .brand-body { padding: 28px 24px; }
        .brand-specs-grid { grid-template-columns: repeat(2,1fr); }
    }
    /* ── CANT FIND CTA ── */
    .cant-find {
        margin-top: 40px;
        background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(45,125,210,0.03) 100%);
        border: 2px solid #1a3546;
        border-radius: 14px; padding: 30px 36px;
        display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
    }
    .cant-find:hover{
        border-color: #1a3546;
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }
    .cant-find p { color: #0c2c4e; font-weight: 700; font-size: 1.05rem; margin: 0; }
    .cant-find span { color: #555; font-size: 0.9rem; font-weight: 400; display: block; margin-top: 4px; }


/* Product type rows — sidebar + body */
    .product-row {
        display: grid; grid-template-columns: 400px 1fr;
        border-radius: 16px; overflow: hidden;
        border: 1.5px solid #dde4ef;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        margin-bottom: 28px;
        transition: box-shadow 0.3s;
    }
    .product-row:hover { box-shadow: 0 12px 40px rgba(45,125,210,0.13); }
    .product-sidebar {
        background: linear-gradient(160deg, #0c2c4e 0%, #0e3560 100%);
        padding: 40px 30px;
        display: flex; flex-direction: column; justify-content: space-between;
        min-height: 260px;
    }
    .product-icon-big { font-size: 2.8rem; margin-bottom: 20px; line-height: 1; }
    .product-name {
        font-size: 1.3rem; font-weight: 900; color: #fff; margin-bottom: 12px; line-height: 1.2;
    }
    .product-tagline {
        color: rgba(255,255,255,0.72); font-size: 0.85rem; line-height: 1.65;
        margin-bottom: 24px; flex: 1;
    }
    .product-body {
        background: #fff; padding: 36px 40px;
        display: flex; flex-direction: column; justify-content: flex-start;
    }
    .product-body h3 {
        font-size: clamp(1.2rem, 2vw, 1.6rem);
        color: #0c2c4e; font-weight: 700; margin-bottom: 14px;
    }
    .product-desc {
        color: #333; font-size: 0.95rem; line-height: 1.78;
        margin-bottom: 24px; padding-bottom: 20px;
        border-bottom: 1px solid #eef2f7;
    }
    .product-list { list-style: none; padding: 0; margin: 0 0 20px 0; }
    .product-list li {
        padding: 12px 0;
        border-bottom: 1px solid #f0f4fa;
        display: flex; flex-direction: column; gap: 4px;
    }
    .product-list li:last-child { border-bottom: none; }
    .product-title { font-size: 0.9rem; font-weight: 700; color: #0c2c4e; }
    .product-spec { font-size: 0.82rem; color: #555; line-height: 1.55; }
    .product-ideal {
        background: #f4f7fb; border-radius: 8px;
        padding: 12px 16px; font-size: 0.85rem;
        color: #444; line-height: 1.6;
        border-left: 3px solid #0c2c4e;
        margin-bottom: 18px;
    }
    
    .product-ideal strong { color: #0c2c4e; }
    @media (max-width: 900px) {
        .product-row { grid-template-columns: 1fr; }
        .product-sidebar { min-height: auto; padding: 28px 24px; }
        .product-body { padding: 28px 24px; }
    }

/* NAS/JBOD/DAS/AFA row — horizontal pills */
    .product-storage-pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* 2 equal columns */
    gap: 12px;
    margin-bottom: 20px;
    }

    .product-storage-pill {
        background: #f4f7fb;
        border: 1.5px solid #dde4ef;
        border-radius: 8px;
        padding: 10px 18px;
        font-size: 0.88rem;
        font-weight: 700;
        color: #0c2c4e;
        text-align: left;
        width: 100%;
    }

    


/* FAQ Section */
    .faq-section {
        background: rgb(255, 255, 255);
        padding: 40px;
        border-radius: 12px;
        margin: 40px 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);

    }
    .faq-item {
        margin-bottom: 24px;
        border-bottom: 2px solid rgba(45,125,210,0.1);
        padding-bottom: 24px;
    }
    .faq-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .faq-question {
        font-size: 1rem;
        font-weight: 600;
        color: #1a3546;
        margin-bottom: 12px;
        cursor: pointer;
    }
    .faq-answer {
        color: #000000;
        line-height: 1.7;
        font-size: 0.95rem;
    }
    /* MR */
    @media (max-width: 768px) {

        .faq-section {
            width: 100%;
            margin: 20px 0;
            padding: 20px;
        }

    }

/* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
        color: #020202;
        border-radius: 16px;
        text-align: center;
    }




/*MOBILE RESPONSIVE*/

    @media (max-width: 768px) {
        .main-section {
            padding: 40px 16px;
        }
        .problem-grid {
            grid-template-columns: 1fr;
        }
        .service-grid {
            grid-template-columns: 1fr;
        }
    }
    @media (max-width: 600px) {
        .problem-card { padding: 20px; }
        .service-card { padding: 20px; }
    }