/* FinSense - Professional Financial Document Intelligence Styles */
/* Teal/Cyan Theme for Financial Analysis Focus */

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

:root {
    --primary-color: #0d9488;
    --secondary-color: #0891b2;
    --dark-color: #0f766e;
    --light-color: #ccfbf1;
    --accent-color: #14b8a6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-light: #e5e7eb;
    --success-green: #0d9488;
    --warning-orange: #ea580c;
    --gradient-primary: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    --gradient-secondary: linear-gradient(135deg, #0891b2 0%, #0d9488 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

h1 {
    font-size: 2.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2rem;
    color: var(--text-dark);
}

h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
}

p {
    margin-bottom: 0.875rem;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-fluid {
    max-width: 100%;
    padding: 0 1.5rem;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #ccfbf1 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%230d9488" fill-opacity="0.05"><polygon points="60,60 30,60 30,30 60,30"/></g></svg>');
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero .lead {
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }
}

/* Story Graphics */
.story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
}

.story-graphic {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .story-graphic {
        max-width: 100%;
    }

    .story-visual {
        margin: 2rem 0;
    }
}

/* Sections */
.section {
    padding: 3.5rem 0;
}

.section-alt {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
    overflow: hidden;
}

.feature-svg {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: contain;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.pricing-grid-6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

@media (min-width: 1200px) {
    .pricing-grid-6 {
        grid-template-columns: repeat(6, 1fr);
    }
}

.pricing-card {
    background: var(--white);
    border-radius: 0.875rem;
    padding: 1.5rem 1.25rem;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.375rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.plan-badge {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.plan-badge.try {
    background: #ccfbf1;
    color: #0d9488;
}

.plan-badge.entry {
    background: #cffafe;
    color: #0891b2;
}

.plan-badge.professional {
    background: #fef3c7;
    color: #92400e;
}

.plan-badge.heavy {
    background: #ccfbf1;
    color: #0f766e;
}

.plan-badge.teams {
    background: #f3e8ff;
    color: #7c2d12;
}

.plan-badge.custom {
    background: #fef2f2;
    color: #b91c1c;
}

.price {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.375rem;
}

.price-period {
    color: var(--text-light);
    font-size: 0.875rem;
}

.features-list {
    list-style: none;
    margin: 1.25rem 0;
    flex: 1;
}

.features-list li {
    padding: 0.375rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.4;
}

.features-list li::before {
    content: '\2713';
    color: var(--success-green);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.features-list li.highlight {
    font-weight: 600;
    color: var(--text-dark);
}

.features-list li.unavailable {
    color: var(--text-light);
    opacity: 0.7;
}

.features-list li.unavailable::before {
    content: '\2717';
    color: #ef4444;
}

.overage-info {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.overage-info small {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.3;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: var(--primary-color);
    transform: translateY(-50%);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* Use Cases */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.use-case-profession {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.875rem;
}

/* Comparison Table */
.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 0.875rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    font-size: 0.875rem;
}

.comparison-table th {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.875rem 0.75rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.8125rem;
}

.comparison-table th:first-child {
    text-align: left;
    background: var(--secondary-color);
}

.comparison-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-light);
    text-align: center;
    vertical-align: middle;
}

.comparison-table td.feature-name {
    text-align: left;
    font-weight: 600;
    background: var(--bg-light);
    color: var(--text-dark);
}

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

.comparison-table tr:nth-child(even) {
    background: #fafbfc;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

.company-details {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1d5db;
}

.company-details p {
    margin: 0.25rem 0;
}

.company-details strong {
    color: var(--white);
}

.company-details a {
    color: #9ca3af;
    text-decoration: underline;
}

.company-details a:hover {
    color: var(--white);
}

/* Help Center Styles */
.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.help-option {
    background: var(--white);
    border-radius: 0.875rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-option:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.help-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.help-option h3 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.help-option p {
    margin-bottom: 1.25rem;
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* Contact Form */
.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

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

/* FAQ Styles */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-category {
    background: var(--white);
    border-radius: 0.875rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.faq-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    border-bottom: 2px solid var(--light-color);
    padding-bottom: 0.5rem;
}

.faq-item {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Privacy & Terms Styles */
.privacy-content,
.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-summary,
.terms-summary {
    background: var(--light-color);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.privacy-highlights,
.terms-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.privacy-highlight,
.terms-highlight {
    text-align: center;
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.privacy-section,
.terms-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.privacy-section:last-child,
.terms-section:last-child {
    border-bottom: none;
}

.privacy-section h2,
.terms-section h2 {
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.privacy-section h3,
.terms-section h3 {
    color: var(--text-dark);
    margin: 1.5rem 0 0.75rem 0;
    font-size: 1.125rem;
}

.privacy-section ul,
.terms-section ul {
    margin: 0.75rem 0;
    padding-left: 1.25rem;
}

.privacy-section li,
.terms-section li {
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* Usage Notes */
.usage-notes {
    background: var(--light-color);
    border: 1px dashed var(--primary-color);
    border-radius: 0.875rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.usage-notes h3 {
    margin-bottom: 0.875rem;
    color: var(--text-dark);
    font-size: 1.125rem;
}

.usage-notes p {
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.usage-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.usage-notes li {
    padding: 0.25rem 0;
    font-size: 0.875rem;
    color: var(--text-light);
    position: relative;
    padding-left: 1.25rem;
}

.usage-notes li::before {
    content: '\2022';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* AI Pattern */
.ai-pattern {
    background-image: radial-gradient(circle at 1px 1px, var(--primary-color) 1px, transparent 0);
    background-size: 20px 20px;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 6rem 0 4rem;
    }

    .nav-links {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card.featured {
        transform: none;
    }

    .process-step::after {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .help-options {
        grid-template-columns: 1fr;
    }

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Enterprise Section */
.enterprise-hero {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
}

.enterprise-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.enterprise-feature {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.enterprise-feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* Testimonial Cards */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--light-color);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-content {
    padding-top: 2rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.author-info h5 {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.author-info span {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* ROI Section */
.roi-calculator {
    background: var(--light-color);
    border-radius: 0.875rem;
    padding: 2rem;
    margin: 2rem 0;
}

.roi-calculator h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.roi-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    border: 1px solid var(--border-light);
}

.roi-item strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.roi-item .value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.roi-item span {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Support Info */
.support-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-tier {
    background: var(--white);
    border-radius: 0.875rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.support-tier.featured {
    border: 2px solid var(--primary-color);
}

.support-tier h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.support-tier ul {
    list-style: none;
    padding: 0;
}

.support-tier li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.support-tier li strong {
    color: var(--text-dark);
}
