/* ── HERO SLIDER ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}

.slide.active .slide-bg {
    transform: scale(1.06);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(0, 0, 0, .88) 40%, rgba(0, 0, 0, .35) 100%);
}

.slide-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(184, 150, 62, .05) 0%, transparent 55%);
}

.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding-top: 70px;
}

.slide-inner {
    max-width: 680px;
}

.slide-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: opacity .6s .4s, transform .6s .4s;
    transform: translateY(16px);
}

.slide.active .slide-tag {
    opacity: 1;
    transform: none;
}

.slide-tag::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.phone-slot.side-l .phone-frame,
.phone-slot.side-r .phone-frame {
    width: 160px !important;
}

.slide-content h1 {
    font-size: clamp(42px, 6.5vw, 82px);
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 24px;
    opacity: 0;
    transition: opacity .7s .5s, transform .7s .5s;
    transform: translateY(20px);
}

.slide.active h1 {
    opacity: 1;
    transform: none;
}

.slide-content h1 em {
    background: linear-gradient(90deg, var(--gold), var(--gold-pale), var(--gold-lt), var(--gold));
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    animation: gradientShift 4s ease infinite;
}

.slide-sub {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, .75);
    line-height: 1.9;
    max-width: 460px;
    margin-bottom: 38px;
    opacity: 0;
    transition: opacity .6s .65s, transform .6s .65s;
    transform: translateY(16px);
}

.slide.active .slide-sub {
    opacity: 1;
    transform: none;
}

.slide-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    transition: opacity .6s .8s;
}

.slide.active .slide-btns {
    opacity: 1;
}

.slider-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 28px;
    height: 2px;
    background: rgba(255, 255, 255, .25);
    cursor: pointer;
    transition: all .3s;
}

.dot.active {
    background: var(--gold);
    width: 44px;
}

.slider-arrows {
    position: absolute;
    bottom: 24px;
    right: 40px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: transparent;
    color: rgba(255, 255, 255, .5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all .3s;
}

.arrow-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* INTRO */
.intro-sec {
    background: var(--white);
    padding: 90px 0;
}

.intro-right .sec-tag {
    color: var(--gold);
}

.intro-right h2 {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 14px;
}

.intro-right p {
    font-size: 14px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* SCREENS */
.screens-sec {
    background: linear-gradient(145deg, var(--dark) 0%, var(--dark2) 55%, #0d0d0d 100%);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.screens-sec::before {
    content: '';
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(120px, 16vw, 240px);
    font-weight: 700;
    color: rgba(184, 150, 62, .03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    letter-spacing: 28px;
    white-space: nowrap;
    z-index: 0;
    user-select: none;
}

.screens-sec .container {
    position: relative;
    z-index: 1;
}

.screens-left h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 14px;
}

.screens-left>p {
    font-size: 14px;
    color: var(--txt2);
    max-width: 420px;
    line-height: 1.85;
    margin-bottom: 32px;
}

/* ABOUT */
.about-sec {
    background: var(--cream2);
    padding: 90px 0;
}

.about-right h2 {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 500;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-right p {
    font-size: 14px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 16px;
}

/* BLOG */
.blog-sec {
    background: var(--dark2);
    padding: 90px 0;
}

.blog-sec .sec-h {
    color: var(--white);
}

.view-all-wrap {
    text-align: center;
    margin-top: 48px;
}

/* REVIEWS */
.reviews-sec {
    background: var(--dark);
    padding: 80px 0;
    border-top: 1px solid rgba(184, 150, 62, .1);
    border-bottom: 1px solid rgba(184, 150, 62, .1);
}

/* DOWNLOAD */
.download-sec {
    background: var(--dark3);
    padding: 80px 0;
}

.download-sec .sec-h {
    color: var(--white);
}

.download-divider {
    width: 1px;
    height: 60px;
    background: rgba(184, 150, 62, .3);
    margin: 0 20px;
}

.review-carousel {
    position: relative;
}

.review-carousel .owl-nav button.owl-prev,
.review-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    /* width: 45px; */
    /* height: 45px; */
    border-radius: 50% !important;
    /* background: #fff !important; */
    box-shadow: 0 3px 12px rgba(0, 0, 0, .15);
}

.review-carousel .owl-nav button.owl-prev {
    left: -25px;
    font-size: 40px !important;
}

.review-carousel .owl-nav button.owl-next {
    right: -25px;
    font-size: 40px !important;
}

.cta-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://www.timetek.it/public/assets/images/bg.jpg') center/cover no-repeat !important;
    /* opacity: .09; */
}

@media(max-width:480px) {
    .slide-content h1 {
        font-size: 32px;
    }

    .slide-btns {
        flex-direction: column;
    }
}

@media(max-width: 576px) {
    .g-5 {
        --bs-gutter-y: 0rem !important;
        --bs-gutter-x: 0rem !important;
    }

    .nav-wrap {
        height: 85px;
    }

    .slider-dots {
        left: 32% !important;
    }

    .sec-tag {
        text-align: center !important;
        margin-top: 10px !important;
    }

    .gold-bar {
        margin: 0 auto !important;
    }
}