/* ============================================
   SnapShot — Component Library
   Enterprise-grade, no decorative motion
   ============================================ */

/* ============================================
   Buttons
   Flat, authoritative. No gradients, no glow.
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    height: 40px;
    padding: 0 var(--space-5);
    font-size: var(--text-small);
    font-weight: var(--weight-medium);
    line-height: 1;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: background var(--duration-fast) var(--ease),
                color var(--duration-fast) var(--ease),
                border-color var(--duration-fast) var(--ease);
    text-decoration: none;
    white-space: nowrap;
    font-family: inherit;
}

.btn:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Primary Button — flat brand blue */
.btn-primary,
.btn-primary:visited {
    background: var(--color-accent);
    color: #ffffff;
}

.btn-primary:hover:not(:disabled) {
    background: var(--color-accent-hover);
}

.btn-primary:active:not(:disabled) {
    background: var(--color-accent-active);
}

/* Secondary Button — outlined */
.btn-secondary,
.btn-secondary:visited {
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.20);
}

.btn-secondary:active:not(:disabled) {
    background: rgba(255, 255, 255, 0.06);
}

/* Text Button */
.btn-text,
.btn-text:visited {
    background: transparent;
    color: var(--color-accent);
    padding: var(--space-2) var(--space-4);
    height: auto;
}

.btn-text:hover:not(:disabled) {
    color: var(--color-accent-hover);
    background: var(--color-accent-subtle);
}

/* Button Sizes */
.btn-lg {
    height: 52px;
    padding: 0 var(--space-7);
    font-size: var(--text-body);
}

.btn-sm {
    height: 32px;
    padding: 0 var(--space-4);
    font-size: var(--text-small);
}

/* SuperX-style inner pill + arrow button */
.btn .btn-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 7px 7px 7px 18px;
    border-radius: 14px;
    background: #e2e2e2;
    color: #0a0a0a;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.01em;
    transition: background var(--duration-fast) var(--ease);
    width: 100%;
}

.btn:hover .btn-inner {
    background: #fff;
}

.btn .btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #0a0a0a;
    color: #e2e2e2;
    font-size: 15px;
    flex-shrink: 0;
    transition: transform var(--duration-fast) var(--ease);
}

.btn:hover .btn-arrow {
    transform: translateX(2px);
}

/* Nav CTA — dark variant matching SuperX header */
.btn.btn-primary.nav-cta,
.nav-cta {
    background: rgb(47, 47, 48);
    padding: 4px;
    height: auto;
    border-radius: 20px;
    margin-left: 1rem;
    box-shadow: none;
    font-size: 16px;
}

.btn.btn-primary.nav-cta:hover {
    background: rgb(55, 55, 56);
    transform: none;
    box-shadow: none;
}

.nav-cta .btn-inner {
    background: rgb(35, 35, 36);
    color: #e2e2e2;
    font-size: 15px;
    padding: 8px 8px 8px 20px;
    border-radius: 16px;
    gap: 12px;
}

.nav-cta:hover .btn-inner {
    background: rgb(50, 50, 51);
}

.nav-cta .btn-arrow {
    background: #e2e2e2;
    color: #0a0a0a;
    width: 32px;
    height: 32px;
    border-radius: 9px;
}

/* Button State Variants */
.btn-success,
.btn-success:visited {
    background: var(--color-success);
    color: #ffffff;
}

.btn-danger,
.btn-danger:visited {
    background: var(--color-danger);
    color: #ffffff;
}

/* Enterprise button — alias to primary (no shimmer) */
.btn-enterprise,
.btn-enterprise:visited {
    background: var(--color-accent);
    color: #ffffff;
}

.btn-enterprise:hover:not(:disabled) {
    background: var(--color-accent-hover);
}

.btn-enterprise::before {
    display: none;
}

/* ============================================
   Cards
   Border-color-only hover. No lift, no scale.
   ============================================ */

.card {
    background: var(--color-bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--space-7);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
    display: flex;
    flex-direction: column;
}

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

.card-info {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--space-7);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.card-info:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.card-feature {
    padding: var(--space-7);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-feature:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.card-feature .icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-5);
    padding: var(--space-2);
    background: rgba(59, 130, 246, 0.10);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-feature .icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

.card-principle {
    position: relative;
    padding: var(--space-7);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.card-principle .number {
    position: absolute;
    top: var(--space-5);
    right: var(--space-5);
    font-size: 3rem;
    font-weight: var(--weight-semibold);
    color: rgba(59, 130, 246, 0.08);
    line-height: 1;
}

/* Card List (use-cases bullet items) */
.card-list {
    list-style: none;
    padding: 0;
    margin: var(--space-5) 0 0 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.card-list li {
    position: relative;
    padding-left: 1.25em;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.card-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* Pricing Card — elevated with shadow */
.card-pricing {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-pricing:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.card-pricing.featured {
    border: 1px solid rgba(59, 130, 246, 0.40);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.08);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
}

/* Testimonial Card */
.card-testimonial {
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-testimonial .quote {
    font-size: var(--text-h4);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-5);
    font-style: italic;
}

.card-testimonial .author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.card-testimonial .avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-testimonial .author-info .name {
    font-weight: var(--weight-semibold);
    color: var(--color-text-primary);
    margin-bottom: 0.125rem;
}

.card-testimonial .author-info .title {
    font-size: var(--text-small);
    color: var(--color-text-tertiary);
}

/* ============================================
   Badges
   ============================================ */

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: 0.375rem 0.75rem;
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    border-radius: var(--radius-full);
}

.badge-primary {
    background: var(--color-accent);
    color: #ffffff;
}

.badge-success {
    background: var(--color-success);
    color: #ffffff;
}

.badge-warning {
    background: var(--color-warning);
    color: #000000;
}

.badge-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.badge-outline {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
}

/* Compliance Badges */
.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    align-items: center;
    justify-content: center;
}

.compliance-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-5);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    transition: border-color var(--duration-fast) var(--ease);
}

.compliance-badge:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.compliance-badge img {
    height: 48px;
    width: auto;
}

/* Trust Badges (Text-Based) */
.badge-trust {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-2) var(--space-5);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    color: var(--color-text-secondary);
    font-size: var(--text-small);
    font-weight: var(--weight-medium);
}

.badge-trust svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

/* ============================================
   Icon Wrapper
   Flat tint backgrounds, no gradients.
   ============================================ */

.icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    background: rgba(59, 130, 246, 0.10);
}

.icon-wrapper svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    stroke-width: 1.75;
}

/* Color variants — tints on dark bg */
.icon-wrapper-blue {
    background: rgba(59, 130, 246, 0.10);
}
.icon-wrapper-blue svg { color: #60a5fa; }

.icon-wrapper-green {
    background: rgba(16, 185, 129, 0.10);
}
.icon-wrapper-green svg { color: #34d399; }

.icon-wrapper-purple {
    background: rgba(139, 92, 246, 0.10);
}
.icon-wrapper-purple svg { color: #a78bfa; }

.icon-wrapper-orange {
    background: rgba(245, 158, 11, 0.10);
}
.icon-wrapper-orange svg { color: #fbbf24; }

.icon-wrapper-red {
    background: rgba(239, 68, 68, 0.10);
}
.icon-wrapper-red svg { color: #f87171; }

.icon-wrapper-cyan {
    background: rgba(6, 182, 212, 0.10);
}
.icon-wrapper-cyan svg { color: #22d3ee; }

/* ============================================
   Forms
   ============================================ */

.form-group {
    margin-bottom: var(--space-5);
}

.form-label {
    display: block;
    font-size: var(--text-small);
    font-weight: var(--weight-medium);
    color: var(--color-text-primary);
    margin-bottom: var(--space-2);
}

.form-help {
    display: block;
    font-size: var(--text-small);
    color: var(--color-text-tertiary);
    margin-top: var(--space-1);
}

.form-hint {
    display: block;
    font-size: var(--text-small);
    color: var(--color-text-tertiary);
    margin-top: var(--space-1);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: var(--text-body);
    font-family: inherit;
    color: var(--color-text-primary);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: border-color var(--duration-fast) var(--ease);
}

.form-input:hover,
.form-textarea:hover,
.form-select:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.50);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.10);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-text-disabled);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    border-color: var(--color-danger);
}

.error-message {
    display: block;
    font-size: var(--text-small);
    color: var(--color-danger);
    margin-top: var(--space-1);
}

/* Checkbox & Radio */
.form-checkbox,
.form-radio {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    cursor: pointer;
}

.form-checkbox input,
.form-radio input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.form-checkbox label,
.form-radio label {
    flex: 1;
    cursor: pointer;
    font-size: var(--text-body);
    color: var(--color-text-secondary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-actions {
    margin-top: var(--space-5);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    cursor: pointer;
    padding: var(--space-1);
    border-radius: var(--radius-sm);
    transition: background var(--duration-fast) var(--ease);
}

.checkbox-label:hover {
    background: var(--color-bg-elevated);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--color-accent);
}

.checkbox-label span {
    font-size: var(--text-body);
    color: var(--color-text-primary);
}

/* ============================================
   Tables
   ============================================ */

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table thead {
    background: rgba(255, 255, 255, 0.04);
}

.table th {
    text-align: left;
    padding: var(--space-4);
    font-size: var(--text-small);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-border);
}

.table td {
    padding: var(--space-4);
    border-bottom: 1px solid var(--color-border);
}

.table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .table th,
    .table td {
        padding: var(--space-3) var(--space-2);
        font-size: var(--text-xs);
    }
}

/* ============================================
   Alerts
   ============================================ */

.alert {
    padding: var(--space-5);
    border-radius: var(--radius-md);
    border-left: 3px solid;
    margin-bottom: var(--space-5);
}

.alert h4 {
    margin-bottom: var(--space-2);
}

.alert-info {
    background: rgba(59, 130, 246, 0.06);
    border-color: rgba(59, 130, 246, 0.40);
    color: var(--color-text-primary);
}

.alert-success {
    background: rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.40);
    color: var(--color-text-primary);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.06);
    border-color: rgba(245, 158, 11, 0.40);
    color: var(--color-text-primary);
}

.alert-danger,
.alert-error {
    background: rgba(239, 68, 68, 0.06);
    border-color: rgba(239, 68, 68, 0.40);
    color: var(--color-text-primary);
}

.alert ul {
    margin-top: var(--space-2);
    margin-bottom: 0;
}

/* ============================================
   Loading States
   ============================================ */

.spinner {
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-border);
    border-top-color: var(--color-accent);
    border-radius: var(--radius-full);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.skeleton {
    background: linear-gradient(
        90deg,
        var(--color-bg-tertiary) 0%,
        var(--color-bg-elevated) 50%,
        var(--color-bg-tertiary) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: var(--radius-md);
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================
   Dividers
   ============================================ */

.divider {
    height: 1px;
    background: var(--color-border);
    margin: var(--space-8) 0;
}

.divider-subtle {
    height: 1px;
    background: var(--color-border);
    margin: var(--space-6) 0;
}

/* ============================================
   Modals
   ============================================ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: var(--color-bg-overlay);
    backdrop-filter: blur(8px);
    z-index: var(--z-modal-backdrop);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-5);
}

.modal {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    z-index: var(--z-modal);
}

.modal-header {
    padding: var(--space-6);
    border-bottom: 1px solid var(--color-border);
}

.modal-title {
    font-size: var(--text-h3);
    font-weight: var(--weight-semibold);
    margin-bottom: 0;
}

.modal-body {
    padding: var(--space-6);
}

.modal-footer {
    padding: var(--space-6);
    border-top: 1px solid var(--color-border);
    display: flex;
    gap: var(--space-4);
    justify-content: flex-end;
}

/* ============================================
   Tooltips
   ============================================ */

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip-content {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--text-small);
    color: var(--color-text-primary);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--duration-fast) var(--ease);
    z-index: var(--z-tooltip);
}

.tooltip:hover .tooltip-content {
    opacity: 1;
}

/* ============================================
   Progress Bars
   ============================================ */

.progress {
    width: 100%;
    height: 6px;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--color-accent);
    border-radius: var(--radius-full);
    transition: width var(--duration-base) var(--ease);
}

/* ============================================
   Status Indicators
   ============================================ */

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    display: inline-block;
}

.status-online {
    background: var(--color-success);
}

.status-offline {
    background: var(--color-text-tertiary);
}

.status-warning {
    background: var(--color-warning);
}

/* ============================================
   FAQ Accordion
   ============================================ */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--duration-fast) var(--ease);
}

.faq-item:hover,
.faq-item[open] {
    border-color: rgba(255, 255, 255, 0.12);
}

.faq-question {
    padding: var(--space-5);
    font-size: var(--text-h4);
    font-weight: var(--weight-semibold);
    color: var(--color-text-primary);
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: var(--space-5);
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: var(--color-accent);
    transition: transform var(--duration-base) var(--ease);
}

.faq-item[open] .faq-question::after {
    content: '\2212';
}

.faq-answer {
    padding: 0 var(--space-5) var(--space-5) var(--space-5);
}

.faq-answer p {
    margin: 0;
    line-height: var(--leading-relaxed);
    color: var(--color-text-secondary);
}

.faq-answer .link {
    color: var(--color-accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--duration-fast) var(--ease);
}

.faq-answer .link:hover {
    border-bottom-color: var(--color-accent);
}

/* ============================================
   Table of Contents
   ============================================ */

.toc ol {
    list-style: decimal;
    padding-left: var(--space-6);
}

.toc li {
    margin-bottom: var(--space-2);
}

.toc .link {
    color: var(--color-text-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color var(--duration-fast) var(--ease),
                border-color var(--duration-fast) var(--ease);
    font-size: var(--text-h4);
}

.toc .link:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

/* ============================================
   Workflow Cards
   ============================================ */

.card-workflow {
    position: relative;
    padding: var(--space-6);
    text-align: center;
    transition: border-color var(--duration-fast) var(--ease);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.card-workflow:hover {
    border-color: var(--color-border-hover);
}

.workflow-number {
    position: absolute;
    top: var(--space-5);
    right: var(--space-5);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--weight-semibold);
    font-size: var(--text-small);
    color: var(--color-text-secondary);
}

.card-workflow .icon-wrapper {
    margin: 0 auto var(--space-5);
}

.card-workflow h3 {
    font-size: var(--text-h3);
    margin-bottom: var(--space-4);
    color: var(--color-text-primary);
    font-weight: var(--weight-semibold);
}

.card-workflow p {
    font-size: var(--text-body);
    line-height: var(--leading-relaxed);
    color: var(--color-text-secondary);
    margin: 0;
}

/* ============================================
   Pricing Styles
   ============================================ */

.pricing-header {
    text-align: center;
    padding-bottom: var(--space-5);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--space-5);
}

.pricing-header h3 {
    margin-bottom: var(--space-5);
    font-size: var(--text-h3);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.375rem;
}

.pricing-amount .price {
    font-size: 2.5rem;
    font-weight: var(--weight-semibold);
    color: var(--color-text-primary);
}

.pricing-amount .period {
    font-size: var(--text-body);
    color: var(--color-text-tertiary);
}

.pricing-note {
    margin-top: var(--space-4);
    font-size: var(--text-small);
    color: var(--color-text-tertiary);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-5) 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.pricing-features .check-icon {
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 2px;
}

.pricing-features span {
    flex: 1;
    line-height: 1.6;
}

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

.specs-table {
    width: 100%;
    font-size: var(--text-small);
}

.specs-table tr {
    border-bottom: 1px solid var(--color-border);
}

.specs-table td {
    padding: var(--space-4) 0;
}

.specs-table td:first-child {
    font-weight: var(--weight-semibold);
    color: var(--color-text-primary);
}

.specs-table td:last-child {
    color: var(--color-text-secondary);
}

/* Numbered Lists */
.list-numbered {
    list-style: decimal;
    padding-left: var(--space-6);
    color: var(--color-text-secondary);
}

.list-numbered li {
    margin-bottom: var(--space-4);
}

.list-numbered strong {
    color: var(--color-text-primary);
    display: block;
    margin-bottom: var(--space-1);
}

/* Data Handling Lists */
.data-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.data-list li {
    position: relative;
    padding-left: var(--space-6);
    margin-bottom: var(--space-4);
}

.data-list-stored li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: var(--weight-semibold);
}

.data-list-not-stored li::before {
    content: "\00D7";
    position: absolute;
    left: 0;
    color: var(--color-danger);
    font-weight: var(--weight-semibold);
    font-size: 1.25rem;
}

/* Bordered Cards */
.card-success {
    border: 1px solid var(--color-success);
}

.card-danger {
    border: 1px solid var(--color-danger);
}

.card-tertiary {
    background: var(--color-bg-tertiary);
}

/* Small Text */
.text-sm {
    font-size: var(--text-small);
    color: var(--color-text-tertiary);
}

/* Bulleted Lists */
.list-disc {
    list-style: disc;
    padding-left: var(--space-6);
    color: var(--color-text-secondary);
}

.list-disc li {
    margin-bottom: var(--space-2);
}

/* Card Title */
.card h4 {
    margin-bottom: var(--space-4);
}

/* ============================================
   Legal Document Styles
   ============================================ */

.section h3 {
    margin-top: var(--space-6);
}

.section ul {
    margin-top: var(--space-4);
}

.section ol {
    margin-top: var(--space-4);
}

.card-border-error {
    border-left: 3px solid var(--color-danger);
}

.card-gradient-primary {
    text-align: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.10) 100%);
    border: 1px solid rgba(59, 130, 246, 0.20);
    color: #ffffff;
}

.card-gradient-primary h3 {
    margin-bottom: var(--space-4);
}

.card-gradient-primary p {
    opacity: 0.9;
    margin-bottom: var(--space-5);
}

/* Margin Bottom Small */
.mb-sm {
    margin-bottom: var(--space-2);
}

/* ============================================
   Product Demo Sections
   ============================================ */

.product-demo {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    align-items: center;
    max-width: 720px;
    margin: 0 auto;
}

.demo-visual {
    width: 100%;
    max-width: 720px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.demo-gif {
    width: 100%;
    height: auto;
    display: block;
}

.demo-caption {
    text-align: left;
    color: var(--color-text-secondary);
    font-size: var(--text-small);
    line-height: var(--leading-normal);
    margin-top: var(--space-2);
}

/* Architecture Diagram */
.architecture-diagram {
    width: 100%;
    max-width: 720px;
    margin: 0 auto var(--space-6);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.diagram-image {
    width: 100%;
    height: auto;
    display: block;
}

.architecture-notes {
    max-width: 720px;
    margin: 0 auto;
}

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

.architecture-list li {
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--color-border);
    line-height: 1.6;
}

.architecture-list li:last-child {
    border-bottom: none;
}

.architecture-list strong {
    color: var(--color-text-primary);
    font-weight: var(--weight-semibold);
}
