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

:root {
    --brand-green: #C8F031;
    --bg-black: #000000;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --border-color: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --priority-critical: #ff4444;
    --priority-important: #ffaa00;
    --priority-nice: #44ff44;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-black);
    min-height: 100vh;
}

/* Navigation Styles */
.top-nav {
    background: var(--bg-black);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: background 0.3s ease;
}

.hamburger:hover .hamburger-line,
.hamburger:active .hamburger-line {
    background: var(--brand-green);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 20px;
        border-top: 1px solid var(--border-color);
    }
    
    .hamburger {
        display: flex;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    text-align: center;
    padding: 20px 20px 60px 20px;
}

.header-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin: 0 auto -15px auto;
    display: block;
    filter: invert(1) brightness(1.1);
    transform: scale(1.2);
    object-fit: cover;
    object-position: center;
}

.presents {
    font-size: 0.85em;
    color: var(--text-secondary);
    margin: 0 0 20px 0;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.brand-domain {
    font-size: 4em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

header h1 {
    font-size: 3.5em;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.subtitle {
    font-size: 2em;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.2;
}

.white-text {
    color: var(--text-primary);
}

.brand-text {
    color: var(--brand-green);
}

.tagline {
    font-size: 1.2em;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.powered-by {
    font-size: 0.9em;
    color: var(--text-muted);
}

/* Main Section */
main {
    background: var(--bg-dark);
    border-radius: 16px;
    padding: 50px;
    border: 1px solid var(--border-color);
}

/* Input Section */
.input-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    background: var(--bg-card);
    padding: 5px;
    border-radius: 10px;
}

.toggle-btn {
    flex: 1;
    padding: 14px 24px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
}

.toggle-btn.active {
    background: var(--brand-green);
    color: white;
    font-weight: 600;
    text-shadow: 
        -1px -1px 0px rgba(255, 255, 255, 0.4),
        1px 1px 2px rgba(0, 0, 0, 0.7);
}

.input-group {
    margin-bottom: 25px;
}

.input-group.hidden {
    display: none;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 14px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: var(--text-muted);
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--brand-green);
    background: var(--bg-dark);
}

.parameters-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 30px 0;
}

.full-width {
    grid-column: 1 / -1;
}

.gdpr-consent {
    margin: 25px 0;
    padding: 18px;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.gdpr-consent label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    gap: 12px;
}

.gdpr-consent label span {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.gdpr-consent input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--brand-green);
}

.gdpr-consent a {
    color: var(--brand-green);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.gdpr-consent a:hover {
    text-decoration: underline;
}

/* Analyze Button */
.analyze-btn {
    width: 100%;
    padding: 18px 40px;
    background: var(--brand-green);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-shadow: 
        -1px -1px 0px rgba(255, 255, 255, 0.4),
        1px 1px 2px rgba(0, 0, 0, 0.7);
}

.search-icon {
    flex-shrink: 0;
    filter: drop-shadow(-1px -1px 0px rgba(255, 255, 255, 0.4))
            drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.7));
}

.analyze-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 240, 49, 0.3);
}

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

.btn-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 0;
}

.progress-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: white;
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
}

.progress-stage {
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-align: center;
}

.progress-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top: 3px solid var(--bg-black);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hidden {
    display: none !important;
}

.error-message {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid var(--priority-critical);
    color: var(--priority-critical);
    padding: 14px 18px;
    border-radius: 10px;
    margin-top: 20px;
}

/* Results Section */
.results-section {
    margin-top: 50px;
    animation: fadeIn 0.5s;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.results-header h2 {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--text-primary);
}

.results-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    padding: 12px 24px;
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.action-btn:hover {
    background: var(--brand-green);
    color: var(--bg-black);
    border-color: var(--brand-green);
}

/* Score Dashboard */
.score-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.score-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.score-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-green);
}

.score-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-weight: 500;
}

.score-value {
    font-size: 3em;
    font-weight: 700;
    color: var(--brand-green);
}

.score-max {
    font-size: 1.5em;
    color: var(--text-muted);
}

.priorities-card {
    grid-column: 1 / -1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
}

.priorities-card h3 {
    color: var(--brand-green);
    margin-bottom: 20px;
    font-size: 1.3em;
}

.priority-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.priority-item {
    padding: 12px 16px;
    background: var(--bg-dark);
    border-radius: 8px;
    border-left: 4px solid var(--brand-green);
}

/* Tabs */
.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover {
    border-color: var(--brand-green);
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--brand-green);
    color: var(--bg-black);
    border-color: var(--brand-green);
    font-weight: 600;
}

/* Tab Content */
.tab-content-container {
    position: relative;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s;
}

/* Result Cards */
.result-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.result-section h3 {
    color: var(--brand-green);
    margin-bottom: 15px;
    font-size: 1.3em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.result-section h4 {
    color: var(--text-primary);
    margin: 20px 0 12px;
    font-size: 1.1em;
}

.result-section pre {
    background: var(--bg-dark);
    padding: 20px;
    border-radius: 8px;
    white-space: pre-wrap;
    word-wrap: break-word;
    color: var(--text-secondary);
    line-height: 1.8;
    border-left: 3px solid var(--brand-green);
    font-family: 'Inter', sans-serif;
}

.result-section ul {
    margin: 15px 0;
    padding-left: 25px;
    color: var(--text-secondary);
}

.result-section ul li {
    margin: 10px 0;
}

/* Collapsible Sections */
.collapsible {
    cursor: pointer;
    user-select: none;
}

.collapsible::after {
    content: '▼';
    float: right;
    transition: transform 0.3s;
    color: var(--brand-green);
}

.collapsible.collapsed::after {
    transform: rotate(-90deg);
}

.collapsible-content {
    max-height: 10000px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.collapsible-content.collapsed {
    max-height: 0;
}

/* Priority Badges */
.priority-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-left: 10px;
}

.priority-critical {
    background: rgba(255, 68, 68, 0.2);
    color: var(--priority-critical);
    border: 1px solid var(--priority-critical);
}

.priority-important {
    background: rgba(255, 170, 0, 0.2);
    color: var(--priority-important);
    border: 1px solid var(--priority-important);
}

.priority-nice {
    background: rgba(68, 255, 68, 0.2);
    color: var(--priority-nice);
    border: 1px solid var(--priority-nice);
}

/* Checkboxes */
.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: var(--bg-dark);
    border-radius: 8px;
    margin: 8px 0;
}

.checkbox-item input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-item label {
    flex: 1;
    cursor: pointer;
    color: var(--text-secondary);
}

/* Footer */
footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-logo {
    width: auto;
    height: 40px;
    flex-shrink: 0;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
    margin-left: auto;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-nav a:hover {
    color: var(--brand-green);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    width: 100%;
}

.footer-bottom a {
    color: var(--brand-green);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-bottom a:hover {
    opacity: 0.7;
}

/* Email Gate */
.email-gate {
    margin-top: 50px;
    padding: 40px;
    background: var(--bg-card);
    border: 2px solid var(--brand-green);
    border-radius: 16px;
    animation: fadeIn 0.5s;
}

.email-gate-content h3 {
    color: var(--brand-green);
    font-size: 1.8em;
    margin-bottom: 15px;
    text-align: center;
}

.email-gate-description {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1em;
}

.email-gate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.email-gate-consent {
    margin: 20px 0;
    padding: 15px;
    background: var(--bg-dark);
    border-radius: 8px;
}

.email-gate-consent label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    gap: 12px;
}

.email-gate-consent label span {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.email-gate-consent input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--brand-green);
}

.unlock-btn {
    width: 100%;
    padding: 18px 40px;
    background: var(--brand-green);
    color: var(--bg-black);
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.unlock-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 240, 49, 0.3);
}

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

/* Blurred Content */
.content-blurred {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
    position: relative;
}

.content-blurred::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
}

/* Code Verification */
.code-verification {
    margin-top: 30px;
}

.code-sent-message {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 1.05em;
    line-height: 1.6;
}

.code-sent-message strong {
    color: var(--brand-green);
}

#verification-code {
    text-align: center;
    font-size: 24px;
    letter-spacing: 5px;
    font-weight: 600;
}

.resend-code {
    text-align: center;
    margin-top: 20px;
}

.resend-code a {
    color: var(--brand-green);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.resend-code a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Limit Message */
.limit-message {
    background: var(--bg-card);
    border: 2px solid var(--brand-green);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-top: 30px;
}

.limit-message h3 {
    color: var(--brand-green);
    font-size: 1.6em;
    margin-bottom: 15px;
}

.limit-message p {
    color: var(--text-secondary);
    font-size: 1.1em;
    line-height: 1.8;
}

/* Circular Score Gauges */
.score-gauge-container {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-left: 16px;
}

.score-gauge {
    position: relative;
    width: 80px;
    height: 80px;
}

.score-gauge svg {
    transform: rotate(-90deg);
}

.score-gauge-bg {
    fill: none;
    stroke: var(--border-color);
    stroke-width: 8;
}

.score-gauge-fill {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.8s ease, stroke 0.3s ease;
}

.score-gauge-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Horizontal Progress Bars */
.metrics-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 20px 0;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.metric-label {
    min-width: 180px;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
}

.metric-bar-container {
    flex: 1;
    max-width: 65%;
    display: flex;
    align-items: center;
    gap: 12px;
}

.metric-bar {
    flex: 1;
    height: 12px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.metric-bar-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 0.8s ease, background-color 0.3s ease;
}

.metric-value {
    min-width: 45px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: right;
}

/* Flexible Two-Column Grid */
.sections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.section-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
}

.section-card.full-width {
    grid-column: 1 / -1;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.section-title {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--brand-green);
    flex: 1;
}

.section-summary {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

/* Recommendations List */
.recommendations-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.recommendation-item {
    padding: 14px 16px;
    background: var(--bg-dark);
    border-radius: 8px;
    border-left: 4px solid var(--text-muted);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Priority Indicators */
.recommendation-item.priority-critical {
    border-left-color: var(--priority-critical);
    font-weight: 600;
}

.recommendation-item.priority-important {
    border-left-color: var(--priority-important);
    font-weight: 600;
}

.recommendation-item.priority-normal {
    border-left-color: var(--text-muted);
}

/* Code Style Boxes */
.code-box {
    background: var(--bg-black);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    margin-top: 10px;
    font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
    font-size: 13px;
    color: var(--brand-green);
    line-height: 1.6;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Color Gradient Classes */
.score-red {
    color: var(--priority-critical);
}

.score-yellow {
    color: var(--priority-important);
}

.score-green {
    color: var(--priority-nice);
}

.gauge-red .score-gauge-fill {
    stroke: var(--priority-critical);
}

.gauge-yellow .score-gauge-fill {
    stroke: var(--priority-important);
}

.gauge-green .score-gauge-fill {
    stroke: var(--priority-nice);
}

.bar-red .metric-bar-fill {
    background: var(--priority-critical);
}

.bar-yellow .metric-bar-fill {
    background: var(--priority-important);
}

.bar-green .metric-bar-fill {
    background: var(--priority-nice);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 15px 15px 40px 15px;
    }
    
    .header-logo {
        max-width: 250px;
        transform: scale(1);
        margin: 0 auto -10px auto;
    }
    
    .presents {
        font-size: 0.7em;
        margin: 0 0 15px 0;
    }
    
    .brand-domain {
        font-size: 2em;
        margin-bottom: 15px;
    }
    
    header h1 { 
        font-size: 2.5em; 
    }
    
    .subtitle {
        font-size: 1.2em;
        margin-bottom: 10px;
    }
    
    .tagline {
        font-size: 1em;
    }
    
    .parameters-grid { 
        grid-template-columns: 1fr; 
    }
    
    main { 
        padding: 30px 20px; 
    }
    
    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    
    .score-dashboard {
        grid-template-columns: 1fr;
    }
    
    .email-gate {
        padding: 25px;
    }
    
    .email-gate-grid {
        grid-template-columns: 1fr;
    }
    
    .sections-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-label {
        min-width: 140px;
        font-size: 14px;
    }
    
    .metric-bar-container {
        max-width: 100%;
    }
    
    .score-gauge-container {
        margin-left: 0;
        margin-top: 12px;
    }
    
    .faq-section {
        padding: 30px 20px;
    }
    
    .faq-title {
        font-size: 2em;
        margin-bottom: 30px;
    }
    
    .faq-question {
        font-size: 17px;
        padding: 18px 20px;
    }
    
    .faq-answer {
        padding: 0 20px 18px 20px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* FAQ Section */
.faq-section {
    background: var(--bg-dark);
    padding: 80px 20px;
    border-top: 1px solid var(--border-color);
}

.faq-title {
    text-align: center;
    font-size: 3em;
    color: var(--brand-green);
    margin-bottom: 60px;
    font-weight: 700;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--brand-green);
    box-shadow: 0 4px 20px rgba(200, 240, 49, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.faq-question:hover {
    opacity: 1;
    color: var(--text-primary);
    background: rgba(200, 240, 49, 0.03);
}

.faq-question:hover .faq-icon {
    color: var(--brand-green);
}

.faq-question[aria-expanded="true"] {
    opacity: 1;
    border-bottom: 1px solid var(--border-color);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    color: var(--brand-green);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}

.faq-answer.active {
    max-height: 1000px;
    padding: 8px 28px 24px 28px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    padding-left: 24px;
    margin: 12px 0;
}

.faq-answer li {
    margin: 8px 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer */
footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 40px 20px 30px;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo {
    width: auto;
    height: 60px;
    margin-bottom: 10px;
}

.footer-copyright,
.footer-compliance {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.footer-left a {
    color: var(--brand-green);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-left a:hover {
    opacity: 0.7;
}

.footer-right {
    display: flex;
    align-items: center;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--brand-green);
}

/* Privacy Policy Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal-content {
    background: var(--bg-card);
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid var(--border-color);
}

.modal-close {
    position: sticky;
    top: 0;
    float: right;
    background: var(--bg-dark);
    border: none;
    color: var(--text-primary);
    font-size: 32px;
    cursor: pointer;
    padding: 10px 20px;
    z-index: 10;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--brand-green);
}

.modal-body {
    padding: 40px;
    padding-top: 20px;
}

.modal-body h1 {
    font-size: 2rem;
    color: var(--brand-green);
    margin-bottom: 10px;
}

.modal-body .last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.modal-body h2 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.modal-body h3 {
    font-size: 1.1rem;
    color: var(--brand-green);
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal-body p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.7;
}

.modal-body ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.modal-body li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.modal-body a {
    color: var(--brand-green);
    text-decoration: none;
}

.modal-body a:hover {
    text-decoration: underline;
}

.modal-body strong {
    color: var(--text-primary);
}
