--- import PresentationLayout from '../../layouts/PresentationLayout.astro'; import KaptioLogo from '../../components/KaptioLogo'; // TEMPLATE — Security & trust (LIGHT) // Reusable on-brand security / compliance slide. Clone this for trust narratives. // - Ground: --flux-background (#F9FAF8) // - Bold headline, 2×2 grid of trust cards with inline SVG icons (NOT emoji) // - Cards: --flux-surface, --flux-grey-100 border, --flux-radius-lg, --flux-shadow-sm max // - No single-edge accent bars on cards // - Kaptio logo (dark) centered near the bottom const headline = 'Security & trust'; const cards = [ { title: 'Salesforce-native platform', description: 'Built on the Salesforce platform with enterprise-grade infrastructure and continuous updates.', icon: 'shield', }, { title: 'Enterprise-grade security', description: 'Role-based access, encryption at rest and in transit, and regular penetration testing.', icon: 'shield', }, { title: 'Data residency', description: 'Customer data hosted in regional Salesforce instances to meet local requirements.', icon: 'check', }, { title: 'Audit & compliance', description: 'SOC 2 aligned controls, audit trails, and compliance reporting for regulated operators.', icon: 'check', }, ]; ---

{headline}

{cards.map((card) => (
{card.icon === 'shield' ? ( ) : ( )}

{card.title}

{card.description}

))}