body { 
            	background-color: #000; 
            	color: #1a1a1a; 
            	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
            	text-align: center; 
            	padding: 40px 20px; 
            	margin: 0; 
		overflow-x: hidden;
        }

        .language-switcher {
            position: absolute;
            top: 25px;
            right: 25px;
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 6px 12px;
            border-radius: 30px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            z-index: 1000;
        }

        .header-nav {
    position: absolute;
    top: 20px;
    left: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1000;
}

.nav-link {
    color: #2196F3; 
    text-decoration: none; 
    font-size: 1rem; 
    font-weight: 500; 
    padding: 5px 10px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.services-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 700px;
    margin: -20px auto 40px auto;
}

.service-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
}

        .lang-link {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            gap: 8px;
            transition: opacity 0.2s;
        }

        .lang-link:hover {
            opacity: 0.7;
        }

        .flag-icon {
            width: 20px;
            height: 20px;
            object-fit: cover;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .separator {
            color: rgba(255, 255, 255, 0.3);
            margin: 0 10px;
        }        

        .hero-main-wrapper {
    		display: flex;
    		justify-content: center;
    		align-items: center;
    		gap: 40px; /* Намаляваме малко гапа за по-добра съвместимост */
    		max-width: 1200px;
    		margin: 80px auto 20px auto;
    		flex-wrap: nowrap; /* ЗАБРАНЯВАМЕ пренасянето на таблети */
	}

        .hero-element {
            width: 200px;
            height: 220px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .logo-box {
            width: 200px;
            height: 200px;
            background-color: #fff;
            border-radius: 40px;
            padding: 10px;
            box-sizing: border-box;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .logo-box img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .sticky-note {
            width: 200px;
            height: 220px;
            padding: 45px 15px 15px 15px; 
            background: #ffffff;
            border-radius: 40px;
            box-shadow: 10px 10px 20px rgba(200, 200, 200, 0.2), 
                        15px 25px 50px rgba(200, 200, 200, 0.3);
            font-family: 'Caveat', cursive;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            transition: transform 0.3s ease;
        }

        .pin {
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 18px;
            background: radial-gradient(circle at 30% 30%, #ff5252, #800);
            border-radius: 50%;
            box-shadow: 2px 4px 5px rgba(0,0,0,0.3); 
            z-index: 10;
        }
        
        .note-solution .pin {
            background: radial-gradient(circle at 30% 30%, #2196F3, #0d47a1);
        }

        .note-pain {
            background: #ffffff;
            color: #222;
            transform: rotate(-8deg);
        }

        .note-solution {
            background: #ffffff; 
            color: #111;
            transform: rotate(8deg);
        }

        .note-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            text-decoration: underline;
            text-align: center;
        }

        .note-content {
            font-size: 1.2rem;
            line-height: 1.1;
            list-style: none;
            padding: 0;
            text-align: left;
        }

        .note-content li {
            margin-bottom: 8px;
            padding-left: 5px;
        }

        .slogan { 
            color: #bbb; 
            font-size: 1rem; 
            font-weight: 700;
            line-height: 1.8;
            margin-bottom: 40px; 
            max-width: 600px; 
            margin-left: auto; 
            margin-right: auto; 
        }

        .section-title {
            color: #fff;
            font-size: 1.4rem;
            font-weight: 700;
            margin: 50px 0 25px 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .journey-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            max-width: 1000px;
            margin: 60px auto;
            position: relative;
            padding: 0 20px;
        }

        .journey-line {
            position: absolute;
            top: 45px;
            left: 5%;
            right: 5%;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(33, 150, 243, 0.4), transparent);
            z-index: 1;
        }

        .journey-step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 2;
            padding: 0 10px;
        }

        .step-options {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-top: 10px;
        }

        .option-sub-step {
            flex: 1;
        }

        .or-divider {
            color: #2196F3;
            font-weight: 900;
            font-size: 0.8rem;
            opacity: 0.8;
            padding-top: 20px;
        }

        .step-blob {
            background: #2196F3;
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.8rem;
            margin: 0 auto 15px auto;
            box-shadow: 0 0 15px rgba(33, 150, 243, 0.5);
        }

        .step-icon-main {
            font-size: 2.5rem;
            margin-bottom: 20px;
            filter: drop-shadow(0 5px 15px rgba(255,255,255,0.1));
        }

        .journey-step h3 {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .journey-step p {
            color: #aaa;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .trust-footer {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 80px;
            flex-wrap: wrap;
        }

        .trust-badge {
            color: #666;
            font-size: 0.8rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .badges-wrapper {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin: 40px auto 60px auto;
            max-width: 1000px;
            flex-wrap: wrap;
        }

        .item-box {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .store-btn {
            text-decoration: none;
            transition: transform 0.2s ease;
        }

        .store-btn:not(.inactive):hover {
            transform: scale(1.05);
        }

        .store-btn.inactive {
            opacity: 0.2;
            filter: grayscale(1);
            cursor: default;
        }

        .store-img {
            height: 50px;
            width: auto;
        }

        .qr-box {
            background: #fff;
            padding: 10px;
            border-radius: 15px;
            border: 2px solid #2196F3;
        }

        .qr-box.inactive {
            border-color: #333;
            opacity: 0.2;
        }

        .qr-code-img {
            width: 110px;
            height: 110px;
            display: block;
        }

        .coming-soon-note {
            display: block;
            margin-top: 10px;
            font-size: 0.65rem;
            font-weight: 700;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .faq-container {
            max-width: 600px;
            margin: 0 auto 50px auto;
            text-align: left;
        }

        .faq-item {
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #bbb; 
        }

        .faq-item h4 {
            color: #fff;
            margin: 0 0 5px 0;
            font-size: 1rem;
        }

        .faq-item p {
            color: #ccc;
            margin: 0;
            font-size: 0.9rem;
        }

        .links-container { 
            display: flex; 
            flex-direction: row;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px; 
            margin-top: 40px;
        }

        .link-btn { 
            color: #2196F3; 
            text-decoration: none; 
            font-size: 1rem; 
            font-weight: 500; 
            padding: 5px 10px;
            transition: all 0.2s ease;
        }

        .link-btn:hover { 
            color: #ffffff;
        }

        .footer { 
            margin-top: 30px; 
            color: #bbb; 
            font-size: 0.85rem; 
            border-top: 1px solid #bbb; 
            padding-top: 20px; 
        }

/* --- ОБНОВЕНИ СТИЛОВЕ ЗА АДАПТИВНОСТ --- */

/* ТАБЛЕТ И МАЛЪК ЛАПТОП (до 1024px) */
@media (max-width: 1024px) {
    .hero-main-wrapper {
        gap: 15px;
    }
    .hero-element, .sticky-note, .logo-box {
        width: 180px;
        height: 200px;
    }
    .note-title { font-size: 1.2rem; }
    
    .journey-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .journey-line { display: none; } /* Скриваме линията на таблет/телефон */
}

/* ТЕЛЕФОН (до 768px) */
@media (max-width: 768px) {
    body {
        overflow-x: hidden; /* Спира скролването настрани */
        padding-top: 80px; /* Място за езиците */
    }

    /* 1. Флаговете в средата */
    .language-switcher {
        position: absolute;
        top: 15px;
        right: 0;
        left: 0;
        margin: 0 auto;
        width: fit-content;
        justify-content: center;
    }

    /* 2. Главните елементи (бележките) един под друг */
    .hero-main-wrapper {
        flex-wrap: wrap;
        flex-direction: column;
        gap: 40px;
        margin-top: 40px;
    }
    .sticky-note {
        transform: rotate(0deg) !important;
        width: 280px;
        height: auto;
        min-height: 200px;
    }

    /* 3. QR секцията - подредена в колона */
    .badges-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .qr-box {
        margin-bottom: 10px;
    }

    /* 4. Journey стъпките - подредени вертикално */
    .journey-step {
        width: 100%;
        margin-bottom: 30px;
    }
    .step-options {
        flex-direction: column;
        gap: 20px;
    }
    .or-divider {
        padding-top: 0;
        margin: 5px 0;
    }

    /* 5. Footer елементите */
    .trust-footer {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}
