/* =========================================
   4EVOLVE PREMIUM SECTIONS (FINAL MASTER - WHITE TEXT / GREEN LINE)
   ========================================= */

:root {
    /* --- KOLORYSTKA OGÓLNA --- */
    --brand-gold: #FBBE5C;
    --card-bg-dark: #18150B;
    --text-white: #ffffff;
    --text-grey: #a0a0a0;

    /* --- KOLORYSTKA JUSTYNA (ZIELONY) --- */
    --justyn-brand: #008f6a;
    --justyn-glow: #00BF63;
    --justyn-dark: #050505;
    --justyn-card-bg: #0e0e0e;
    --justyn-gradient: linear-gradient(135deg, #ffffff 30%, #008f6a 100%);

    /* --- KOLORYSTYKA PIOTRA (ZŁOTY) --- */
    --piotr-brand: #FBBE5C;
    --piotr-glow: #FFD700;

    /* --- KOLORYSTYKA GAWŁA (FIOLETOWY) --- */
    --gawel-brand: #761FE3;
    --gawel-glow: #9D4EDD;
}

@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotation {
    0% {
        --gradient-angle: 0deg;
    }

    100% {
        --gradient-angle: 360deg;
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, 20px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes gridMove {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(60px);
    }
}


/* =========================================
   TEXT DECORATION (WHITE TEXT + GREEN LINE)
   ========================================= */
.text-underline-gradient {
    position: relative;
    display: inline-block;
    color: #ffffff !important;
    /* TEKST JEST BIAŁY */
    z-index: 1;
    line-height: 1.2;
}

.text-underline-gradient::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    /* Pozycja linii */
    width: 100%;
    height: 6px;
    /* Grubość linii */
    /* Gradient linii: ZIELONY */
    background: linear-gradient(90deg, var(--justyn-brand) 20%, rgba(0, 143, 106, 0) 100%);
    z-index: -1;
    border-radius: 3px;
    opacity: 0.8;
    /* Nieco wyraźniejsza linia */
}


/* =========================================
   FRONTMEN SECTION (MAIN PAGE)
   ========================================= */
#frontmen-premium {
    padding: 100px 0 60px;
    position: relative;
    background-image: radial-gradient(ellipse 70% 55% at 50% 50%, hsla(45, 96%, 67%, 0.12) 0%, hsla(275, 60%, 55%, 0) 70%);
    background-repeat: no-repeat;
    background-position: center center;
}

.sec-title.premium-title .sec-title_title {
    color: var(--brand-gold) !important;
    font-family: 'Switzer', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    display: inline-block;
    line-height: 1.2;
}

.premium-title h2 {
    font-family: 'Switzer', sans-serif;
    font-weight: 700;
    font-size: 4.5rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.05;
}

.premium-title h2 span {
    color: var(--brand-gold);
    font-style: italic;
    font-weight: 700;
}

body.justyn-page .premium-title h2 span {
    color: var(--justyn-brand) !important;
}

.premium-title p {
    font-family: 'Switzer', sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

@media (max-width: 768px) {
    .sec-title.premium-title .sec-title_title {
        font-size: 16px;
    }

    .premium-title h2 {
        font-size: 2.8rem;
    }

    .premium-title p {
        font-size: 1rem;
    }
}

.frontman-card {
    background-color: var(--card-bg-dark);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

.frontman-card:hover {
    transform: translateY(-8px);
}

.frontman-img-wrapper {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
    background-color: var(--card-bg-dark);
}

.frontman-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

.frontman-card:hover .frontman-img-wrapper img {
    transform: scale(1.05);
}

.frontman-info {
    padding: 25px 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.frontman-info h3 {
    font-family: 'Switzer', sans-serif;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 700;
    transition: color 0.3s ease;
}

.frontman-info .role {
    font-family: 'Switzer', sans-serif;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 25px;
    opacity: 0.8;
    display: block;
}

.frontman-card.style-ventures {
    box-shadow: 0 10px 30px rgba(0, 143, 106, 0.08);
    border-color: rgba(0, 143, 106, 0.1);
}

.frontman-card.style-ventures:hover {
    box-shadow: 0 15px 50px rgba(0, 143, 106, 0.25);
    border-color: rgba(0, 143, 106, 0.4);
}

.style-ventures:hover h3 {
    color: var(--justyn-brand) !important;
}

.badge-ventures {
    background: conic-gradient(from var(--gradient-angle) at 50% 50%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 10%, #00BF63 30%, #00A956 40%, #008F6A 50%, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 0 16px rgba(0, 191, 99, 0.3);
}

.style-ventures:hover .frontman-badge-inner {
    color: var(--justyn-brand);
    background-color: #000;
}

.frontman-card.style-analytics {
    box-shadow: 0 10px 30px rgba(251, 190, 92, 0.08);
    border-color: rgba(251, 190, 92, 0.1);
}

.frontman-card.style-analytics:hover {
    box-shadow: 0 15px 50px rgba(251, 190, 92, 0.25);
    border-color: rgba(251, 190, 92, 0.4);
}

.style-analytics:hover h3 {
    color: var(--piotr-brand) !important;
}

.badge-analytics {
    background: conic-gradient(from var(--gradient-angle) at 50% 50%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 10%, #FFE066 30%, #FFD133 40%, #FFC107 50%, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 0 16px rgba(255, 209, 51, 0.3);
}

.style-analytics:hover .frontman-badge-inner {
    color: var(--piotr-brand) !important;
    background-color: #000;
}

.frontman-card.style-services {
    box-shadow: 0 10px 30px rgba(118, 31, 227, 0.08);
    border-color: rgba(118, 31, 227, 0.1);
}

.frontman-card.style-services:hover {
    box-shadow: 0 15px 50px rgba(118, 31, 227, 0.25);
    border-color: rgba(118, 31, 227, 0.4);
}

.style-services:hover h3 {
    color: var(--gawel-brand) !important;
}

.badge-services {
    background: conic-gradient(from var(--gradient-angle) at 50% 50%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 10%, #9D4EDD 30%, #7B2CBF 40%, #5A189A 50%, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 0 16px rgba(123, 44, 191, 0.3);
}

.style-services:hover .frontman-badge-inner {
    color: var(--gawel-brand) !important;
    background-color: #000;
}

/* --- STYLE HIRING / JOIN US --- */
.frontman-card.style-hiring {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    background: linear-gradient(180deg, var(--card-bg-dark) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.frontman-card.style-hiring:hover {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
}

.style-hiring .frontman-img-wrapper i {
    transition: all 0.4s ease;
}

.style-hiring:hover .frontman-img-wrapper i {
    color: #ffffff !important;
    transform: scale(1.15) rotate(-10deg);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.style-hiring:hover h3 {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* Fix for Hiring Card Height */
.style-hiring .theme-btn {
    padding: 12px 30px !important;
}

.style-hiring .frontman-info .mt-3 {
    margin-top: 10px !important;
}

.frontman-badge-wrapper {
    position: relative;
    display: inline-block;
    padding: 2px;
    border-radius: 50px;
    animation: rotation 5s linear infinite;
    margin-top: auto;
    text-decoration: none !important;
}

.frontman-badge-inner {
    position: relative;
    display: block;
    background-color: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    font-family: 'Switzer', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: capitalize;
    z-index: 2;
    transition: color 0.3s ease, background-color 0.3s ease;
}


/* =========================================
   LANDING PAGE: JUSTYN CZEKAŃSKI
   ========================================= */
body.justyn-page {
    background-color: var(--justyn-dark) !important;
    color: #ffffff !important;
    scrollbar-color: var(--justyn-brand) var(--justyn-dark);
    font-family: 'Switzer', sans-serif !important;
}

body.justyn-page::-webkit-scrollbar {
    width: 10px;
    background: var(--justyn-dark);
}

body.justyn-page::-webkit-scrollbar-thumb {
    background-color: var(--justyn-brand);
    border-radius: 5px;
    border: 2px solid var(--justyn-dark);
}

body.justyn-page ::selection {
    background: var(--justyn-brand) !important;
    color: #fff !important;
}

body.justyn-page .main-footer a:hover {
    color: var(--justyn-glow) !important;
}

body.justyn-page .footer-social_box a:hover {
    background: var(--justyn-brand) !important;
    border-color: var(--justyn-brand) !important;
}


/* =========================================
   HERO SECTION
   ========================================= */
.justyn-hero {
    padding: 180px 0 250px;
    position: relative;
    overflow: visible !important;
    background-image: radial-gradient(circle at 50% 60%, rgba(0, 143, 106, 0.25) 0%, #050505 80%) !important;
    z-index: 1;
}

.justyn-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, transparent 0%, #050505 100%);
    pointer-events: none;
    z-index: -1;
}

.justyn-hero-content .top-tag {
    color: var(--justyn-glow) !important;
    font-family: 'Switzer', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    border-bottom: 1px solid var(--justyn-brand);
    padding-bottom: 5px;
}

.justyn-hero-content h1 {
    font-family: 'Switzer', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 30px;
    color: #ffffff !important;
}

.justyn-hero-content h1 span {
    background: none;
    -webkit-text-fill-color: initial;
    color: #ffffff;
    font-style: italic;
    font-weight: 700;
}

.justyn-hero-content p {
    font-size: 1.3rem;
    color: #d0d0d0 !important;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 50px;
    font-family: 'Switzer', sans-serif;
    font-weight: 300;
}

.justyn-hero-img-wrapper {
    max-width: 85%;
    margin: 0 auto;
    position: relative;
}

.justyn-hero-img-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background-image: radial-gradient(circle, rgba(0, 143, 106, 0.4) 0%, transparent 70%) !important;
    filter: blur(80px);
    z-index: -1;
}

.justyn-hero-img-wrapper img {
    border-radius: 20px;
    border: 1px solid rgba(0, 143, 106, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    transition: transform 0.5s ease;
    width: 100%;
}

.justyn-hero-img-wrapper:hover img {
    transform: scale(1.02);
    border-color: var(--justyn-glow);
}

.justyn-btn-wrapper {
    position: relative;
    display: inline-block;
    padding: 2px;
    border-radius: 50px;
    background: conic-gradient(from var(--gradient-angle) at 50% 50%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 10%, #00BF63 30%, #00A956 40%, #008F6A 50%, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0.05) 100%);
    animation: rotation 5s linear infinite;
    box-shadow: 0 0 20px rgba(0, 143, 106, 0.2);
    text-decoration: none !important;
}

.justyn-btn-inner {
    position: relative;
    display: block;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 45px;
    border-radius: 50px;
    font-family: 'Switzer', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    transition: all 0.3s ease;
}

.justyn-btn-wrapper:hover .justyn-btn-inner {
    background-color: var(--justyn-brand);
    color: #fff;
    box-shadow: 0 0 30px rgba(0, 143, 106, 0.6);
}


/* =========================================
   BENTO GRID SECTION
   ========================================= */
.justyn-bento-section {
    padding: 0 0 100px;
    margin-top: -140px;
    background-color: transparent;
    position: relative;
    z-index: 5;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 24px;
}

.bento-card {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.bento-card:hover {
    border-color: rgba(0, 143, 106, 0.5);
    box-shadow: 0 30px 60px rgba(0, 143, 106, 0.15);
    transform: translateY(-8px);
}

/* GRID SIZES */
.bento-large {
    grid-column: span 2;
}

.bento-tall {
    grid-row: span 2;
}

.bento-full {
    grid-column: span 3;
}

.bento-icon {
    font-size: 2.5rem;
    color: var(--justyn-brand);
    margin-bottom: 20px;
    background: rgba(0, 143, 106, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bento-card h3 {
    font-family: 'Switzer', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.1;
}

.bento-card p {
    font-family: 'Switzer', sans-serif;
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.6;
}


/* =========================================
   CONTACT FORM STYLES
   ========================================= */
.justyn-contact-section {
    padding: 100px 0 0 0;
    background-color: var(--justyn-dark);
    position: relative;
    border-top: none;
    overflow: visible;
}

.contact-form-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 143, 106, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}

.contact-form-box {
    position: relative;
    background: rgba(10, 10, 10, 0.8);
    padding: 3px;
    border-radius: 22px;
    z-index: 5;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.contact-form-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from var(--gradient-angle) at 50% 50%,
            transparent 0%,
            transparent 10%,
            rgba(0, 143, 106, 0.1) 30%,
            rgba(0, 191, 99, 0.5) 45%,
            rgba(0, 143, 106, 1) 50%,
            rgba(0, 191, 99, 0.5) 55%,
            rgba(0, 143, 106, 0.1) 70%,
            transparent 100%);
    animation: rotation 8s linear infinite;
    z-index: -1;
}

.contact-form-inner {
    background: #0a0a0a;
    border-radius: 20px;
    padding: 45px;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* INPUTY */
.premium-input,
body.justyn-page input[type="text"],
body.justyn-page input[type="email"],
body.justyn-page textarea {
    width: 100% !important;
    background-color: #121212 !important;
    border: 1px solid #333 !important;
    color: #fff !important;
    padding: 15px 20px !important;
    font-family: 'Switzer', sans-serif !important;
    font-size: 15px !important;
    border-radius: 8px !important;
    margin-bottom: 20px !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    box-shadow: none !important;
}

.premium-input:focus,
body.justyn-page input:focus,
body.justyn-page textarea:focus {
    border-color: var(--justyn-brand) !important;
    box-shadow: 0 0 20px rgba(0, 143, 106, 0.25) !important;
    background-color: #161616 !important;
    transform: translateY(-2px);
}

.premium-input::placeholder {
    color: #666 !important;
}

/* PRZYCISK SUBMIT - Styl Hero */
button.justyn-btn-wrapper {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
    display: inline-block;
}

/* Dane kontaktowe */
.contact-info-block {
    margin-bottom: 30px;
}

.contact-info-block h4 {
    color: #fff;
    font-family: 'Switzer', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-info-block p,
.contact-info-block a {
    color: #a0a0a0;
    font-family: 'Switzer', sans-serif;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-block a:hover {
    color: var(--justyn-glow);
}

.contact-icon {
    color: var(--justyn-brand);
    margin-right: 10px;
    font-size: 1.2rem;
}


/* =========================================
   TRACK RECORD (DIGITAL GRID & FIREWORKS)
   ========================================= */
.justyn-track-record-section {
    padding: 150px 0 100px;
    background-color: var(--justyn-dark);
    position: relative;
    border-top: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

/* ANIMACJA TŁA: SIATKA STRATEGICZNA */
.tech-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 143, 106, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 143, 106, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
    animation: gridMove 30s linear infinite;
    pointer-events: none;
}

.track-record-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 35px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    z-index: 2;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(3px);
}

/* EFEKT NAJECHANIA (NEON GLOW) */
.track-record-item:hover {
    border-color: rgba(0, 143, 106, 0.4);
    background: rgba(0, 143, 106, 0.08);
    transform: scale(1.01) translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* Świecąca kreska z lewej strony (Aktywny wskaźnik) */
.track-record-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 4px;
    height: 60%;
    background: var(--justyn-brand);
    box-shadow: 0 0 15px var(--justyn-glow);
    border-radius: 0 4px 4px 0;
    transition: transform 0.3s ease;
}

.track-record-item:hover::after {
    transform: translateY(-50%) scaleY(1);
}

.track-content h3 {
    font-family: 'Switzer', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.track-record-item:hover .track-content h3 {
    color: var(--justyn-glow);
    text-shadow: 0 0 20px rgba(0, 143, 106, 0.4);
}

.track-content p {
    font-family: 'Switzer', sans-serif;
    font-size: 1rem;
    color: #a0a0a0;
    margin: 0;
    max-width: 600px;
    transition: color 0.3s ease;
}

.track-record-item:hover .track-content p {
    color: #ccc;
}

.track-meta {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.track-category {
    font-family: 'Switzer', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--justyn-brand);
    letter-spacing: 1px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.track-record-item:hover .track-category {
    color: #fff;
    background: var(--justyn-brand);
    padding: 2px 8px;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(0, 143, 106, 0.5);
}

.track-year {
    font-family: 'Switzer', sans-serif;
    font-size: 14px;
    color: #555;
}

@media (max-width: 768px) {
    .track-record-item {
        flex-direction: column;
    }

    .track-meta {
        margin-top: 15px;
        align-items: flex-start;
        text-align: left;
    }

    .justyn-track-record-section {
        padding: 60px 0;
    }
}


@media (max-width: 991px) {
    .justyn-hero {
        padding-top: 140px;
        padding-bottom: 80px;
        text-align: center;
    }

    .justyn-hero-content h1 {
        font-size: 3rem;
    }

    .justyn-hero-img-wrapper {
        margin-top: 50px;
        max-width: 100%;
    }

    .justyn-bento-section {
        margin-top: 0;
        padding-top: 40px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large,
    .bento-tall,
    .bento-full {
        grid-column: span 1;
        grid-row: span 1;
    }
}


/* ==========================================================================
   HEADER CONFIG (JUSTYN PAGE)
   ========================================================================== */

body.justyn-page .main-header .navigation>li>a.active,
body.justyn-page .main-header .navigation>li.current>a,
body.justyn-page .main-header .navigation>li>a:hover {
    color: var(--justyn-glow) !important;
    background: transparent !important;
}

body.justyn-page .main-header .navigation>li:not(.dropdown)>a::before,
body.justyn-page .main-header .navigation>li:not(.dropdown)>a::after {
    display: none !important;
}

body.justyn-page .main-header .navigation>li.dropdown>a::before {
    display: inline-block !important;
    color: var(--text-grey) !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
    content: "\2b" !important;
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
}

body.justyn-page .main-header .navigation>li.dropdown:hover>a::before {
    color: var(--justyn-glow) !important;
    transform: rotate(45deg) !important;
}