:root {
    /* Fondos */
    --bg-dark: #0a0f1a;
    --bg-secondary: #0d1321;
    --bg-card: #151d2e;
    --bg-card-hover: #1a2540;

    /* Acentos */
    --accent-primary: #3b82f6;
    --accent-secondary: #60a5fa;
    --accent-light: #93c5fd;
    --accent-dark: #1d4ed8;
    --accent-glow: rgba(59, 130, 246, 0.35);

    /* Textos */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Bordes */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(59, 130, 246, 0.25);

    /* Gradientes */
    --gradient-hero: radial-gradient(ellipse at top, #1e293b 0%, #0a0f1a 70%);
    --gradient-accent: linear-gradient(135deg, var(--accent-primary), var(--accent-dark));
    --gradient-text: linear-gradient(90deg, #fff 0%, var(--accent-secondary) 100%);

    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px var(--accent-glow);

    /* Tipografía */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Espaciado */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 80px;
    --spacing-2xl: 120px;

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;

    /* Login page vars */
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --error-color: #ef4444;
    --success-color: #10b981;
    --text-primary-login: #e2e8f0;
    --text-secondary-login: #94a3b8;
    --bg-primary: rgba(30, 41, 59, 0.7);
    --bg-secondary-login: rgba(51, 65, 85, 0.5);
    --border-color: rgba(148, 163, 184, 0.2);
    --shadow-sm-login: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md-login: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg-login: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background: var(--gradient-hero);
    min-height: 100vh;
    color: var(--text-secondary);
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
}

.page-content {
    flex: 1;
    position: relative;
    z-index: 2;
    padding-top: 70px;
    padding-bottom: 16px;
}

/* Background */
.page-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: var(--gradient-hero);
    overflow: hidden;
}

.page-background::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    filter: blur(100px);
    z-index: 1;
}

.page-background::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.12), transparent 70%);
    filter: blur(80px);
    z-index: 1;
}

.tech-background {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 15, 26, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.logo-text {
    font-weight: 700;
    font-size: 1.4rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    padding: var(--spacing-xs) 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    background: transparent !important;
    color: var(--accent-primary) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-sm) !important;
    border: 1px solid var(--accent-primary) !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.btn-nav:hover {
    background: var(--accent-primary) !important;
    color: white !important;
    box-shadow: var(--shadow-glow);
}

.btn-nav::after {
    display: none !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 450px;
    padding: 20px;
    margin: 0 auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

.login-box {
    background: var(--bg-primary);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 28px 30px;
    box-shadow: var(--shadow-xl);
    position: relative;
    animation: slideUp 0.5s ease-out;
    border: 1px solid rgba(148, 163, 184, 0.15);
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    /* Firefox */
}

.login-box::-webkit-scrollbar {
    width: 0;
    /* Chrome/Safari/Edge */
    height: 0;
}

.login-box h1 {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.login-box::-webkit-scrollbar {
    width: 4px;
}

.login-box::-webkit-scrollbar-track {
    background: transparent;
}

.login-box::-webkit-scrollbar-thumb {
    background: rgba(96, 165, 250, 0.2);
    border-radius: 2px;
    transition: background 0.2s ease;
}

.login-box::-webkit-scrollbar-thumb:hover {
    background: rgba(96, 165, 250, 0.4);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

h1 {
    font-size: 28px;
    color: var(--text-primary-login);
    text-align: center;
    margin-bottom: 8px;
    font-weight: 700;
}

.subtitle {
    text-align: center;
    color: var(--text-secondary-login);
    font-size: 14px;
    margin-bottom: 32px;
}

.tabs-container {
    margin-bottom: 30px;
}

.tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border-color);
}

.tab-button {
    flex: 1;
    padding: 12px 16px;
    background: none;
    border: none;
    color: var(--text-secondary-login);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.tab-button:hover {
    color: var(--primary-light);
}

.tab-button.active {
    color: var(--primary-color);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    animation: slideDown 0.3s ease-out;
    backdrop-filter: blur(8px);
    border-left: 4px solid;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-error {
    background-color: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border-color: var(--error-color);
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.15);
    color: #6ee7b7;
    border-color: var(--success-color);
}

.input-group {
    margin-bottom: 24px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary-login);
    font-size: 14px;
    font-weight: 500;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: var(--bg-secondary-login);
    color: var(--text-primary-login);
}

.input-group input::placeholder {
    color: #64748b;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(51, 65, 85, 0.6);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.input-group input[type="date"] {
    cursor: pointer;
}

.input-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.7);
    cursor: pointer;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}

.input-icon svg {
    width: 18px;
    height: 18px;
}

.input-icon svg path {
    fill: #94a3b8;
}

.toggle-password {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    z-index: 5;
}

.toggle-password svg {
    width: 18px;
    height: 18px;
}

.toggle-password svg path {
    fill: #94a3b8;
    transition: fill 0.2s ease;
}

.toggle-password:hover svg path {
    fill: var(--primary-light);
}

.toggle-password:hover {
    transform: scale(1.1);
}

.toggle-password:active {
    transform: scale(0.95);
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-login:hover::before {
    left: 100%;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.btn-login:active {
    transform: translateY(0);
}

.btn-login:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-resend {
    width: 100%;
    padding: 12px;
    margin-top: 16px;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-resend:hover {
    background-color: rgba(59, 130, 246, 0.1);
    border-color: var(--primary-light);
    color: var(--primary-light);
}

.btn-resend:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.footer {
    margin-top: 32px;
    text-align: center;
}

.footer p {
    color: var(--text-secondary-login);
    font-size: 12px;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 350px;
    height: 350px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
}

.circle-2 {
    width: 450px;
    height: 450px;
    bottom: -200px;
    right: -200px;
    animation-delay: 7s;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
}

.circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    animation-delay: 14s;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.05) 0%, transparent 70%);
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-10px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(10px);
    }
}

.shake {
    animation: shake 0.5s ease-in-out;
}

.forgot-password-section {
    margin-top: 16px;
    text-align: center;
}

.btn-forgot-password,
.btn-back-to-login {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: underline;
    padding: 0;
    margin: 0;
}

.btn-forgot-password:hover,
.btn-back-to-login:hover {
    color: var(--primary-light);
    text-decoration: none;
}

.btn-forgot-password:active,
.btn-back-to-login:active {
    transform: scale(0.98);
}

@media (max-width: 480px) {
    .login-box {
        padding: 32px 24px;
        max-height: 90vh;
    }

    h1 {
        font-size: 24px;
    }

    .container {
        max-width: 100%;
    }

    .tab-button {
        font-size: 11px;
        padding: 10px 8px;
    }
}

/* ========== BOTÓN ACERCA DE FLOWTRIX ========== */
.about-section-mobile,
.about-section-desktop {
    display: none;
}

/* Interno (dentro del login-box) */
.about-section-mobile {
    padding: 0;
    margin: 16px 0 0 0;
    text-align: center;
}

.about-section-mobile .about-btn {
    width: 100%;
    justify-content: center;
}

/* Externo (debajo y centrado) */
.about-section-desktop {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: min(320px, calc(100vw - 32px));
    text-align: center;
    z-index: 50;
}

.about-section-desktop .about-btn {
    width: 100%;
    justify-content: center;
}

/* Estilo base del botón */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 8px;
    color: #3b82f6;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.about-btn:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.25);
}

.about-btn svg {
    width: 16px;
    height: 16px;
}

/* Reglas de visibilidad */
@media (min-width: 1200px) and (min-height: 851px) {

    /* Desktop con altura suficiente: botón externo */
    .about-section-desktop {
        display: block;
    }

    .about-section-mobile {
        display: none !important;
    }
}

@media (max-height: 850px) {

    /* Poca altura: botón dentro del panel */
    .about-section-mobile {
        display: block;
    }

    .about-section-desktop {
        display: none !important;
    }

    .login-box {
        padding-bottom: 80px;
    }
}

@media (max-width: 1199px) {

    /* Móvil/tablet: botón dentro del panel */
    .about-section-mobile {
        display: block;
    }

    .about-section-desktop {
        display: none !important;
    }
}

.btn-verify-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 8px;
    color: #3b82f6;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-verify-email:hover:not(:disabled) {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.6);
}

.btn-verify-email:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#verificationCodeSection {
    animation: fadeIn 0.3s ease-in;
}

.texttt {
    font-weight: 700;
    font-size: 1.4rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

/* FOOTER */
.site-footer {
    background: linear-gradient(180deg, var(--bg-dark), #050810);
    border-top: 1px solid var(--border-subtle);
    padding-top: var(--spacing-xl);
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col {
    text-align: left;
}

.footer-logo {
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-title {
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
    font-weight: 600;
}

.footer-subtitle {
    color: var(--accent-secondary);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.footer-link {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.85rem;
}

.footer-link:hover {
    color: var(--accent-secondary);
}

/* FOOTER BOTTOM */
.footer-bottom {
    background: #050810;
    border-top: 1px solid var(--border-subtle);
    padding: var(--spacing-sm) 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.social-link {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--accent-primary);
}

@media (max-width: 1024px) {
    .nav-links {
        gap: var(--spacing-sm);
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 100px var(--spacing-md) var(--spacing-md);
        gap: var(--spacing-xs);
        transition: right 0.3s ease;
        border-left: 1px solid var(--border-subtle);
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1rem;
        padding: var(--spacing-sm) 0;
        width: 100%;
    }

    .nav-links a::after {
        display: none;
    }

    .btn-nav {
        margin-top: var(--spacing-sm);
        text-align: center;
        width: 100%;
    }

    .footer-col {
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }

    .footer-social {
        order: -1;
    }

    .footer-legal-links {
        gap: var(--spacing-sm);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .social-link {
        width: 32px;
        height: 32px;
    }

    .social-link svg {
        width: 16px;
        height: 16px;
    }
}

.footer-copyright-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.site-footer {
    padding-top: 20px;
}

.footer-grid {
    gap: 16px;
    margin-bottom: 12px;
}

.footer-bottom {
    padding: 8px 0;
}

.footer-tagline,
.footer-desc,
.footer-info p,
.footer-link,
.footer-subtitle,
.footer-title {
    font-size: 0.75rem;
}