/* ============================================================
   Shared styles — pechka-landing
   Подключается во всех страницах, кроме instruction-print.html
   ============================================================ */

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

/* CSS Variables */
:root {
    --primary-text: #f5f5f7;
    --secondary-text: #a1a1a6;
    --blue-link: #2997ff;
    --bg-white: #000000;
    --bg-light: #1d1d1f;
}

/* Base body */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--primary-text);
    background: var(--bg-white);
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -.022em;
    overflow-x: hidden;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* ---- Footer ---- */
footer {
    background: #0a0a0a;
    padding: 60px 20px 40px;
    font-size: 12px;
    line-height: 1.33337;
    font-weight: 400;
    letter-spacing: -.01em;
    color: var(--secondary-text);
}

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

.footer-brand {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--primary-text);
    display: flex;
    justify-content: center;
}

.footer-text {
    margin-bottom: 8px;
}

.footer-contacts {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary-text);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-copyright {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
