/* SecureCRT Security & Compliance Training Design */
:root {
    --shield-green: #059669;
    --shield-bg: #ffffff;
    --shield-surface: #f9fafb;
    --shield-border: #e5e7eb;
    --shield-text: #374151;
    --shield-heading: #111827;
    --shield-accent: #10b981;
    --shield-font: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--shield-bg);
    color: var(--shield-text);
    font-family: var(--shield-font);
    line-height: 1.6;
}

.trust-header {
    background: #fff;
    border-bottom: 1px solid var(--shield-border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.max-width {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.hero-security {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #f0fdf4, #fff);
    text-align: center;
}

.hero-security h1 {
    font-size: 3.5rem;
    color: var(--shield-heading);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-security p {
    font-size: 1.25rem;
    max-width: 750px;
    margin: 0 auto;
    color: var(--shield-text);
}

.shield-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #d1fae5;
    color: var(--shield-green);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.audit-timeline {
    padding: 6rem 0;
    position: relative;
}

.audit-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--shield-border);
    margin-left: -1px;
}

.timeline-point {
    margin-bottom: 6rem;
    position: relative;
    width: 50%;
    padding: 0 4rem;
}

.timeline-point:nth-child(even) {
    margin-left: 50%;
}

.timeline-point::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--shield-green);
    border: 4px solid #fff;
    border-radius: 50%;
    top: 0;
}

.timeline-point:nth-child(odd)::after {
    right: -10px;
}

.timeline-point:nth-child(even)::after {
    left: -10px;
}

.point-card {
    background: var(--shield-surface);
    padding: 2.5rem;
    border: 1px solid var(--shield-border);
    border-radius: 16px;
}

.point-card h3 {
    color: var(--shield-heading);
    margin-bottom: 1rem;
}

.compliance-check {
    margin-top: 8rem;
    background: var(--shield-heading);
    color: #fff;
    padding: 5rem;
    border-radius: 32px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s;
}

.check-item:hover {
    background: rgba(255,255,255,0.1);
}

.check-box {
    width: 24px;
    height: 24px;
    border: 2px solid var(--shield-accent);
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-box.active {
    background: var(--shield-accent);
}

.check-box.active::after {
    content: '✓';
    color: #fff;
    font-size: 14px;
}

.info-cluster {
    padding: 8rem 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.cluster-unit h4 {
    margin-bottom: 1rem;
    color: var(--shield-heading);
}

.btn-shield {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--shield-green);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: filter 0.3s;
}

.btn-shield:hover {
    filter: brightness(1.1);
}

.footer-secure {
    background: var(--shield-surface);
    border-top: 1px solid var(--shield-border);
    padding: 6rem 0;
}

.cookie-secure {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid var(--shield-green);
    padding: 1.5rem;
    z-index: 2000;
    display: none;
}

@media (max-width: 800px) {
    .audit-timeline::before {
        left: 2rem;
    }
    .timeline-point {
        width: 100%;
        margin-left: 0 !important;
        padding-left: 5rem;
        padding-right: 0;
    }
    .timeline-point::after {
        left: 1.4rem !important;
    }
    .info-cluster {
        grid-template-columns: 1fr;
    }
}
