/* =========================
   LYOFIZED FOOTER
========================= */

.lyo-footer {
    background: #021120;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.lyo-footer-inner {
    width: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(0,149,255,.08), transparent 30%),
        radial-gradient(circle at 80% 10%, rgba(0,149,255,.06), transparent 25%),
        #021120;
}

/* TOP */

.lyo-footer-main {
    display: grid;
    grid-template-columns: 650px 1px 1fr;
    gap: 60px;
    padding: 60px 6%;
    align-items: start;
}

/* BRAND */

.lyo-footer-brand {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 18px;
}

.lyo-footer-logo {
    width: 580px;
    max-width: 100%;
    display: block;
    margin: 0;
    transform: translateY(-25px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: -8px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-row p {
    margin: 0;
    color: rgba(255,255,255,.85);
    font-size: 18px;
    line-height: 1.5;
}

.contact-row strong {
    color: #fff;
}

.footer-icon,
.column-icon,
.feature-icon,
.footer-socials a,
.back-top {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #149eea;
    background: rgba(0,149,255,.05);
    border: 1px solid rgba(0,149,255,.18);
}

.footer-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    font-size: 22px;
    flex-shrink: 0;
}

/* SOCIALS */

.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 14px;
}

.footer-socials a {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 24px;
    transition: .3s ease;
}

.footer-socials a:hover {
    background: #149eea;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(20,158,234,.35);
}

/* DIVIDER */

.footer-divider {
    width: 1px;
    height: 100%;
    min-height: 520px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(20,158,234,.35),
        transparent
    );
    position: relative;
}

.footer-divider::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #149eea;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 18px #149eea;
}

/* LINKS */

.lyo-footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 90px;
    align-items: start;
    padding-top: 20px;
}

.footer-column {
    max-width: 420px;
}

.column-icon {
    width: 90px;
    height: 90px;
    border-radius: 22px;
    font-size: 36px;
    margin-bottom: 32px;
}

.footer-column h3 {
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: .3px;
}

.column-line {
    display: block;
    width: 52px;
    height: 3px;
    background: #149eea;
    margin: 22px 0 30px;
    border-radius: 999px;
    box-shadow: 0 0 12px rgba(20,158,234,.7);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 22px;
}

.footer-column li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .7em;
    width: 5px;
    height: 5px;
    background: #149eea;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(20,158,234,.9);
}

.footer-column a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-size: 20px;
    line-height: 1.35;
    transition: .3s ease;
}

.footer-column a:hover {
    color: #88D7FD;
    padding-left: 4px;
}

/* FEATURES */

.lyo-footer-features {
    border-top: 1px solid rgba(20,158,234,.12);
    border-bottom: 1px solid rgba(20,158,234,.12);
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    gap: 35px;
    padding: 40px 6%;
}

.footer-feature {
    display: flex;
    align-items: center;
    gap: 24px;
}

.feature-icon {
    width: 82px;
    height: 82px;
    border-radius: 20px;
    font-size: 34px;
    flex-shrink: 0;
}

.footer-feature h4 {
    margin: 0 0 10px;
    color: #fff;
    text-transform: uppercase;
    font-size: 21px;
    font-weight: 900;
}

.footer-feature p {
    margin: 0;
    color: rgba(255,255,255,.75);
    font-size: 16px;
    line-height: 1.5;
}

.feature-separator {
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(20,158,234,.3),
        transparent
    );
}

/* BOTTOM */

.lyo-footer-bottom {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px 6%;
    color: rgba(255,255,255,.62);
    font-size: 15px;
    position: relative;
}

.lyo-footer-bottom p {
    margin: 0;
}

.lyo-footer-bottom strong {
    color: #149eea;
}

.lyo-footer-bottom span {
    width: 1px;
    height: 22px;
    background: rgba(255,255,255,.15);
}

.back-top {
    margin-left: auto;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: .3s ease;
}

.back-top:hover {
    background: #149eea;
    color: #fff;
    transform: translateY(-3px);
}

/* OPTIMALIZÁCIA PRE MOBIL */ /* OPTIMALIZÁCIA PRE MOBIL */ /* OPTIMALIZÁCIA PRE MOBIL */
/* OPTIMALIZÁCIA PRE MOBIL */ /* OPTIMALIZÁCIA PRE MOBIL */ /* OPTIMALIZÁCIA PRE MOBIL */

/* RESPONSIVE */

@media (max-width: 1200px) {
    .lyo-footer-main {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 55px 5%;
    }

    .footer-divider {
        display: none;
    }

    .lyo-footer-brand {
        align-items: center;
        text-align: center;
    }

    .lyo-footer-logo {
        width: min(480px, 100%);
        transform: translateY(-18px);
    }

    .footer-contact {
        width: 100%;
        max-width: 520px;
        margin-top: -5px;
    }

    .contact-row {
        justify-content: flex-start;
        text-align: left;
    }

    .footer-socials {
        justify-content: center;
        flex-wrap: wrap;
    }

    .lyo-footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 45px;
        padding-top: 0;
    }

    .footer-column {
        max-width: none;
    }

    .lyo-footer-features {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .feature-separator {
        display: none;
    }
}

@media (max-width: 768px) {
    .lyo-footer-main {
        padding: 45px 22px;
        gap: 38px;
    }

    .lyo-footer-logo {
        width: min(360px, 100%);
        transform: translateY(-14px);
    }

    .lyo-footer-brand {
        gap: 12px;
    }

    .footer-contact {
        gap: 18px;
    }

    .contact-row {
        gap: 14px;
        align-items: flex-start;
    }

    .contact-row p {
        font-size: 15.5px;
        line-height: 1.45;
    }

    .footer-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        border-radius: 13px;
        font-size: 18px;
    }

    .footer-socials {
        gap: 12px;
        margin-top: 8px;
    }

    .footer-socials a {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 20px;
    }

    .lyo-footer-links {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .column-icon {
        width: 62px;
        height: 62px;
        border-radius: 17px;
        font-size: 26px;
        margin-bottom: 20px;
    }

    .footer-column h3 {
        font-size: 22px;
        line-height: 1.2;
    }

    .column-line {
        margin: 16px 0 22px;
    }

    .footer-column li {
        margin-bottom: 16px;
        padding-left: 20px;
    }

    .footer-column a {
        font-size: 16.5px;
        line-height: 1.4;
    }

    .lyo-footer-features {
        padding: 32px 22px;
        gap: 24px;
    }

    .footer-feature {
        gap: 16px;
        align-items: flex-start;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        border-radius: 16px;
        font-size: 24px;
    }

    .footer-feature h4 {
        font-size: 17px;
        margin-bottom: 7px;
    }

    .footer-feature p {
        font-size: 14.5px;
        line-height: 1.45;
    }

    .lyo-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 26px 22px;
        padding-right: 86px;
        font-size: 14px;
        line-height: 1.45;
    }

    .lyo-footer-bottom span {
        display: none;
    }

    .back-top {
        position: absolute;
        right: 22px;
        bottom: 22px;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .lyo-footer-main {
        padding: 38px 18px;
        gap: 32px;
    }

    .lyo-footer-logo {
        width: min(310px, 100%);
        transform: translateY(-10px);
    }

    .contact-row {
        gap: 12px;
    }

    .contact-row p {
        font-size: 14.5px;
    }

    .footer-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 12px;
        font-size: 16px;
    }

    .footer-socials a {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .column-icon {
        width: 56px;
        height: 56px;
        font-size: 23px;
        margin-bottom: 18px;
    }

    .footer-column h3 {
        font-size: 20px;
    }

    .footer-column a {
        font-size: 15.5px;
    }

    .footer-column li {
        margin-bottom: 14px;
    }

    .lyo-footer-features {
        padding: 28px 18px;
    }

    .footer-feature {
        gap: 14px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 21px;
    }

    .footer-feature h4 {
        font-size: 15.5px;
    }

    .footer-feature p {
        font-size: 13.8px;
    }

    .lyo-footer-bottom {
        padding: 24px 18px;
        padding-right: 76px;
        font-size: 13.5px;
    }

    .back-top {
        right: 18px;
        bottom: 20px;
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 360px) {
    .lyo-footer-logo {
        width: 270px;
    }

    .contact-row p {
        font-size: 13.5px;
    }

    .footer-socials {
        gap: 10px;
    }

    .footer-socials a {
        width: 40px;
        height: 40px;
    }

    .footer-feature {
        flex-direction: column;
    }
}
/* OPTIMALIZÁCIA PRE MOBIL */ /* OPTIMALIZÁCIA PRE MOBIL */ /* OPTIMALIZÁCIA PRE MOBIL A TABLETY */
/* OPTIMALIZÁCIA PRE MOBIL */ /* OPTIMALIZÁCIA PRE MOBIL */ /* OPTIMALIZÁCIA PRE MOBIL A TABLETY */
/* OPTIMALIZÁCIA PRE MOBIL */ /* OPTIMALIZÁCIA PRE MOBIL */ /* OPTIMALIZÁCIA PRE MOBIL A TABLETY */
/* OPTIMALIZÁCIA PRE MOBIL */ /* OPTIMALIZÁCIA PRE MOBIL */ /* OPTIMALIZÁCIA PRE MOBIL A TABLETY */
/* OPTIMALIZÁCIA PRE MOBIL */ /* OPTIMALIZÁCIA PRE MOBIL */ /* OPTIMALIZÁCIA PRE MOBIL A TABLETY */
/* OPTIMALIZÁCIA PRE MOBIL */ /* OPTIMALIZÁCIA PRE MOBIL */ /* OPTIMALIZÁCIA PRE MOBIL A TABLETY */
/* OPTIMALIZÁCIA PRE MOBIL */ /* OPTIMALIZÁCIA PRE MOBIL */ /* OPTIMALIZÁCIA PRE MOBIL A TABLETY */
/* OPTIMALIZÁCIA PRE MOBIL */ /* OPTIMALIZÁCIA PRE MOBIL */ /* OPTIMALIZÁCIA PRE MOBIL A TABLETY */

/* =========================================================
   FOOTER FIX — TABLETY / MENŠIE NOTEBOOKY / RESPONSIVE TEXTY
   Vlož úplne na koniec CSS
========================================================= */

/* Globálna ochrana proti pretekaniu textov vo footeri */
.lyo-footer,
.lyo-footer * {
    max-width: 100%;
}

.lyo-footer {
    overflow-x: hidden !important;
}

.lyo-footer a,
.lyo-footer p,
.lyo-footer h3,
.lyo-footer h4,
.contact-row p,
.footer-column a,
.footer-feature p,
.lyo-footer-bottom p {
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    hyphens: auto !important;
}

/* NOTEBOOKY A TABLETY NA ŠÍRKU */
@media (max-width: 1440px) {

    .lyo-footer-main {
        grid-template-columns: minmax(360px, 520px) 1px minmax(0, 1fr) !important;
        gap: clamp(32px, 4vw, 54px) !important;
        padding: 56px 5% !important;
    }

    .lyo-footer-logo {
        width: min(500px, 100%) !important;
        transform: translateY(-18px) !important;
    }

    .lyo-footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: clamp(34px, 4vw, 60px) !important;
    }

    .footer-column {
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .footer-column h3 {
        font-size: clamp(24px, 2vw, 28px) !important;
        line-height: 1.15 !important;
    }

    .footer-column a {
        font-size: clamp(17px, 1.35vw, 19px) !important;
        line-height: 1.45 !important;
    }

    .footer-column li {
        margin-bottom: 18px !important;
    }

    .column-icon {
        width: 76px !important;
        height: 76px !important;
        font-size: 30px !important;
        margin-bottom: 26px !important;
    }

    .contact-row p {
        font-size: clamp(16px, 1.3vw, 18px) !important;
        line-height: 1.5 !important;
    }

    .footer-icon {
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
        font-size: 20px !important;
    }

    .footer-socials a {
        width: 52px !important;
        height: 52px !important;
        font-size: 22px !important;
    }

    .lyo-footer-features {
        grid-template-columns: 1fr 1px 1fr 1px 1fr !important;
        gap: clamp(22px, 2.5vw, 32px) !important;
        padding: 36px 5% !important;
    }

    .footer-feature {
        gap: 18px !important;
        min-width: 0 !important;
    }

    .feature-icon {
        width: 68px !important;
        height: 68px !important;
        min-width: 68px !important;
        font-size: 28px !important;
    }

    .footer-feature h4 {
        font-size: clamp(17px, 1.45vw, 20px) !important;
        line-height: 1.2 !important;
    }

    .footer-feature p {
        font-size: clamp(14px, 1.1vw, 16px) !important;
        line-height: 1.45 !important;
    }
}

/* MENŠIE NOTEBOOKY A VEĽKÉ TABLETY — zlom do čistého layoutu */
@media (max-width: 1200px) {

    .lyo-footer-main {
        grid-template-columns: 1fr !important;
        gap: 42px !important;
        padding: 54px 36px !important;
    }

    .footer-divider {
        display: none !important;
    }

    .lyo-footer-brand {
        align-items: flex-start !important;
        text-align: left !important;
        gap: 14px !important;
    }

    .lyo-footer-logo {
        width: min(440px, 100%) !important;
        transform: translateY(-12px) !important;
    }

    .footer-contact {
        width: 100% !important;
        max-width: 720px !important;
        margin-top: 0 !important;
        gap: 18px !important;
    }

    .contact-row {
        justify-content: flex-start !important;
        text-align: left !important;
        align-items: flex-start !important;
        gap: 16px !important;
    }

    .contact-row p {
        font-size: 16.5px !important;
        line-height: 1.55 !important;
    }

    .footer-socials {
        justify-content: flex-start !important;
        flex-wrap: wrap !important;
        margin-top: 10px !important;
    }

    .lyo-footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 34px !important;
        padding-top: 0 !important;
    }

    .footer-column h3 {
        font-size: 24px !important;
    }

    .footer-column a {
        font-size: 17px !important;
    }

    .column-icon {
        width: 66px !important;
        height: 66px !important;
        font-size: 27px !important;
        margin-bottom: 22px !important;
    }

    .column-line {
        margin: 16px 0 22px !important;
    }

    .lyo-footer-features {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
        padding: 34px 36px !important;
    }

    .feature-separator {
        display: none !important;
    }

    .footer-feature {
        align-items: flex-start !important;
        gap: 16px !important;
    }

    .footer-feature h4 {
        font-size: 18px !important;
    }

    .footer-feature p {
        font-size: 15px !important;
    }

    .lyo-footer-bottom {
        padding: 28px 36px !important;
        gap: 20px !important;
        flex-wrap: wrap !important;
        font-size: 14.5px !important;
        line-height: 1.45 !important;
    }
}

/* TABLETY — nech sa to správa skoro ako mobil */
@media (max-width: 900px) {

    .lyo-footer-main {
        padding: 46px 24px !important;
        gap: 36px !important;
    }

    .lyo-footer-brand {
        align-items: center !important;
        text-align: center !important;
    }

    .lyo-footer-logo {
        width: min(360px, 100%) !important;
        transform: translateY(-10px) !important;
    }

    .footer-contact {
        max-width: 560px !important;
        gap: 16px !important;
    }

    .contact-row {
        text-align: left !important;
        gap: 14px !important;
    }

    .contact-row p {
        font-size: 15.5px !important;
        line-height: 1.5 !important;
    }

    .footer-icon {
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        border-radius: 13px !important;
        font-size: 18px !important;
    }

    .footer-socials {
        justify-content: center !important;
        gap: 12px !important;
    }

    .footer-socials a {
        width: 48px !important;
        height: 48px !important;
        border-radius: 14px !important;
        font-size: 20px !important;
    }

    .lyo-footer-links {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    .footer-column {
        text-align: left !important;
    }

    .column-icon {
        width: 60px !important;
        height: 60px !important;
        border-radius: 17px !important;
        font-size: 25px !important;
        margin-bottom: 18px !important;
    }

    .footer-column h3 {
        font-size: 21px !important;
        line-height: 1.2 !important;
    }

    .footer-column li {
        padding-left: 20px !important;
        margin-bottom: 15px !important;
    }

    .footer-column a {
        font-size: 16px !important;
        line-height: 1.45 !important;
    }

    .lyo-footer-features {
        padding: 32px 24px !important;
        gap: 22px !important;
    }

    .footer-feature {
        gap: 15px !important;
    }

    .feature-icon {
        width: 54px !important;
        height: 54px !important;
        min-width: 54px !important;
        border-radius: 15px !important;
        font-size: 23px !important;
    }

    .footer-feature h4 {
        font-size: 16.5px !important;
        margin-bottom: 7px !important;
    }

    .footer-feature p {
        font-size: 14.2px !important;
        line-height: 1.45 !important;
    }

    .lyo-footer-bottom {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
        padding: 24px 24px !important;
        padding-right: 84px !important;
        font-size: 13.8px !important;
        position: relative !important;
    }

    .lyo-footer-bottom span {
        display: none !important;
    }

    .back-top {
        position: absolute !important;
        right: 24px !important;
        bottom: 22px !important;
        width: 48px !important;
        height: 48px !important;
        font-size: 18px !important;
        margin-left: 0 !important;
    }
}

/* MOBILY — jemné doladenie */
@media (max-width: 520px) {

    .lyo-footer-main {
        padding: 38px 18px !important;
        gap: 30px !important;
    }

    .lyo-footer-logo {
        width: min(300px, 100%) !important;
        transform: translateY(-8px) !important;
    }

    .lyo-footer-brand {
        gap: 10px !important;
    }

    .footer-contact {
        gap: 15px !important;
    }

    .contact-row {
        gap: 12px !important;
    }

    .contact-row p {
        font-size: 14.3px !important;
        line-height: 1.45 !important;
    }

    .footer-icon {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        border-radius: 12px !important;
        font-size: 16px !important;
    }

    .footer-socials a {
        width: 43px !important;
        height: 43px !important;
        font-size: 18px !important;
    }

    .column-icon {
        width: 54px !important;
        height: 54px !important;
        font-size: 22px !important;
        margin-bottom: 16px !important;
    }

    .footer-column h3 {
        font-size: 19px !important;
    }

    .footer-column a {
        font-size: 15.2px !important;
    }

    .footer-column li {
        margin-bottom: 13px !important;
    }

    .lyo-footer-features {
        padding: 28px 18px !important;
    }

    .footer-feature {
        gap: 13px !important;
    }

    .feature-icon {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        font-size: 20px !important;
    }

    .footer-feature h4 {
        font-size: 15.2px !important;
    }

    .footer-feature p {
        font-size: 13.5px !important;
    }

    .lyo-footer-bottom {
        padding: 22px 18px !important;
        padding-right: 74px !important;
        font-size: 13.2px !important;
    }

    .back-top {
        right: 18px !important;
        bottom: 20px !important;
        width: 44px !important;
        height: 44px !important;
    }
}

/* EXTRA MALÉ MOBILY */
@media (max-width: 360px) {

    .lyo-footer-logo {
        width: 260px !important;
    }

    .contact-row p {
        font-size: 13.2px !important;
    }

    .footer-socials {
        gap: 9px !important;
    }

    .footer-socials a {
        width: 39px !important;
        height: 39px !important;
    }

    .footer-feature {
        flex-direction: column !important;
    }

    .lyo-footer-bottom {
        padding-right: 18px !important;
    }

    .back-top {
        position: static !important;
        margin-top: 8px !important;
    }
}