/* HPE Page Specific Custom Styles */
:root {
    --hpe-border-glow: rgba(0, 123, 255, 0.15);
    --hpe-card-bg: rgba(10, 25, 47, 0.4);
}

/* Stats Showcase */
.stats-bar {
    display: flex;
    justify-content: space-around;
    background: rgba(10, 25, 47, 0.6);
    border: 1px solid var(--hpe-border-glow);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 60px;
    text-align: center;
}
.stat-item h5 { font-size: 32px; color: var(--blue-point); font-weight: 800; margin-bottom: 5px; }
.stat-item p { font-size: 14px; color: var(--text-gray); }

/* Dynamic Tabs Layout (Pure CSS) */
.tabs-container {
    margin-bottom: 80px;
}
.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.tab-label {
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: var(--text-gray);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Radio Inputs for Tab Control */
.tab-radio { display: none; }

#tab1:checked ~ .tab-buttons label[for="tab1"],
#tab2:checked ~ .tab-buttons label[for="tab2"],
#tab3:checked ~ .tab-buttons label[for="tab3"],
#tab4:checked ~ .tab-buttons label[for="tab4"],
#tab5:checked ~ .tab-buttons label[for="tab5"] {
    background: var(--blue-point);
    color: #fff;
    border-color: var(--blue-point);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Tab Content Display Control */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

#tab1:checked ~ .tab-contents #content1,
#tab2:checked ~ .tab-contents #content2,
#tab3:checked ~ .tab-contents #content3,
#tab4:checked ~ .tab-contents #content4,
#tab5:checked ~ .tab-contents #content5 {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Solutions Layout inside Tabs */
.solution-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.solution-card {
    background: var(--hpe-card-bg);
    border: 1px solid var(--hpe-border-glow);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.solution-card:hover {
    border-color: var(--blue-point);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.15);
    background: rgba(10, 25, 47, 0.7);
}
.solution-card img {
    width: 100%;
    object-fit: contain;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.02);
    padding: 10px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.05);
}
.card-header {
    margin-bottom: 20px;
}
.card-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--blue-point);
    border: 1px solid var(--blue-point);
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}
.solution-card h4 {
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}
.solution-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
    text-align: justify;
}
.spec-list {
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}
.spec-list-item {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.spec-list-item svg {
    width: 16px;
    height: 16px;
    fill: var(--blue-point);
    flex-shrink: 0;
    margin-top: 2px;
}
.spec-list-item strong {
    color: #fff;
    font-weight: 600;
}

/* Tech Spec Matrix / Comparison Section */
.matrix-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 60px;
    margin-top: 60px;
}
.matrix-title {
    text-align: center;
    margin-bottom: 40px;
}
.matrix-title h4 { font-size: 24px; color: #fff; font-weight: 700; }
.matrix-table-container {
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}
.matrix-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
    min-width: 800px;
}
.matrix-table th, .matrix-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.matrix-table th {
    background: rgba(10, 25, 47, 0.8);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}
.matrix-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}
.matrix-table td strong {
    color: var(--blue-point);
}
.tag-active {
    background: rgba(0, 123, 255, 0.1);
    color: var(--blue-point);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Call To Action consulting Section */
.cta-section {
    background: linear-gradient(135deg, rgba(10,25,47,0.8) 0%, rgba(5,10,16,0.9) 100%);
    border: 1px solid var(--blue-point);
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    margin-top: 80px;
    box-shadow: 0 10px 40px rgba(0,123,255,0.1);
}
.cta-section h3 { font-size: 26px; color: #fff; margin-bottom: 15px; font-weight: bold; }
.cta-section p { font-size: 15px; color: var(--text-gray); margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-btn {
    display: inline-block;
    background: var(--blue-point);
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}
.cta-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,123,255,0.5);
}

/* Responsive Design Adjustments */
@media (max-width: 1024px) {
    .stats-bar { flex-direction: column; gap: 20px; }
    .solution-card-container { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .tab-label { padding: 10px 18px; font-size: 14px; }
}
@media (max-width: 768px) {
    .tab-label { padding: 10px 18px; font-size: 14px; }
}

/* Strategy Showcase (FY26 CAP) */
.strategy-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}
.strategy-card {
    background: rgba(10, 25, 47, 0.4);
    border: 1px solid var(--hpe-border-glow);
    padding: 25px;
    border-radius: 12px;
    border-top: 4px solid #01a982; /* HPE Official Brand Green */
    transition: all 0.3s ease;
}
.strategy-card:hover {
    transform: translateY(-5px);
    border-color: #01a982;
    box-shadow: 0 10px 30px rgba(1, 169, 130, 0.15);
    background: rgba(10, 25, 47, 0.7);
}
.strategy-card span {
    font-size: 11px;
    color: #01a982;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.strategy-card h4 {
    margin: 10px 0;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
}
.strategy-card p {
    font-size: 13.5px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}
