/*
 Theme Name:   CyberGuard Child
 Description:  Child Theme for CySafe - custom single blog layout.
 Author:       CySafe Security Solutions
 Template:     cyberguard
 Version:      1.1.0
*/

/* Core Blog Layout Styling */
.cysafe-blog-hero {
    background: linear-gradient(135deg, #0A1220 0%, #0F172A 100%);
    color: #ffffff;
    padding: 70px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.cysafe-blog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(21, 201, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(47, 125, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cysafe-blog-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cysafe-category-badge {
    display: inline-block;
    background: rgba(21, 201, 255, 0.1);
    border: 1px solid rgba(21, 201, 255, 0.2);
    color: #15C9FF;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 4px 12px;
    border-radius: 50px;
    align-self: flex-start;
}

.cysafe-blog-date {
    font-size: 13px;
    color: #94A3B8;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cysafe-blog-title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin: 10px 0 0;
}

.cysafe-blog-main-grid {
    background-color: #ffffff;
    padding: 60px 0;
}

.cysafe-blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Article Styling */
.cysafe-article-content {
    color: #334155;
    font-size: 16px;
    line-height: 1.75;
}

.cysafe-article-content p {
    margin-bottom: 24px;
}

.cysafe-article-content .cysafe-intro-p {
    font-size: 18px;
    line-height: 1.8;
    color: #1E293B;
    font-weight: 500;
}

.cysafe-article-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
    margin-top: 40px;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    scroll-margin-top: 110px;
}

.cysafe-article-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    margin-top: 30px;
    margin-bottom: 12px;
}

.cysafe-article-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}

.cysafe-article-content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.cysafe-article-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2F7DFF;
    font-weight: 800;
}

/* Custom styled boxes inside article */
.cysafe-info-box {
    background-color: #F8FAFC;
    border-left: 4px solid #2F7DFF;
    border-radius: 0 8px 8px 0;
    padding: 20px;
    margin: 30px 0;
}

.cysafe-example-box {
    background-color: #0F172A;
    color: #E2E8F0;
    border-radius: 8px;
    padding: 16px 20px;
    font-family: monospace;
    font-size: 13px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    word-break: break-all;
}

.cysafe-example-box span.cysafe-highlight-danger {
    color: #F87171;
    font-weight: bold;
}

.cysafe-indicator-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.cysafe-indicator-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.cysafe-indicator-card-title {
    font-weight: 700;
    color: #0F172A;
    font-size: 14px;
    margin-top: 8px;
}

/* Inline CTA inside article */
.cysafe-inline-cta {
    background: linear-gradient(135deg, #0A1220 0%, #0F172A 100%);
    color: #ffffff;
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.cysafe-inline-cta-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
}

.cysafe-inline-cta-desc {
    font-size: 14px;
    color: #94A3B8;
    max-width: 500px;
    margin: 0 auto 20px;
    line-height: 1.5;
}

.cysafe-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #2F7DFF;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(47, 125, 255, 0.25);
}

.cysafe-cta-btn:hover {
    background-color: #1D64DB;
    transform: translateY(-1px);
}

/* Sidebar Styling */
.cysafe-sidebar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cysafe-sidebar-card {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 24px;
}

.cysafe-sidebar-card-title {
    font-size: 16px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 16px;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Dynamic table of contents generated from the article H2 headings. */
.cysafe-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: cysafe-toc;
}

.cysafe-toc-list li {
    counter-increment: cysafe-toc;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 0 0 12px;
}

.cysafe-toc-list li:last-child {
    margin-bottom: 0;
}

.cysafe-toc-list li::before {
    content: counter(cysafe-toc);
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: rgba(47, 125, 255, 0.1);
    color: #2F7DFF;
    display: grid;
    place-items: center;
    flex: 0 0 28px;
    font-size: 12px;
    font-weight: 800;
}

.cysafe-toc-list a {
    color: #334155;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.4;
    text-decoration: none;
    padding-top: 5px;
}

.cysafe-toc-list a:hover,
.cysafe-toc-list a:focus-visible {
    color: #2F7DFF;
}

.cysafe-toc-card[hidden] {
    display: none !important;
}

@media (max-width: 991px) {
    .cysafe-blog-hero {
        padding: 48px 0 44px;
    }

    .cysafe-blog-main-grid {
        padding: 42px 0;
    }

    .cysafe-sidebar-wrapper {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .cysafe-blog-title {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }

    .cysafe-article-content {
        font-size: 15px;
        line-height: 1.7;
    }

    .cysafe-article-content h2 {
        font-size: 22px;
        margin-top: 34px;
    }

    .cysafe-inline-cta {
        padding: 24px 18px;
        border-radius: 12px;
    }

    .cysafe-archive-hero-ctas {
        flex-direction: column;
    }
}

.cysafe-sidebar-indicator-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.cysafe-sidebar-indicator-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: rgba(47, 125, 255, 0.1);
    color: #2F7DFF;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-weight: 700;
}

.cysafe-sidebar-indicator-content h5 {
    font-size: 14px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 4px;
}

.cysafe-sidebar-indicator-content p {
    font-size: 12px;
    color: #64748B;
    margin: 0;
    line-height: 1.4;
}

/* Related Posts Widget */
.cysafe-related-post-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: center;
}

.cysafe-related-post-thumb {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #E2E8F0;
}

.cysafe-related-post-info h5 {
    font-size: 13px;
    font-weight: 600;
    color: #1E293B;
    margin: 0 0 4px;
    line-height: 1.4;
}

.cysafe-related-post-info h5 a {
    color: #1E293B;
    text-decoration: none;
}

.cysafe-related-post-info h5 a:hover {
    color: #2F7DFF;
}

.cysafe-related-post-meta {
    font-size: 11px;
    color: #64748B;
}

/* Sidebar CTA Card */
.cysafe-sidebar-cta {
    background: linear-gradient(135deg, #0A1220 0%, #0F172A 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cysafe-sidebar-cta .cysafe-sidebar-card-title {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.cysafe-sidebar-cta p {
    font-size: 13px;
    color: #94A3B8;
    line-height: 1.5;
    margin-bottom: 20px;
}

.cysafe-sidebar-cta .cysafe-cta-btn {
    width: 100%;
    justify-content: center;
}

/* Custom Header Styling */
.cysafe-dark-header {
    background-color: #0b1120;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 15px 0;
    font-family: 'Inter', sans-serif;
}

.cysafe-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cysafe-header-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.cysafe-header-nav-desktop {
    display: block;
}

.cysafe-menu-desktop {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.cysafe-menu-desktop > li {
    position: relative;
}

.cysafe-menu-desktop > li > a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cysafe-menu-desktop > li > a:hover {
    color: #15C9FF;
}

.cysafe-menu-desktop > li > a .arrow {
    font-size: 8px;
}

/* Submenu dropdown desktop */
.cysafe-sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0F172A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    list-style: none;
    padding: 10px 0;
    margin: 10px 0 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 100;
}

.cysafe-menu-desktop > li:hover .cysafe-sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cysafe-sub-menu li a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 13px;
    padding: 10px 20px;
    display: block;
    transition: all 0.2s ease;
}

.cysafe-sub-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #15C9FF;
}

/* Header CTAs */
.cysafe-header-ctas-desktop {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cysafe-btn-emergency {
    border: 1px solid #EF4444;
    color: #EF4444 !important;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cysafe-btn-emergency:hover {
    background-color: rgba(239, 68, 68, 0.1);
}

.cysafe-btn-freecheck {
    background-color: #2F7DFF;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(47, 125, 255, 0.2);
    transition: all 0.2s ease;
}

.cysafe-btn-freecheck:hover {
    background-color: #1D64DB;
}

/* Hamburger button */
.cysafe-hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.cysafe-hamburger-btn span {
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* Mobile Drawer */
.cysafe-mobile-drawer {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    width: 100%;
    height: calc(100vh - 66px);
    background-color: #0b1120;
    z-index: 998;
    padding: 30px 15px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cysafe-mobile-drawer.active {
    transform: translateX(0);
}

.cysafe-menu-mobile {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cysafe-menu-mobile li a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cysafe-sub-menu-mobile {
    list-style: none;
    padding-left: 15px;
    margin-top: 10px;
    display: none;
    flex-direction: column;
    gap: 12px;
}

.cysafe-sub-menu-mobile.active {
    display: flex;
}

.cysafe-sub-menu-mobile li a {
    font-size: 14px;
}

.cysafe-mobile-ctas {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cysafe-mobile-ctas a {
    text-align: center;
    padding: 12px;
}

/* Responsive navigation */
@media (max-width: 1024px) {
    .cysafe-header-nav-desktop,
    .cysafe-header-ctas-desktop {
        display: none;
    }
    .cysafe-hamburger-btn {
        display: flex;
    }
    .cysafe-mobile-drawer {
        display: block;
    }
}

/* Archive Hero Styling */
.cysafe-archive-hero {
    background: linear-gradient(135deg, #0A1220 0%, #0F172A 100%);
    color: #ffffff;
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.cysafe-archive-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(21, 201, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.cysafe-archive-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.cysafe-archive-hero-subtitle {
    font-size: 16px;
    color: #94A3B8;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.cysafe-archive-hero-ctas {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.cysafe-secondary-link {
    color: #15C9FF;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s ease;
}

.cysafe-secondary-link:hover {
    color: #00B4EB;
}

/* Categories filter row */
.cysafe-filter-section {
    padding: 30px 0;
    border-bottom: 1px solid #E2E8F0;
    background-color: #F8FAFC;
}

.cysafe-filter-row {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
}

.cysafe-filter-pills {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    white-space: nowrap;
}

.cysafe-filter-pills li a {
    display: inline-block;
    padding: 8px 18px;
    background-color: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 50px;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cysafe-filter-pills li.active a,
.cysafe-filter-pills li a:hover {
    background-color: #0F172A;
    color: #ffffff;
    border-color: #0F172A;
}

/* Featured Post Card */
.cysafe-blog-archive-content {
    background-color: #ffffff;
    padding: 60px 0;
}

.cysafe-featured-card {
    background-color: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px -15px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cysafe-featured-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -20px rgba(15, 23, 42, 0.1);
}

.cysafe-featured-thumb-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.cysafe-featured-thumb {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cysafe-featured-card:hover .cysafe-featured-thumb {
    transform: scale(1.03);
}

.cysafe-featured-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cysafe-featured-date {
    font-size: 12px;
    color: #64748B;
}

.cysafe-featured-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    line-height: 1.3;
    margin: 5px 0 0;
}

.cysafe-featured-title a {
    color: #0F172A;
    text-decoration: none;
}

.cysafe-featured-title a:hover {
    color: #2F7DFF;
}

.cysafe-featured-excerpt {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.cysafe-readmore-btn {
    align-self: flex-start;
    color: #2F7DFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.cysafe-readmore-btn:hover {
    transform: translateX(3px);
}

/* Grid Cards */
.cysafe-blog-grid {
    margin-bottom: 40px;
}

.cysafe-blog-card {
    background-color: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px -10px rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cysafe-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -10px rgba(15, 23, 42, 0.08);
}

.cysafe-card-thumb-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.cysafe-card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cysafe-blog-card:hover .cysafe-card-thumb {
    transform: scale(1.04);
}

.cysafe-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #0F172A;
    color: #15C9FF;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.cysafe-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.cysafe-card-date {
    font-size: 11px;
    color: #64748B;
}

.cysafe-card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.cysafe-card-title a {
    color: #0F172A;
    text-decoration: none;
}

.cysafe-card-title a:hover {
    color: #2F7DFF;
}

.cysafe-card-excerpt {
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.cysafe-card-readmore {
    margin-top: auto;
    font-size: 12px;
    font-weight: 700;
    color: #2F7DFF;
    text-decoration: none;
    align-self: flex-start;
}

/* Pagination */
.cysafe-pagination-wrap {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.cysafe-pagination-wrap .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #E2E8F0;
    background-color: #ffffff;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cysafe-pagination-wrap .page-numbers.current,
.cysafe-pagination-wrap .page-numbers:hover {
    background-color: #0F172A;
    color: #ffffff;
    border-color: #0F172A;
}

/* Bottom CTA section */
.cysafe-bottom-cta-section {
    background-color: #F8FAFC;
    padding: 80px 0;
    border-top: 1px solid #E2E8F0;
}

.cysafe-bottom-cta-box {
    max-width: 700px;
    margin: 0 auto;
}

.cysafe-bottom-cta-box h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.cysafe-bottom-cta-box p {
    color: #475569;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}



/* Admin-only warning when the CySafe widget shortcode is not registered */
.cysafe-check-admin-warning {
    max-width: 860px;
    margin: 80px auto;
    padding: 24px;
    border-radius: 14px;
    background: #fff7ed;
    color: #7c2d12;
    border: 1px solid #fed7aa;
    font-size: 15px;
    line-height: 1.6;
}
.cysafe-check-admin-warning code {
    background: rgba(124, 45, 18, 0.08);
    padding: 2px 6px;
    border-radius: 6px;
}


/* === CySafe unified global header/footer based on exported home.html === */
html { scroll-behavior: smooth; }
.cysafe-custom-body,
.cysafe-site,
.cysafe-main { margin: 0; padding: 0; width: 100%; font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
.cysafe-site ul,
.cysafe-site ol { margin: 0; padding: 0; list-style: none; }
.cysafe-site a { text-decoration: none; }
.cysafe-dark-header { background: rgba(15, 23, 42, 0.92) !important; backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,.10); position: sticky; top: 0; z-index: 9999; box-shadow: 0 10px 28px rgba(0,0,0,.14); }
.admin-bar .cysafe-dark-header { top: 32px; }
.cysafe-header-container { max-width: 1280px; min-height: 76px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.cysafe-logo-link { display: inline-flex; align-items: center; flex-shrink: 0; }
.cysafe-logo-img { display: block; width: auto; height: 48px; max-width: 188px; object-fit: contain; }
.cysafe-header-nav-desktop { display: block; flex: 1; min-width: 0; }
.cysafe-menu-desktop { display: flex !important; align-items: center; justify-content: center; gap: 22px; list-style: none !important; }
.cysafe-menu-desktop > li { position: relative; margin: 0 !important; padding: 0 !important; }
.cysafe-menu-desktop > li > a,
.cysafe-desktop-menu-trigger { color: #e5edf8 !important; display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 800; padding: 27px 0; transition: color .18s ease; background: transparent !important; border: 0 !important; line-height: 1; cursor: pointer; }
.cysafe-menu-desktop > li > a:hover,
.cysafe-desktop-menu-trigger:hover { color: #fff !important; }
.cysafe-sub-menu { position: absolute; top: calc(100% - 4px); left: 0; min-width: 300px; background: rgba(15,23,42,.98); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 10px !important; box-shadow: 0 24px 55px rgba(0,0,0,.38); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .18s ease; z-index: 10000; }
.cysafe-menu-item-has-children:hover > .cysafe-sub-menu,
.cysafe-menu-item-has-children:focus-within > .cysafe-sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.cysafe-sub-menu li a { display: block; color: #cbd5e1 !important; padding: 11px 12px; border-radius: 11px; font-size: 13px; font-weight: 750; line-height: 1.25; }
.cysafe-sub-menu li a:hover { color: #15C9FF !important; background: rgba(21,201,255,.09); }
.cysafe-header-ctas-desktop { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.cysafe-btn-emergency,
.cysafe-btn-freecheck { display: inline-flex; align-items: center; justify-content: center; white-space: nowrap; border-radius: 10px; font-size: 13px; font-weight: 900; padding: 12px 18px; min-height: 42px; }
.cysafe-btn-emergency { border: 1px solid #ef4444; color: #fecaca !important; background: rgba(239,68,68,.08); }
.cysafe-btn-freecheck { color: #fff !important; background: linear-gradient(135deg,#15C9FF,#2F7DFF); box-shadow: 0 10px 22px rgba(47,125,255,.25); }
.cysafe-hamburger-btn { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 0; }
.cysafe-hamburger-btn span { width: 20px; height: 2px; background: #fff; display: block; transition: transform .2s ease, opacity .2s ease; }
.cysafe-hamburger-btn.active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.cysafe-hamburger-btn.active span:nth-child(2){ opacity: 0; }
.cysafe-hamburger-btn.active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
.cysafe-mobile-drawer[hidden] { display: none !important; }
.cysafe-mobile-drawer { background: rgba(15,23,42,.99); border-top: 1px solid rgba(255,255,255,.08); padding: 18px 24px 22px; box-shadow: 0 22px 45px rgba(0,0,0,.32); }
.cysafe-menu-mobile { display: flex; flex-direction: column; gap: 8px; }
.cysafe-menu-mobile a,
.cysafe-toggle-submenu { width: 100%; display: flex; justify-content: space-between; align-items: center; background: transparent; border: 0; color: #e2e8f0 !important; font-size: 15px; font-weight: 850; padding: 12px; border-radius: 10px; text-align: left; }
.cysafe-menu-mobile a:hover,
.cysafe-toggle-submenu:hover { background: rgba(255,255,255,.06); }
.cysafe-sub-menu-mobile { display: none; padding: 0 0 8px 14px !important; }
.cysafe-sub-menu-mobile.active { display: block; }
.cysafe-sub-menu-mobile a { font-size: 14px; color: #94a3b8 !important; }
.cysafe-mobile-ctas { display: grid; gap: 10px; margin-top: 12px; }
.cysafe-wp-page-shell { background: #f8fafc; min-height: 50vh; }
.cysafe-wp-page-content { width: 100%; margin: 0; padding: 0; }
.cysafe-wp-page-content > header,
.cysafe-wp-page-content > footer { display: none !important; }
.cysafe-wp-page-content > :first-child { margin-top: 0 !important; }
.cysafe-footer { background: #0A1220; color: #94a3b8; border-top: 1px solid rgba(255,255,255,.05); padding: 64px 0 28px; }
.cysafe-footer-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.cysafe-footer-grid { display: grid; grid-template-columns: minmax(260px, 1.35fr) 1fr 1fr 1fr; gap: 44px; }
.cysafe-footer-logo { width: auto; height: 58px; max-width: 210px; object-fit: contain; display: block; }
.cysafe-footer h4 { color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; margin: 0 0 18px; }
.cysafe-footer p { color: #94a3b8; font-size: 14px; line-height: 1.7; margin: 16px 0 0; max-width: 360px; }
.cysafe-footer ul { list-style: none !important; margin: 0 !important; padding: 0 !important; display: grid; gap: 9px; }
.cysafe-footer li { margin: 0; padding: 0; color: #94a3b8; font-size: 14px; line-height: 1.55; }
.cysafe-footer a { color: #94a3b8 !important; font-size: 14px; font-weight: 650; }
.cysafe-footer a:hover,
.cysafe-footer .cysafe-footer-highlight { color: #15C9FF !important; }
.cysafe-footer .cysafe-footer-danger { color: #ff5a5f !important; }
.cysafe-footer-contact-title { margin-top: 24px !important; }
.cysafe-footer-contact a { color: #15C9FF !important; }
.cysafe-footer-bottom { border-top: 1px solid rgba(255,255,255,.06); margin-top: 54px; padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.cysafe-footer-bottom p { margin: 0; font-size: 12px; color: #64748b; }
.cysafe-footer-bottom div { display: flex; gap: 18px; }
.cysafe-footer-bottom a { font-size: 12px; color: #64748b !important; }
@media (max-width: 1180px){ .cysafe-header-nav-desktop, .cysafe-header-ctas-desktop { display: none !important; } .cysafe-hamburger-btn { display: inline-flex !important; } .cysafe-header-container { min-height: 68px; } .cysafe-logo-img { height: 44px; } }
@media (max-width: 820px){ .admin-bar .cysafe-dark-header { top: 46px; } .cysafe-footer-grid { grid-template-columns: 1fr; gap: 28px; } .cysafe-footer-bottom { flex-direction: column; align-items: flex-start; } .cysafe-footer-logo { height: 52px; } }
