/* ============================================
   Privacy Section - Lovable Style
   ============================================ */

.privacy-section {
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* 2-Column Grid */
.privacy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Visual Side */
.privacy-visual {
    position: relative;
}

.privacy-visual-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    z-index: 1;
}

.privacy-visual-shadow {
    position: absolute;
    inset: 0;
    transform: translate(16px, 16px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
    z-index: 0;
}

/* Floating Icons */
.privacy-float-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    z-index: 2;
}

.privacy-float-icon--shield {
    top: -16px;
    left: -16px;
    width: 64px;
    height: 64px;
    background: #ff7b7b;
    box-shadow: 0 8px 32px rgba(255, 123, 123, 0.3);
}

.privacy-float-icon--shield svg {
    width: 28px;
    height: 28px;
    color: #000;
}

.privacy-float-icon--lock {
    bottom: -16px;
    right: -16px;
    width: 48px;
    height: 48px;
    background: #a78bfa;
    box-shadow: 0 8px 24px rgba(167, 139, 250, 0.3);
    border-radius: 12px;
}

.privacy-float-icon--lock svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

/* Storage Grid */
.privacy-storage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 3rem;
}

.privacy-storage-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.privacy-storage-card svg {
    width: 20px;
    height: 20px;
    color: #ff7b7b;
    margin-bottom: 8px;
}

.storage-label {
    font-size: 11px;
    color: var(--sp-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.storage-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--sp-text-primary);
}

/* Code Snippet */
.privacy-code {
    margin-top: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1rem;
}

.privacy-code code {
    font-family: 'JetBrains Mono', 'SF Mono', monospace;
    font-size: 12px;
    line-height: 1.6;
}

.code-comment {
    color: #ff7b7b;
}

.code-obj {
    color: var(--sp-text-primary);
}

.code-fn {
    color: #a78bfa;
}

.code-str {
    color: #fb923c;
}

/* Content Side */
.privacy-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

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

/* Bullet List */
.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.privacy-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--sp-text-primary);
    font-size: 1rem;
}

.list-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff7b7b;
    flex-shrink: 0;
}

/* Privacy Link */
.privacy-link {
    color: #ff7b7b;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.privacy-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    .privacy-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .privacy-visual {
        order: 2;
    }

    .privacy-content h2 {
        font-size: 2.25rem;
    }
}