/* ==================== System Page Styles ==================== */

/* Hero Banner — merged with nav */
.system-hero {
    position: relative;
    background: linear-gradient(135deg, #0a1628 0%, #132a4e 40%, #1a3a5c 70%, #0d2240 100%);
    background-size: cover;
    background-position: center;
    padding: 0;
    overflow: hidden;
}
.system-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.82);
    z-index: 1;
}
.system-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 154, 214, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 8s ease-in-out infinite reverse;
    z-index: 2;
}
@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* Nav inside hero */
.system-hero .top_w3pvt_main {
    position: relative;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 0;
}
.system-hero .top_w3pvt_main .nav_w3pvt {
    position: relative;
    margin-top: 0;
    background: none;
}
.system-hero .top_w3pvt_main .menu {
    background: none;
}
.system-hero .business_line {
    color: rgba(255, 255, 255, 0.7) !important;
}
.system-hero .menu li a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}
.system-hero .menu li a:hover,
.system-hero .menu li.active a {
    color: #4fc3f7;
}
.system-hero .menu li.active a {
    font-weight: 600;
}

.hero-body {
    position: relative;
    z-index: 10;
    padding: 75px 60px 80px;
}
.hero-label {
    display: block;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(37, 154, 214, 0.7);
    margin-top: 16px;
    font-weight: 500;
}
.hero-body h1 {
    font-size: 48px;
    font-weight: 300;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.hero-body h1 strong {
    font-weight: 700;
    background: linear-gradient(90deg, #259ad6, #4fc3f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-body > p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 0 !important;
}
.hero-body .breadcrumb {
    background: none;
    padding: 0;
    margin-top: 24px;
}
.hero-body .breadcrumb-item,
.hero-body .breadcrumb-item a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}
.hero-body .breadcrumb-item a:hover {
    color: #259ad6;
}
.hero-body .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.85);
}
.hero-body .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
}

/* Decorative dots */
.dot-grid {
    position: absolute;
    top: 120px;
    right: 60px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(rgba(37, 154, 214, 0.4) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    z-index: 1;
    opacity: 0.6;
}

/* Feature Cards — 2 columns */
.features-section {
    padding: 80px 0;
    background: #fff;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header .section-tag {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #259ad6;
    font-weight: 500;
    margin-bottom: 16px;
}
.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}
.section-header p {
    font-size: 16px;
    color: #8c95a6;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.feature-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f2f5;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}
.feature-card .card-img-wrap {
    position: relative;
    overflow: hidden;
}
.feature-card .card-img-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.feature-card:hover .card-img-wrap img {
    transform: scale(1.05);
}
.feature-card .card-content {
    padding: 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.feature-card .card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.feature-card .card-content h3 i {
    font-size: 18px;
    color: #259ad6;
    flex-shrink: 0;
}
.feature-card .card-content p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 0 !important;
    flex: 1;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: #fafbfc;
    text-align: center;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #259ad6, #1a7cb8);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
    text-decoration: none;
}
.cta-btn:hover {
    background: linear-gradient(135deg, #4fc3f7, #259ad6);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 154, 214, 0.35);
    color: #fff;
    text-decoration: none;
}
.cta-btn i {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-body h1 { font-size: 36px; }
    .dot-grid { display: none; }
}
@media (max-width: 768px) {
    .hero-body { padding: 60px 24px 60px; }
    .hero-body h1 { font-size: 30px; }
    .section-header h2 { font-size: 28px; }
    .features-section { padding: 60px 0; }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .feature-card .card-img-wrap img { height: 220px; }
    .feature-card .card-content { padding: 24px; }
}
