/**
 * ComputerBackup.nl - Main Styling
 * Definitieve versie
 */

:root {
    --brand-blue: #002D72;
    --brand-blue-dark: #001A42;
    --brand-text: #1e293b;
    --brand-bg: #F8FAFC;
    --action-green: #28A745;
    --action-green-dark: #1e7e34;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --radius: 8px;
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--brand-bg);
    color: #475569;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    color: var(--brand-text);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: 3rem; letter-spacing: -0.02em; }
h2 { font-size: 2.25rem; letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }

p { margin-bottom: 1.5rem; max-width: 65ch; }

a { text-decoration: none; color: inherit; transition: 0.2s; }
ul { list-style: none; }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

/* --- UTILITIES --- */
.text-center { text-align: center; }
.section-padding { padding: 80px 0; }
i { vertical-align: middle; position: relative; top: -1px; }

/* --- BUTTONS --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 24px; font-weight: 600; border-radius: var(--radius);
    transition: all 0.2s ease; cursor: pointer; gap: 8px; font-size: 1rem;
    border: none;
}

.btn-green {
    background-color: var(--action-green); color: white; border: 2px solid var(--action-green);
}
.btn-green:hover {
    background-color: var(--action-green-dark); border-color: var(--action-green-dark);
    transform: translateY(-2px); color: white;
}

.btn-white {
    background: white; color: var(--brand-blue); border: 2px solid white;
}
.btn-white:hover {
    background: #f1f5f9; border-color: #f1f5f9; color: var(--brand-blue);
}

.btn-outline {
    background: rgba(255,255,255,0.1); color: white; border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.2); border-color: white; color: white;
}

.btn-outline-dark {
    background: transparent; color: var(--brand-text); border: 2px solid var(--border-color);
}
.btn-outline-dark:hover {
    border-color: var(--brand-blue); color: var(--brand-blue);
}

.btn-full { width: 100%; }

/* ================================
   HEADER & NAVIGATION
   ================================ */
.site-header {
    background: linear-gradient(135deg, #002D72 0%, #001A42 100%);
    color: white;
    position: relative;
}

.top-nav {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}
.logo:hover { color: white; }
.logo i { color: var(--action-green); }
.logo span { font-weight: 400; opacity: 0.7; }

.main-menu {
    display: flex;
    gap: 30px;
}
.main-menu a {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 0.95rem;
}
.main-menu a:hover {
    color: white;
}

/* ================================
   HERO SECTION
   ================================ */
.hero-wrapper {
    padding: 60px 0 100px 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    color: white;
    margin-bottom: 20px;
}

.hero-text > p {
    color: #cbd5e1;
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.trust-row {
    display: flex;
    gap: 25px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 500;
}
.trust-row span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.trust-row i {
    color: var(--action-green);
}

/* Hero Visual - Dashboard Card */
.hero-visual {
    position: relative;
}

.dashboard-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.card-header {
    background: #1e293b;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 500;
}

.card-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.card-header .dot.green {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    100% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.card-body {
    padding: 20px;
    position: relative;
    min-height: 200px;
}

.status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.status-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #22c55e;
    font-weight: 600;
    font-size: 0.9rem;
}
.status-label i {
    font-size: 1.2rem;
}

.status-time {
    color: #94a3b8;
    font-size: 0.8rem;
}

.file-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #334155;
}
.file-item i {
    font-size: 1.1rem;
}
.file-item span {
    margin-left: auto;
    font-size: 0.75rem;
    color: #94a3b8;
}

.file-item.done i { color: #22c55e; }
.file-item.active i { color: #3b82f6; animation: spin 1s linear infinite; }
.file-item.waiting { opacity: 0.6; }

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.file-item .progress-bar {
    width: 80px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
}
.file-item .progress-bar .fill {
    height: 100%;
    width: 60%;
    background: var(--action-green);
    animation: fillProgress 2s ease-out infinite;
}

@keyframes fillProgress {
    0% { width: 10%; }
    100% { width: 100%; }
}

.scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    animation: scanline 3s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% { top: 0; opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* ================================
   USP BAR
   ================================ */
.usp-bar {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.usp-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.usp-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--brand-blue);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.usp-item strong {
    display: block;
    color: var(--brand-text);
    font-size: 1.05rem;
    margin-bottom: 4px;
}
.usp-item span {
    color: #64748b;
    font-size: 0.9rem;
}

/* ================================
   M365 SECTION
   ================================ */
.m365-section {
    background: white;
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.m365-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.m365-text .label {
    display: inline-block;
    background: #e0f2fe;
    color: var(--brand-blue);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.m365-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.m365-text p {
    color: #64748b;
    margin-bottom: 25px;
}

.m365-highlight {
    background: #f0fdf4;
    border-left: 4px solid var(--action-green);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    color: #166534;
    font-size: 0.95rem;
}

.m365-visual {
    background: #f0f9ff;
    border-radius: 16px;
    padding: 60px;
    text-align: center;
    border: 1px solid #bae6fd;
}
.m365-visual i {
    font-size: 8rem;
    color: #0ea5e9;
}

/* ================================
   SPECS SECTION
   ================================ */
.specs-section {
    background: var(--brand-bg);
    padding: 80px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 50px;
}
.section-head h2 {
    margin-bottom: 10px;
}
.section-head p {
    color: #64748b;
    font-size: 1.1rem;
    margin: 0 auto;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.spec-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.2s;
}
.spec-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}
.spec-card i {
    font-size: 2.5rem;
    color: var(--brand-blue);
    margin-bottom: 20px;
    display: block;
}
.spec-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.spec-card p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* ================================
   STEPS SECTION
   ================================ */
.steps-section {
    background: var(--brand-bg);
    padding: 40px 0 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-blue);
}

.step-num {
    position: absolute;
    top: -20px;
    right: 15px;
    font-size: 6rem;
    font-weight: 900;
    color: #f1f5f9;
    line-height: 1;
    z-index: 0;
}

.step-card i {
    font-size: 3rem;
    color: var(--brand-blue);
    margin-bottom: 20px;
    display: block;
    position: relative;
    z-index: 1;
}
.step-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}
.step-card p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ================================
   REVIEWS SECTION
   ================================ */
.reviews-section {
    background: white;
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
}

.stars {
    color: #f59e0b;
    margin-bottom: 15px;
    font-size: 1rem;
}

.review-card > p {
    font-style: italic;
    color: var(--brand-text);
    font-size: 1rem;
    line-height: 1.7;
}

.review-author {
    margin-top: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #64748b;
}

/* ================================
   PRICING SECTION
   ================================ */
.pricing-section {
    background: white;
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.price-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
}
.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.price-card.popular {
    border: 2px solid var(--brand-blue);
    box-shadow: 0 10px 40px -10px rgba(0, 45, 114, 0.2);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-blue);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.plan-name {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-text);
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-text);
    margin-bottom: 25px;
}
.price span {
    font-size: 1rem;
    font-weight: 500;
    color: #94a3b8;
}

.price-card ul {
    flex-grow: 1;
    margin-bottom: 25px;
}
.price-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}
.price-card ul li i {
    color: var(--action-green);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.price-card ul li.muted {
    color: #cbd5e1;
}
.price-card ul li.muted i {
    color: #cbd5e1;
}

.price-card.popular ul li i {
    color: var(--brand-blue);
}

.card-note {
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #64748b;
}
.pricing-note a {
    color: var(--brand-blue);
    font-weight: 600;
}
.pricing-note a:hover {
    text-decoration: underline;
}

/* ================================
   HYBRID BLOCK
   ================================ */
.hybrid-block {
    background: var(--brand-blue-dark);
    color: white;
}

.hybrid-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.hybrid-text .label {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hybrid-text h2 {
    color: white;
    margin-bottom: 20px;
}

.hybrid-text p {
    color: #94a3b8;
    margin-bottom: 30px;
}

.hybrid-icon {
    text-align: center;
}
.hybrid-icon i {
    font-size: 8rem;
    color: #4ade80;
    opacity: 0.8;
}

/* ================================
   FAQ SECTION
   ================================ */
.faq-section {
    background: var(--brand-bg);
    padding: 80px 0;
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 40px;
}

details {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

summary {
    padding: 20px 50px 20px 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
    color: var(--brand-text);
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--brand-blue);
    font-weight: 400;
}

details[open] summary::after {
    content: '−';
}

details p {
    padding: 0 20px 20px 20px;
    color: #64748b;
    margin: 0;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

/* ================================
   FOOTER
   ================================ */
.site-footer {
    background: white;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px 0;
    color: #64748b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 15px;
}
.footer-logo i {
    color: var(--brand-blue);
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf4;
    color: #166534;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}
.partner-badge i {
    color: #22c55e;
}

.footer-col h4 {
    color: var(--brand-text);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    padding: 0;
}
.footer-col li {
    margin-bottom: 12px;
}
.footer-col a {
    color: #64748b;
    font-size: 0.9rem;
}
.footer-col a:hover {
    color: var(--brand-blue);
}

.footer-bottom {
    border-top: 1px solid #f1f5f9;
    padding-top: 25px;
    text-align: center;
    font-size: 0.85rem;
}
.footer-bottom a {
    color: #64748b;
}
.footer-bottom a:hover {
    color: var(--brand-blue);
}

/* ================================
   SIMPLE HEADER (inner pages)
   ================================ */
.site-header--simple {
    padding-bottom: 0;
}
.site-header--simple .top-nav {
    border-bottom: none;
}

/* ================================
   PAGE HEADER (inner pages)
   ================================ */
.page-header {
    background: linear-gradient(135deg, #002D72 0%, #001A42 100%);
    color: white;
    padding: 80px 0 60px 0;
    text-align: center;
}
.page-header h1 {
    color: white;
    font-size: 2.75rem;
    margin-bottom: 15px;
}
.page-header__sub {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}
.page-header--warning {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
}

/* ================================
   CONTENT SECTIONS (inner pages)
   ================================ */
.content-section {
    padding: 80px 0;
}
.content-section--alt {
    background: #f1f5f9;
}
.content-section--white {
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    margin-bottom: 10px;
}
.section-header p {
    color: #64748b;
    font-size: 1.1rem;
    margin: 0 auto;
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.two-col--reverse {
    direction: rtl;
}
.two-col--reverse > * {
    direction: ltr;
}
.two-col__content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Check List */
.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
}
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
}
.check-list i {
    color: var(--action-green);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Warning Box */
.warning-box {
    background: #fff5f5;
    border-left: 4px solid #e53e3e;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 25px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.warning-box i {
    font-size: 1.5rem;
    color: #e53e3e;
    flex-shrink: 0;
}
.warning-box strong {
    display: block;
    color: #c53030;
    margin-bottom: 4px;
}
.warning-box span {
    color: #c53030;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Visual Box */
.visual-box {
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    border-radius: 16px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.visual-box i {
    font-size: 8rem;
    color: var(--brand-blue);
}
.visual-box--danger {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}
.visual-box--danger i {
    color: #dc2626;
}

/* Attack Timeline */
.attack-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.attack-step {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.attack-step__num {
    width: 40px;
    height: 40px;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 15px auto;
}
.attack-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.attack-step p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Protection Layers */
.protection-layers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.protection-layer {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.protection-layer__icon {
    width: 60px;
    height: 60px;
    background: #e0f2fe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.protection-layer__icon i {
    font-size: 1.5rem;
    color: var(--brand-blue);
}
.protection-layer__content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.protection-layer__content p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background: var(--brand-bg);
}
.guarantee-box {
    background: linear-gradient(135deg, #002D72 0%, #001A42 100%);
    color: white;
    padding: 60px;
    border-radius: 16px;
    text-align: center;
}
.guarantee-box i {
    font-size: 4rem;
    color: var(--action-green);
    margin-bottom: 20px;
}
.guarantee-box h2 {
    color: white;
    margin-bottom: 15px;
}
.guarantee-box p {
    color: #cbd5e1;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 30px auto;
}

/* Page CTA */
.page-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #002D72 0%, #001A42 100%);
}
.page-cta__box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.page-cta__box h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}
.page-cta__box p {
    color: #e2e8f0;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ================================
   KENNISBANK
   ================================ */
.kennisbank-section {
    padding: 60px 0 80px 0;
}
.kb-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 50px;
}
.kb-filter__item {
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}
.kb-filter__item:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}
.kb-filter__item.active {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: white;
}
.kb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.kb-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}
.kb-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.kb-card__image {
    display: block;
    height: 180px;
    overflow: hidden;
}
.kb-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.kb-card:hover .kb-card__image img {
    transform: scale(1.05);
}
.kb-card__content {
    padding: 25px;
}
.kb-card__cat {
    display: inline-block;
    background: #e0f2fe;
    color: var(--brand-blue);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.kb-card__title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    line-height: 1.3;
}
.kb-card__title a {
    color: var(--brand-text);
}
.kb-card__title a:hover {
    color: var(--brand-blue);
}
.kb-card__excerpt {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 15px;
}
.kb-card__meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #94a3b8;
}
.kb-card__meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.kb-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 5px;
}
.kb-pagination a,
.kb-pagination span {
    padding: 10px 15px;
    border-radius: 8px;
    color: #64748b;
    font-weight: 500;
}
.kb-pagination a:hover {
    background: #e2e8f0;
}
.kb-pagination .current {
    background: var(--brand-blue);
    color: white;
}
.kb-empty {
    text-align: center;
    padding: 80px 20px;
}
.kb-empty i {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 20px;
}
.kb-empty h3 {
    color: #64748b;
    margin-bottom: 10px;
}
.kb-empty p {
    color: #94a3b8;
}

/* ================================
   CONTACT PAGE
   ================================ */
.contact-section {
    padding: 60px 0 80px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}
.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
}
.contact-info > p {
    color: #64748b;
    margin-bottom: 30px;
}
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}
.contact-method {
    display: flex;
    gap: 20px;
}
.contact-method__icon {
    width: 60px;
    height: 60px;
    background: #e0f2fe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-method__icon i {
    font-size: 1.5rem;
    color: var(--brand-blue);
}
.contact-method__content h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}
.contact-method__content p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-text);
    margin-bottom: 2px;
}
.contact-method__content a {
    color: var(--brand-text);
}
.contact-method__content a:hover {
    color: var(--brand-blue);
}
.contact-method__content span {
    font-size: 0.85rem;
    color: #94a3b8;
}
.contact-support {
    background: #f1f5f9;
    padding: 25px;
    border-radius: 12px;
}
.contact-support h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-support h3 i {
    color: var(--brand-blue);
}
.contact-support p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 20px;
}
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--brand-text);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(0, 45, 114, 0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-group--checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}
.form-group--checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}
.form-group--checkbox span {
    font-size: 0.9rem;
    color: #64748b;
}
.form-group--checkbox a {
    color: var(--brand-blue);
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .attack-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }

    .nav-inner {
        flex-direction: column;
        gap: 20px;
    }
    .main-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-btns {
        justify-content: center;
    }
    .trust-row {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-visual {
        display: none;
    }

    .usp-grid {
        grid-template-columns: 1fr;
    }

    .m365-inner {
        grid-template-columns: 1fr;
    }
    .m365-visual {
        order: -1;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .hybrid-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .two-col--reverse {
        direction: ltr;
    }

    .attack-timeline {
        grid-template-columns: 1fr;
    }

    .protection-layers {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 30px;
    }

    .kb-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

/* WordPress admin bar fix */
.admin-bar .site-header {
    margin-top: 0;
}
