/* WF ISMS page styles */

.wfisms-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wfisms-hero-badge svg {
    width: 18px;
    height: 18px;
    color: var(--gold-light);
}

.wfisms-hero-badge span {
    font-size: 14px;
    color: var(--gray-300);
}

.wfisms-hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.wfisms-badge-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-300);
}

/* Overview */
.wfisms-overview {
    padding: 80px 0;
    background: var(--gray-950);
}

.wfisms-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 992px) {
    .wfisms-overview-grid { grid-template-columns: 1fr; gap: 40px; }
}

.wfisms-overview-lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--gray-200);
    margin-bottom: 16px;
}

.wfisms-overview-content p {
    color: var(--gray-400);
    line-height: 1.7;
}

.wfisms-overview-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-800);
}

.wfisms-stat { text-align: center; }
.wfisms-stat-number { display: block; font-size: 2rem; font-weight: 800; color: var(--wf-blue-light); }
.wfisms-stat-label { font-size: 0.85rem; color: var(--gray-500); }

.wfisms-overview-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Features */
.wfisms-features {
    padding: 80px 0;
    background: var(--gray-900);
}

.wfisms-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) { .wfisms-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .wfisms-features-grid { grid-template-columns: 1fr; } }

.wfisms-feature-card {
    background: var(--gray-950);
    border: 1px solid var(--gray-800);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.wfisms-feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--wf-blue-light);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.15);
}

.wfisms-feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #1e3a5f, #0f2640);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.wfisms-feature-icon svg { width: 26px; height: 26px; color: #ffffff; }
.wfisms-feature-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--gray-100); margin-bottom: 8px; }
.wfisms-feature-card p { font-size: 0.9rem; color: var(--gray-400); line-height: 1.6; }

/* Screenshot section */
.wfisms-screenshot-section {
    padding: 80px 0;
    background: var(--gray-950);
}

.wfisms-screenshot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 992px) { .wfisms-screenshot-grid { grid-template-columns: 1fr; gap: 40px; } }

.wfisms-screenshot-content p {
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 20px;
}

.wfisms-check-list { list-style: none; padding: 0; }
.wfisms-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--gray-300);
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-800);
}
.wfisms-check-list li:last-child { border-bottom: none; }
.wfisms-check-list li svg { width: 20px; height: 20px; color: #10b981; flex-shrink: 0; }

.wfisms-screenshot-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* NIS2 */
.wfisms-nis2 {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.3), rgba(15, 38, 64, 0.5));
}

.wfisms-nis2-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.wfisms-nis2-content p {
    font-size: 1.1rem;
    color: var(--gray-300);
    line-height: 1.7;
}

/* CTA */
.wfisms-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--wf-blue-dark) 0%, var(--gray-950) 100%);
}

.wfisms-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.wfisms-cta-content h2 { font-size: 2.5rem; font-weight: 800; color: var(--gray-100); margin-bottom: 16px; }
.wfisms-cta-content p { font-size: 1.15rem; color: var(--gray-300); margin-bottom: 32px; line-height: 1.6; }

.wfisms-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.wfisms-cta-buttons .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.wfisms-cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* ========================================
   LIGHT MODE
   ======================================== */
html[data-theme="light"] .wfisms-hero-badge,
html:not([data-theme]) .wfisms-hero-badge { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.1); }
html[data-theme="light"] .wfisms-hero-badge span,
html:not([data-theme]) .wfisms-hero-badge span { color: var(--gray-700); }
html[data-theme="light"] .wfisms-badge-item,
html:not([data-theme]) .wfisms-badge-item { background: rgba(0,0,0,0.05); color: var(--gray-700); }

html[data-theme="light"] .wfisms-overview,
html:not([data-theme]) .wfisms-overview { background: #ffffff; }
html[data-theme="light"] .wfisms-overview-lead,
html:not([data-theme]) .wfisms-overview-lead { color: var(--gray-800); }
html[data-theme="light"] .wfisms-overview-content p,
html:not([data-theme]) .wfisms-overview-content p { color: var(--gray-600); }
html[data-theme="light"] .wfisms-overview-stats,
html:not([data-theme]) .wfisms-overview-stats { border-top-color: #e5e7eb; }
html[data-theme="light"] .wfisms-stat-number,
html:not([data-theme]) .wfisms-stat-number { color: var(--wf-blue-dark); }

html[data-theme="light"] .wfisms-features,
html:not([data-theme]) .wfisms-features { background: #f5f8fc; }
html[data-theme="light"] .wfisms-feature-card,
html:not([data-theme]) .wfisms-feature-card { background: #ffffff; border-color: #e5e7eb; }
html[data-theme="light"] .wfisms-feature-card h3,
html:not([data-theme]) .wfisms-feature-card h3 { color: var(--gray-900); }
html[data-theme="light"] .wfisms-feature-card p,
html:not([data-theme]) .wfisms-feature-card p { color: var(--gray-600); }

html[data-theme="light"] .wfisms-screenshot-section,
html:not([data-theme]) .wfisms-screenshot-section { background: #ffffff; }
html[data-theme="light"] .wfisms-screenshot-content p,
html:not([data-theme]) .wfisms-screenshot-content p { color: var(--gray-600); }
html[data-theme="light"] .wfisms-check-list li,
html:not([data-theme]) .wfisms-check-list li { color: var(--gray-700); border-bottom-color: #e5e7eb; }

html[data-theme="light"] .wfisms-nis2,
html:not([data-theme]) .wfisms-nis2 { background: linear-gradient(135deg, rgba(30,58,95,0.08), rgba(15,38,64,0.05)); }
html[data-theme="light"] .wfisms-nis2-content p,
html:not([data-theme]) .wfisms-nis2-content p { color: var(--gray-700); }

html[data-theme="light"] .wfisms-cta,
html:not([data-theme]) .wfisms-cta { background: linear-gradient(135deg, var(--wf-blue-dark) 0%, #1e40af 100%); }
html[data-theme="light"] .wfisms-cta-content h2,
html:not([data-theme]) .wfisms-cta-content h2 { color: #ffffff; }
html[data-theme="light"] .wfisms-cta-content p,
html:not([data-theme]) .wfisms-cta-content p { color: rgba(255,255,255,0.9); }
