/* ============================================
   CSS Variables & Design Tokens
   ============================================ */
:root {
    /* Colors - Shopify Brand */
    --color-bg: #0a0f0d;
    --color-bg-subtle: #0e1512;
    --color-bg-card: #131a17;
    --color-bg-elevated: #182019;
    --color-surface: #1c2520;

    --color-text: #ffffff;
    --color-text-secondary: #a1b5aa;
    --color-text-muted: #6b8a77;

    --color-primary: #95BF47;
    --color-primary-hover: #a8d454;
    --color-primary-subtle: rgba(149, 191, 71, 0.15);
    --color-primary-dark: #5E8E3E;

    --color-accent: #5BCEA3;
    --color-accent-subtle: rgba(91, 206, 163, 0.15);

    --color-success: #34d399;
    --color-success-subtle: rgba(52, 211, 153, 0.15);

    --color-warning: #fbbf24;
    --color-warning-subtle: rgba(251, 191, 36, 0.15);

    --color-error: #f87171;
    --color-error-subtle: rgba(248, 113, 113, 0.15);

    --color-border: rgba(149, 191, 71, 0.12);
    --color-border-hover: rgba(149, 191, 71, 0.25);

    /* Gradients - Shopify Style */
    --gradient-primary: linear-gradient(135deg, #5E8E3E 0%, #95BF47 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(149, 191, 71, 0.2) 0%, transparent 70%);

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

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --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;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 60px rgba(149, 191, 71, 0.2);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

ul,
ol {
    list-style: none;
}

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

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-md) 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-lg);
    font-weight: 700;
}

.logo-icon {
    width: 36px;
    height: 36px;
}

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

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: color var(--transition-base);
}

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

.btn-nav {
    padding: var(--space-sm) var(--space-md);
    background: var(--color-primary-subtle);
    color: var(--color-primary-hover);
    border-radius: var(--radius-full);
}

.btn-nav:hover {
    background: var(--color-primary);
    color: white;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition-base);
}

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

    .mobile-menu-btn {
        display: flex;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--space-4xl)) 0 var(--space-4xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    opacity: 0.5;
    pointer-events: none;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(149, 191, 71, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero h1 {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle .highlight {
    color: var(--color-text);
    font-weight: 600;
}

/* ============================================
   Detector Card
   ============================================ */
.detector-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    margin-bottom: var(--space-2xl);
}

.detector-form {
    width: 100%;
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-sm);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.input-wrapper:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-subtle);
}

.input-icon {
    width: 24px;
    height: 24px;
    color: var(--color-text-muted);
    margin-left: var(--space-md);
    flex-shrink: 0;
}

.input-wrapper input {
    flex: 1;
    padding: var(--space-md);
    color: var(--color-text);
    font-size: var(--font-size-base);
}

.input-wrapper input::placeholder {
    color: var(--color-text-muted);
}

.detect-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: transform var(--transition-fast), box-shadow var(--transition-base);
    min-width: 140px;
}

.detect-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(149, 191, 71, 0.3);
}

.detect-btn:active {
    transform: translateY(0);
}

.detect-btn.loading .btn-text {
    display: none;
}

.detect-btn.loading .btn-loading {
    display: flex;
}

.btn-loading {
    display: none;
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

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

/* Results */
.results {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
    animation: fadeIn 0.3s ease;
}

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

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

.results.hidden {
    display: none;
}

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

.results-header h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.save-btn {
    padding: var(--space-sm);
    color: var(--color-text-muted);
    transition: color var(--transition-base);
}

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

.save-btn svg {
    width: 20px;
    height: 20px;
}

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

.result-item {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
}

.result-item-label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-xs);
}

.result-item-value {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-text);
}

.result-item-value.theme-name {
    color: var(--color-primary-hover);
}

.result-item-value a {
    color: var(--color-primary-hover);
    text-decoration: underline;
}

.result-item-value a:hover {
    color: var(--color-primary);
}

/* Error Message */
.error-message {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: var(--color-error-subtle);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-lg);
    color: var(--color-error);
    text-align: center;
}

.error-message.hidden {
    display: none;
}

/* Stats */
.stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-text);
}

.stat-label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-top: var(--space-xs);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: var(--font-size-3xl);
    }

    .hero-subtitle {
        font-size: var(--font-size-base);
    }

    .input-wrapper {
        flex-direction: column;
        padding: var(--space-md);
    }

    .input-icon {
        display: none;
    }

    .input-wrapper input {
        width: 100%;
        text-align: center;
    }

    .detect-btn {
        width: 100%;
    }

    .stats {
        gap: var(--space-md);
    }

    .stat-divider {
        display: none;
    }
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.section-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--color-primary-subtle);
    color: var(--color-primary-hover);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-header h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.section-header p {
    color: var(--color-text-secondary);
    font-size: var(--font-size-lg);
}

/* ============================================
   Features Section
   ============================================ */
.features {
    background: var(--color-bg-subtle);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: transform var(--transition-base), border-color var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-hover);
}

.feature-card.featured {
    background: linear-gradient(135deg, rgba(149, 191, 71, 0.1) 0%, rgba(91, 206, 163, 0.1) 100%);
    border-color: rgba(149, 191, 71, 0.3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
}

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

.gradient-1 {
    background: linear-gradient(135deg, #5E8E3E 0%, #95BF47 100%);
    color: white;
}

.gradient-2 {
    background: linear-gradient(135deg, #5BCEA3 0%, #34d399 100%);
    color: white;
}

.gradient-3 {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
}

.gradient-4 {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
}

.gradient-5 {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: white;
}

.gradient-6 {
    background: linear-gradient(135deg, #95BF47 0%, #5BCEA3 100%);
    color: white;
}

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

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

.feature-tag {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
    border-radius: var(--radius-sm);
    background: var(--color-primary-subtle);
    color: var(--color-primary-hover);
}

.feature-tag.new {
    background: var(--color-success-subtle);
    color: var(--color-success);
}

.feature-tag.coming {
    background: var(--color-warning-subtle);
    color: var(--color-warning);
}

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

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   How It Works
   ============================================ */
.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.step {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    max-width: 300px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    font-size: var(--font-size-xl);
    font-weight: 700;
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

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

.step-content p {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

.step-connector {
    width: 40px;
    height: 2px;
    background: var(--color-border);
}

@media (max-width: 900px) {
    .step-connector {
        display: none;
    }

    .steps {
        flex-direction: column;
    }

    .step {
        max-width: 100%;
        width: 100%;
    }
}

/* ============================================
   Popular Themes
   ============================================ */
.popular-themes {
    background: var(--color-bg-subtle);
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.theme-card {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    transition: transform var(--transition-base), border-color var(--transition-base);
}

.theme-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-hover);
}

.theme-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.theme-badge.free {
    background: var(--color-success-subtle);
    color: var(--color-success);
}

.theme-badge.premium {
    background: var(--color-primary-subtle);
    color: var(--color-primary-hover);
}

.theme-card h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.theme-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
}

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

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

@media (max-width: 640px) {
    .themes-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   History Section
   ============================================ */
.history-list {
    max-width: 800px;
    margin: 0 auto;
}

.history-empty {
    text-align: center;
    padding: var(--space-3xl);
    background: var(--color-bg-card);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-xl);
}

.history-empty svg {
    width: 48px;
    height: 48px;
    color: var(--color-text-muted);
    margin: 0 auto var(--space-md);
}

.history-empty p {
    color: var(--color-text-muted);
}

.history-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-md);
    transition: border-color var(--transition-base);
}

.history-item:hover {
    border-color: var(--color-border-hover);
}

.history-item-info {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.history-item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-subtle);
    border-radius: var(--radius-md);
    color: var(--color-primary-hover);
}

.history-item-details h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
}

.history-item-details p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.history-item-theme {
    text-align: right;
}

.history-item-theme span {
    display: block;
}

.history-item-theme .theme-name {
    font-weight: 600;
    color: var(--color-primary-hover);
}

.history-item-theme .theme-date {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    transition: background var(--transition-base);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    background: var(--color-bg-elevated);
}

.faq-item summary svg {
    width: 20px;
    height: 20px;
    color: var(--color-text-muted);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq-item[open] summary svg {
    transform: rotate(180deg);
}

.faq-item p {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.cta p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: transform var(--transition-fast), box-shadow var(--transition-base);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}

.cta-btn svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-bg-subtle);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: var(--space-md);
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

.footer-links {
    display: flex;
    gap: var(--space-3xl);
}

.footer-column h4 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.footer-column a {
    display: block;
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    padding: var(--space-xs) 0;
    transition: color var(--transition-base);
}

.footer-column a:hover {
    color: var(--color-text);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.footer-note {
    font-size: var(--font-size-xs);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: var(--space-xl);
    }

    .footer-column {
        min-width: 120px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

/* ============================================
   Utilities
   ============================================ */
.hidden {
    display: none !important;
}