/* Design System - Consumer/Prosumer Optimized */
:root {
    /* Colors - Trustworthy, Professional */
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f8f9fa;
    --color-bg-tertiary: #e9ecef;

    --color-text-primary: #1a1a1a;
    --color-text-secondary: #4a4a4a;
    --color-text-muted: #6c757d;

    --color-brand-primary: #2563eb;
    --color-brand-dark: #1e40af;
    --color-brand-light: #dbeafe;

    --color-success: #059669;
    --color-success-light: #d1fae5;
    --color-warning: #d97706;
    --color-warning-light: #fef3c7;
    --color-error: #dc2626;
    --color-error-light: #fee2e2;

    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 3rem;
    --space-xl: 5rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Hero Section */
.hero {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-content {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-md);
    color: var(--color-text-primary);
}

.hero-subheadline {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    line-height: 1.7;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    background: var(--color-brand-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    text-align: center;
}

.cta-primary:hover {
    background: var(--color-brand-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    color: white;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    padding: var(--space-md) var(--space-lg);
    background: transparent;
    color: var(--color-brand-primary);
    border: 2px solid var(--color-brand-primary);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
}

.cta-secondary:hover {
    background: var(--color-brand-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Visual */
.hero-visual {
    margin-top: var(--space-lg);
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

.visual-item {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-bg-tertiary);
}

.visual-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

/* Chatbot */
.chat-bubble {
    background: var(--color-bg-secondary);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-brand-primary);
}

.chat-bubble p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* Card */
.tether-card {
    background: linear-gradient(135deg, var(--color-brand-primary) 0%, var(--color-brand-dark) 100%);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    color: white;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 1.586;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-chip {
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 4px;
}

.card-number {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    opacity: 0.9;
}

.card-holder {
    font-family: var(--font-display);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.card-logo {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-align: right;
    opacity: 0.6;
}

/* Logic Checks */
.logic-checks {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.check-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: var(--color-success-light);
    border-radius: var(--radius-sm);
}

.check-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-success);
    color: white;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.check-text {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* Hook Section */
.hook {
    padding: var(--space-xl) 0;
    text-align: center;
}

.section-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
    color: var(--color-text-primary);
}

.section-body {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    line-height: 1.7;
}

.solution-box {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-lg);
    background: var(--color-brand-light);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-brand-primary);
}

.solution-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.solution-text {
    font-size: 1.15rem;
    color: var(--color-text-primary);
}

.solution-text strong {
    color: var(--color-brand-primary);
}

/* How It Works */
.how-it-works {
    padding: var(--space-xl) 0;
    background: var(--color-bg-secondary);
}

.how-it-works .section-headline {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
    list-style: none;
    padding-left: 0;
}

.step {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-bg-tertiary);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-brand-light);
    color: var(--color-brand-primary);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--color-text-primary);
}

.step-description {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Features */
.features {
    padding: var(--space-xl) 0;
}

.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    margin-bottom: var(--space-xl);
}

.feature.reverse {
    grid-template-columns: 1fr 1fr;
}

.feature.reverse .feature-content {
    order: 2;
}

.feature.reverse .feature-visual {
    order: 1;
}

.feature-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-brand-primary);
    background: var(--color-brand-light);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.feature-headline {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    color: var(--color-text-primary);
}

.feature-body {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.feature-visual {
    background: var(--color-bg-secondary);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    border: 1px solid var(--color-bg-tertiary);
}

/* Merchant Visual */
.merchant-visual {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    width: 100%;
}

.merchant-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: white;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
}

.merchant-item.allowed {
    border-left: 4px solid var(--color-success);
}

.merchant-item.blocked {
    border-left: 4px solid var(--color-error);
    opacity: 0.5;
}

.merchant-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.merchant-item.allowed .merchant-icon {
    background: var(--color-success);
    color: white;
}

.merchant-item.blocked .merchant-icon {
    background: var(--color-error);
    color: white;
}

/* Loop Visual */
.loop-visual {
    text-align: center;
    width: 100%;
}

.loop-attempt {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

.loop-warning {
    font-size: 1.5rem;
    color: var(--color-warning);
    margin-bottom: var(--space-sm);
}

.loop-status {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-error);
    background: var(--color-error-light);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    display: inline-block;
}

/* Approval Visual */
.approval-visual {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    width: 100%;
}

.approval-request {
    text-align: center;
    margin-bottom: var(--space-md);
}

.approval-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.approval-merchant {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

.approval-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.approve-btn,
.deny-btn {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    padding: var(--space-md);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

.approve-btn {
    background: var(--color-success);
    color: white;
}

.approve-btn:hover {
    background: #047857;
}

.deny-btn {
    background: var(--color-bg-tertiary);
    color: var(--color-text-secondary);
}

.deny-btn:hover {
    background: var(--color-bg-tertiary);
    color: var(--color-text-primary);
}

/* Live Feed */
.live-feed {
    padding: var(--space-xl) 0;
    background: var(--color-bg-secondary);
}

.live-feed .section-headline {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.feed-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-bg-tertiary);
}

.feed-log {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    max-height: 500px;
    overflow-y: auto;
}

.transaction {
    padding: var(--space-md);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
    border-left: 4px solid;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(-10px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.transaction.approved {
    border-color: var(--color-success);
    background: var(--color-success-light);
}

.transaction.blocked {
    border-color: var(--color-error);
    background: var(--color-error-light);
}

.transaction-log {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xs);
}

.transaction-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
}

.transaction.approved .transaction-status {
    color: var(--color-success);
}

.transaction.blocked .transaction-status {
    color: var(--color-error);
}

.transaction-reason {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Architecture */
.architecture {
    padding: var(--space-xl) 0;
    text-align: center;
}

.architecture .section-body {
    margin-bottom: var(--space-lg);
}

.tee-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.tee-box {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-bg-tertiary);
    min-width: 180px;
    transition: all 0.3s ease;
}

.tee-box.highlight {
    border-color: var(--color-brand-primary);
    background: var(--color-brand-light);
}

.tee-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tee-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.tee-label {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-xs);
}

.tee-sublabel {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.tee-arrow {
    font-size: 2rem;
    color: var(--color-text-muted);
}

/* Footer CTA */
.footer-cta {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--color-brand-primary) 0%, var(--color-brand-dark) 100%);
    color: white;
    text-align: center;
}

.footer-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-lg);
    color: white;
}

.footer-cta .cta-primary {
    background: white;
    color: var(--color-brand-primary);
}

.footer-cta .cta-primary:hover {
    background: var(--color-bg-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .visual-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .feature {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .feature.reverse .feature-content,
    .feature.reverse .feature-visual {
        order: unset;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: var(--space-lg) 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .tee-flow {
        flex-direction: column;
    }

    .tee-arrow {
        transform: rotate(90deg);
    }
}

/* Accessibility - Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Trust & Security Section */
.trust-signals {
    padding: var(--space-xl) 0;
    background: white;
    text-align: center;
}

.trust-signals .section-body {
    max-width: 700px;
    margin: 0 auto var(--space-lg);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.trust-item {
    padding: var(--space-lg);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-bg-tertiary);
    transition: all 0.3s ease;
}

.trust-item:hover {
    border-color: var(--color-brand-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.trust-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.trust-description {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: var(--space-xl) 0;
    background: white;
}

.testimonials .section-headline {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: var(--color-bg-secondary);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-bg-tertiary);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial:hover {
    border-color: var(--color-brand-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    font-size: 4rem;
    color: var(--color-brand-light);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial .rating {
    font-size: 1.2rem;
    color: #f59e0b;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    font-style: italic;
    margin: 0;
    z-index: 1;
}

.testimonial cite {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-style: normal;
    border-top: 1px solid var(--color-bg-tertiary);
    padding-top: var(--space-md);
    margin-top: auto;
}

.author-name {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-text-primary);
    font-size: 1rem;
}

.author-title {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* FAQ Section */
.faq {
    padding: var(--space-xl) 0;
    background: var(--color-bg-secondary);
}

.faq .section-headline {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: var(--space-md);
}

.faq-item {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-brand-primary);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.faq-question {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.4;
}

.faq-answer {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Site Footer */
.site-footer {
    background: var(--color-text-primary);
    color: var(--color-bg-secondary);
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-sm);
}

.footer-description {
    font-size: 0.95rem;
    color: var(--color-bg-tertiary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.footer-social a {
    color: var(--color-brand-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-links a {
    color: var(--color-bg-tertiary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-contact p {
    font-size: 0.95rem;
    color: var(--color-bg-tertiary);
    margin: 0;
}

.footer-email {
    color: var(--color-brand-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
    word-break: break-word;
}

.footer-email:hover {
    color: white;
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-copyright,
.footer-updated {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
}

.legal-page h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

.legal-page h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-text-primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.legal-page h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text-primary);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-page p,
.legal-page li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
}

.legal-page ul,
.legal-page ol {
    margin-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.legal-page li {
    margin-bottom: var(--space-sm);
}

.legal-page a {
    color: var(--color-brand-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.legal-page a:hover {
    border-bottom-color: var(--color-brand-primary);
}

.legal-page section {
    margin-bottom: var(--space-xl);
}

.last-updated {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: var(--space-lg);
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.breadcrumb a {
    color: var(--color-brand-primary);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

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

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-page h1 {
        font-size: 2rem;
    }

    .legal-page h2 {
        font-size: 1.5rem;
    }
}