p {
    margin-bottom: 1px;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;

}


.hero {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: row-reverse;
    /* Troca a ordem dos elementos */
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 40px;
}

.hero-text {
    flex: 0 1 60%;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    align-items: flex-start;
}

.hero-image-container {
    flex: 60% 40%;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
    max-width: 110%;
    transform: scale(1.1);
    margin-left: 40px;
}

.hero-image:hover {
    transform: scale(1.12);
}

.award-logo {
    position: absolute;
    top: 10px;
    right: -20px;
    width: 100px;
    height: auto;
    z-index: 10;
    animation: pulseGlint 3s infinite ease-in-out;
}

@keyframes pulseGlint {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }

    25% {
        transform: scale(1.05);
        filter: brightness(1.2);
    }

    50% {
        transform: scale(1.08);
        filter: brightness(1.4) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    }

    75% {
        transform: scale(1.05);
        filter: brightness(1.2);
    }

    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}

.hero h1 {
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1 .diner {
    color: var(--white);
}

.hero h1 .bot-t10 {
    color: var(--turquoise);
}

.hero p {
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--turquoise);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 169, 165, 0.3);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--turquoise);
    border: 2px solid var(--turquoise);
}

.btn-secondary:hover {
    background-color: var(--turquoise);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.stars {
    color: var(--warning);
    font-size: 28px;
    margin-right: 15px;
}

.rating-text {
    font-weight: 500;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.video-benefits {
    padding: 60px 0 20px 0;
    background-color: var(--light);
}

.section-title {
    /* margin-bottom: 60px; */
    display: flex;
    flex-direction: column;
    /* Para empilhar o h2 e o p (se houver) */
    align-items: center;
}

.section-title p {
    white-space: nowrap;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    /* Para empilhar o h2 e o p (se houver) */
    align-items: center;
}

.section-title h2 {
    white-space: nowrap;
    text-align: center;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}


.award-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.award-text {
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--turquoise);
}


.award-logo-features {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.award-logo-features:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.video-benefits-container {
    flex-direction: row-reverse;
    display: flex;
    gap: 60px;
    align-items: center;
    min-height: 600px;
}

.benefits-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    height: 100%;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 20px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--turquoise);
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-item-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(0, 194, 189, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-item-icon {
    background-color: var(--turquoise);
    transform: scale(1.1);
}

.benefit-item:hover .benefit-item-icon svg {
    fill: var(--white);
}

.benefit-item-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--turquoise);
    transition: all 0.3s ease;
}

.benefit-item-content h3 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.benefit-item-content p {
    color: var(--gray-dark);
    line-height: 1.5;
}

.video-container {
    position: relative;
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;

}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.video-container video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 15px;
    object-fit: cover;
}

.video-benefits .video-container {
    flex: 1.5;
    height: 100%;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-color: transparent;
    box-shadow: none;
}

.video-benefits .video-container video {
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.features {
    padding: 60px 0 20px 0;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.feature-card {
    flex: 1 1 calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    min-width: 280px;
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--gray);
    /* cursor: pointer; */
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary);
}

.feature-video-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light), var(--gray));
}

.feature-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-video {
    transform: scale(1.05);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 95, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.feature-card:hover .video-play-overlay {
    opacity: 1;
    background: rgba(30, 58, 95, 0.7);
}

.play-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 194, 189, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.play-icon:hover,
.feature-card:hover .play-icon {
    transform: scale(1.1);
    background-color: var(--turquoise);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.play-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
    margin-left: 2px;
}

.feature-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(0, 169, 165, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--turquoise);
    transform: scale(1.1);
}

.feature-card:hover .feature-icon svg {
    fill: var(--white);
}

.feature-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--secondary);
    transition: all 0.3s ease;
}

.feature-content h3 {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary);
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.feature-content p {
    color: var(--gray-dark);
    line-height: 1.5;
}

.specs {
    padding: 80px 0 20px 0;
    background-color: var(--light);
}

.specs-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.specs-image {
    flex: 1;
}

.specs-image img {
    max-width: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.specs-image img:hover {
    transform: scale(1.02);
}

.specs-content {
    flex: 1;
}

.specs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.spec-item {
    flex: 1 1 calc(50% - 8px);
    min-width: 250px;
    display: flex;
    flex-direction: column;
    padding: 18px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary);
    min-height: 80px;
    justify-content: center;
}

.spec-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left-color: var(--turquoise);
}

.spec-label {
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 5px;
}

.spec-value {
    color: var(--gray-dark);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--white);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 16px;
    background-color: var(--white);
    color: var(--dark);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--turquoise);
    box-shadow: 0 0 0 3px rgba(45, 206, 204, 0.15), 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.scroll-left {
    left: -5px;
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border: 2px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/*VIDEO CARD*/


.video-scroll-container {
    position: relative;
    padding: 0 25px;
}

.video-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 0;
}

.video-grid::-webkit-scrollbar {
    height: 8px;

}

.video-grid::-webkit-scrollbar-track {
    background: var(--gray);
    border-radius: 10px;
    margin: 0 50px;
}

.video-grid::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
    border-radius: 10px;
    border: 2px solid var(--gray);
}


.video-grid::-webkit-scrollbar-thumb:hover {
    background-color: var(--turquoise);
}

.video-info {
    padding: 25px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

.video-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.video-info p {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.5;
    margin: 0;
}


.scroll-arrow:hover {
    background-color: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}

.scroll-arrow:hover svg {
    fill: var(--white);
}

.scroll-arrow svg {
    width: 24px;
    height: 24px;
    fill: var(--secondary);
    transition: fill 0.3s ease;
}

.scroll-right {
    right: -5px;
}

.video-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 1 1 calc(25% - 20px);
    max-width: calc(25% - 20px);
    min-width: 280px;
}

/* Remove cursor: pointer from industry video cards */
.industry-videos .video-card .video-container {
    cursor: auto !important;  /* Fjern cursor: pointer fra bilder */
}

.industry-videos .video-card .video-container img {
    cursor: auto !important;  /* Fjern cursor: pointer fra img */
}

/* FAQ */
.faq-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.faq-column {
    flex: 1;
    min-width: 300px;
}

.faq-item {
    border: 1px solid var(--gray);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid var(--turquoise) !important;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
}

.faq-item h3,
.faq-question,
.faq-item button {
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin-bottom: 0.5rem !important;
}

/* --- Media Queries ajustadas para Flexbox --- */

@media (max-width: 992px) {

    .section-title h2,
    .section-title p {
        white-space: normal !important;
        text-align: center;
    }

    .video-card {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }

    .section-title h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .hero-content {
        flex-direction: column-reverse;
        gap: 20px;
        /* Reduz o espaço quando empilhado */
    }

    .hero-image-container {
        justify-content: center;
        margin-bottom: 40px;
        width: 100%;
    }

    .hero-image {
        /* 3. Remove a margem que empurrava a imagem para a direita */
        margin-left: 0;
        /* 4. Reseta o tamanho para não estourar a tela */
        max-width: 100%;
        transform: scale(1);
        /* Opcional: remove o efeito de zoom inicial */
    }

    /* --- FIM DAS ADIÇÕES --- */

    .video-benefits-container {
        flex-direction: column;
    }

    .features-grid {
        gap: 20px;
    }

    .feature-card {
        flex-basis: calc(50% - 10px);
    }

    .specs-container {
        flex-direction: column;
        align-items: center;
    }

    .specs-image img {
        width: 100%;
        margin: 0 auto;
        height: 400px;
    }
}

@media (max-width: 768px) {

    .section-title h2,
    .section-title p {
        white-space: normal !important;
        text-align: center;
    }

    .video-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .hero-text {
        align-items: center;
        /* Centraliza os botões e estrelas */
        text-align: center;
        /* Centraliza os parágrafos e o título */
    }

    .video-benefits .video-container {
        min-height: 300px;
    }

    .feature-card {
        flex-basis: 100%;
        flex-direction: column-reverse;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .specs-grid {
        flex-direction: column;
        gap: 15px;
    }


}

@media screen and (max-width: 600px) {

    .section-title h2,
    .section-title p {
        white-space: normal !important;
        text-align: center;
    }

    .section-title h2 {
        font-size: 22px;
    }
}

/* Estilos de menu mobile e outros que não foram alterados */
/* NOTA: Mantive os estilos de menu mobile pois eles provavelmente são usados por um 'header.html' que não foi incluído. */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    z-index: 1000;
    padding-top: 100px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    display: block;
    transform: translateX(0);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

@media (max-width: 900px) {

    .section-title h2,
    .section-title p {
        white-space: normal !important;
        text-align: center;
    }

    nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }
}

@media (max-width: 1200px) {

    .section-title h2,
    .section-title p {
        white-space: normal !important;
        text-align: center;
    }
}

/* CARD STYLE ADJUSTMENT */

.ulog-spec-cards {
    width: min(100%, 1400px);
    margin-inline: auto;
    padding: 1rem 1rem 2rem;
    margin-top: 1rem;
}


.ulog-cards-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}


@media (min-width: 768px) {
    .ulog-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (min-width:1080px) {
    .ulog-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ulog-card {
    background: var(--card-bg);
    border: 1px solid var(--ring);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}

#ulog-cards{
    margin-top: 2rem;
}

.ulog-card:focus-within,
.ulog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(2, 6, 23, .12)
}

.ulog-card__media {
    padding: 18px 18px 0
}

.ulog-card__media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    aspect-ratio: 4/3;
}

.ulog-card__head {
    padding: 20px 18px 14px;
    box-shadow: none;
    border-top: 1px solid rgba(0, 0, 0, 0.182);
    border-bottom: none;
}

.ulog-card__title {
    font-weight: 700;
    color: var(--text);
    font-size: 1.05rem
}

.ulog-card__subtitle {
    color: var(--muted);
    font-size: .9rem;
    margin-top: 2px
}

.ulog-spec-list {
    padding: 10px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0
}

.ulog-pill {
        padding: 10px 12px;
    border: 1px solid rgba(213, 213, 213, 0.661);
    /* background-color: var(--turquoise); */
    color: black;
    border-radius: 20px;
    display: flex
;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
}

.ulog-pill__k {
   font-size: 13px;
    white-space: nowrap;
    font-weight: 600;
    color: var(--text);


}

.ulog-pill__v {
    text-align: right;
    color: var(--muted);

    
}

/* valori mai lungi pe două linii când e nevoie */
.ulog-pill__v {
    inline-size: 55%
}

@media (min-width:1200px) {
    .ulog-pill__v {
        inline-size: auto
    }
}

/* BUTTON TO BOTTOM  */

:root{
    --st-bg: rgba(30,30,34,.9);
    --st-bg-hover: rgba(30,30,34,1);
    --st-text:#fff;
    --st-shadow: 0 10px 30px rgba(0,0,0,.25);
    --st-radius:999px;
    --st-padding:.625rem .9rem;
    --st-gap:.5rem;
    --st-z:9999;
  }

  /* Butonul flotant */
  .scroll-toggle{
    position: fixed;
    right: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: var(--st-gap);
    padding: var(--st-padding);
    border: 0;
    border-radius: var(--st-radius);
    background: var(--st-bg);
    color: var(--st-text);
    box-shadow: var(--st-shadow);
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-backdrop-filter: saturate(140%) blur(6px);
    backdrop-filter: saturate(140%) blur(6px);
    transition: transform .15s ease, opacity .2s ease, background .2s ease;
    z-index: var(--st-z);
    opacity: 0;            /* ascuns până când scrollezi un pic */
    pointer-events: none;
  }
  .scroll-toggle.show{ opacity:1; pointer-events:auto; }
  .scroll-toggle:hover{ background: var(--st-bg-hover); }
  .scroll-toggle:active{ transform: translateY(1px) scale(.98); }

  /* Etichete și icon */
  .scroll-toggle .label{
    font: 500 14px/1.1 system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
    white-space: nowrap;
  }
  .scroll-toggle .label-up{ display:none; }
  .scroll-toggle[data-state="up"] .label-up{ display:inline; }
  .scroll-toggle[data-state="up"] .label-down{ display:none; }

  .scroll-toggle .icon{ display:inline-flex; transition: transform .2s ease; }
  .scroll-toggle[data-state="up"] .icon{ transform: rotate(180deg); }

  /* Sentinelul trebuie să aibă 1px ca să fie observat la bottom */
  #page-end-sentinel{
    display:block; width:1px; height:1px; margin-top:2px;
  }

  /* Mic polish pe mobile */
  @media (max-width: 480px){
    .scroll-toggle{ right:12px; bottom:12px; }
    .scroll-toggle .label{ font-size:13px; }
  }
/* ========================================================================== */
/* NEW CLASSES FOR ULOG-DELIVER.HTML - Removed Inline Styles */
/* ========================================================================== */

.contact-intro {
    margin-bottom: 8px;
}

.hidden-seo-content {
    display: none;
}

.rating-text {
    color: white;
}

.text-turquoise {
    color: var(--turquoise);
}


/* Feature cards header: icon + title on same row */
#ulog-deliver-features .feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

/* Title styling (use existing look, but no weird flex/margins) */
#ulog-deliver-features .feature-header .feature-title {
  margin: 0;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
  display: flex;
  align-items: center;  /* Vertikal sentrering av heading ved siden av emoji */
}

/* Remove cursor: pointer from feature card images */
#ulog-deliver-features .feature-card .video-container {
  width: 100%;
  aspect-ratio: 16 / 9;   /* gir lik høyde på alle kort */
  overflow: hidden;
  cursor: auto !important;  /* Fjern cursor: pointer fra bilder */
}

#ulog-deliver-features .feature-card .video-container img {
  width: 100%;
  height: 100%;
  display: block;
  cursor: auto !important;  /* Fjern cursor: pointer fra img */
  object-fit: cover;      /* fyller hele, cropper ved behov */
}
