/* Reset i podstawy */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Figtree', sans-serif;
    color: #010f26;
    overflow-x: hidden;
    background-color: #ffffff !important;
}

/* Header */
.header {
    background-image: url('../images/header.webp');
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    height: 921px;
    overflow: hidden;
}

.header-container {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

/* Logo i menu w jednej linii */
.header-top {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 2px;
    padding-top: 5vh;
}

/* Logo z linkiem */
.logo-link {
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.logo-img {
    width: 170px;
    height: 130px;
    object-fit: contain;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-link:hover .logo-img {
    transform: scale(1.1);
}

.logo-link:active .logo-img {
    transform: scale(0.95);
}

.logo-link:hover {
    filter: drop-shadow(0 5px 15px rgba(22, 174, 255, 0.3));
}

/* Usunięto zduplikowane .logo i .logo img */

/* Menu obok logo */
.main-menu {
    flex-grow: 1;
}

.main-menu ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.menu-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Figtree', sans-serif;
    padding: 10px 5px;
    position: relative;
    display: inline-block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.menu-link span {
    display: inline-block;
    position: relative;
    transition: opacity 0.3s ease;
}

.menu-link::after {
    content: attr(data-text);
    position: absolute;
    top: 10px;
    left: 5px;
    background: linear-gradient(11deg, rgba(22, 174, 255, 1) 0%, rgba(118, 226, 255, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.menu-link:hover span {
    opacity: 0;
}

.menu-link:hover::after {
    opacity: 1;
}

.menu-link::before {
    content: '_';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease 0.05s;
    color: #16AEFF;
    font-weight: bold;
    font-size: 24px;
    line-height: 1;
    z-index: 2;
}

.menu-link:hover::before {
    opacity: 1;
}

/* Treść headera */
.header-content {
    max-width: 850px;
    margin-top: 14vh;
}

.header-title {
    font-size: 67px;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(11deg, rgba(22, 174, 255, 1) 0%, rgba(118, 226, 255, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    text-shadow: none;
}

.header-description {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.3;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Przycisk */
.header-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(11deg, rgba(22, 174, 255, 1) 0%, rgba(118, 226, 255, 1) 100%);
    color: #010f26;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Figtree', sans-serif;
    box-shadow: 0 5px 15px rgba(22, 174, 255, 0.2);
}

.header-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(22, 174, 255, 0.4);
}

.button-icon {
    width: 20px;
    height: 20px;
    fill: #010f26;
}

/* Utility classes */
.container {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(11deg, rgba(22, 174, 255, 1) 0%, rgba(118, 226, 255, 1) 100%);
    color: #010f26;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Figtree', sans-serif;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(22, 174, 255, 0.3);
}

/* Animacje */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Sekcja O nas */
.onas-section {
    margin-top: 10vh;
    background-color: #ffffff;
    margin-bottom: 10vh;
}

.onas-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
}

.onas-content {
    flex: 1;
    max-width: 700px;
}

.onas-title {
    font-size: 67px;
    font-weight: 700;
    color: #010a15;
    margin-bottom: 40px;
    line-height: 1;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.onas-title-text {
    font-family: 'Figtree', sans-serif;
}

.onas-title-underline {
    background: linear-gradient(11deg, rgba(22, 174, 255, 1) 0%, rgba(118, 226, 255, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    line-height: 1.2;
}

.onas-subtitle {
    font-size: 36px;
    font-weight: 700;
    color: #b0b9bd;
    line-height: 1.3;
    margin-bottom: 30px;
    font-family: 'Figtree', sans-serif;
}

.onas-text {
    margin-bottom: 25px;
    line-height: 1.6;
}

.onas-text-1 {
    font-size: 36px;
    font-weight: 700;
    color: #b0b9bd;
    line-height: 1.3;
}

.onas-text-2 {
    font-size: 18px;
    font-weight: 700;
    color: #010a15;
    line-height: 1.6;
}

.onas-text-3 {
    font-size: 14px;
    font-weight: 600;
    color: #010a15;
    line-height: 2;
    opacity: 0.8;
}

.onas-image {
    flex-shrink: 0;
    width: 500px;
    position: relative;
}

.onas-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(1, 10, 21, 0.1);
    object-fit: cover;
}

.onas-image::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: -80px;
    right: -80px;
    background: radial-gradient(circle, rgba(1, 93, 172, 0.5) 0%, rgba(1, 93, 172, 0) 70%);
    border-radius: 100%;
    pointer-events: none;
}

/* Sekcja Projekty */
.projekty-section {
    padding: 0 0 10vh 0;
    background-color: #ffffff;
    overflow: hidden;
    width: 100%;
    background-image: url('../images/cien.webp');
    background-size: cover;
    background-position: center;
}

.projekty-section .container {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: baseline;
    margin-bottom: 60px;
    white-space: nowrap;
}

.section-title {
    font-size: 67px;
    font-weight: 700;
    color: #010a15;
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
    margin: 0;
    white-space: nowrap;
}

.section-title-text {
    font-family: 'Figtree', sans-serif;
}

.section-title-underline {
    background: linear-gradient(11deg, rgba(22, 174, 255, 1) 0%, rgba(118, 226, 255, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    line-height: 1.2;
}


/* Kontener slidera */
.projekty-slider-container {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.projekty-slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.projekty-slider {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 40px;
    padding: 0 calc((100vw - 1350px) / 2);
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.projekt-slide {
    flex: 0 0 auto;
    width: 655px;
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.5s ease;
    backface-visibility: hidden;
}

.projekt-slide.active {
    opacity: 1;
    transform: scale(1.02);
}

/* Obrazek tła projektu */
.projekt-image {
    position: relative;
    width: 100%;
    height: 580px;
    overflow: hidden;
    border-radius: 15px;
}

.projekt-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.projekt-tlo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                filter 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.7);
}

.projekt-slide:hover .projekt-tlo {
    transform: scale(1.05);
    filter: brightness(1);
}

.projekt-tlo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.projekt-slide:hover .projekt-tlo-overlay {
    opacity: 0;
}

.projekt-tlo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #16AEFF 0%, #76E2FF 100%);
    border-radius: 15px;
    filter: brightness(0.7);
    transition: filter 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.projekt-slide:hover .projekt-tlo-placeholder {
    filter: brightness(1);
}

.projekt-logo-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.projekt-logo {
    max-width: 300px;
    width: auto;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.projekt-slide:hover .projekt-logo {
    transform: scale(1.1);
}

.projekt-button-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.projekt-slide:hover .projekt-button-container {
    opacity: 1;
    transform: translateY(0);
}

.projekt-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(11deg, rgba(22, 174, 255, 1) 0%, rgba(118, 226, 255, 1) 100%);
    color: #010f26;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-family: 'Figtree', sans-serif;
    transition: all 0.3s ease;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.projekt-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.projekt-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(22, 174, 255, 0.4);
}

.projekt-button:hover::before {
    opacity: 0.1;
}

/* Sekcja Kontakt */
.kontakt-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.kontakt-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.kontakt-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.kontakt-section .container {
    max-width: 1350px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.kontakt-wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    justify-content: space-between;
}

/* Formularz kontaktowy */
.kontakt-form-container {
    flex: 1;
    max-width: 858px;
}

.kontakt-title {
    font-size: 67px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.kontakt-title-text {
    font-family: 'Figtree', sans-serif;
}

.kontakt-title-underline {
    background: linear-gradient(11deg, rgba(22, 174, 255, 1) 0%, rgba(118, 226, 255, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    line-height: 1.2;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.kontakt-input {
    width: 100%;
    height: 60px;
    padding: 0 25px;
    border: 1.2px solid transparent;
    border-radius: 50px;
    background: transparent;
    color: #ffffff;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: linear-gradient(#082636, #082636) padding-box,
                linear-gradient(11deg, rgba(22, 174, 255, 1) 0%, rgba(118, 226, 255, 1) 100%) border-box;
}

.kontakt-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.kontakt-input:hover {
    font-weight: 700;
    transform: translateY(-2px);
}

.kontakt-input:focus {
    outline: none;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(22, 174, 255, 0.3);
}

.kontakt-textarea {
    width: 100%;
    min-height: 190px;
    padding: 20px 25px;
    border: none;
    border-radius: 20px;
    background: #082636;
    color: #ffffff;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    resize: vertical;
    transition: all 0.3s ease;
}

.kontakt-textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.kontakt-textarea:focus {
    outline: none;
    box-shadow: 0 5px 20px rgba(22, 174, 255, 0.3);
}

.textarea-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.char-count {
    font-size: 13px;
    color: #7be3ff;
    font-family: 'Figtree', sans-serif;
    transition: color 0.3s ease;
}

.char-count.error {
    color: #ff4757 !important;
    font-weight: bold;
}

.form-hint {
    font-size: 13px;
    color: #7be3ff;
    font-family: 'Figtree', sans-serif;
}

.form-submit {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.kontakt-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(11deg, rgba(22, 174, 255, 1) 0%, rgba(118, 226, 255, 1) 100%);
    color: #010f26;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-family: 'Figtree', sans-serif;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.kontakt-submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(22, 174, 255, 0.4);
}

.submit-icon {
    width: 20px;
    height: 20px;
    fill: #010f26;
}

.kontakt-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.kontakt-submit-btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Dane firmy po prawej */
.kontakt-dane {
    flex-shrink: 0;
    width: 400px;
}

.dane-title {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.2;
}

.dane-title-line {
    display: block;
    font-family: 'Figtree', sans-serif;
}

.dane-underline {
    background: linear-gradient(11deg, rgba(22, 174, 255, 1) 0%, rgba(118, 226, 255, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.dane-content {
    color: #ffffff;
}

.dane-item {
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.dane-item:hover {
    transform: translateX(5px);
}

.dane-miasto {
    font-size: 24px;
    font-weight: 700;
    color: #7be3ff;
    font-family: 'Figtree', sans-serif;
}

.dane-adres {
	margin-top: -20px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Figtree', sans-serif;
}

.dane-numerki {
    display: flex;
	margin-top: 50px;
    gap: 50px;
    margin-bottom: 25px;
}

.numerki-item {
    display: flex;
    flex-direction: column;
}

.numerki-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    font-family: 'Figtree', sans-serif;
}

.numerki-value {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    font-family: 'Figtree', sans-serif;
}

.dane-email {
    font-size: 24px;
	margin-top: 50px;
    font-weight: 500;
    font-family: 'Figtree', sans-serif;
}

.dane-telefon {
    font-size: 18px;
    font-weight: 500;
    color: #7ae3ff;
    display: flex;
    align-items: center;
	margin-top: -18px;
    gap: 5px;
    font-family: 'Figtree', sans-serif;
}

.telefon-prefix {
    color: #ffffff;
}

/* Komunikaty i walidacja formularza */
.form-message {
    position: relative;
    padding: 15px 40px 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 15px;
    border: 2px solid transparent;
    font-family: 'Figtree', sans-serif;
    opacity: 0;
    transform: translateY(-5px);
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message-success {
    background: rgba(76, 175, 80, 0.15);
    color: #a1ffa5;
    border-color: #4CAF50;
}

.form-message-error {
    background: rgba(244, 67, 54, 0.15);
    color: #ff6b6b;
    border-color: #f44336;
}

.form-message-info {
    background: rgba(33, 150, 243, 0.15);
    color: #64b5f6;
    border-color: #2196F3;
}

.close-message-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: inherit;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
}

.close-message-btn:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.field-error {
    color: #ff4757;
    font-size: 13px;
    margin-top: 5px;
    display: none;
    font-family: 'Figtree', sans-serif;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.kontakt-input.error,
.kontakt-textarea.error {
    border-color: #ff4757 !important;
    background: linear-gradient(#082636, #082636) padding-box,
                linear-gradient(11deg, #ff4757 0%, #ff6b81 100%) border-box;
}

/* Spinner */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #010f26;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* Footer */
.footer {
    height: 175px;
    background-color: #010710;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.footer .container {
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Lewa strona - Copyright */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.copyright {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Figtree', sans-serif;
    display: flex;
    align-items: center;
}

.copyright-year {
    background: linear-gradient(11deg, rgba(22, 174, 255, 1) 0%, rgba(118, 226, 255, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.copyright-name {
    color: #ffffff;
	padding-left: 5px;
}

.credits {
    font-size: 14px;
    font-family: 'Figtree', sans-serif;
    display: flex;
    align-items: center;
}

.credits-text {
    color: #b2b2b2;
}

.credits-name {
    display: inline-block; /* WAŻNE */
    background: linear-gradient(11deg, rgba(22, 174, 255, 1) 0%, rgba(118, 226, 255, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    margin-left: 10px;
    text-decoration: none !important;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.credits-name:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
	text-decoration: none !important;
}


/* Środek - Facebook */
.footer-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.facebook-link {
    display: inline-block;
    transition: all 0.3s ease;
}

.facebook-icon {
    width: 32px;
    height: 32px;
    fill: #ffffff;
    transition: all 0.3s ease;
}

.facebook-link:hover .facebook-icon {
    fill: #16AEFF;
    transform: scale(1.1);
}

.facebook-link:active .facebook-icon {
    transform: scale(0.95);
}

/* Prawa strona - Menu */
.footer-right {
    display: flex;
    justify-content: flex-end;
}

.footer-menu ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Figtree', sans-serif;
    padding: 8px 5px;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Biały tekst (podstawa) */
.footer-link span {
    display: inline-block;
    position: relative;
    transition: opacity 0.3s ease;
}

/* Gradientowy tekst (na wierzchu) */
.footer-link::after {
    content: attr(data-text);
    position: absolute;
    top: 8px;
    left: 5px;
    background: linear-gradient(11deg, rgba(22, 174, 255, 1) 0%, rgba(118, 226, 255, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Hover - pokazujemy gradient, ukrywamy biały */
.footer-link:hover span {
    opacity: 0;
}

.footer-link:hover::after {
    opacity: 1;
}

/* Podkreślenie z prawej strony */
.footer-link::before {
    content: '_';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease 0.05s;
    color: #16AEFF;
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
    z-index: 2;
}

.footer-link:hover::before {
    opacity: 1;
}

