/* Support Page Styles */
/* Base Reset & Variables */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green-600: #059669;
    --green-700: #047857;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: #fff;
}

a {
    color: var(--green-600);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gray-900);
    text-decoration: none;
}

.header-logo img {
    height: 32px;
    width: 32px;
}

.header-nav {
    display: flex;
    gap: 32px;
}

.header-nav a {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: var(--gray-900);
    text-decoration: none;
}

.header-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.header-toggle svg {
    width: 24px;
    height: 24px;
    color: var(--gray-700);
}

/* Mobile Menu */
.header-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 200;
}

.header-overlay.active {
    display: block;
}

.header-mobile {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 300;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.header-mobile.active {
    display: flex;
    transform: translateX(0);
}

.header-mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-200);
}

.header-mobile-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.header-mobile-logo img {
    height: 28px;
    width: 28px;
}

.header-mobile-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.header-mobile-close svg {
    width: 24px;
    height: 24px;
}

.header-mobile-links {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.header-mobile-links a {
    padding: 12px 0;
    color: var(--gray-700);
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
    text-decoration: none;
}

/* Hero Section */
.support-hero {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0f9ff 100%);
    padding: 80px 24px;
    text-align: center;
}

.support-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.support-hero p {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
.support-section {
    padding: 80px 24px;
}

.support-section.alt-bg {
    background: var(--gray-50);
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 48px;
}

/* Issues Grid */
.issues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.issue-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 28px;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.issue-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: var(--gray-300);
}

.issue-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.issue-icon svg {
    width: 24px;
    height: 24px;
}

.issue-icon.orange {
    background: #fff7ed;
    color: #ea580c;
}

.issue-icon.blue {
    background: #eff6ff;
    color: #2563eb;
}

.issue-icon.yellow {
    background: #fefce8;
    color: #ca8a04;
}

.issue-icon.red {
    background: #fef2f2;
    color: #dc2626;
}

.issue-icon.purple {
    background: #faf5ff;
    color: #9333ea;
}

.issue-icon.green {
    background: #f0fdf4;
    color: #16a34a;
}

.issue-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.issue-card ul {
    list-style: none;
}

.issue-card li {
    font-size: 0.9rem;
    color: var(--gray-600);
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
}

.issue-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 4px;
    height: 4px;
    background: var(--gray-400);
    border-radius: 50%;
}

/* Export Grid */
.export-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.export-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 32px;
}

.export-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.export-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--gray-700);
}

.export-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.export-card ol {
    padding-left: 20px;
}

.export-card li {
    font-size: 0.95rem;
    color: var(--gray-600);
    padding: 8px 0;
}

.export-card strong {
    color: var(--gray-800);
}

.export-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.export-cta p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background: #fff;
    border: 2px solid var(--green-600);
    color: var(--green-600);
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--green-600);
    color: #fff;
    text-decoration: none;
}

/* Privacy Section */
.privacy-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.privacy-card {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.privacy-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

.privacy-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.privacy-content p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.privacy-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.privacy-points span {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    background: var(--gray-50);
}

.contact-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 48px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.contact-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.contact-card > p {
    color: var(--gray-600);
    margin-bottom: 28px;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--green-600);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: background 0.2s;
    text-decoration: none;
}

.contact-email:hover {
    background: var(--green-700);
    text-decoration: none;
}

.contact-email svg {
    width: 20px;
    height: 20px;
}

.contact-include {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--gray-200);
    text-align: left;
}

.contact-include p {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.contact-include ul {
    list-style: none;
}

.contact-include li {
    font-size: 0.9rem;
    color: var(--gray-600);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.contact-include li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    background: var(--green-600);
    border-radius: 50%;
}

/* Quick Links */
.support-links {
    padding: 32px 24px;
    text-align: center;
    border-top: 1px solid var(--gray-200);
}

.support-links a {
    color: var(--gray-600);
    font-weight: 500;
}

.support-links a:hover {
    color: var(--green-600);
}

.support-links .divider {
    color: var(--gray-300);
    margin: 0 16px;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: #fff;
    padding: 48px 24px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-brand img {
    height: 28px;
    width: 28px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-copy {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gray-900);
    color: #fff;
    padding: 16px 24px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--gray-300);
    margin: 0;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

.cookie-accept {
    background: var(--green-600);
    color: #fff;
    border: none;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.cookie-accept:hover {
    background: var(--green-700);
}

/* Responsive */
@media (max-width: 900px) {
    .issues-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .header-toggle {
        display: block;
    }

    .support-hero {
        padding: 60px 24px;
    }
    
    .support-hero h1 {
        font-size: 2rem;
    }

    .support-section {
        padding: 60px 24px;
    }
    
    .issues-grid {
        grid-template-columns: 1fr;
    }
    
    .export-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    
    .privacy-points {
        justify-content: center;
    }

    .contact-card {
        padding: 32px 24px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .support-hero h1 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .issue-card {
        padding: 20px;
    }
    
    .support-links .divider {
        margin: 0 10px;
    }
}
