:root {
    --ss-blue: #0047bb;
    --ss-bg-gray: #f4f7fa;
    --ss-border: #e2e8f0;
    --ss-text: #334155;
    --ss-accent: #0ea5e9;
}

.securitysuite-page {
    font-family: 'Inter', sans-serif;
    color: var(--ss-text);
}

/* HERO */
.ss-hero {
    text-align: center;
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--ss-border);
}

.ss-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    margin-bottom: 10px;
    color: #0f172a;
}

.ss-hero .lead {
    font-size: 1.2rem;
    color: #475569;
}

.ss-hero-note {
    margin-top: 16px;
    font-size: 0.95rem;
    color: #64748b;
}

/* HERO badges */
.ss-badges {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.ss-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--ss-bg-gray);
    border: 1px solid var(--ss-border);
    font-size: 0.85rem;
    color: #475569;
    opacity: 0;
    transform: translateY(6px) scale(0.97);
    animation: ssBadgePop 0.45s ease forwards;
}

.ss-badge i {
    color: var(--ss-blue);
    font-size: 0.95rem;
}

.ss-badge:nth-child(1) { animation-delay: 0.05s; }
.ss-badge:nth-child(2) { animation-delay: 0.15s; }
.ss-badge:nth-child(3) { animation-delay: 0.25s; }

@keyframes ssBadgePop {
    0% { opacity: 0; transform: translateY(8px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* GRID – modul kártyák */
.ss-section {
    padding: 60px 0;
    background: #fff;
}

.ss-section.alt {
    background: #f9fafb;
}

.ss-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
    color: #0f172a;
}

.ss-section-sub {
    text-align: center;
    color: #64748b;
    margin-bottom: 40px;
    font-size: 0.98rem;
}

.ss-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.ss-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px;
    border: 1px solid var(--ss-border);
    text-align: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    transition: 0.25s ease;
}

.ss-card:hover {
    border-color: var(--ss-blue);
    box-shadow: 0 16px 36px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.ss-icon {
    font-size: 38px;
    color: var(--ss-blue);
    margin-bottom: 14px;
}

.ss-card h3,
.ss-card h4 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.ss-card p {
    font-size: 0.95rem;
    color: #64748b;
}

.ss-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: 0.2s ease;
}

.ss-btn-primary {
    background: #ffffff;
    color: #1d4ed8;
    box-shadow: 0 12px 26px rgba(15,23,42,0.35);
}

.ss-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(15,23,42,0.5);
}

.ss-btn-secondary {
    border: 1px solid rgba(255,255,255,0.7);
    color: #e0f2fe;
    background: transparent;
}

.ss-btn-secondary:hover {
    background: rgba(15,23,42,0.18);
}

/* ÖSSZEHASONLÍTÓ TÁBLÁZAT */
.ss-compare {
    padding: 60px 0;
    background: #fff;
}

.ss-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.ss-compare-table thead th {
    padding: 12px 10px;
    border-bottom: 2px solid var(--ss-border);
    text-align: left;
    font-weight: 700;
    color: #0f172a;
}

.ss-compare-table tbody td {
    padding: 10px 10px;
    border-bottom: 1px solid var(--ss-border);
    color: #475569;
}

.ss-compare-table tbody tr:nth-child(even) {
    background: #f9fafb;
}

.ss-compare-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    background: var(--ss-bg-gray);
    color: #0f172a;
}

.ss-compare-badge i {
    color: var(--ss-blue);
}

/* SVG illusztráció wrapper */
.ss-illus {
    max-width: 260px;
    margin: 0 auto 18px;
}

.ss-illus svg {
    width: 100%;
    height: auto;
}

/* Animáció helper */
.md-animate,
.md-animate-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.md-animate-up {
    animation-duration: 0.7s;
}

.md-delay-1 { animation-delay: 0.1s; }
.md-delay-2 { animation-delay: 0.2s; }
.md-delay-3 { animation-delay: 0.3s; }
.md-delay-4 { animation-delay: 0.4s; }

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

/* Mobil finomhangolás */
@media (max-width: 480px) {
    .ss-card {
        padding: 20px;
    }
}

/* FAQ – Object Storage stílus */
.faq-accordion .card {
    border: none;
    border-bottom: 1px solid var(--ss-border);
    border-radius: 0;
    margin-bottom: 0;
    background: transparent;
}

.faq-accordion .card-header {
    background: transparent;
    border: none;
    padding: 14px 0;
}

.faq-accordion .btn-link {
    width: 100%;
    text-align: left;
    color: #0f172a;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    transition: 0.25s ease;
}

.faq-accordion .btn-link:hover {
    color: var(--ss-blue);
}

.faq-accordion .btn-link:after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    transition: 0.25s ease;
}

.faq-accordion .btn-link[aria-expanded="true"]:after {
    transform: rotate(180deg);
}

.faq-accordion .card-body {
    padding: 0 0 16px 0;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}