:root {
    /* Color Palette - Dark & Blue */
    --bg-color: #050814;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent-blue: #3b82f6;
    --accent-blue-hover: #2563eb;
    --accent-cyan: #06b6d4;

    /* Glassmorphism */
    --glass-bg: rgba(15, 23, 42, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: 16px;
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    /* Layout */
    --container-width: 1200px;
    --section-spacing: 120px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    font-family: 'Outfit', sans-serif;
}

body,
html {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

main {
    max-width: 1200px;
    margin: auto;
    margin-top: 15vh;
    display: flex;
    padding: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#omnie {
    scroll-margin-top: 100px;
}

#main__text {
    color: var(--text-primary);
    font-size: 30px;
    max-width: 600px;
}

#main__text>h1 {
    font-size: 25px;
    font-weight: 200;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: -30px;
}

#main__text>h2 {
    line-height: 1.1;
    font-size: 50px;
}

#main__text>p {
    color: var(--text-secondary);
    font-size: 20px;
}

.gradient__text {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#main__buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

#button__projects,
.kafelek__podglad {
    background-color: var(--accent-blue);
    box-shadow: 0px 0px 10px var(--accent-blue);
    padding: 15px;
    border: none;
    color: var(--text-primary);
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
    transition: 300ms;
}

#button__projects:hover {
    transform: translateY(-5px);
    cursor: pointer;
    background-color: var(--accent-blue-hover);
    box-shadow: 0px 0px 20px var(--accent-blue-hover);
}

#button__contact {
    background-color: var(--glass-bg);
    padding: 15px;
    border: none;
    color: var(--text-primary);
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
    transition: 300ms;
}

#button__contact:hover,
.kafelek__podglad:hover {
    transform: translateY(-5px);
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 20px var(--glass-bg);
}

/* Okno kodu */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-card {
    width: 320px;
    height: 400px;
    border-radius: 24px;
    padding: 1.5rem;
    animation: float 6s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.dots {
    display: flex;
    gap: 8px;
}

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.dots span:nth-child(1) {
    background: #ef4444;
}

.dots span:nth-child(2) {
    background: #eab308;
}

.dots span:nth-child(3) {
    background: #22c55e;
}

.code-line {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.w-100 {
    width: 100%;
}

.w-80 {
    width: 80%;
}

.w-75 {
    width: 75%;
}

.w-50 {
    width: 50%;
}

header {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5000px;
    width: 80%;
    padding-left: 50px;
    padding-right: 50px;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    display: flex;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    z-index: 9999;
}

nav>a {
    color: var(--text-primary);
    text-decoration: none;
    margin: 20px;
    font-size: 20px;
    transition: 300ms;
    font-weight: 600;
    display: inline-block;
}

nav>a:hover {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px) scale(1.1);
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

#projekty>h2 {
    font-size: 35px;
    color: var(--text-primary);
    text-align: center;
}

h2 {
    color: var(--text-primary);
}

#kafelki {
    margin-top: 80px;
    margin-inline: auto;
    width: 80%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 100px;
}

.kafelek {
    flex: 1 1 calc(25% - 20px);
    min-width: 250px;
    box-sizing: border-box;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 15px;
    transition: 300ms;
}

.kafelek:hover {
    transform: translateY(-5px);
    border: 0.1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0px 0px 20px var(--glass-bg);
}

.kafelek>.kafelek__tytul {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 25px;
}

.kafelek>.kafelek__opis {
    color: var(--text-secondary);
    height: 200px;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    transition: -webkit-mask-image 0.3s ease, mask-image 0.3s ease;
}

.kafelek>.kafelek__opis::-webkit-scrollbar {
    display: none;
}

.kafelek__opis.has-fade {
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.kafelek>.kafelek__obraz>img {
    display: block;
    margin: auto;
    width: auto;
    max-width: 100%;
    height: 200px;
    object-fit: contain;
}

.kafelek__przyciski {
    display: flex;
}

.kafelek__podglad {
    font-size: 15px;
    margin: auto;
    background-color: var(--glass-bg);
    box-shadow: none;
    border: 1px solid var(--glass-border);
}

#kontakt {
    margin-top: var(--section-spacing);
    padding: 60px 20px;
    scroll-margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact__container {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    align-items: stretch;
}

/* ─── Formularz kontaktowy ──────────────────────────────────── */
#kontakt__formularz {
    max-width: 1200px;
    width: 100%;
    margin-top: 80px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.2));
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 50px;
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

#kontakt__formularz>h2 {
    font-size: 45px;
    color: var(--text-primary);
    margin: 0 0 12px 0;
    line-height: 1.1;
    text-align: center;
}

.formularz__opis {
    color: var(--text-secondary);
    text-align: center;
    font-size: 17px;
    margin: 0 auto 50px auto;
    max-width: 600px;
    line-height: 1.6;
}

#kontakt__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
    align-items: stretch;
}

#kontakt__formularz__lewy,
#kontakt__formularz__prawy {
    display: flex;
    flex-direction: column;
}

/* Label */
.kontakt__formularz__label {
    display: block;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.required {
    color: var(--accent-cyan);
}

/* Grupy pól */
.form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 18px;
    /* rezerwacja miejsca na błąd */
}

/* Inputy */
#kontakt__form input[type="text"],
#kontakt__form input[type="email"],
#kontakt__form textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    padding: 14px 18px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    outline: none;
}

#kontakt__form input[type="text"]::placeholder,
#kontakt__form input[type="email"]::placeholder,
#kontakt__form textarea::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

#kontakt__form input[type="text"]:focus,
#kontakt__form input[type="email"]:focus,
#kontakt__form textarea:focus {
    border-color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.05);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

#kontakt__form input[type="text"].input--error,
#kontakt__form input[type="email"].input--error,
#kontakt__form textarea.input--error {
    border-color: #f87171;
    background: rgba(248, 113, 113, 0.05);
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15);
}

#kontakt__form textarea {
    height: 170px;
    resize: vertical;
    min-height: 120px;
}

/* Błędy walidacji — absolute, bez przesuwania layoutu */
.form__error {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 12px;
    color: #f87171;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.form__error.visible {
    opacity: 1;
}

/* Checkbox RODO */
.rodo__group {
    margin-top: auto;
}

.rodo__label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    position: relative;
}

.rodo__label input[type="checkbox"] {
    display: none;
}

.rodo__checkmark {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
    position: relative;
    margin-top: 1px;
}

.rodo__checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 1px;
    width: 6px;
    height: 11px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rodo__label input:checked~.rodo__checkmark {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
}

.rodo__label input:checked~.rodo__checkmark::after {
    transform: rotate(45deg) scale(1);
}

.rodo__text {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
}

.rodo__text a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: opacity 0.2s;
}

.rodo__text a:hover {
    opacity: 0.75;
}

/* Przycisk wysyłania — rozciągnięty na pełną szerokość formularza */
.form__submit__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    width: 100%;
    padding: 16px 32px;
    margin-top: 10px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: white;
    border: none;
    border-radius: 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    grid-column: 1 / -1;
    /* rozciąga na obie kolumny grida */
}

.form__submit__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.4s;
}

.form__submit__btn:hover:not(:disabled) {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.45);
}

.form__submit__btn:hover::before {
    opacity: 1;
}

.form__submit__btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form__submit__btn .btn__text,
.form__submit__btn .btn__icon,
.form__submit__btn .btn__loading {
    position: relative;
    z-index: 1;
}

.btn__loading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Powiadomienie — fixed overlay, nie przesuwa strony */
.form__notification {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 28px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 15px;
    transition: opacity 0.4s;
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    max-width: 600px;
    width: max-content;
}

.form__notification.success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #4ade80;
}

.form__notification.error {
    background: rgba(248, 113, 113, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.35);
    color: #f87171;
}

.form__notification.fade-out {
    opacity: 0;
}

.notification__icon {
    font-size: 22px;
}

.contact__featured {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured__header p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.featured__header h2 {
    font-size: 35px;
}

.featured__cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured__card {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 25px 30px;
    border-radius: 20px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.featured__card .card__glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--brand-color);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
}

.featured__card:hover .card__glow {
    opacity: 0.15;
}

.featured__card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.2);
}

.featured__card i {
    font-size: 45px;
    color: var(--text-primary);
    background: var(--brand-color);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1;
    transition: 0.3s;
    width: 60px;
    text-align: center;
}

.card__content {
    margin-left: 25px;
    display: flex;
    flex-direction: column;
    z-index: 1;
    flex: 1;
}

.card__title {
    color: var(--text-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.card__value {
    color: var(--text-primary);
    font-size: 22px;
    font-weight: 700;
}

.card__arrow {
    font-size: 20px !important;
    -webkit-text-fill-color: var(--text-secondary) !important;
    background: none !important;
    opacity: 0;
    transform: translateX(-20px);
    transition: 0.4s ease !important;
    z-index: 1;
}

.featured__card:hover .card__arrow {
    opacity: 1;
    transform: translateX(0);
    -webkit-text-fill-color: var(--brand-color) !important;
}

.contact__others {
    flex: 1;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.2));
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px;
    backdrop-filter: blur(var(--glass-blur));
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.contact__others h3 {
    margin-top: 0;
    color: var(--text-primary);
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
}

.others__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.other__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-smooth);
}

.other__item i {
    font-size: 18px;
    transition: 0.3s;
}

.other__item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.other__item:hover i {
    color: var(--brand-color);
    filter: drop-shadow(0 0 8px var(--brand-color));
}

footer {
    margin-top: 100px;
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--glass-blur));
    padding: 60px 20px 20px 20px;
    color: var(--text-primary);
}

.footer__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 40px;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
    text-decoration: none;
    color: var(--text-primary);
}

.footer__info p {
    color: var(--text-secondary);
}

.footer__links {
    display: flex;
    gap: 25px;
}

.footer__links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer__links a:hover {
    color: var(--accent-cyan);
}

.footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-secondary);
}

.discord {
    --brand-color: #5865F2;
}

.github {
    --brand-color: #f0f6fc;
}

.email {
    --brand-color: #ea4335;
}

.youtube {
    --brand-color: #FF0000;
}

.skript {
    --brand-color: #00ff41;
}

.tiktok {
    --brand-color: #ff0050;
}

.steam {
    --brand-color: #66c0f4;
}

.spotify {
    --brand-color: #1DB954;
}

/* ─── Polityka Prywatności ────────────────────────────────────── */
.privacy-container {
    max-width: 900px;
    width: 100%;
    margin: 120px auto 100px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    box-sizing: border-box;
}

.privacy__header {
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 30px;
}

.privacy__header h1 {
    font-size: 50px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.privacy__header p {
    color: var(--text-secondary);
    font-size: 16px;
}

.privacy__content {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.1));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 50px;
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 17px;
    box-sizing: border-box;
    width: 100%;
}

.privacy__content h2 {
    color: var(--text-primary);
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.privacy__content h2:first-child {
    margin-top: 0;
}

.privacy__content p {
    margin-bottom: 15px;
}

.privacy__content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy__content li {
    margin-bottom: 8px;
    position: relative;
    list-style: none;
}

.privacy__content li::before {
    content: '•';
    color: var(--accent-cyan);
    position: absolute;
    left: -15px;
    font-size: 20px;
    top: -2px;
}

.privacy__content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.privacy__content code {
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    color: var(--accent-cyan);
}

.privacy-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.privacy-link:hover {
    color: var(--accent-cyan);
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    header {
        width: 100%;
        padding: 15px 20px;
        flex-direction: column;
        justify-content: center;
        gap: 15px;
        border-radius: 0;
        top: 0;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav>a {
        margin: 5px 10px;
        font-size: 16px;
    }

    main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 20vh;
    }

    #main__text {
        text-align: center;
    }

    #main__buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    #button__projects,
    #button__contact {
        width: 100%;
    }

    .hero-visual {
        display: none;
    }

    #kafelki {
        width: 90%;
        gap: 30px;
    }

    .kafelek {
        flex: 1 1 100%;
    }

    .contact__container {
        flex-direction: column;
        gap: 40px;
    }

    .featured__header h2 {
        font-size: 35px;
    }

    .featured__card {
        padding: 20px;
    }

    .card__value {
        font-size: 18px;
    }

    .featured__card i {
        font-size: 35px;
    }

    .contact__others {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .others__grid {
        justify-content: center;
    }

    .footer__content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer__links {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Formularz - mobile */
    #kontakt__form {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #kontakt__formularz {
        margin-top: 50px;
        padding-top: 40px;
    }

    #kontakt__formularz>h2 {
        font-size: 32px;
    }

    .form__submit__btn {
        font-size: 16px;
        padding: 14px 24px;
    }

    /* Polityka Prywatności - mobile */
    .privacy-container {
        margin: 100px auto 60px auto;
        padding: 0 15px;
        gap: 25px;
        align-items: stretch;
        text-align: left;
    }

    .privacy__header h1 {
        font-size: 30px;
        line-height: 1.2;
    }

    .privacy__header p {
        font-size: 14px;
        margin-top: 10px;
    }

    .privacy__content {
        padding: 30px 20px;
        font-size: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: justify;
    }

    .privacy__content h2 {
        font-size: 22px;
        margin-top: 30px;
        line-height: 1.3;
        text-align: left;
    }
}