.hero {
    align-self: stretch;
    padding: 0 clamp(20px, 8vw, 370px) clamp(40px, 5vw, 60px);
    background: #F0EBE6;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
}

/* Loading Screen Styles */
.hero-loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F0EBE6;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.hero-loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hero-loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-loading-logo {
    width: clamp(120px, 15vw, 200px);
    height: auto;
    object-fit: contain;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.hero-loading-text {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: #60724F;
    letter-spacing: 0.05em;
    font-family: 'Manrope', sans-serif;
}

.hero-text {
    width: 100%;
    max-width: 1180px;
    min-height: 400px;
    height: clamp(400px, 50vw, 600px);
    padding: clamp(20px, 3vw, 40px);
    background: linear-gradient(271deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.80) 100%);
    overflow: hidden;
    border-radius: clamp(20px, 3vw, 40px);
    background-image: url(../assets/img/wp14994042-valencia-4k-wallpapers.png);
    background-size: cover;
    background-position: center;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: clamp(30px, 4vw, 60px);
    display: flex;
    flex-shrink: 0;
}

.text-button {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: clamp(20px, 3vw, 40px);
    display: flex;
    width: 100%;
}

.hero-title {
    align-self: stretch;
    color: white;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    white-space: normal;
}

.hero-subtitle {
    width: 100%;
    max-width: 492px;
    color: white;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.5;
}

.bullet-container {
    justify-content: flex-start;
    align-items: center;
    gap: clamp(8px, 1.5vw, 20px);
    display: inline-flex;
    flex-wrap: nowrap;
    width: 100%;
}

/* Медиа-запросы для hero */
@media (max-width: 1024px) {
    .bullet-text span {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-text {
        min-height: 350px;
    }
    
    .bullet-text {
        white-space: normal;
        color: white;
    }
    
    .bullet-text span {
        color: white;
    }
}

@media (max-width: 480px) {
    .hero-text {
        min-height: clamp(400px, 100vw, 500px);
        height: clamp(400px, 100vw, 500px);
        padding: clamp(16px, 4vw, 20px);
        gap: clamp(20px, 5vw, 30px);
    }
    
    .hero-title {
        font-size: clamp(22px, 5.5vw, 24px);
    }
    
    .hero-subtitle {
        font-size: clamp(13px, 3.5vw, 14px);
    }
    
    .bullet-container {
        flex-direction: column;
        align-items: stretch;
        gap: clamp(12px, 3vw, 16px);
    }
    
    .bullet {
        width: auto;
        padding: 0;
        gap: clamp(8px, 2vw, 10px);
        border-radius: 0;
        background: transparent;
    }
    
    .bullet-circle {
        width: clamp(36px, 8vw, 44px);
        height: clamp(36px, 8vw, 44px);
    }
    
    .bullet-circle img {
        width: clamp(18px, 4vw, 22px) !important;
        height: clamp(18px, 4vw, 22px) !important;
    }
    
    .bullet-text {
        font-size: clamp(13px, 3vw, 15px);
        line-height: clamp(16px, 3.5vw, 18px);
        white-space: normal;
        color: white;
    }
    
    .bullet-text span {
        display: inline;
        color: white;
    }
    
    .bullet:last-child .bullet-text span {
        display: inline;
    }
}

.bullet {
    padding: 0;
    background: transparent;
    overflow: visible;
    border-radius: 0;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(10px, 1.5vw, 12px);
    display: flex;
    flex-shrink: 1;
    min-width: 0;
}

.bullet-icon {
    padding: 0;
    background: transparent;
    border-radius: 0;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    display: flex;
}

.bullet-circle {
    width: clamp(40px, 5vw, 48px);
    height: clamp(40px, 5vw, 48px);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    display: inline-flex;
    flex-shrink: 0;
}

.bullet-circle img {
    display: block;
    object-fit: contain;
    width: clamp(20px, 2.5vw, 24px) !important;
    height: clamp(20px, 2.5vw, 24px) !important;
    filter: brightness(0) invert(1);
}

.bullet-text {
    color: white;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 600;
    line-height: clamp(18px, 2.5vw, 20px);
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
}

.bullet-text span {
    color: white;
    font-weight: 600;
}

.icon-house, .icon-shield {
    width: 32px;
    height: 32px;
    position: relative;
    overflow: hidden;
}

.icon-house .vector { background: white; }
.icon-shield .vector { background: white; }

