/* ================================
   Security Page Styles
   ================================ */

/* Hero Section */
.security-hero {
    padding: 8rem 2rem 6rem;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.95)), url('images/pricing-hero-universe.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.security-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(187, 153, 84, 0.1);
    /* Gold tint for security */
    color: #bb9954;
    border: 1px solid rgba(187, 153, 84, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.security-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
}

.security-hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Trust Grid (3-Col) */
.trust-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trust-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.trust-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.trust-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.trust-card p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Infrastructure / Architecture Section */
.infra-section {
    padding: 6rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
}

.infra-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.infra-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.infra-content p {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.infra-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.infra-list svg {
    color: #bb9954;
    /* Security Gold */
    flex-shrink: 0;
    margin-top: 4px;
}

.infra-visual {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Compliance Badges */
.compliance-section {
    padding: 6rem 2rem;
    text-align: center;
}

.compliance-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
    margin-top: 4rem;
    opacity: 0.7;
}

.compliance-logo {
    height: 40px;
    filter: grayscale(100%) brightness(2);
    transition: filter 0.3s ease;
}

.compliance-logo:hover {
    filter: grayscale(0%) brightness(1);
}

/* Bug Bounty */
.bounty-section {
    background: linear-gradient(45deg, rgba(187, 153, 84, 0.05), transparent);
    padding: 6rem 2rem;
    text-align: center;
    border: 1px solid rgba(187, 153, 84, 0.1);
    margin: 2rem 2rem 6rem;
    border-radius: var(--radius-lg);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.bounty-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bounty-content p {
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Responsive */
@media (max-width: 968px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .infra-container {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.security-faq {
    padding: 6rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.security-faq h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

details {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

summary {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

summary:hover {
    color: #bb9954;
}

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

summary::after {
    content: '+';
    color: #bb9954;
    font-weight: 400;
    font-size: 1.5rem;
    margin-left: 1rem;
}

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

details[open] summary {
    color: #bb9954;
}

details p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-top: 1rem;
    padding-right: 2rem;
}