/* ==========================================================================
   VEVO Service (#vevo-service) – Sliding content (track, pager, bottom bar)
   ========================================================================== */
#vevo-service {
    padding: 0;
    align-items: center;
    justify-content: center;
}

#vevo-service::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #0f0e0d;
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.75)), url("../media/vevo-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%);
}

#vevo-service .vevo-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#vevo-service .vevo-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: clamp(48px, 5vw, 64px);
    height: clamp(48px, 5vw, 64px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

#vevo-service .vevo-arrow:hover {
    border-color: rgba(255, 107, 0, 0.7);
    background: rgba(255, 107, 0, 0.2);
}

#vevo-service .vevo-arrow:focus {
    outline: none;
    border-color: rgba(255, 107, 0, 0.8);
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.25);
}

#vevo-service .vevo-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

#vevo-service .vevo-prev { left: clamp(72px, 9vw, 96px); }
#vevo-service .vevo-next { right: clamp(100px, 12vw, 140px); }

/* Desktop: controls wrapper is transparent — prev / pager / next keep absolute layout */
#vevo-service .vevo-slide-controls {
    display: contents;
}

#vevo-service .vevo-arrow svg {
    width: clamp(20px, 2.5vw, 28px);
    height: clamp(20px, 2.5vw, 28px);
}

#vevo-service .vevo-slides-viewport {
    position: relative;
    z-index: 2;
    flex: 1 1 0%;
    min-width: 0;
    min-height: 300px;
    align-self: stretch;
    overflow: hidden;
    margin-left: clamp(72px, 9vw, 96px);
    margin-right: clamp(56px, 7vw, 80px);
}

#vevo-service .vevo-slides-track {
    display: flex;
    height: 100%;
    min-height: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

#vevo-service .vevo-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) 0 clamp(4rem, 8vw, 6rem) 0;
}

#vevo-service .vevo-slide-inner {
    max-width: 720px;
    width: 100%;
    text-align: center;
    visibility: visible;
    opacity: 1;
}

#vevo-service .vevo-slide-heading {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    line-height: 1.25;
    color: #fff;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

#vevo-service .vevo-heading-gradient {
    background: linear-gradient(135deg, #F46C14, #ff9d5c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

#vevo-service .vevo-step-title {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: clamp(1rem, 1.25vw, 1.2rem);
    color: #F46C14;
    margin: 0 0 0.4rem 0;
}

#vevo-service .vevo-slide-text {
    font-family: var(--body-font);
    font-weight: 300;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1rem;
}

#vevo-service .vevo-slide-inner .explore-btn {
    margin-top: clamp(1rem, 2vw, 1.5rem);
}

/* Steps slide: vertical timeline with connected markers */
#vevo-service .vevo-steps-inner {
    max-width: 720px;
    text-align: left;
}

#vevo-service .vevo-steps-intro {
    text-align: center;
    margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

#vevo-service .vevo-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    padding-left: 2.75rem;
}

/* Vertical line */
#vevo-service .vevo-timeline::before {
    content: "";
    position: absolute;
    left: 0.6rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: linear-gradient(to bottom, #F46C14, rgba(244, 108, 20, 0.4));
    border-radius: 2px;
}

#vevo-service .vevo-timeline-item {
    position: relative;
    padding-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

#vevo-service .vevo-timeline-item:last-child {
    padding-bottom: 0;
}

#vevo-service .vevo-timeline-marker {
    position: absolute;
    left: -2.75rem;
    top: 0.05rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: #F46C14;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 0 0 3px rgba(244, 108, 20, 0.25);
    z-index: 1;
}

#vevo-service .vevo-timeline-content {
    padding: 0;
}

#vevo-service .vevo-timeline-content .vevo-slide-text {
    margin-bottom: 0;
    font-size: clamp(0.85rem, 1.05vw, 0.95rem);
    line-height: 1.5;
}

/* Requirements slide – horizontal 3-column cards, summarized */
#vevo-service .vevo-requirements-inner {
    max-width: 960px;
    text-align: center;
}

#vevo-service .vevo-req-eyebrow {
    font-family: var(--heading-font);
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #F46C14;
    margin: 0 0 0.5rem 0;
}

#vevo-service .vevo-requirements-inner .vevo-slide-heading {
    text-align: center;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

#vevo-service .vevo-requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 1.5vw, 1.5rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

#vevo-service .vevo-req-card {
    text-align: left;
    padding: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

#vevo-service .vevo-req-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

#vevo-service .vevo-req-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(0.75rem, 1vw, 1rem) clamp(1rem, 1.25vw, 1.25rem) 0.5rem;
    flex-wrap: wrap;
}

#vevo-service .vevo-req-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(244, 108, 20, 0.2), rgba(244, 108, 20, 0.06));
    color: #F46C14;
    flex-shrink: 0;
}

#vevo-service .vevo-req-card-icon svg {
    width: 18px;
    height: 18px;
}

#vevo-service .vevo-req-card-num {
    font-size: 1rem;
    font-weight: 700;
    color: #F46C14;
    line-height: 1;
    opacity: 0.9;
}

#vevo-service .vevo-req-card-title {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: clamp(0.9rem, 1.05vw, 1rem);
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

#vevo-service .vevo-req-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 0.45rem;
    list-style: none;
    margin: 0;
    padding: 0 clamp(1rem, 1.25vw, 1.25rem) clamp(0.85rem, 1.1vw, 1.1rem);
}

#vevo-service .vevo-req-tags li {
    display: inline-block;
    font-family: var(--body-font);
    font-weight: 300;
    font-size: clamp(0.7rem, 0.85vw, 0.8rem);
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.2rem 0.45rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

#vevo-service .vevo-requirements-inner .explore-btn {
    display: inline-block;
    margin-top: 0;
    text-align: center;
}

#vevo-service .vevo-req-cta {
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    padding: 0.6rem 1.25rem;
    letter-spacing: 0.08em;
}

/* Requirements slide: subtle background */
#vevo-service .vevo-slide-requirements {
    background: radial-gradient(ellipse 70% 40% at 50% 100%, rgba(244, 108, 20, 0.05), transparent 55%);
}

#vevo-service .vevo-requirements-inner {
    max-height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

#vevo-service .vevo-pros-inner {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

#vevo-service .vevo-pros-eyebrow {
    font-family: var(--heading-font);
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #F46C14;
    margin: 0 0 0.5rem 0;
}

#vevo-service .vevo-pros-inner .vevo-slide-heading {
    margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

#vevo-service .vevo-pros-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.5rem, 0.8vw, 0.75rem) clamp(1rem, 1.5vw, 1.25rem);
    text-align: left;
}

#vevo-service .vevo-pro-card {
    padding: clamp(0.4rem, 0.6vw, 0.5rem) clamp(0.85rem, 1.2vw, 1rem);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

#vevo-service .vevo-pro-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

#vevo-service .vevo-pro-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(244, 108, 20, 0.25), rgba(244, 108, 20, 0.08));
    color: #F46C14;
    margin-bottom: 0.35rem;
}

#vevo-service .vevo-pro-icon svg {
    width: 16px;
    height: 16px;
}

#vevo-service .vevo-pro-title {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: clamp(0.85rem, 1.05vw, 0.95rem);
    color: #fff;
    margin: 0 0 0.15rem 0;
    line-height: 1.25;
}

#vevo-service .vevo-pro-desc {
    font-family: var(--body-font);
    font-weight: 300;
    font-size: clamp(0.75rem, 0.9vw, 0.82rem);
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Pros slide: subtle gradient background */
#vevo-service .vevo-slide-pros {
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(244, 108, 20, 0.06), transparent 55%);
}

#vevo-service .vevo-pager {
    position: absolute;
    top: 50%;
    right: clamp(var(--space-3), 3vw, var(--space-5));
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 10;
    background: none;
    border: none;
    padding: 0;
}

#vevo-service .vevo-pager-item {
    font-family: var(--body-font);
    font-weight: 300;
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    color: rgba(255, 255, 255, 0.5);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 0;
    transition: color 0.2s ease, font-weight 0.2s ease;
}

#vevo-service .vevo-pager-item:hover {
    color: rgba(255, 255, 255, 0.85);
}

#vevo-service .vevo-pager-item.active {
    color: #F46C14;
    font-weight: 600;
}

/* Bottom bar: prev | current | next headings with lines and arrows */
#vevo-service .vevo-bottom-bar {
    position: absolute;
    bottom: clamp(2rem, 5vw, 3rem);
    left: clamp(72px, 9vw, 96px);
    right: clamp(56px, 7vw, 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 10;
}

#vevo-service .vevo-bar-center {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

#vevo-service .vevo-bar-arrow {
    flex-shrink: 0;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0 0.1rem;
    border: none;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

#vevo-service .vevo-bar-arrow:hover {
    color: #F46C14;
}

#vevo-service .vevo-bar-arrow svg {
    width: 18px;
    height: 18px;
}

#vevo-service .vevo-bar-line {
    flex: 1;
    min-width: 12px;
    max-width: 60px;
    height: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

#vevo-service .vevo-bar-line-dashed {
    border-top-style: dashed;
    max-width: 40px;
}

#vevo-service .vevo-bar-line-left,
#vevo-service .vevo-bar-line-right {
    flex: 0 0 auto;
    width: 28px;
    min-width: 28px;
    max-width: none;
}

#vevo-service .vevo-bar-heading {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 28%;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: clamp(0.65rem, 0.9vw, 0.8rem);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    padding: 0 0.5rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#vevo-service .vevo-bar-current-heading {
    color: #F46C14;
    max-width: 32%;
}

#vevo-service .vevo-bar-prev-heading,
#vevo-service .vevo-bar-next-heading {
    text-align: center;
}

@media (max-width: 979px) {
    #vevo-service .vevo-prev { left: 56px; }
    #vevo-service .vevo-next { right: 80px; }
    #vevo-service .vevo-slides-viewport { margin-left: 56px; margin-right: 48px; }
    #vevo-service .vevo-arrow { width: 44px; height: 44px; }
    #vevo-service .vevo-pager { right: var(--space-2); }
    #vevo-service .vevo-slide-heading { font-size: clamp(1.35rem, 4vw, 2rem); }
    #vevo-service .vevo-slide-text { font-size: 0.95rem; }
    #vevo-service .vevo-bottom-bar {
        left: 56px;
        right: 48px;
        bottom: var(--space-4);
    }
    #vevo-service .vevo-bar-heading { font-size: 0.6rem; max-width: 24%; }
    #vevo-service .vevo-bar-current-heading { max-width: 28%; }
    #vevo-service .vevo-requirements-grid { grid-template-columns: repeat(2, 1fr); }
    #vevo-service .vevo-timeline { padding-left: 2.25rem; }
    #vevo-service .vevo-timeline::before { left: 0.45rem; }
    #vevo-service .vevo-timeline-marker {
        left: -2.25rem;
        width: 1.25rem;
        height: 1.25rem;
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    #vevo-service .vevo-timeline-content .vevo-slide-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    #vevo-service { padding: var(--space-2); }
    #vevo-service .vevo-prev { left: 44px; }
    #vevo-service .vevo-next { right: 64px; }
    #vevo-service .vevo-slides-viewport { margin-left: 44px; margin-right: 40px; }
    #vevo-service .vevo-arrow { width: 40px; height: 40px; }
    #vevo-service .vevo-arrow svg { width: 18px; height: 18px; }
    #vevo-service .vevo-pager { right: var(--space-1); }
    #vevo-service .vevo-pager-item { font-size: 0.75rem; }
    #vevo-service .vevo-slide-heading { font-size: 1.35rem; }
    #vevo-service .vevo-slide-text { font-size: 0.9rem; }
    #vevo-service .vevo-pros-grid { grid-template-columns: 1fr; }
    #vevo-service .vevo-pro-title { font-size: 0.78rem; }
    #vevo-service .vevo-req-card-title { font-size: 0.95rem; }
    #vevo-service .vevo-req-tags li { font-size: 0.75rem; }
    #vevo-service .vevo-requirements-grid { grid-template-columns: 1fr; }
    #vevo-service .vevo-steps-intro { font-size: 0.85rem; margin-bottom: 0.75rem; }
    #vevo-service .vevo-timeline { padding-left: 2rem; }
    #vevo-service .vevo-timeline::before { left: 0.35rem; }
    #vevo-service .vevo-timeline-marker {
        left: -2rem;
        width: 1.15rem;
        height: 1.15rem;
        font-size: 0.6rem;
    }
    #vevo-service .vevo-bottom-bar {
        left: 44px;
        right: 40px;
        bottom: var(--space-4);
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
    }
    #vevo-service .vevo-bar-arrow svg { width: 12px; height: 12px; }
    #vevo-service .vevo-bar-heading { font-size: 0.55rem; max-width: 22%; }
    #vevo-service .vevo-bar-current-heading { max-width: 26%; }
    #vevo-service .vevo-bar-line { max-width: 24px; }
    #vevo-service .vevo-bar-line-dashed { max-width: 16px; }
    #vevo-service .vevo-bar-line-left,
    #vevo-service .vevo-bar-line-right { width: 20px; min-width: 20px; max-width: none; }
}
