/**
 * Grit Safety Page Styles
 *
 * Enhanced safety page with premium design
 * Extracted from inline styles 2026-01-08
 * Uses CSS variables from grit-brand.css
 */

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Card hover effect - dark to light background with text color flip */
.card-hover-flip {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.25) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card-hover-flip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(154, 213, 202, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-hover-flip:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(154, 213, 202, 0.1);
    border-color: rgba(154, 213, 202, 0.25);
}

.card-hover-flip:hover::before {
    opacity: 1;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatShield {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(2deg); }
    75% { transform: translateY(-4px) rotate(-2deg); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(154, 213, 202, 0.3); }
    50% { box-shadow: 0 0 40px rgba(154, 213, 202, 0.5); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ============================================
   HERO SECTION
   ============================================ */

.safety-hero {
    background: linear-gradient(135deg, rgba(123, 68, 193, 0.95) 0%, rgba(30, 150, 252, 0.95) 50%, rgba(123, 68, 193, 0.9) 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: white;
    padding: 6rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.safety-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 70% 60%, rgba(154, 213, 202, 0.06) 0%, transparent 35%);
    pointer-events: none;
}

.safety-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    pointer-events: none;
}

.safety-hero .container {
    position: relative;
    z-index: 1;
}

.hero-shield-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    filter: brightness(0) invert(1) drop-shadow(0 4px 20px rgba(154, 213, 202, 0.5));
    animation: floatShield 6s ease-in-out infinite;
}

.safety-hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.safety-hero .lead {
    font-size: 1.35rem;
    opacity: 0.95;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-trust-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-trust-text i {
    color: var(--color-sage);
    font-size: 0.85rem;
}

/* ============================================
   TRUST PILLARS
   ============================================ */

.trust-pillars-section {
    background: linear-gradient(135deg, rgba(123, 68, 193, 0.6) 0%, rgba(30, 150, 252, 0.5) 50%, rgba(154, 213, 202, 0.5) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 4rem 0;
    position: relative;
}

.trust-pillars-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(154, 213, 202, 0.5), transparent);
}

.trust-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-pillar {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.25) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.trust-pillar:nth-child(1) {
    border-top: 3px solid var(--color-purple);
}

.trust-pillar:nth-child(2) {
    border-top: 3px solid var(--color-blue);
}

.trust-pillar:nth-child(3) {
    border-top: 3px solid var(--color-sage);
}

.trust-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-sage), var(--color-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-pillar:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(154, 213, 202, 0.15);
    border-color: rgba(154, 213, 202, 0.3);
}

.trust-pillar:hover::before {
    opacity: 1;
}

.trust-pillar-icon {
    margin-bottom: 1.25rem;
    display: block;
    position: relative;
}

.trust-pillar-icon img {
    width: 56px;
    height: 56px;
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.4s ease;
}

.trust-pillar:hover .trust-pillar-icon img {
    filter: brightness(0) saturate(100%) invert(83%) sepia(50%) saturate(800%) hue-rotate(100deg) brightness(110%) contrast(90%) drop-shadow(0 0 15px rgba(154, 213, 202, 0.6));
    transform: scale(1.15);
}

.trust-pillar h3 {
    color: white;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    text-shadow: none;
    font-weight: 600;
}

.trust-pillar p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.safety-section {
    padding: 5rem 0;
    position: relative;
}

.safety-section:nth-child(odd) {
    background: linear-gradient(180deg, rgba(123, 68, 193, 0.6) 0%, rgba(30, 150, 252, 0.5) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.safety-section:nth-child(even) {
    background: linear-gradient(180deg, rgba(30, 150, 252, 0.5) 0%, rgba(154, 213, 202, 0.55) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.safety-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(154, 213, 202, 0.4), transparent);
}

.safety-section h2 {
    color: var(--slate-darkest);
    text-shadow: none;
    margin-bottom: 2.5rem;
    text-align: center;
    font-size: 2rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.safety-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-sage));
    border-radius: 2px;
}

/* ============================================
   PRIVACY CHECKLIST
   ============================================ */

.privacy-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.privacy-checklist li {
    color: var(--slate-medium);
    padding: 1rem 0;
    padding-left: 3rem;
    position: relative;
    font-family: 'Merriweather', Georgia, serif;
    text-shadow: none;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.privacy-checklist li:last-child {
    border-bottom: none;
}

.privacy-checklist li:hover {
    padding-left: 3.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.privacy-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0.1) 100%);
    border-radius: 50%;
    border: 2px solid var(--accent-blue);
    transition: all 0.3s ease;
}

.privacy-checklist li::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.privacy-checklist li:hover::before {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3) 0%, rgba(37, 99, 235, 0.2) 100%);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
}

.privacy-checklist li strong {
    color: var(--accent-blue);
    font-weight: 600;
}

/* ============================================
   COMPARISON COLUMNS
   ============================================ */

.privacy-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

.comparison-column {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.comparison-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comparison-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.comparison-column:hover::before {
    opacity: 1;
}

.comparison-column.collect {
    border-top: 3px solid var(--color-sage);
}

.comparison-column.collect::before {
    background: linear-gradient(90deg, var(--color-sage), rgba(154, 213, 202, 0.5));
}

.comparison-column.never {
    border-top: 3px solid #ff9999;
}

.comparison-column.never::before {
    background: linear-gradient(90deg, #ff9999, rgba(255, 153, 153, 0.5));
}

.comparison-column h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    text-shadow: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comparison-column h4 i {
    font-size: 1.1rem;
}

.comparison-column.collect h4 {
    color: #7eecd8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.comparison-column.never h4 {
    color: #ff9999;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.comparison-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-column li {
    color: white;
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-column li:last-child {
    border-bottom: none;
}

.comparison-column.collect li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%237eecd8'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.comparison-column.never li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff9999'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ============================================
   SAFETY CARDS
   ============================================ */

.safety-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.safety-card {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.25) 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.safety-card:nth-child(1) {
    border-left: 4px solid var(--color-purple);
}

.safety-card:nth-child(2) {
    border-left: 4px solid var(--color-sage);
}

.safety-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(154, 213, 202, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.safety-card:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(154, 213, 202, 0.1);
    border-color: rgba(154, 213, 202, 0.25);
}

.safety-card:hover::before {
    opacity: 1;
}

.safety-card h3 {
    color: white;
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.safety-card h3::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-blue);
}

.safety-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.safety-card li {
    color: white;
    padding: 0.85rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.safety-card li:last-child {
    border-bottom: none;
}

.safety-card:hover li {
    color: var(--slate-darkest);
    text-shadow: none;
}

.safety-card:hover h3 {
    color: var(--slate-darkest);
    text-shadow: none;
}

.safety-card li:hover {
    padding-left: 2.25rem;
}

.safety-card li strong {
    color: white;
    font-weight: 600;
}

.safety-card:hover li strong {
    color: var(--slate-darkest);
}

.safety-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

.safety-card:hover li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563eb'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}

.safety-card li:hover::before {
    transform: translateY(-50%) scale(1.15);
}

/* ============================================
   DASHBOARD SECTION
   ============================================ */

.dashboard-section {
    background: linear-gradient(135deg, rgba(123, 68, 193, 0.6) 0%, rgba(30, 150, 252, 0.55) 50%, rgba(154, 213, 202, 0.55) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.dashboard-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(154, 213, 202, 0.4), transparent);
}

.dashboard-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(123, 68, 193, 0.4), transparent);
}

.dashboard-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-features li {
    color: var(--slate-medium);
    text-shadow: none;
    padding: 1rem 0;
    padding-left: 2.75rem;
    position: relative;
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.dashboard-features li:last-child {
    border-bottom: none;
}

.dashboard-features li:hover {
    padding-left: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.dashboard-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0.1) 100%);
    border-radius: 50%;
    border: 2px solid var(--accent-blue);
    transition: all 0.3s ease;
}

.dashboard-features li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.dashboard-features li:hover::before {
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
}

.dashboard-features li strong {
    color: var(--accent-blue);
    font-weight: 600;
}

.dashboard-preview-container {
    position: relative;
    max-width: 550px;
    margin: 0 auto;
}

.dashboard-preview-frame {
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dashboard-preview-frame:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.15),
                0 0 40px rgba(154, 213, 202, 0.15);
}

.dashboard-preview-screen {
    background: linear-gradient(135deg, rgba(123, 68, 193, 0.15) 0%, rgba(30, 150, 252, 0.15) 100%);
    border-radius: 10px;
    aspect-ratio: 16/10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.dashboard-preview-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.dashboard-preview-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(154, 213, 202, 0.4));
    opacity: 0.7;
    animation: pulseGlow 3s ease-in-out infinite;
}

.dashboard-preview-text {
    color: var(--slate-medium);
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
    z-index: 1;
}

.dashboard-preview-subtext {
    color: var(--slate-light);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.dashboard-screenshot {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.dashboard-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, rgba(123, 68, 193, 0.2) 0%, rgba(30, 150, 252, 0.2) 100%);
    border-radius: var(--radius-lg);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-light);
    font-family: 'Merriweather', Georgia, serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* ============================================
   CONSENT STEPS
   ============================================ */

.consent-steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
}

.consent-steps::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(180deg,
        var(--color-purple) 0%,
        var(--color-blue) 50%,
        var(--color-sage) 100%);
    opacity: 0.4;
}

.consent-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.consent-step:hover {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding-left: 1rem;
    margin-left: -1rem;
}

.consent-step:last-child {
    border-bottom: none;
}

.consent-step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-blue) 100%);
    border-radius: 50%;
    color: var(--slate-darkest);
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(123, 68, 193, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.consent-step:hover::before {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(123, 68, 193, 0.5),
                0 0 20px rgba(154, 213, 202, 0.3);
}

.consent-step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.consent-step-content h4 {
    color: var(--slate-darkest);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: none;
    transition: color 0.3s ease;
}

.consent-step:hover .consent-step-content h4 {
    color: var(--accent-blue);
}

.consent-step-content p {
    color: var(--slate-medium);
    margin-bottom: 0;
    font-size: 1.05rem;
    font-weight: 500;
    text-shadow: none;
    line-height: 1.6;
}

/* ============================================
   CERTIFICATIONS
   ============================================ */

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.certification-card {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.25) 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 3px solid var(--color-sage);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.certification-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(154, 213, 202, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(154, 213, 202, 0.3);
}

.certification-card:hover::before {
    opacity: 1;
}

.certification-card h4 {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.certification-card h4::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--color-sage);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-sage);
}

.certification-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.certification-card li {
    color: white;
    padding: 1rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.certification-card li:last-child {
    border-bottom: none;
}

.certification-card li strong {
    display: block;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.certification-card li small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.certification-card.in-development {
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.1);
    border-top: 3px solid rgba(255, 255, 255, 0.3);
    opacity: 0.8;
}

.certification-card.in-development h4 {
    color: rgba(255, 255, 255, 0.7);
}

.certification-card.in-development h4::before {
    background: rgba(255, 255, 255, 0.4);
    box-shadow: none;
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    background: linear-gradient(180deg, rgba(123, 68, 193, 0.6) 0%, rgba(30, 150, 252, 0.5) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 5rem 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(154, 213, 202, 0.4), transparent);
}

.faq-section h2 {
    color: var(--slate-darkest);
    text-shadow: none;
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2rem;
    position: relative;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-sage));
    border-radius: 2px;
}

.accordion {
    max-width: 850px;
    margin: 0 auto;
}

.accordion .card {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.25) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md) !important;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion .card:hover {
    border-color: rgba(154, 213, 202, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.accordion .card-header {
    background: transparent;
    border-bottom: none;
    padding: 0;
}

.accordion .btn-link {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    color: white;
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 400;
    font-size: 1.05rem;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.accordion .btn-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-purple), var(--color-sage));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.accordion .btn-link:hover {
    color: var(--color-sage);
    text-decoration: none;
    padding-left: 2.5rem;
}

.accordion .btn-link:hover::before,
.accordion .btn-link[aria-expanded="true"]::before {
    opacity: 1;
}

.accordion .btn-link[aria-expanded="true"] {
    color: var(--color-sage);
    padding-left: 2.5rem;
}

.accordion .btn-link .fa-chevron-down {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--color-sage);
    font-size: 0.9rem;
}

.accordion .btn-link[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}

.accordion .card-body {
    padding: 0 2rem 2rem 2.5rem;
    color: white;
    font-size: 1rem;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 0;
    padding-top: 1.5rem;
}

.accordion .card-body a {
    color: var(--accent-blue-light);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.accordion .card-body a:hover {
    color: var(--accent-blue-lighter);
    text-decoration: underline;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, rgba(123, 68, 193, 0.55) 0%, rgba(30, 150, 252, 0.5) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(154, 213, 202, 0.5), transparent);
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle at 50% 50%, rgba(154, 213, 202, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--slate-darkest);
    text-shadow: none;
    margin-bottom: 1.25rem;
    font-size: 2.25rem;
}

.cta-section .lead {
    color: var(--slate-medium);
    text-shadow: none;
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.15rem;
    line-height: 1.6;
}

.cta-section .btn-brand-primary {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    box-shadow: 0 8px 30px rgba(123, 68, 193, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-section .btn-brand-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-section .btn-brand-primary:hover::after {
    left: 100%;
}

.cta-section .btn-brand-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(123, 68, 193, 0.5);
}

.cta-trust-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--slate-medium);
    font-size: 0.9rem;
}

.cta-trust-note i {
    color: var(--color-sage);
}

.cta-contact {
    margin-top: 1rem;
    margin-bottom: 0;
}

.cta-contact a {
    color: var(--slate-medium);
    text-decoration: underline;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.cta-contact a:hover {
    color: var(--slate-darkest);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .trust-pillars {
        gap: 1.5rem;
    }

    .safety-cards {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .safety-hero {
        padding: 4rem 0 3.5rem;
    }

    .safety-hero h1 {
        font-size: 1.85rem;
        line-height: 1.3;
    }

    .safety-hero .lead {
        font-size: 1.1rem;
    }

    .hero-shield-icon {
        width: 60px;
        height: 60px;
    }

    .trust-pillars {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        max-width: 400px;
    }

    .trust-pillar {
        padding: 2rem 1.5rem;
    }

    .trust-pillar-icon img {
        width: 48px;
        height: 48px;
    }

    .safety-section {
        padding: 3.5rem 0;
    }

    .safety-section h2 {
        font-size: 1.65rem;
        margin-bottom: 2rem;
    }

    .privacy-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .comparison-column {
        padding: 1.75rem;
    }

    .safety-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .safety-card {
        padding: 2rem;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .certification-card {
        padding: 2rem;
    }

    .consent-steps::before {
        left: 20px;
    }

    .consent-step {
        gap: 1.25rem;
        padding: 1.5rem 0;
    }

    .consent-step:hover {
        padding-left: 0.5rem;
        margin-left: -0.5rem;
    }

    .consent-step::before {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }

    .consent-step-content h4 {
        font-size: 1.1rem;
    }

    .dashboard-section {
        padding: 3.5rem 0;
    }

    .dashboard-preview-container {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .faq-section {
        padding: 3.5rem 0;
    }

    .accordion .btn-link {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .accordion .btn-link:hover,
    .accordion .btn-link[aria-expanded="true"] {
        padding-left: 2rem;
    }

    .accordion .card-body {
        padding: 0 1.5rem 1.5rem 2rem;
    }

    .cta-section {
        padding: 3.5rem 0;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section .lead {
        font-size: 1.05rem;
    }
}

@media (max-width: 576px) {
    .safety-hero {
        padding: 3rem 0 2.5rem;
    }

    .safety-hero h1 {
        font-size: 1.5rem;
    }

    .hero-trust-text {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .trust-pillars-section {
        padding: 2.5rem 0;
    }

    .trust-pillar {
        padding: 1.5rem 1.25rem;
    }

    .trust-pillar h3 {
        font-size: 1.15rem;
    }

    .safety-section {
        padding: 2.5rem 0;
    }

    .safety-section h2 {
        font-size: 1.4rem;
    }

    .privacy-checklist li {
        padding-left: 2.5rem;
        font-size: 0.95rem;
    }

    .privacy-checklist li::before {
        width: 24px;
        height: 24px;
    }

    .privacy-checklist li::after {
        left: 5px;
        width: 14px;
        height: 14px;
    }

    .comparison-column {
        padding: 1.5rem;
    }

    .comparison-column h4 {
        font-size: 1.05rem;
    }

    .safety-card {
        padding: 1.5rem;
    }

    .safety-card h3 {
        font-size: 1.15rem;
    }

    .consent-steps::before {
        left: 17px;
    }

    .consent-step::before {
        width: 35px;
        height: 35px;
        min-width: 35px;
        font-size: 0.9rem;
    }

    .consent-step-content h4 {
        font-size: 1rem;
    }

    .consent-step-content p {
        font-size: 0.9rem;
    }

    .accordion .btn-link {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .accordion .card-body {
        padding: 0 1.25rem 1.25rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .safety-hero {
        animation: none;
    }

    .hero-shield-icon {
        animation: none;
    }

    .dashboard-preview-icon {
        animation: none;
    }

    .trust-pillar,
    .comparison-column,
    .safety-card,
    .certification-card,
    .consent-step,
    .accordion .card {
        transition: none;
    }
}
