.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Video Element */
.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Video Opacity Overlay - ADJUST THIS VALUE */
.video-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    /* White overlay - adjust last value (0.0 to 1.0) for opacity */
    pointer-events: none;
    z-index: 1;
}

/* Optional: Dark overlay instead of white */
/* .video-background::after {
            background: rgba(0, 0, 0, 0.5);
        } */

/* Ensure content is above video */
.wrapper {
    position: relative;
    z-index: 1;
}

/* Mobile optimization - pause video on small screens to save bandwidth */
@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
    }

    body.maxw1600 {
        max-width: 100% !important;
        width: 100% !important;
    }

    .wrapper {
        overflow-x: hidden;
        max-width: 100%;
    }

    .video-background video {
        display: none;
    }

    /* Fallback background for mobile */
    .video-background {
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #fafbfc 0%, #f5f7fa 100%);
    overflow: visible;
    padding: 80px 0 160px;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(250, 250, 251, 0.8) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero__container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px 180px;
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 90vh;
}

.hero__content {
    padding-right: 0;
    z-index: 3;
}

.hero__trust {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 107, 107, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 107, 0.12);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 32px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 107, 107, 0.85);
    opacity: 0;
    animation: fadeInUp 0.4s ease-out forwards;
    animation-delay: 0s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__trust-icon {
    font-size: 14px;
}

.hero__title {
    font-size: 64px;
    font-weight: 900;
    color: #1a1a2e;
    margin: 0 0 32px;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.hero__title-word {
    display: inline-block;
    opacity: 0;
    position: relative;
}

/* Word 1: Odfoť - Camera Recording Effect */
.hero__title-word--1 {
    animation: wordFadeIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0s;
    position: relative;
}

@keyframes wordFadeIn {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__title-word--1::after {
    content: "";
    position: absolute;
    top: -8px;
    right: -12px;
    width: 12px;
    height: 12px;
    background: #ff3b3b;
    border-radius: 50%;
    opacity: 0;
    animation: recordingDot 1.2s ease-in-out forwards;
    animation-delay: 0s;
    box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7), 0 0 8px rgba(255, 59, 59, 0.6);
}

@keyframes recordingDot {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    5% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7),
            0 0 8px rgba(255, 59, 59, 0.6);
    }

    15% {
        opacity: 0.3;
        box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.3),
            0 0 12px rgba(255, 59, 59, 0.4);
    }

    25% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7),
            0 0 8px rgba(255, 59, 59, 0.6);
    }

    35% {
        opacity: 0.3;
        box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.3),
            0 0 12px rgba(255, 59, 59, 0.4);
    }

    45% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7),
            0 0 8px rgba(255, 59, 59, 0.6);
    }

    55% {
        opacity: 0.3;
        box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.3),
            0 0 12px rgba(255, 59, 59, 0.4);
    }

    65% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7),
            0 0 8px rgba(255, 59, 59, 0.6);
    }

    85% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0);
    }
}

/* Word 2: Nahraj - Upload Effect with Icon */
.hero__title-word--2 {
    animation: uploadSync 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.3s;
}

.hero__title-word--2::after {
    content: "↑";
    position: absolute;
    left: 50%;
    bottom: -35px;
    transform: translateX(-50%) translateY(0);
    font-size: 40px;
    color: #ff6b6b;
    opacity: 0;
    animation: uploadIcon 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.3s;
    font-weight: 900;
}

@keyframes uploadSync {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    60% {
        opacity: 1;
        transform: translateY(-2px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes uploadIcon {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(25px) scaleY(1.3);
    }

    40% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scaleY(1);
    }

    65% {
        opacity: 0.6;
        transform: translateX(-50%) translateY(-15px) scaleY(0.7);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px) scaleY(0.4);
    }
}

/* Word 3: Zarábaj - Magnetic Snap Effect */
.hero__title-word--3 {
    animation: magneticSnap 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.6s;
}

@keyframes magneticSnap {
    0% {
        opacity: 0;
        transform: scale(1.2) translateX(-15px);
        filter: blur(2px);
    }

    50% {
        opacity: 1;
        transform: scale(0.96) translateX(2px);
        filter: blur(0);
        text-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
    }

    80% {
        transform: scale(1.02) translateX(-1px);
        text-shadow: 0 0 10px rgba(255, 107, 107, 0.2);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateX(0);
        filter: blur(0);
        text-shadow: none;
    }
}

.hero__subtitle {
    font-size: 19px;
    color: rgba(26, 26, 46, 0.75);
    line-height: 1.6;
    margin: 0 0 36px;
    opacity: 0;
    animation: fadeInUp 0.4s ease-out forwards;
    animation-delay: 0.9s;
}

.hero__cta {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 18px 44px 18px 48px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.35);
    border: none;
    cursor: pointer;
    opacity: 0;
    animation: fadeInUp 0.4s ease-out forwards;
    animation-delay: 1.2s;
}

.hero__cta::before {
    content: "🎬";
    font-size: 16px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.hero__cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 50px rgba(255, 107, 107, 0.5);
    color: white;
}

.hero__cta:hover::before {
    transform: scale(1.1);
}

.hero__note {
    margin-top: 24px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(26, 26, 46, 0.65);
    line-height: 1.5;
    opacity: 0;
    animation: fadeInUp 0.4s ease-out forwards;
    animation-delay: 1.5s;
}

.hero__note-icon {
    width: 20px;
    height: 20px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 12px;
    margin-top: 2px;
}

.hero__partners {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 0;
    animation: fadeInUp 0.4s ease-out forwards;
    animation-delay: 1.7s;
    overflow: hidden;
}

.hero__partners-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(26, 26, 46, 0.4);
    margin-bottom: 16px;
    font-weight: 600;
}

.hero__partners-logos {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: partnerCarousel 30s linear infinite;
    white-space: nowrap;
}

.hero__partners-logos:hover {
    animation-play-state: paused;
}

@keyframes partnerCarousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hero__partner-logo {
    height: 32px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.5) contrast(1.2);
    opacity: 0.4;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.hero__partner-logo:hover {
    filter: grayscale(0%) brightness(1) contrast(1);
    opacity: 1;
    transform: scale(1.08);
}

.hero__proof {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    animation: fadeInUp 0.4s ease-out forwards;
    animation-delay: 1.9s;
}

.hero__proof-item {
    font-size: 13px;
    color: rgba(26, 26, 46, 0.6);
    line-height: 1.4;
}

.hero__proof-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.hero__visual {
    position: relative;
    height: 680px;
    width: 115%;
    margin-left: -8%;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.hero__visual::before {
    content: "";
    position: absolute;
    top: 15%;
    right: -8%;
    width: 580px;
    height: 480px;
    background: linear-gradient(
        135deg,
        rgba(255, 212, 199, 0.28) 0%,
        rgba(232, 234, 255, 0.32) 100%
    );
    border-radius: 48% 52% 45% 55% / 52% 48% 52% 48%;
    filter: blur(40px);
    z-index: 0;
    animation: blobFloat 8s ease-in-out infinite;
}

@keyframes blobFloat {
    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 48% 52% 45% 55% / 52% 48% 52% 48%;
    }

    33% {
        transform: translate(15px, -20px) rotate(3deg);
        border-radius: 52% 48% 50% 50% / 48% 52% 48% 52%;
    }

    66% {
        transform: translate(-10px, 15px) rotate(-2deg);
        border-radius: 45% 55% 48% 52% / 55% 45% 55% 45%;
    }
}

.hero__visual-main {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 90%;
    height: 620px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
    z-index: 1;
}

.hero__visual-main:hover {
    transform: translateY(-50%) translateX(10px) scale(1.02);
}

.hero__visual-main img,
.hero__visual-main video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__income-pill {
    position: absolute;
    top: 80px;
    left: -40px;
    background: white;
    padding: 14px 28px;
    border-radius: 40px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    font-weight: 700;
    color: #1a1a2e;
    font-size: 16px;
    white-space: nowrap;
    z-index: 2;
    animation: pillFloat 3s ease-in-out infinite,
        fadeInScale 0.4s ease-out forwards;
    animation-delay: 3s, 0.7s;
    transition: all 0.3s ease;
    opacity: 0;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes pillFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero__income-pill:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.hero__income-amount {
    color: #ff6b6b;
    font-size: 20px;
}

.hero__visual-card {
    position: absolute;
    bottom: 100px;
    right: 60%;
    width: 220px;
    height: 160px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
    border: 4px solid white;
    z-index: 3;
    transition: transform 0.3s ease;
    opacity: 0;
    animation: slideInRight 0.4s ease-out forwards;
    animation-delay: 0.9s;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero__visual-card:hover {
    transform: translateY(-5px) rotate(-2deg);
}

.hero__visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__divider {
    position: absolute;
    bottom: 180px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 6;
}

.hero__divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 50%,
        transparent 100%
    );
}

.hero__divider-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(26, 26, 46, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.hero__steps {
    position: absolute;
    bottom: 40px;
    left: 60px;
    right: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    z-index: 5;
}

.hero__step {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 24px 20px;
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.hero__step:nth-child(1) {
    animation-delay: 1s;
}

.hero__step:nth-child(2) {
    animation-delay: 1.15s;
}

.hero__step:nth-child(3) {
    animation-delay: 1.3s;
}

.hero__step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(255, 107, 107, 0.15);
    border-color: rgba(255, 107, 107, 0.2);
}

.hero__step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 15px;
    margin: 0 auto 12px;
}

.hero__step-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 12px;
    color: #ff6b6b;
}

.hero__step-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
}

.hero__step-text {
    font-size: 13px;
    color: rgba(26, 26, 46, 0.7);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991px) {
    .hero {
        padding: 60px 0 120px;
        overflow-x: hidden;
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 40px 100px;
        min-height: auto;
    }

    .hero__content {
        padding-right: 0;
    }

    .hero__title {
        font-size: 48px;
    }

    .hero__visual {
        width: 100%;
        margin-left: 0;
        height: 500px;
    }

    .hero__visual-main {
        width: 100%;
        right: 0;
    }

    .hero__visual::before {
        right: 0;
        width: 400px;
        height: 350px;
    }

    .hero__income-pill {
        left: 20px;
        top: 40px;
        font-size: 14px;
        padding: 12px 20px;
    }

    .hero__visual-card {
        width: 180px;
        height: 140px;
        bottom: 60px;
        right: 60%;
    }

    .hero__steps {
        bottom: -100px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero__proof {
        flex-wrap: wrap;
    }

    .hero__partners-logos {
        gap: 30px;
    }

    .hero__partner-logo {
        height: 28px;
        max-width: 100px;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 100px 0 80px;
        overflow-x: hidden;
        min-height: auto;
        margin-top: 0;
    }

    .hero__container {
        padding: 0 20px 80px;
        gap: 40px;
        max-width: 100%;
        overflow: hidden;
    }

    .hero__trust {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 20px;
        max-width: fit-content;
    }

    .hero__title {
        font-size: 32px !important;
        margin-bottom: 20px !important;
        letter-spacing: -0.5px !important;
        line-height: 1.2 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .hero__title-word {
        display: inline;
    }

    .hero__subtitle {
        font-size: 14px;
        margin-bottom: 24px;
        line-height: 1.5;
        max-width: 100%;
    }

    .hero__cta {
        width: 100% !important;
        max-width: calc(100vw - 40px) !important;
        text-align: center;
        justify-content: center;
        padding: 14px 20px !important;
        font-size: 13px !important;
        white-space: normal !important;
        overflow: visible;
        box-sizing: border-box;
        display: inline-flex !important;
        line-height: 1.3;
        min-height: 48px;
    }

    .hero__cta::before {
        font-size: 13px;
        flex-shrink: 0;
    }

    .hero__note {
        padding: 12px 14px;
        font-size: 11px;
        line-height: 1.4;
        max-width: 100%;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
    }

    .hero__note-icon {
        width: 16px;
        height: 16px;
        font-size: 10px;
        flex-shrink: 0;
    }

    .hero__note span {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero__visual {
        height: 400px;
        width: 100%;
        margin-left: 0;
    }

    .hero__visual::before {
        width: 300px;
        height: 250px;
        right: -20%;
        top: 20%;
    }

    .hero__visual-main {
        height: 400px;
        width: 100%;
        right: 0;
        border-radius: 20px;
    }

    .hero__visual-card {
        width: 140px;
        height: 110px;
        bottom: 60px;
        right: 50%;
        border-radius: 12px;
    }

    .hero__income-pill {
        left: 10px;
        top: 30px;
        font-size: 13px;
        padding: 10px 18px;
        border-radius: 30px;
    }

    .hero__income-amount {
        font-size: 16px;
    }

    .hero__partners {
        margin-top: 24px;
        padding-top: 24px;
    }

    .hero__partners-label {
        font-size: 10px;
        margin-bottom: 12px;
    }

    .hero__partners-logos {
        gap: 24px;
    }

    .hero__partner-logo {
        height: 24px;
        max-width: 80px;
    }

    .hero__proof {
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
        padding-top: 24px;
    }

    .hero__proof-item {
        font-size: 12px;
    }

    .hero__proof-value {
        font-size: 18px;
    }

    .hero__steps {
        left: 20px;
        right: 20px;
    }
}

/* NEW LOKACIA HERO  */

.hero-fullscreen {
    position: relative;
    height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-fullscreen__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-fullscreen__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.3) 70%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-fullscreen__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px 50px;
    text-align: center;
}

.hero-fullscreen__title {
    font-size: 56px;
    font-weight: 900;
    color: white;
    margin: 0 auto 20px;
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    max-width: 800px;
}

.hero-fullscreen__title-word {
    display: inline-block;
    opacity: 0;
    position: relative;
}

/* Word 1: Odfoť - Camera Recording Effect */
.hero-fullscreen__title-word--1 {
    animation: wordFadeInWhite 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94)
        forwards;
    animation-delay: 0.3s;
    position: relative;
}

@keyframes wordFadeInWhite {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-fullscreen__title-word--1::after {
    content: "";
    position: absolute;
    top: -6px;
    right: -10px;
    width: 10px;
    height: 10px;
    background: #ff3b3b;
    border-radius: 50%;
    opacity: 0;
    animation: recordingDotWhite 1.2s ease-in-out forwards;
    animation-delay: 0.3s;
    box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7), 0 0 8px rgba(255, 59, 59, 0.6);
}

@keyframes recordingDotWhite {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    5% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7),
            0 0 8px rgba(255, 59, 59, 0.6);
    }

    15% {
        opacity: 0.3;
        box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.3),
            0 0 12px rgba(255, 59, 59, 0.4);
    }

    25% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7),
            0 0 8px rgba(255, 59, 59, 0.6);
    }

    35% {
        opacity: 0.3;
        box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.3),
            0 0 12px rgba(255, 59, 59, 0.4);
    }

    45% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7),
            0 0 8px rgba(255, 59, 59, 0.6);
    }

    55% {
        opacity: 0.3;
        box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.3),
            0 0 12px rgba(255, 59, 59, 0.4);
    }

    65% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7),
            0 0 8px rgba(255, 59, 59, 0.6);
    }

    85% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0);
    }
}

/* Word 2: Nahraj - Upload Effect with Icon */
.hero-fullscreen__title-word--2 {
    animation: uploadSyncWhite 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94)
        forwards;
    animation-delay: 0.6s;
}

.hero-fullscreen__title-word--2::after {
    content: "↑";
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%) translateY(0);
    font-size: 32px;
    color: #ff6b6b;
    opacity: 0;
    animation: uploadIconWhite 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
        forwards;
    animation-delay: 0.6s;
    font-weight: 900;
}

@keyframes uploadSyncWhite {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    60% {
        opacity: 1;
        transform: translateY(-2px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes uploadIconWhite {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(25px) scaleY(1.3);
    }

    40% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scaleY(1);
    }

    65% {
        opacity: 0.6;
        transform: translateX(-50%) translateY(-15px) scaleY(0.7);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px) scaleY(0.4);
    }
}

/* Word 3: Zarábaj - Magnetic Snap Effect */
.hero-fullscreen__title-word--3 {
    animation: magneticSnapWhite 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.9s;
}

@keyframes magneticSnapWhite {
    0% {
        opacity: 0;
        transform: scale(1.2) translateX(-15px);
        filter: blur(2px);
    }

    50% {
        opacity: 1;
        transform: scale(0.96) translateX(2px);
        filter: blur(0);
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    }

    80% {
        transform: scale(1.02) translateX(-1px);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateX(0);
        filter: blur(0);
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }
}

.hero-fullscreen__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin: 0 auto 32px;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

.hero-fullscreen__cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.9s;
}

.hero-fullscreen__cta {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    border: none;
    cursor: pointer;
}

.hero-fullscreen__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(255, 107, 107, 0.6);
    color: white;
}

.hero-fullscreen__cta--secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-fullscreen__cta--secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

@media (max-width: 991px) {
    .hero-fullscreen__content {
        padding: 0 40px 60px;
    }

    .hero-fullscreen__title {
        font-size: 48px;
        letter-spacing: -1px;
    }

    .hero-fullscreen__subtitle {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .hero-fullscreen__content {
        padding: 0 24px 40px;
    }

    .hero-fullscreen__title {
        font-size: 36px;
    }

    .hero-fullscreen__subtitle {
        font-size: 16px;
    }

    .hero-fullscreen__cta {
        width: 100%;
        justify-content: center;
    }

    .hero-fullscreen__cta-group {
        flex-direction: column;
    }
}

/* ============================================ */
/* COMPREHENSIVE MOBILE FIX */
/* ============================================ */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
    }

    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
        position: relative;
    }

    body * {
        max-width: 100vw;
    }

    .maxw1600 {
        max-width: 100% !important;
        width: 100% !important;
    }

    .wrapper {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    /* Force all buttons to fit */
    button,
    .btn,
    a.hero__cta {
        max-width: 100% !important;
        word-wrap: break-word;
        white-space: normal;
        box-sizing: border-box;
    }

    /* Fix all text elements */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    span,
    div {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    /* Fix container fluid */
    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    /* Fix footer sections */
    .footer_one {
        padding: 40px 0 !important;
        overflow-x: hidden !important;
    }

    .footer_one .container-fluid {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .footer_one .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .footer_one [class*="col-"] {
        padding-left: 10px !important;
        padding-right: 10px !important;
        margin-bottom: 30px;
    }

    .footer_middle_area {
        padding: 30px 0 !important;
        overflow-x: hidden !important;
    }

    .footer_logo_widget img {
        max-width: 150px !important;
    }

    /* Fix "How it works" section */
    .simple-steps-section {
        padding: 60px 0 !important;
        overflow-x: hidden !important;
    }

    .simple-steps-container {
        padding: 0 20px !important;
        max-width: 100% !important;
    }

    .simple-steps-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .simple-step-card {
        padding: 30px 20px !important;
    }

    .simple-steps-title {
        font-size: 32px !important;
    }

    .simple-step-title {
        font-size: 20px !important;
    }

    /* ============================================ */
    /* MOBILE HEADER FIX */
    /* ============================================ */
    /* Force header to show on mobile */
    header.header-nav {
        display: block !important;
        position: relative !important;
        z-index: 999 !important;
        background: #ffffff !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
        width: 100% !important;
    }

    header.header-nav.main-menu {
        display: block !important;
    }

    /* Mobile menu toggle button */
    .menu-toggle {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px !important;
        background: #ffffff !important;
        width: 100%;
    }

    .menu-toggle img {
        max-height: 40px !important;
        width: auto !important;
    }

    .menu-toggle #menu-btn {
        display: block !important;
        background: #ff6b6b !important;
        border: none !important;
        padding: 10px !important;
        border-radius: 6px !important;
        cursor: pointer;
    }

    .menu-toggle #menu-btn .icon-bar {
        display: block !important;
        width: 24px !important;
        height: 3px !important;
        background: #ffffff !important;
        margin: 4px 0 !important;
        border-radius: 2px !important;
    }

    /* Desktop logo hidden on mobile */
    .navbar_brand.dn-smd {
        display: none !important;
    }

    /* Mobile menu when opened */
    .ace-responsive-menu {
        width: 100% !important;
        max-width: 100% !important;
    }

    .ace-responsive-menu li {
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .ace-responsive-menu li a {
        padding: 15px 20px !important;
        display: block !important;
        color: #ffffff !important;
        font-size: 15px !important;
    }

    /* Fix list inline items for mobile */
    .list-inline-item {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .list-inline-item a {
        justify-content: flex-start !important;
        width: 100% !important;
    }

    /* "Pridať ponuku" button on mobile */
    .add_listing a {
        background: #ff6b6b !important;
        color: #ffffff !important;
        padding: 15px 20px !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }
}
