/* ═══════════════════════════════════════════════════════
   7Clips — Orange Brand Design System
   Cobalt-inspired · Orange Accent · Input-First
   ═══════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Orange Brand Palette */
    --bg-primary: #0A0A0F;
    --bg-secondary: #08080D;
    --bg-card: #111116;
    --bg-card-hover: #18181E;
    --bg-input: #0A0A0F;
    --border: #1E1E24;
    --border-hover: #2A2A32;
    --border-active: #FF6B35;

    /* Accent (Orange) */
    --accent: #FF6B35;
    --accent-hover: #E85D2C;
    --accent-glow: rgba(255, 107, 53, 0.15);
    --accent-subtle: rgba(255, 107, 53, 0.08);

    --text-primary: #F5F5F7;
    --text-secondary: #8E8E93;
    --text-muted: #48484A;

    --success: #30D158;
    --error: #FF453A;
    --warning: #FFD60A;

    /* Typography — Cobalt uses IBM Plex Mono */
    --font-family: 'IBM Plex Mono', 'Inter', -apple-system, BlinkMacSystemFont, monospace;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;

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

    /* Border Radius — Cobalt: 11px */
    --radius-sm: 8px;
    --radius-md: 11px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 100px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ── Layout ───────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ── Header ───────────────────────────────────────────── */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    font-size: var(--font-size-lg);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.logo-icon {
    display: none;
}

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

.logo-accent {
    color: var(--accent);
    font-weight: 400;
}

.nav {
    display: flex;
    gap: var(--space-lg);
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: 400;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--text-primary);
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
    padding: var(--space-3xl) 0 var(--space-2xl);
    text-align: center;
}

.hero-badge {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, #FF6B35, #FF8F65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.hero-subtitle {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
    font-weight: 300;
}

/* ── Input Card ───────────────────────────────────────── */
.input-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg-card);
    /* Cobalt pattern: inset box-shadow + outline */
    box-shadow: 0 0 0 1.5px var(--border) inset;
    outline: 1.5px solid var(--border);
    outline-offset: -1.5px;
    border: none;
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition: box-shadow 0.2s, outline-color 0.2s;
}

.input-card:focus-within {
    box-shadow: 0 0 0 4px var(--accent-glow);
    outline-color: var(--accent);
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--bg-primary);
    box-shadow: 0 0 0 1.5px var(--border) inset;
    border: none;
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    transition: box-shadow 0.2s;
}

.input-wrapper:focus-within {
    box-shadow: 0 0 0 2px var(--accent) inset;
}

.input-icon {
    font-size: 1rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.url-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    padding: var(--space-sm) 0;
    font-weight: 300;
}

.url-input::placeholder {
    color: var(--text-muted);
    font-weight: 300;
}

.paste-btn {
    background: none;
    border: 1px solid var(--border);
    font-size: 0.875rem;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    color: var(--text-secondary);
}

.paste-btn:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
}

/* ── Platform Selector ────────────────────────────────── */
.platform-selector {
    margin-top: var(--space-lg);
}

.platform-selector-label {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.platform-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.platform-chip {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.15s;
    font-size: var(--font-size-xs);
    user-select: none;
    color: var(--text-secondary);
}

.platform-chip.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.platform-chip:hover:not(.active) {
    border-color: var(--border-hover);
    color: var(--text-primary);
}

.chip-icon {
    font-size: 0.875rem;
}

.chip-name {
    font-weight: 500;
}

.chip-spec {
    font-size: 0.625rem;
    color: inherit;
    opacity: 0.6;
}

/* ── Caption Section ──────────────────────────────────── */
.caption-section {
    margin-top: var(--space-lg);
    text-align: left;
}

.caption-toggle {
    margin-bottom: var(--space-sm);
}

.toggle-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    user-select: none;
}

.toggle-input {
    display: none;
}

.toggle-track {
    width: 40px;
    height: 22px;
    background: var(--border);
    border-radius: var(--radius-full);
    position: relative;
    transition: background 0.2s;
}

.toggle-input:checked+.toggle-track {
    background: var(--accent);
}

.toggle-thumb {
    width: 16px;
    height: 16px;
    background: var(--bg-primary);
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: transform 0.2s;
}

.toggle-input:checked+.toggle-track .toggle-thumb {
    transform: translateX(18px);
}

.toggle-text {
    font-size: var(--font-size-sm);
    font-weight: 400;
    color: var(--text-secondary);
}

.caption-styles {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.style-option {
    padding: 6px 12px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: var(--font-size-xs);
    transition: all 0.15s;
    color: var(--text-secondary);
}

.style-option.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* ── Advanced Options ─────────────────────────────────── */
.advanced-section {
    margin-top: var(--space-lg);
    text-align: left;
}

.advanced-toggle {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-family);
    font-size: var(--font-size-xs);
    cursor: pointer;
    padding: var(--space-xs) 0;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.advanced-toggle:hover {
    color: var(--text-secondary);
}

.toggle-arrow {
    font-size: 10px;
    transition: transform 0.2s;
}

.advanced-options {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.option-group {
    margin-bottom: var(--space-md);
}

.option-group:last-child {
    margin-bottom: 0;
}

.option-label {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.option-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.option-chip {
    padding: 5px 10px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: var(--font-size-xs);
    transition: all 0.15s;
    user-select: none;
    color: var(--text-secondary);
}

.option-chip.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.option-chip:hover:not(.active) {
    border-color: var(--border-hover);
}

/* ── Process Button ───────────────────────────────────── */
.process-btn {
    width: 100%;
    margin-top: var(--space-lg);
    padding: var(--space-md) var(--space-xl);
    background: var(--accent);
    border: none;
    border-radius: var(--radius-md);
    color: #fff;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

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

.process-btn:active:not(:disabled) {
    transform: scale(0.98);
}

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

/* ── Spinner ──────────────────────────────────────────── */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--bg-primary);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

.spinner.large {
    width: 28px;
    height: 28px;
    border-width: 3px;
    border-color: rgba(255, 255, 255, 0.2);
    border-top-color: var(--text-primary);
}

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

/* ── Progress Card ────────────────────────────────────── */
.progress-card {
    max-width: 560px;
    margin: var(--space-xl) auto 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.progress-status {
    font-weight: 500;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.progress-percent {
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: var(--text-primary);
}

.progress-bar-track {
    height: 3px;
    background: var(--border);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-lg);
}

.progress-bar-fill {
    height: 100%;
    background: var(--accent);
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-steps .step {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    font-weight: 400;
}

.progress-steps .step.active {
    color: var(--accent);
}

.progress-steps .step.done {
    color: var(--success);
}

/* ── Sections ─────────────────────────────────────────── */
.section {
    padding: var(--space-3xl) 0;
}

.section-dark {
    background: var(--bg-secondary);
}

.section-title {
    font-size: var(--font-size-xl);
    font-weight: 300;
    text-align: center;
    margin-bottom: var(--space-2xl);
    letter-spacing: -0.01em;
    color: var(--text-secondary);
}

/* ── Steps Grid ───────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.step-card {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    position: relative;
}

.step-card h3 {
    font-size: var(--font-size-base);
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.step-card p {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    line-height: 1.6;
}

.step-number {
    width: 24px;
    height: 24px;
    background: var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: var(--text-secondary);
    margin: 0 auto var(--space-md);
    position: static;
}

.step-icon {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    opacity: 0.6;
}

/* ── Platform Grid ────────────────────────────────────── */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--space-sm);
}

.platform-card {
    text-align: center;
    padding: var(--space-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 0.2s;
}

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

.platform-icon-big {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    opacity: 0.7;
}

.platform-name {
    font-weight: 500;
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-xs);
}

.platform-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
}

.platform-specs .spec {
    font-size: 0.625rem;
    color: var(--text-muted);
    padding: 1px 6px;
}

/* ── Features Grid ────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.feature-card {
    padding: var(--space-lg);
}

.feature-icon {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    opacity: 0.5;
}

.feature-card h3 {
    font-weight: 500;
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-xs);
}

.feature-card p {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── Result Page ──────────────────────────────────────── */
.result-hero {
    padding-top: var(--space-2xl);
}

.result-title {
    font-size: var(--font-size-3xl);
    font-weight: 300;
    margin-bottom: var(--space-sm);
}

.result-subtitle {
    color: var(--text-muted);
    margin-bottom: var(--space-2xl);
    font-weight: 300;
}

.results-grid {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.loading-state {
    text-align: center;
    padding: var(--space-2xl);
    color: var(--text-muted);
}

.loading-state p {
    margin-top: var(--space-md);
}

.result-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 0.2s;
}

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

.result-card.error {
    border-color: rgba(248, 113, 113, 0.3);
}

.result-icon {
    font-size: 1.5rem;
    opacity: 0.6;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-weight: 500;
    font-size: var(--font-size-sm);
}

.result-spec {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

.error-text {
    color: var(--error);
}

.result-download-btn {
    padding: 6px 14px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: var(--font-size-xs);
    font-weight: 500;
    transition: background 0.2s;
    white-space: nowrap;
}

.result-download-btn:hover {
    background: var(--accent-hover);
}

.download-all-wrapper {
    text-align: center;
    margin-top: var(--space-xl);
}

.download-all-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-2xl);
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background 0.2s;
}

.download-all-btn:hover {
    background: var(--accent-hover);
}

.process-another {
    text-align: center;
    margin-top: var(--space-xl);
}

.another-btn {
    color: var(--text-muted);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color 0.2s;
}

.another-btn:hover {
    color: var(--text-primary);
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.footer-text {
    color: var(--text-muted);
    font-size: var(--font-size-xs);
}

.footer-copy {
    color: var(--text-muted);
    font-size: var(--font-size-xs);
    opacity: 0.5;
}

/* ── Animations ───────────────────────────────────────── */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ── Micro-Interactions ──────────────────────────────── */
.platform-chip:active,
.style-option:active,
.option-chip:active {
    transform: scale(0.97);
}

a,
button,
.platform-chip,
.style-option,
.option-chip {
    -webkit-tap-highlight-color: transparent;
}

/* ── Focus States ─────────────────────────────────────── */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 1px solid var(--text-muted);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.url-input:focus-visible {
    outline: none;
}

.process-btn:focus-visible {
    outline: 2px solid var(--text-primary);
    outline-offset: 2px;
}

.result-download-btn:focus-visible,
.download-all-btn:focus-visible {
    outline: 2px solid var(--text-primary);
    outline-offset: 2px;
}

/* ── Skeleton Loader ──────────────────────────────────── */
.skeleton {
    background: linear-gradient(90deg,
            var(--border) 25%,
            var(--bg-card-hover) 50%,
            var(--border) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: var(--radius-sm);
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.skeleton-text {
    height: 14px;
    margin-bottom: 8px;
    border-radius: 4px;
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-card {
    height: 64px;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
}

.loading-pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* ── Selection ────────────────────────────────────────── */
::selection {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* ── Scrollbar ────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border-hover);
}

/* ── Responsive ───────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --font-size-5xl: 2.5rem;
        --font-size-4xl: 2rem;
        --font-size-3xl: 1.5rem;
        --space-3xl: 3rem;
    }

    .hero-title {
        font-size: var(--font-size-3xl);
    }

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

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav {
        display: none;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .input-card {
        padding: var(--space-md);
    }

    .platform-chip {
        padding: 8px 12px;
        min-height: 44px;
    }

    .caption-styles {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .style-option {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .option-chip {
        min-height: 40px;
        display: flex;
        align-items: center;
        padding: 8px 12px;
    }

    .process-btn {
        min-height: 52px;
    }

    .progress-card {
        padding: var(--space-md);
    }

    .progress-steps {
        flex-wrap: wrap;
        gap: var(--space-sm);
        justify-content: center;
    }

    .result-card {
        flex-wrap: wrap;
        padding: var(--space-md);
    }

    .result-download-btn {
        width: 100%;
        text-align: center;
        padding: 10px;
        min-height: 44px;
    }

    .download-all-btn {
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding: var(--space-2xl) 0;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    :root {
        --font-size-4xl: 1.75rem;
        --font-size-3xl: 1.5rem;
    }

    .hero-title {
        font-size: var(--font-size-3xl);
    }

    .hero-badge {
        font-size: 0.625rem;
    }

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

    .caption-styles {
        grid-template-columns: 1fr;
    }

    .header-inner {
        height: 48px;
    }

    .input-card {
        border-radius: var(--radius-md);
        margin: 0 calc(-1 * var(--space-md));
    }
}

/* Notched phones */
@supports (padding: max(0px)) {
    body {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }

    .footer {
        padding-bottom: max(var(--space-xl), env(safe-area-inset-bottom));
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ── SEO Pages ────────────────────────────────────────── */
.seo-content {
    max-width: 640px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
}

.seo-content h2 {
    font-size: var(--font-size-xl);
    font-weight: 500;
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.seo-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
    font-weight: 300;
}

.seo-content ul {
    color: var(--text-secondary);
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
}

.seo-content li {
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}